diff --git a/.github/workflows/generator.yml b/.github/workflows/generator.yml
index 1dd6d9b5..0f80bfde 100644
--- a/.github/workflows/generator.yml
+++ b/.github/workflows/generator.yml
@@ -6,7 +6,7 @@ on:
version:
description: "version"
required: true
- default: "v16"
+ default: "v17.1"
jobs:
build:
diff --git a/README.md b/README.md
index 544a7da3..47c6cd1b 100644
--- a/README.md
+++ b/README.md
@@ -21,11 +21,12 @@ Although this project isn't official, we deem it as low-risk due to its maturity
| google-ads-pb | Google Ads API | Sunset date |
| ----------------- | ---------------- | ---------------------------- |
+| v1.17.0 | v17 | May 2025 |
| v1.16.1 | v16.1 | January 2025 |
| v1.7.0 | v16 | January 2025 |
-| v1.6.0 | v15 | September 2024 |
-| v1.5.1 | v14.1 | June 5, 2024 |
-| v1.5.0 | v14 | June 5, 2024 |
+| v1.6.0 | v15 | September 25, 2024 |
+| v1.5.1 | v14.1 | Deprecated |
+| v1.5.0 | v14 | Deprecated |
| v1.4.1 | v13.1 | Deprecated |
| v1.4.0 | v13 | Deprecated |
| v1.3.1 | v12 | Deprecated |
diff --git a/clients/account_budget_proposal_client.go b/clients/account_budget_proposal_client.go
index 6a64be70..f4ed5a36 100644
--- a/clients/account_budget_proposal_client.go
+++ b/clients/account_budget_proposal_client.go
@@ -214,7 +214,9 @@ func (c *accountBudgetProposalGRPCClient) Connection() *grpc.ClientConn {
func (c *accountBudgetProposalGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/account_link_client.go b/clients/account_link_client.go
index 2acca9e9..57c1a604 100644
--- a/clients/account_link_client.go
+++ b/clients/account_link_client.go
@@ -230,7 +230,9 @@ func (c *accountLinkGRPCClient) Connection() *grpc.ClientConn {
func (c *accountLinkGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/ad_client.go b/clients/ad_client.go
index bcb8e36d..7dee9625 100644
--- a/clients/ad_client.go
+++ b/clients/ad_client.go
@@ -24,7 +24,6 @@ import (
"time"
gax "github.com/googleapis/gax-go/v2"
- resourcespb "github.com/shenzhencenter/google-ads-pb/resources"
servicespb "github.com/shenzhencenter/google-ads-pb/services"
"google.golang.org/api/option"
"google.golang.org/api/option/internaloption"
@@ -37,7 +36,6 @@ var newAdClientHook clientHook
// AdCallOptions contains the retry settings for each method of AdClient.
type AdCallOptions struct {
- GetAd []gax.CallOption
MutateAds []gax.CallOption
}
@@ -57,19 +55,6 @@ func defaultAdGRPCClientOptions() []option.ClientOption {
func defaultAdCallOptions() *AdCallOptions {
return &AdCallOptions{
- GetAd: []gax.CallOption{
- gax.WithTimeout(14400000 * time.Millisecond),
- gax.WithRetry(func() gax.Retryer {
- return gax.OnCodes([]codes.Code{
- codes.Unavailable,
- codes.DeadlineExceeded,
- }, gax.Backoff{
- Initial: 5000 * time.Millisecond,
- Max: 60000 * time.Millisecond,
- Multiplier: 1.30,
- })
- }),
- },
MutateAds: []gax.CallOption{
gax.WithTimeout(14400000 * time.Millisecond),
gax.WithRetry(func() gax.Retryer {
@@ -91,7 +76,6 @@ type internalAdClient interface {
Close() error
setGoogleClientInfo(...string)
Connection() *grpc.ClientConn
- GetAd(context.Context, *servicespb.GetAdRequest, ...gax.CallOption) (*resourcespb.Ad, error)
MutateAds(context.Context, *servicespb.MutateAdsRequest, ...gax.CallOption) (*servicespb.MutateAdsResponse, error)
}
@@ -130,19 +114,6 @@ func (c *AdClient) Connection() *grpc.ClientConn {
return c.internalClient.Connection()
}
-// GetAd returns the requested ad in full detail.
-//
-// List of thrown errors:
-// AuthenticationError (at )
-// AuthorizationError (at )
-// HeaderError (at )
-// InternalError (at )
-// QuotaError (at )
-// RequestError (at )
-func (c *AdClient) GetAd(ctx context.Context, req *servicespb.GetAdRequest, opts ...gax.CallOption) (*resourcespb.Ad, error) {
- return c.internalClient.GetAd(ctx, req, opts...)
-}
-
// MutateAds updates ads. Operation statuses are returned. Updating ads is not supported
// for TextAd, ExpandedDynamicSearchAd, GmailAd and ImageAd.
//
@@ -252,7 +223,9 @@ func (c *adGRPCClient) Connection() *grpc.ClientConn {
func (c *adGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
@@ -261,24 +234,6 @@ func (c *adGRPCClient) Close() error {
return c.connPool.Close()
}
-func (c *adGRPCClient) GetAd(ctx context.Context, req *servicespb.GetAdRequest, opts ...gax.CallOption) (*resourcespb.Ad, error) {
- hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v", "resource_name", url.QueryEscape(req.GetResourceName()))}
-
- hds = append(c.xGoogHeaders, hds...)
- ctx = gax.InsertMetadataIntoOutgoingContext(ctx, hds...)
- opts = append((*c.CallOptions).GetAd[0:len((*c.CallOptions).GetAd):len((*c.CallOptions).GetAd)], opts...)
- var resp *resourcespb.Ad
- err := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error {
- var err error
- resp, err = c.adClient.GetAd(ctx, req, settings.GRPC...)
- return err
- }, opts...)
- if err != nil {
- return nil, err
- }
- return resp, nil
-}
-
func (c *adGRPCClient) MutateAds(ctx context.Context, req *servicespb.MutateAdsRequest, opts ...gax.CallOption) (*servicespb.MutateAdsResponse, error) {
hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v", "customer_id", url.QueryEscape(req.GetCustomerId()))}
diff --git a/clients/ad_group_ad_client.go b/clients/ad_group_ad_client.go
index cdac92c5..2bcb1bb0 100644
--- a/clients/ad_group_ad_client.go
+++ b/clients/ad_group_ad_client.go
@@ -227,7 +227,9 @@ func (c *adGroupAdGRPCClient) Connection() *grpc.ClientConn {
func (c *adGroupAdGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/ad_group_ad_label_client.go b/clients/ad_group_ad_label_client.go
index b161c7b4..0cd50785 100644
--- a/clients/ad_group_ad_label_client.go
+++ b/clients/ad_group_ad_label_client.go
@@ -195,7 +195,9 @@ func (c *adGroupAdLabelGRPCClient) Connection() *grpc.ClientConn {
func (c *adGroupAdLabelGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/ad_group_asset_client.go b/clients/ad_group_asset_client.go
index 74a11f0f..b0adea8b 100644
--- a/clients/ad_group_asset_client.go
+++ b/clients/ad_group_asset_client.go
@@ -196,7 +196,9 @@ func (c *adGroupAssetGRPCClient) Connection() *grpc.ClientConn {
func (c *adGroupAssetGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/ad_group_asset_set_client.go b/clients/ad_group_asset_set_client.go
index a258689e..b20ed373 100644
--- a/clients/ad_group_asset_set_client.go
+++ b/clients/ad_group_asset_set_client.go
@@ -183,7 +183,9 @@ func (c *adGroupAssetSetGRPCClient) Connection() *grpc.ClientConn {
func (c *adGroupAssetSetGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/ad_group_bid_modifier_client.go b/clients/ad_group_bid_modifier_client.go
index 904e8fcc..c638a358 100644
--- a/clients/ad_group_bid_modifier_client.go
+++ b/clients/ad_group_bid_modifier_client.go
@@ -208,7 +208,9 @@ func (c *adGroupBidModifierGRPCClient) Connection() *grpc.ClientConn {
func (c *adGroupBidModifierGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/ad_group_client.go b/clients/ad_group_client.go
index 3761d9eb..a0a7b598 100644
--- a/clients/ad_group_client.go
+++ b/clients/ad_group_client.go
@@ -215,7 +215,9 @@ func (c *adGroupGRPCClient) Connection() *grpc.ClientConn {
func (c *adGroupGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/ad_group_criterion_client.go b/clients/ad_group_criterion_client.go
index 18c8964c..88eb0757 100644
--- a/clients/ad_group_criterion_client.go
+++ b/clients/ad_group_criterion_client.go
@@ -217,7 +217,9 @@ func (c *adGroupCriterionGRPCClient) Connection() *grpc.ClientConn {
func (c *adGroupCriterionGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/ad_group_criterion_customizer_client.go b/clients/ad_group_criterion_customizer_client.go
index e4864b90..b2c99a9a 100644
--- a/clients/ad_group_criterion_customizer_client.go
+++ b/clients/ad_group_criterion_customizer_client.go
@@ -183,7 +183,9 @@ func (c *adGroupCriterionCustomizerGRPCClient) Connection() *grpc.ClientConn {
func (c *adGroupCriterionCustomizerGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/ad_group_criterion_label_client.go b/clients/ad_group_criterion_label_client.go
index 15f22c18..67f24206 100644
--- a/clients/ad_group_criterion_label_client.go
+++ b/clients/ad_group_criterion_label_client.go
@@ -193,7 +193,9 @@ func (c *adGroupCriterionLabelGRPCClient) Connection() *grpc.ClientConn {
func (c *adGroupCriterionLabelGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/ad_group_customizer_client.go b/clients/ad_group_customizer_client.go
index c87cdbdc..042e2f74 100644
--- a/clients/ad_group_customizer_client.go
+++ b/clients/ad_group_customizer_client.go
@@ -183,7 +183,9 @@ func (c *adGroupCustomizerGRPCClient) Connection() *grpc.ClientConn {
func (c *adGroupCustomizerGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/ad_group_extension_setting_client.go b/clients/ad_group_extension_setting_client.go
index 07a78855..79ee838e 100644
--- a/clients/ad_group_extension_setting_client.go
+++ b/clients/ad_group_extension_setting_client.go
@@ -213,7 +213,9 @@ func (c *adGroupExtensionSettingGRPCClient) Connection() *grpc.ClientConn {
func (c *adGroupExtensionSettingGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/ad_group_feed_client.go b/clients/ad_group_feed_client.go
index 612f6654..105b38c9 100644
--- a/clients/ad_group_feed_client.go
+++ b/clients/ad_group_feed_client.go
@@ -207,7 +207,9 @@ func (c *adGroupFeedGRPCClient) Connection() *grpc.ClientConn {
func (c *adGroupFeedGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/ad_group_label_client.go b/clients/ad_group_label_client.go
index a4fde49c..5db4bbc0 100644
--- a/clients/ad_group_label_client.go
+++ b/clients/ad_group_label_client.go
@@ -196,7 +196,9 @@ func (c *adGroupLabelGRPCClient) Connection() *grpc.ClientConn {
func (c *adGroupLabelGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/ad_parameter_client.go b/clients/ad_parameter_client.go
index 34f1bab1..74c71a27 100644
--- a/clients/ad_parameter_client.go
+++ b/clients/ad_parameter_client.go
@@ -197,7 +197,9 @@ func (c *adParameterGRPCClient) Connection() *grpc.ClientConn {
func (c *adParameterGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/asset_client.go b/clients/asset_client.go
index 04e80ce9..1ab34ca0 100644
--- a/clients/asset_client.go
+++ b/clients/asset_client.go
@@ -215,7 +215,9 @@ func (c *assetGRPCClient) Connection() *grpc.ClientConn {
func (c *assetGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/asset_group_asset_client.go b/clients/asset_group_asset_client.go
index 3c568b12..d035763d 100644
--- a/clients/asset_group_asset_client.go
+++ b/clients/asset_group_asset_client.go
@@ -183,7 +183,9 @@ func (c *assetGroupAssetGRPCClient) Connection() *grpc.ClientConn {
func (c *assetGroupAssetGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/asset_group_client.go b/clients/asset_group_client.go
index c9c6d444..3f2b1fb2 100644
--- a/clients/asset_group_client.go
+++ b/clients/asset_group_client.go
@@ -183,7 +183,9 @@ func (c *assetGroupGRPCClient) Connection() *grpc.ClientConn {
func (c *assetGroupGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/asset_group_listing_group_filter_client.go b/clients/asset_group_listing_group_filter_client.go
index 38ae8501..610b553d 100644
--- a/clients/asset_group_listing_group_filter_client.go
+++ b/clients/asset_group_listing_group_filter_client.go
@@ -183,7 +183,9 @@ func (c *assetGroupListingGroupFilterGRPCClient) Connection() *grpc.ClientConn {
func (c *assetGroupListingGroupFilterGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/asset_group_signal_client.go b/clients/asset_group_signal_client.go
index 2e748d5e..8993134d 100644
--- a/clients/asset_group_signal_client.go
+++ b/clients/asset_group_signal_client.go
@@ -183,7 +183,9 @@ func (c *assetGroupSignalGRPCClient) Connection() *grpc.ClientConn {
func (c *assetGroupSignalGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/asset_set_asset_client.go b/clients/asset_set_asset_client.go
index 84affcb3..7f0d182e 100644
--- a/clients/asset_set_asset_client.go
+++ b/clients/asset_set_asset_client.go
@@ -183,7 +183,9 @@ func (c *assetSetAssetGRPCClient) Connection() *grpc.ClientConn {
func (c *assetSetAssetGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/asset_set_client.go b/clients/asset_set_client.go
index 22b171fc..aa10d1ef 100644
--- a/clients/asset_set_client.go
+++ b/clients/asset_set_client.go
@@ -183,7 +183,9 @@ func (c *assetSetGRPCClient) Connection() *grpc.ClientConn {
func (c *assetSetGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/audience_client.go b/clients/audience_client.go
index b16a46c7..be9db970 100644
--- a/clients/audience_client.go
+++ b/clients/audience_client.go
@@ -185,7 +185,9 @@ func (c *audienceGRPCClient) Connection() *grpc.ClientConn {
func (c *audienceGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/audience_insights_client.go b/clients/audience_insights_client.go
index f9177ab3..d1887d4e 100644
--- a/clients/audience_insights_client.go
+++ b/clients/audience_insights_client.go
@@ -321,7 +321,9 @@ func (c *audienceInsightsGRPCClient) Connection() *grpc.ClientConn {
func (c *audienceInsightsGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/batch_job_client.go b/clients/batch_job_client.go
index ce973708..85bb35e5 100644
--- a/clients/batch_job_client.go
+++ b/clients/batch_job_client.go
@@ -317,7 +317,9 @@ func (c *batchJobGRPCClient) Connection() *grpc.ClientConn {
func (c *batchJobGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/bidding_data_exclusion_client.go b/clients/bidding_data_exclusion_client.go
index 1bb790fd..2a58ce4e 100644
--- a/clients/bidding_data_exclusion_client.go
+++ b/clients/bidding_data_exclusion_client.go
@@ -183,7 +183,9 @@ func (c *biddingDataExclusionGRPCClient) Connection() *grpc.ClientConn {
func (c *biddingDataExclusionGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/bidding_seasonality_adjustment_client.go b/clients/bidding_seasonality_adjustment_client.go
index 4dda0b89..0633ded3 100644
--- a/clients/bidding_seasonality_adjustment_client.go
+++ b/clients/bidding_seasonality_adjustment_client.go
@@ -183,7 +183,9 @@ func (c *biddingSeasonalityAdjustmentGRPCClient) Connection() *grpc.ClientConn {
func (c *biddingSeasonalityAdjustmentGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/bidding_strategy_client.go b/clients/bidding_strategy_client.go
index 2313d71b..e7f07a37 100644
--- a/clients/bidding_strategy_client.go
+++ b/clients/bidding_strategy_client.go
@@ -211,7 +211,9 @@ func (c *biddingStrategyGRPCClient) Connection() *grpc.ClientConn {
func (c *biddingStrategyGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/billing_setup_client.go b/clients/billing_setup_client.go
index a528292b..df33588f 100644
--- a/clients/billing_setup_client.go
+++ b/clients/billing_setup_client.go
@@ -210,7 +210,9 @@ func (c *billingSetupGRPCClient) Connection() *grpc.ClientConn {
func (c *billingSetupGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/brand_suggestion_client.go b/clients/brand_suggestion_client.go
index fee983ce..d2bbf246 100644
--- a/clients/brand_suggestion_client.go
+++ b/clients/brand_suggestion_client.go
@@ -183,7 +183,9 @@ func (c *brandSuggestionGRPCClient) Connection() *grpc.ClientConn {
func (c *brandSuggestionGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/campaign_asset_client.go b/clients/campaign_asset_client.go
index b2a17aba..c30dbedc 100644
--- a/clients/campaign_asset_client.go
+++ b/clients/campaign_asset_client.go
@@ -197,7 +197,9 @@ func (c *campaignAssetGRPCClient) Connection() *grpc.ClientConn {
func (c *campaignAssetGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/campaign_asset_set_client.go b/clients/campaign_asset_set_client.go
index 5b63e39f..d7c1175b 100644
--- a/clients/campaign_asset_set_client.go
+++ b/clients/campaign_asset_set_client.go
@@ -183,7 +183,9 @@ func (c *campaignAssetSetGRPCClient) Connection() *grpc.ClientConn {
func (c *campaignAssetSetGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/campaign_bid_modifier_client.go b/clients/campaign_bid_modifier_client.go
index 551b4195..d5b3fe5f 100644
--- a/clients/campaign_bid_modifier_client.go
+++ b/clients/campaign_bid_modifier_client.go
@@ -207,7 +207,9 @@ func (c *campaignBidModifierGRPCClient) Connection() *grpc.ClientConn {
func (c *campaignBidModifierGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/campaign_budget_client.go b/clients/campaign_budget_client.go
index d7e0bdf8..93ffcf8f 100644
--- a/clients/campaign_budget_client.go
+++ b/clients/campaign_budget_client.go
@@ -202,7 +202,9 @@ func (c *campaignBudgetGRPCClient) Connection() *grpc.ClientConn {
func (c *campaignBudgetGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/campaign_client.go b/clients/campaign_client.go
index b224f1ce..16953231 100644
--- a/clients/campaign_client.go
+++ b/clients/campaign_client.go
@@ -219,7 +219,9 @@ func (c *campaignGRPCClient) Connection() *grpc.ClientConn {
func (c *campaignGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/campaign_conversion_goal_client.go b/clients/campaign_conversion_goal_client.go
index eadfe619..3e6ecd53 100644
--- a/clients/campaign_conversion_goal_client.go
+++ b/clients/campaign_conversion_goal_client.go
@@ -183,7 +183,9 @@ func (c *campaignConversionGoalGRPCClient) Connection() *grpc.ClientConn {
func (c *campaignConversionGoalGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/campaign_criterion_client.go b/clients/campaign_criterion_client.go
index 9758b085..d3f968d2 100644
--- a/clients/campaign_criterion_client.go
+++ b/clients/campaign_criterion_client.go
@@ -213,7 +213,9 @@ func (c *campaignCriterionGRPCClient) Connection() *grpc.ClientConn {
func (c *campaignCriterionGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/campaign_customizer_client.go b/clients/campaign_customizer_client.go
index bc6ebff9..12b07f8c 100644
--- a/clients/campaign_customizer_client.go
+++ b/clients/campaign_customizer_client.go
@@ -183,7 +183,9 @@ func (c *campaignCustomizerGRPCClient) Connection() *grpc.ClientConn {
func (c *campaignCustomizerGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/campaign_draft_client.go b/clients/campaign_draft_client.go
index 75a8dbd4..69a79923 100644
--- a/clients/campaign_draft_client.go
+++ b/clients/campaign_draft_client.go
@@ -296,7 +296,9 @@ func (c *campaignDraftGRPCClient) Connection() *grpc.ClientConn {
func (c *campaignDraftGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/campaign_extension_setting_client.go b/clients/campaign_extension_setting_client.go
index d520b70d..50ab94d6 100644
--- a/clients/campaign_extension_setting_client.go
+++ b/clients/campaign_extension_setting_client.go
@@ -212,7 +212,9 @@ func (c *campaignExtensionSettingGRPCClient) Connection() *grpc.ClientConn {
func (c *campaignExtensionSettingGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/campaign_feed_client.go b/clients/campaign_feed_client.go
index 69fc6d1a..b8f34775 100644
--- a/clients/campaign_feed_client.go
+++ b/clients/campaign_feed_client.go
@@ -208,7 +208,9 @@ func (c *campaignFeedGRPCClient) Connection() *grpc.ClientConn {
func (c *campaignFeedGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/campaign_group_client.go b/clients/campaign_group_client.go
index edaecc2d..54d904fe 100644
--- a/clients/campaign_group_client.go
+++ b/clients/campaign_group_client.go
@@ -183,7 +183,9 @@ func (c *campaignGroupGRPCClient) Connection() *grpc.ClientConn {
func (c *campaignGroupGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/campaign_label_client.go b/clients/campaign_label_client.go
index ede5e38c..7c5ce8d9 100644
--- a/clients/campaign_label_client.go
+++ b/clients/campaign_label_client.go
@@ -196,7 +196,9 @@ func (c *campaignLabelGRPCClient) Connection() *grpc.ClientConn {
func (c *campaignLabelGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/campaign_lifecycle_goal_client.go b/clients/campaign_lifecycle_goal_client.go
index c7606320..94128270 100644
--- a/clients/campaign_lifecycle_goal_client.go
+++ b/clients/campaign_lifecycle_goal_client.go
@@ -191,7 +191,9 @@ func (c *campaignLifecycleGoalGRPCClient) Connection() *grpc.ClientConn {
func (c *campaignLifecycleGoalGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/campaign_shared_set_client.go b/clients/campaign_shared_set_client.go
index 2491858e..cb90c88a 100644
--- a/clients/campaign_shared_set_client.go
+++ b/clients/campaign_shared_set_client.go
@@ -206,7 +206,9 @@ func (c *campaignSharedSetGRPCClient) Connection() *grpc.ClientConn {
func (c *campaignSharedSetGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/conversion_action_client.go b/clients/conversion_action_client.go
index c8e70717..25d01f65 100644
--- a/clients/conversion_action_client.go
+++ b/clients/conversion_action_client.go
@@ -201,7 +201,9 @@ func (c *conversionActionGRPCClient) Connection() *grpc.ClientConn {
func (c *conversionActionGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/conversion_adjustment_upload_client.go b/clients/conversion_adjustment_upload_client.go
index e4a77c13..beec0929 100644
--- a/clients/conversion_adjustment_upload_client.go
+++ b/clients/conversion_adjustment_upload_client.go
@@ -191,7 +191,9 @@ func (c *conversionAdjustmentUploadGRPCClient) Connection() *grpc.ClientConn {
func (c *conversionAdjustmentUploadGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/conversion_custom_variable_client.go b/clients/conversion_custom_variable_client.go
index 91e7851c..9e3f78d6 100644
--- a/clients/conversion_custom_variable_client.go
+++ b/clients/conversion_custom_variable_client.go
@@ -193,7 +193,9 @@ func (c *conversionCustomVariableGRPCClient) Connection() *grpc.ClientConn {
func (c *conversionCustomVariableGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/conversion_goal_campaign_config_client.go b/clients/conversion_goal_campaign_config_client.go
index 28adf6fb..c62af507 100644
--- a/clients/conversion_goal_campaign_config_client.go
+++ b/clients/conversion_goal_campaign_config_client.go
@@ -183,7 +183,9 @@ func (c *conversionGoalCampaignConfigGRPCClient) Connection() *grpc.ClientConn {
func (c *conversionGoalCampaignConfigGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/conversion_upload_client.go b/clients/conversion_upload_client.go
index ae38f752..caf8a0da 100644
--- a/clients/conversion_upload_client.go
+++ b/clients/conversion_upload_client.go
@@ -221,7 +221,9 @@ func (c *conversionUploadGRPCClient) Connection() *grpc.ClientConn {
func (c *conversionUploadGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/conversion_value_rule_client.go b/clients/conversion_value_rule_client.go
index 91ba52d0..001b8877 100644
--- a/clients/conversion_value_rule_client.go
+++ b/clients/conversion_value_rule_client.go
@@ -183,7 +183,9 @@ func (c *conversionValueRuleGRPCClient) Connection() *grpc.ClientConn {
func (c *conversionValueRuleGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/conversion_value_rule_set_client.go b/clients/conversion_value_rule_set_client.go
index 9e6631fd..7a93caf2 100644
--- a/clients/conversion_value_rule_set_client.go
+++ b/clients/conversion_value_rule_set_client.go
@@ -183,7 +183,9 @@ func (c *conversionValueRuleSetGRPCClient) Connection() *grpc.ClientConn {
func (c *conversionValueRuleSetGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/custom_audience_client.go b/clients/custom_audience_client.go
index a3ed5bc2..aab97fd7 100644
--- a/clients/custom_audience_client.go
+++ b/clients/custom_audience_client.go
@@ -197,7 +197,9 @@ func (c *customAudienceGRPCClient) Connection() *grpc.ClientConn {
func (c *customAudienceGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/custom_conversion_goal_client.go b/clients/custom_conversion_goal_client.go
index f69d2f02..76bc1ebc 100644
--- a/clients/custom_conversion_goal_client.go
+++ b/clients/custom_conversion_goal_client.go
@@ -183,7 +183,9 @@ func (c *customConversionGoalGRPCClient) Connection() *grpc.ClientConn {
func (c *customConversionGoalGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/custom_interest_client.go b/clients/custom_interest_client.go
index 54a9ca17..61f8955b 100644
--- a/clients/custom_interest_client.go
+++ b/clients/custom_interest_client.go
@@ -195,7 +195,9 @@ func (c *customInterestGRPCClient) Connection() *grpc.ClientConn {
func (c *customInterestGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/customer_asset_client.go b/clients/customer_asset_client.go
index b8b7e91c..87262db8 100644
--- a/clients/customer_asset_client.go
+++ b/clients/customer_asset_client.go
@@ -194,7 +194,9 @@ func (c *customerAssetGRPCClient) Connection() *grpc.ClientConn {
func (c *customerAssetGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/customer_asset_set_client.go b/clients/customer_asset_set_client.go
index 36f0f52e..1a2f9c2e 100644
--- a/clients/customer_asset_set_client.go
+++ b/clients/customer_asset_set_client.go
@@ -183,7 +183,9 @@ func (c *customerAssetSetGRPCClient) Connection() *grpc.ClientConn {
func (c *customerAssetSetGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/customer_client.go b/clients/customer_client.go
index df207f33..d52193df 100644
--- a/clients/customer_client.go
+++ b/clients/customer_client.go
@@ -255,7 +255,9 @@ func (c *customerGRPCClient) Connection() *grpc.ClientConn {
func (c *customerGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/customer_client_link_client.go b/clients/customer_client_link_client.go
index b901f6f9..9fdede68 100644
--- a/clients/customer_client_link_client.go
+++ b/clients/customer_client_link_client.go
@@ -196,7 +196,9 @@ func (c *customerClientLinkGRPCClient) Connection() *grpc.ClientConn {
func (c *customerClientLinkGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/customer_conversion_goal_client.go b/clients/customer_conversion_goal_client.go
index 589cd007..2fac13f4 100644
--- a/clients/customer_conversion_goal_client.go
+++ b/clients/customer_conversion_goal_client.go
@@ -183,7 +183,9 @@ func (c *customerConversionGoalGRPCClient) Connection() *grpc.ClientConn {
func (c *customerConversionGoalGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/customer_customizer_client.go b/clients/customer_customizer_client.go
index eceab943..f20c7038 100644
--- a/clients/customer_customizer_client.go
+++ b/clients/customer_customizer_client.go
@@ -183,7 +183,9 @@ func (c *customerCustomizerGRPCClient) Connection() *grpc.ClientConn {
func (c *customerCustomizerGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/customer_extension_setting_client.go b/clients/customer_extension_setting_client.go
index 8a7d9fd0..85c80ce1 100644
--- a/clients/customer_extension_setting_client.go
+++ b/clients/customer_extension_setting_client.go
@@ -210,7 +210,9 @@ func (c *customerExtensionSettingGRPCClient) Connection() *grpc.ClientConn {
func (c *customerExtensionSettingGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/customer_feed_client.go b/clients/customer_feed_client.go
index 028892db..8b6efad7 100644
--- a/clients/customer_feed_client.go
+++ b/clients/customer_feed_client.go
@@ -207,7 +207,9 @@ func (c *customerFeedGRPCClient) Connection() *grpc.ClientConn {
func (c *customerFeedGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/customer_label_client.go b/clients/customer_label_client.go
index f33352df..56fbf182 100644
--- a/clients/customer_label_client.go
+++ b/clients/customer_label_client.go
@@ -194,7 +194,9 @@ func (c *customerLabelGRPCClient) Connection() *grpc.ClientConn {
func (c *customerLabelGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/customer_lifecycle_goal_client.go b/clients/customer_lifecycle_goal_client.go
index 70ffe110..62aabe6f 100644
--- a/clients/customer_lifecycle_goal_client.go
+++ b/clients/customer_lifecycle_goal_client.go
@@ -191,7 +191,9 @@ func (c *customerLifecycleGoalGRPCClient) Connection() *grpc.ClientConn {
func (c *customerLifecycleGoalGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/customer_manager_link_client.go b/clients/customer_manager_link_client.go
index 08992599..00d4db80 100644
--- a/clients/customer_manager_link_client.go
+++ b/clients/customer_manager_link_client.go
@@ -232,7 +232,9 @@ func (c *customerManagerLinkGRPCClient) Connection() *grpc.ClientConn {
func (c *customerManagerLinkGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/customer_negative_criterion_client.go b/clients/customer_negative_criterion_client.go
index 5efe241c..7c9b09f8 100644
--- a/clients/customer_negative_criterion_client.go
+++ b/clients/customer_negative_criterion_client.go
@@ -194,7 +194,9 @@ func (c *customerNegativeCriterionGRPCClient) Connection() *grpc.ClientConn {
func (c *customerNegativeCriterionGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/customer_sk_ad_network_conversion_value_schema_client.go b/clients/customer_sk_ad_network_conversion_value_schema_client.go
index 069accaf..5e10b4dc 100644
--- a/clients/customer_sk_ad_network_conversion_value_schema_client.go
+++ b/clients/customer_sk_ad_network_conversion_value_schema_client.go
@@ -189,7 +189,9 @@ func (c *customerSkAdNetworkConversionValueSchemaGRPCClient) Connection() *grpc.
func (c *customerSkAdNetworkConversionValueSchemaGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/customer_user_access_client.go b/clients/customer_user_access_client.go
index e729a431..ab63198b 100644
--- a/clients/customer_user_access_client.go
+++ b/clients/customer_user_access_client.go
@@ -194,7 +194,9 @@ func (c *customerUserAccessGRPCClient) Connection() *grpc.ClientConn {
func (c *customerUserAccessGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/customer_user_access_invitation_client.go b/clients/customer_user_access_invitation_client.go
index bf4d9ac1..b9e4db83 100644
--- a/clients/customer_user_access_invitation_client.go
+++ b/clients/customer_user_access_invitation_client.go
@@ -193,7 +193,9 @@ func (c *customerUserAccessInvitationGRPCClient) Connection() *grpc.ClientConn {
func (c *customerUserAccessInvitationGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/customizer_attribute_client.go b/clients/customizer_attribute_client.go
index 8024f237..2bbc64d2 100644
--- a/clients/customizer_attribute_client.go
+++ b/clients/customizer_attribute_client.go
@@ -183,7 +183,9 @@ func (c *customizerAttributeGRPCClient) Connection() *grpc.ClientConn {
func (c *customizerAttributeGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/doc.go b/clients/doc.go
index 756a5d01..9d4cc289 100644
--- a/clients/doc.go
+++ b/clients/doc.go
@@ -41,7 +41,7 @@
// // - 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://pkg.go.dev/cloud.google.com/go#hdr-Client_Options
-// c, err := clients.NewCustomerConversionGoalClient(ctx)
+// c, err := clients.NewConversionActionClient(ctx)
// if err != nil {
// // TODO: Handle error.
// }
@@ -61,17 +61,17 @@
// // - 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://pkg.go.dev/cloud.google.com/go#hdr-Client_Options
-// c, err := clients.NewCustomerConversionGoalClient(ctx)
+// c, err := clients.NewConversionActionClient(ctx)
// if err != nil {
// // TODO: Handle error.
// }
// defer c.Close()
//
-// req := &servicespb.MutateCustomerConversionGoalsRequest{
+// req := &servicespb.MutateConversionActionsRequest{
// // TODO: Fill request struct fields.
-// // See https://pkg.go.dev/github.com/shenzhencenter/google-ads-pb/services#MutateCustomerConversionGoalsRequest.
+// // See https://pkg.go.dev/github.com/shenzhencenter/google-ads-pb/services#MutateConversionActionsRequest.
// }
-// resp, err := c.MutateCustomerConversionGoals(ctx, req)
+// resp, err := c.MutateConversionActions(ctx, req)
// if err != nil {
// // TODO: Handle error.
// }
@@ -80,7 +80,7 @@
//
// # Use of Context
//
-// The ctx passed to NewCustomerConversionGoalClient is used for authentication requests and
+// The ctx passed to NewConversionActionClient is used for authentication requests and
// for creating the underlying connection, but is not used for subsequent calls.
// Individual methods on the client use the ctx given to them.
//
diff --git a/clients/experiment_arm_client.go b/clients/experiment_arm_client.go
index 18793436..70701e47 100644
--- a/clients/experiment_arm_client.go
+++ b/clients/experiment_arm_client.go
@@ -192,7 +192,9 @@ func (c *experimentArmGRPCClient) Connection() *grpc.ClientConn {
func (c *experimentArmGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/experiment_client.go b/clients/experiment_client.go
index c1112671..5b38e2f2 100644
--- a/clients/experiment_client.go
+++ b/clients/experiment_client.go
@@ -401,7 +401,9 @@ func (c *experimentGRPCClient) Connection() *grpc.ClientConn {
func (c *experimentGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/extension_feed_item_client.go b/clients/extension_feed_item_client.go
index 512fb3f9..9fe50abf 100644
--- a/clients/extension_feed_item_client.go
+++ b/clients/extension_feed_item_client.go
@@ -208,7 +208,9 @@ func (c *extensionFeedItemGRPCClient) Connection() *grpc.ClientConn {
func (c *extensionFeedItemGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/feed_client.go b/clients/feed_client.go
index 4cdba5f0..46cb4c45 100644
--- a/clients/feed_client.go
+++ b/clients/feed_client.go
@@ -209,7 +209,9 @@ func (c *feedGRPCClient) Connection() *grpc.ClientConn {
func (c *feedGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/feed_item_client.go b/clients/feed_item_client.go
index c4e1d35a..c21b907f 100644
--- a/clients/feed_item_client.go
+++ b/clients/feed_item_client.go
@@ -210,7 +210,9 @@ func (c *feedItemGRPCClient) Connection() *grpc.ClientConn {
func (c *feedItemGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/feed_item_set_client.go b/clients/feed_item_set_client.go
index b792b5e8..2d9336ae 100644
--- a/clients/feed_item_set_client.go
+++ b/clients/feed_item_set_client.go
@@ -192,7 +192,9 @@ func (c *feedItemSetGRPCClient) Connection() *grpc.ClientConn {
func (c *feedItemSetGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/feed_item_set_link_client.go b/clients/feed_item_set_link_client.go
index a1e8c64d..8cad1a96 100644
--- a/clients/feed_item_set_link_client.go
+++ b/clients/feed_item_set_link_client.go
@@ -190,7 +190,9 @@ func (c *feedItemSetLinkGRPCClient) Connection() *grpc.ClientConn {
func (c *feedItemSetLinkGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/feed_item_target_client.go b/clients/feed_item_target_client.go
index 16de6df6..7cb8380c 100644
--- a/clients/feed_item_target_client.go
+++ b/clients/feed_item_target_client.go
@@ -203,7 +203,9 @@ func (c *feedItemTargetGRPCClient) Connection() *grpc.ClientConn {
func (c *feedItemTargetGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/feed_mapping_client.go b/clients/feed_mapping_client.go
index edbf96e6..dbef29d9 100644
--- a/clients/feed_mapping_client.go
+++ b/clients/feed_mapping_client.go
@@ -204,7 +204,9 @@ func (c *feedMappingGRPCClient) Connection() *grpc.ClientConn {
func (c *feedMappingGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/geo_target_constant_client.go b/clients/geo_target_constant_client.go
index 3287a3a7..008ae734 100644
--- a/clients/geo_target_constant_client.go
+++ b/clients/geo_target_constant_client.go
@@ -189,7 +189,9 @@ func (c *geoTargetConstantGRPCClient) Connection() *grpc.ClientConn {
func (c *geoTargetConstantGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/google_ads_client.go b/clients/google_ads_client.go
index b2563a69..02a1f6c4 100644
--- a/clients/google_ads_client.go
+++ b/clients/google_ads_client.go
@@ -357,7 +357,9 @@ func (c *googleAdsGRPCClient) Connection() *grpc.ClientConn {
func (c *googleAdsGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/google_ads_field_client.go b/clients/google_ads_field_client.go
index b58154aa..40fa03d8 100644
--- a/clients/google_ads_field_client.go
+++ b/clients/google_ads_field_client.go
@@ -222,7 +222,9 @@ func (c *googleAdsFieldGRPCClient) Connection() *grpc.ClientConn {
func (c *googleAdsFieldGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/identity_verification_client.go b/clients/identity_verification_client.go
index ce6a5579..7345de04 100644
--- a/clients/identity_verification_client.go
+++ b/clients/identity_verification_client.go
@@ -219,7 +219,9 @@ func (c *identityVerificationGRPCClient) Connection() *grpc.ClientConn {
func (c *identityVerificationGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/internal/snippets/AdClient/GetAd/main.go b/clients/internal/snippets/LocalServicesLeadClient/AppendLeadConversation/main.go
similarity index 79%
rename from clients/internal/snippets/AdClient/GetAd/main.go
rename to clients/internal/snippets/LocalServicesLeadClient/AppendLeadConversation/main.go
index 3bd49085..9b6cda60 100644
--- a/clients/internal/snippets/AdClient/GetAd/main.go
+++ b/clients/internal/snippets/LocalServicesLeadClient/AppendLeadConversation/main.go
@@ -14,7 +14,7 @@
// Code generated by protoc-gen-go_gapic. DO NOT EDIT.
-// [START googleads_services_generated_AdService_GetAd_sync]
+// [START googleads_services_generated_LocalServicesLeadService_AppendLeadConversation_sync]
package main
@@ -32,17 +32,17 @@ func main() {
// - 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://pkg.go.dev/cloud.google.com/go#hdr-Client_Options
- c, err := clients.NewAdClient(ctx)
+ c, err := clients.NewLocalServicesLeadClient(ctx)
if err != nil {
// TODO: Handle error.
}
defer c.Close()
- req := &servicespb.GetAdRequest{
+ req := &servicespb.AppendLeadConversationRequest{
// TODO: Fill request struct fields.
- // See https://pkg.go.dev/github.com/shenzhencenter/google-ads-pb/services#GetAdRequest.
+ // See https://pkg.go.dev/github.com/shenzhencenter/google-ads-pb/services#AppendLeadConversationRequest.
}
- resp, err := c.GetAd(ctx, req)
+ resp, err := c.AppendLeadConversation(ctx, req)
if err != nil {
// TODO: Handle error.
}
@@ -50,4 +50,4 @@ func main() {
_ = resp
}
-// [END googleads_services_generated_AdService_GetAd_sync]
+// [END googleads_services_generated_LocalServicesLeadService_AppendLeadConversation_sync]
diff --git a/clients/internal/snippets/UserListCustomerTypeClient/MutateUserListCustomerTypes/main.go b/clients/internal/snippets/UserListCustomerTypeClient/MutateUserListCustomerTypes/main.go
new file mode 100644
index 00000000..d2b77175
--- /dev/null
+++ b/clients/internal/snippets/UserListCustomerTypeClient/MutateUserListCustomerTypes/main.go
@@ -0,0 +1,53 @@
+// Copyright 2024 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.
+
+// Code generated by protoc-gen-go_gapic. DO NOT EDIT.
+
+// [START googleads_services_generated_UserListCustomerTypeService_MutateUserListCustomerTypes_sync]
+
+package main
+
+import (
+ "context"
+ clients "github.com/shenzhencenter/google-ads-pb/clients"
+
+ servicespb "github.com/shenzhencenter/google-ads-pb/services"
+)
+
+func main() {
+ ctx := context.Background()
+ // 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://pkg.go.dev/cloud.google.com/go#hdr-Client_Options
+ c, err := clients.NewUserListCustomerTypeClient(ctx)
+ if err != nil {
+ // TODO: Handle error.
+ }
+ defer c.Close()
+
+ req := &servicespb.MutateUserListCustomerTypesRequest{
+ // TODO: Fill request struct fields.
+ // See https://pkg.go.dev/github.com/shenzhencenter/google-ads-pb/services#MutateUserListCustomerTypesRequest.
+ }
+ resp, err := c.MutateUserListCustomerTypes(ctx, req)
+ if err != nil {
+ // TODO: Handle error.
+ }
+ // TODO: Use resp.
+ _ = resp
+}
+
+// [END googleads_services_generated_UserListCustomerTypeService_MutateUserListCustomerTypes_sync]
diff --git a/clients/internal/snippets/snippet_metadata.google.ads.googleads.v16.services.json b/clients/internal/snippets/snippet_metadata.google.ads.googleads.v17.services.json
similarity index 85%
rename from clients/internal/snippets/snippet_metadata.google.ads.googleads.v16.services.json
rename to clients/internal/snippets/snippet_metadata.google.ads.googleads.v17.services.json
index 40029538..3ca457b0 100644
--- a/clients/internal/snippets/snippet_metadata.google.ads.googleads.v16.services.json
+++ b/clients/internal/snippets/snippet_metadata.google.ads.googleads.v17.services.json
@@ -5,7 +5,7 @@
"language": "GO",
"apis": [
{
- "id": "google.ads.googleads.v16.services",
+ "id": "google.ads.googleads.v17.services",
"version": "services"
}
]
@@ -19,7 +19,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAccountBudgetProposal",
- "fullName": "google.ads.googleads.v16.services.AccountBudgetProposalClient.MutateAccountBudgetProposal",
+ "fullName": "google.ads.googleads.v17.services.AccountBudgetProposalClient.MutateAccountBudgetProposal",
"parameters": [
{
"type": "context.Context",
@@ -37,14 +37,14 @@
"resultType": "*servicespb.MutateAccountBudgetProposalResponse",
"client": {
"shortName": "AccountBudgetProposalClient",
- "fullName": "google.ads.googleads.v16.services.AccountBudgetProposalClient"
+ "fullName": "google.ads.googleads.v17.services.AccountBudgetProposalClient"
},
"method": {
"shortName": "MutateAccountBudgetProposal",
- "fullName": "google.ads.googleads.v16.services.AccountBudgetProposalService.MutateAccountBudgetProposal",
+ "fullName": "google.ads.googleads.v17.services.AccountBudgetProposalService.MutateAccountBudgetProposal",
"service": {
"shortName": "AccountBudgetProposalService",
- "fullName": "google.ads.googleads.v16.services.AccountBudgetProposalService"
+ "fullName": "google.ads.googleads.v17.services.AccountBudgetProposalService"
}
}
},
@@ -65,7 +65,7 @@
"language": "GO",
"clientMethod": {
"shortName": "CreateAccountLink",
- "fullName": "google.ads.googleads.v16.services.AccountLinkClient.CreateAccountLink",
+ "fullName": "google.ads.googleads.v17.services.AccountLinkClient.CreateAccountLink",
"parameters": [
{
"type": "context.Context",
@@ -83,14 +83,14 @@
"resultType": "*servicespb.CreateAccountLinkResponse",
"client": {
"shortName": "AccountLinkClient",
- "fullName": "google.ads.googleads.v16.services.AccountLinkClient"
+ "fullName": "google.ads.googleads.v17.services.AccountLinkClient"
},
"method": {
"shortName": "CreateAccountLink",
- "fullName": "google.ads.googleads.v16.services.AccountLinkService.CreateAccountLink",
+ "fullName": "google.ads.googleads.v17.services.AccountLinkService.CreateAccountLink",
"service": {
"shortName": "AccountLinkService",
- "fullName": "google.ads.googleads.v16.services.AccountLinkService"
+ "fullName": "google.ads.googleads.v17.services.AccountLinkService"
}
}
},
@@ -111,7 +111,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAccountLink",
- "fullName": "google.ads.googleads.v16.services.AccountLinkClient.MutateAccountLink",
+ "fullName": "google.ads.googleads.v17.services.AccountLinkClient.MutateAccountLink",
"parameters": [
{
"type": "context.Context",
@@ -129,14 +129,14 @@
"resultType": "*servicespb.MutateAccountLinkResponse",
"client": {
"shortName": "AccountLinkClient",
- "fullName": "google.ads.googleads.v16.services.AccountLinkClient"
+ "fullName": "google.ads.googleads.v17.services.AccountLinkClient"
},
"method": {
"shortName": "MutateAccountLink",
- "fullName": "google.ads.googleads.v16.services.AccountLinkService.MutateAccountLink",
+ "fullName": "google.ads.googleads.v17.services.AccountLinkService.MutateAccountLink",
"service": {
"shortName": "AccountLinkService",
- "fullName": "google.ads.googleads.v16.services.AccountLinkService"
+ "fullName": "google.ads.googleads.v17.services.AccountLinkService"
}
}
},
@@ -157,7 +157,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAdGroupAdLabels",
- "fullName": "google.ads.googleads.v16.services.AdGroupAdLabelClient.MutateAdGroupAdLabels",
+ "fullName": "google.ads.googleads.v17.services.AdGroupAdLabelClient.MutateAdGroupAdLabels",
"parameters": [
{
"type": "context.Context",
@@ -175,14 +175,14 @@
"resultType": "*servicespb.MutateAdGroupAdLabelsResponse",
"client": {
"shortName": "AdGroupAdLabelClient",
- "fullName": "google.ads.googleads.v16.services.AdGroupAdLabelClient"
+ "fullName": "google.ads.googleads.v17.services.AdGroupAdLabelClient"
},
"method": {
"shortName": "MutateAdGroupAdLabels",
- "fullName": "google.ads.googleads.v16.services.AdGroupAdLabelService.MutateAdGroupAdLabels",
+ "fullName": "google.ads.googleads.v17.services.AdGroupAdLabelService.MutateAdGroupAdLabels",
"service": {
"shortName": "AdGroupAdLabelService",
- "fullName": "google.ads.googleads.v16.services.AdGroupAdLabelService"
+ "fullName": "google.ads.googleads.v17.services.AdGroupAdLabelService"
}
}
},
@@ -203,7 +203,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAdGroupAds",
- "fullName": "google.ads.googleads.v16.services.AdGroupAdClient.MutateAdGroupAds",
+ "fullName": "google.ads.googleads.v17.services.AdGroupAdClient.MutateAdGroupAds",
"parameters": [
{
"type": "context.Context",
@@ -221,14 +221,14 @@
"resultType": "*servicespb.MutateAdGroupAdsResponse",
"client": {
"shortName": "AdGroupAdClient",
- "fullName": "google.ads.googleads.v16.services.AdGroupAdClient"
+ "fullName": "google.ads.googleads.v17.services.AdGroupAdClient"
},
"method": {
"shortName": "MutateAdGroupAds",
- "fullName": "google.ads.googleads.v16.services.AdGroupAdService.MutateAdGroupAds",
+ "fullName": "google.ads.googleads.v17.services.AdGroupAdService.MutateAdGroupAds",
"service": {
"shortName": "AdGroupAdService",
- "fullName": "google.ads.googleads.v16.services.AdGroupAdService"
+ "fullName": "google.ads.googleads.v17.services.AdGroupAdService"
}
}
},
@@ -249,7 +249,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAdGroupAssets",
- "fullName": "google.ads.googleads.v16.services.AdGroupAssetClient.MutateAdGroupAssets",
+ "fullName": "google.ads.googleads.v17.services.AdGroupAssetClient.MutateAdGroupAssets",
"parameters": [
{
"type": "context.Context",
@@ -267,14 +267,14 @@
"resultType": "*servicespb.MutateAdGroupAssetsResponse",
"client": {
"shortName": "AdGroupAssetClient",
- "fullName": "google.ads.googleads.v16.services.AdGroupAssetClient"
+ "fullName": "google.ads.googleads.v17.services.AdGroupAssetClient"
},
"method": {
"shortName": "MutateAdGroupAssets",
- "fullName": "google.ads.googleads.v16.services.AdGroupAssetService.MutateAdGroupAssets",
+ "fullName": "google.ads.googleads.v17.services.AdGroupAssetService.MutateAdGroupAssets",
"service": {
"shortName": "AdGroupAssetService",
- "fullName": "google.ads.googleads.v16.services.AdGroupAssetService"
+ "fullName": "google.ads.googleads.v17.services.AdGroupAssetService"
}
}
},
@@ -295,7 +295,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAdGroupAssetSets",
- "fullName": "google.ads.googleads.v16.services.AdGroupAssetSetClient.MutateAdGroupAssetSets",
+ "fullName": "google.ads.googleads.v17.services.AdGroupAssetSetClient.MutateAdGroupAssetSets",
"parameters": [
{
"type": "context.Context",
@@ -313,14 +313,14 @@
"resultType": "*servicespb.MutateAdGroupAssetSetsResponse",
"client": {
"shortName": "AdGroupAssetSetClient",
- "fullName": "google.ads.googleads.v16.services.AdGroupAssetSetClient"
+ "fullName": "google.ads.googleads.v17.services.AdGroupAssetSetClient"
},
"method": {
"shortName": "MutateAdGroupAssetSets",
- "fullName": "google.ads.googleads.v16.services.AdGroupAssetSetService.MutateAdGroupAssetSets",
+ "fullName": "google.ads.googleads.v17.services.AdGroupAssetSetService.MutateAdGroupAssetSets",
"service": {
"shortName": "AdGroupAssetSetService",
- "fullName": "google.ads.googleads.v16.services.AdGroupAssetSetService"
+ "fullName": "google.ads.googleads.v17.services.AdGroupAssetSetService"
}
}
},
@@ -341,7 +341,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAdGroupBidModifiers",
- "fullName": "google.ads.googleads.v16.services.AdGroupBidModifierClient.MutateAdGroupBidModifiers",
+ "fullName": "google.ads.googleads.v17.services.AdGroupBidModifierClient.MutateAdGroupBidModifiers",
"parameters": [
{
"type": "context.Context",
@@ -359,14 +359,14 @@
"resultType": "*servicespb.MutateAdGroupBidModifiersResponse",
"client": {
"shortName": "AdGroupBidModifierClient",
- "fullName": "google.ads.googleads.v16.services.AdGroupBidModifierClient"
+ "fullName": "google.ads.googleads.v17.services.AdGroupBidModifierClient"
},
"method": {
"shortName": "MutateAdGroupBidModifiers",
- "fullName": "google.ads.googleads.v16.services.AdGroupBidModifierService.MutateAdGroupBidModifiers",
+ "fullName": "google.ads.googleads.v17.services.AdGroupBidModifierService.MutateAdGroupBidModifiers",
"service": {
"shortName": "AdGroupBidModifierService",
- "fullName": "google.ads.googleads.v16.services.AdGroupBidModifierService"
+ "fullName": "google.ads.googleads.v17.services.AdGroupBidModifierService"
}
}
},
@@ -387,7 +387,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAdGroupCriterionCustomizers",
- "fullName": "google.ads.googleads.v16.services.AdGroupCriterionCustomizerClient.MutateAdGroupCriterionCustomizers",
+ "fullName": "google.ads.googleads.v17.services.AdGroupCriterionCustomizerClient.MutateAdGroupCriterionCustomizers",
"parameters": [
{
"type": "context.Context",
@@ -405,14 +405,14 @@
"resultType": "*servicespb.MutateAdGroupCriterionCustomizersResponse",
"client": {
"shortName": "AdGroupCriterionCustomizerClient",
- "fullName": "google.ads.googleads.v16.services.AdGroupCriterionCustomizerClient"
+ "fullName": "google.ads.googleads.v17.services.AdGroupCriterionCustomizerClient"
},
"method": {
"shortName": "MutateAdGroupCriterionCustomizers",
- "fullName": "google.ads.googleads.v16.services.AdGroupCriterionCustomizerService.MutateAdGroupCriterionCustomizers",
+ "fullName": "google.ads.googleads.v17.services.AdGroupCriterionCustomizerService.MutateAdGroupCriterionCustomizers",
"service": {
"shortName": "AdGroupCriterionCustomizerService",
- "fullName": "google.ads.googleads.v16.services.AdGroupCriterionCustomizerService"
+ "fullName": "google.ads.googleads.v17.services.AdGroupCriterionCustomizerService"
}
}
},
@@ -433,7 +433,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAdGroupCriterionLabels",
- "fullName": "google.ads.googleads.v16.services.AdGroupCriterionLabelClient.MutateAdGroupCriterionLabels",
+ "fullName": "google.ads.googleads.v17.services.AdGroupCriterionLabelClient.MutateAdGroupCriterionLabels",
"parameters": [
{
"type": "context.Context",
@@ -451,14 +451,14 @@
"resultType": "*servicespb.MutateAdGroupCriterionLabelsResponse",
"client": {
"shortName": "AdGroupCriterionLabelClient",
- "fullName": "google.ads.googleads.v16.services.AdGroupCriterionLabelClient"
+ "fullName": "google.ads.googleads.v17.services.AdGroupCriterionLabelClient"
},
"method": {
"shortName": "MutateAdGroupCriterionLabels",
- "fullName": "google.ads.googleads.v16.services.AdGroupCriterionLabelService.MutateAdGroupCriterionLabels",
+ "fullName": "google.ads.googleads.v17.services.AdGroupCriterionLabelService.MutateAdGroupCriterionLabels",
"service": {
"shortName": "AdGroupCriterionLabelService",
- "fullName": "google.ads.googleads.v16.services.AdGroupCriterionLabelService"
+ "fullName": "google.ads.googleads.v17.services.AdGroupCriterionLabelService"
}
}
},
@@ -479,7 +479,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAdGroupCriteria",
- "fullName": "google.ads.googleads.v16.services.AdGroupCriterionClient.MutateAdGroupCriteria",
+ "fullName": "google.ads.googleads.v17.services.AdGroupCriterionClient.MutateAdGroupCriteria",
"parameters": [
{
"type": "context.Context",
@@ -497,14 +497,14 @@
"resultType": "*servicespb.MutateAdGroupCriteriaResponse",
"client": {
"shortName": "AdGroupCriterionClient",
- "fullName": "google.ads.googleads.v16.services.AdGroupCriterionClient"
+ "fullName": "google.ads.googleads.v17.services.AdGroupCriterionClient"
},
"method": {
"shortName": "MutateAdGroupCriteria",
- "fullName": "google.ads.googleads.v16.services.AdGroupCriterionService.MutateAdGroupCriteria",
+ "fullName": "google.ads.googleads.v17.services.AdGroupCriterionService.MutateAdGroupCriteria",
"service": {
"shortName": "AdGroupCriterionService",
- "fullName": "google.ads.googleads.v16.services.AdGroupCriterionService"
+ "fullName": "google.ads.googleads.v17.services.AdGroupCriterionService"
}
}
},
@@ -525,7 +525,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAdGroupCustomizers",
- "fullName": "google.ads.googleads.v16.services.AdGroupCustomizerClient.MutateAdGroupCustomizers",
+ "fullName": "google.ads.googleads.v17.services.AdGroupCustomizerClient.MutateAdGroupCustomizers",
"parameters": [
{
"type": "context.Context",
@@ -543,14 +543,14 @@
"resultType": "*servicespb.MutateAdGroupCustomizersResponse",
"client": {
"shortName": "AdGroupCustomizerClient",
- "fullName": "google.ads.googleads.v16.services.AdGroupCustomizerClient"
+ "fullName": "google.ads.googleads.v17.services.AdGroupCustomizerClient"
},
"method": {
"shortName": "MutateAdGroupCustomizers",
- "fullName": "google.ads.googleads.v16.services.AdGroupCustomizerService.MutateAdGroupCustomizers",
+ "fullName": "google.ads.googleads.v17.services.AdGroupCustomizerService.MutateAdGroupCustomizers",
"service": {
"shortName": "AdGroupCustomizerService",
- "fullName": "google.ads.googleads.v16.services.AdGroupCustomizerService"
+ "fullName": "google.ads.googleads.v17.services.AdGroupCustomizerService"
}
}
},
@@ -571,7 +571,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAdGroupExtensionSettings",
- "fullName": "google.ads.googleads.v16.services.AdGroupExtensionSettingClient.MutateAdGroupExtensionSettings",
+ "fullName": "google.ads.googleads.v17.services.AdGroupExtensionSettingClient.MutateAdGroupExtensionSettings",
"parameters": [
{
"type": "context.Context",
@@ -589,14 +589,14 @@
"resultType": "*servicespb.MutateAdGroupExtensionSettingsResponse",
"client": {
"shortName": "AdGroupExtensionSettingClient",
- "fullName": "google.ads.googleads.v16.services.AdGroupExtensionSettingClient"
+ "fullName": "google.ads.googleads.v17.services.AdGroupExtensionSettingClient"
},
"method": {
"shortName": "MutateAdGroupExtensionSettings",
- "fullName": "google.ads.googleads.v16.services.AdGroupExtensionSettingService.MutateAdGroupExtensionSettings",
+ "fullName": "google.ads.googleads.v17.services.AdGroupExtensionSettingService.MutateAdGroupExtensionSettings",
"service": {
"shortName": "AdGroupExtensionSettingService",
- "fullName": "google.ads.googleads.v16.services.AdGroupExtensionSettingService"
+ "fullName": "google.ads.googleads.v17.services.AdGroupExtensionSettingService"
}
}
},
@@ -617,7 +617,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAdGroupFeeds",
- "fullName": "google.ads.googleads.v16.services.AdGroupFeedClient.MutateAdGroupFeeds",
+ "fullName": "google.ads.googleads.v17.services.AdGroupFeedClient.MutateAdGroupFeeds",
"parameters": [
{
"type": "context.Context",
@@ -635,14 +635,14 @@
"resultType": "*servicespb.MutateAdGroupFeedsResponse",
"client": {
"shortName": "AdGroupFeedClient",
- "fullName": "google.ads.googleads.v16.services.AdGroupFeedClient"
+ "fullName": "google.ads.googleads.v17.services.AdGroupFeedClient"
},
"method": {
"shortName": "MutateAdGroupFeeds",
- "fullName": "google.ads.googleads.v16.services.AdGroupFeedService.MutateAdGroupFeeds",
+ "fullName": "google.ads.googleads.v17.services.AdGroupFeedService.MutateAdGroupFeeds",
"service": {
"shortName": "AdGroupFeedService",
- "fullName": "google.ads.googleads.v16.services.AdGroupFeedService"
+ "fullName": "google.ads.googleads.v17.services.AdGroupFeedService"
}
}
},
@@ -663,7 +663,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAdGroupLabels",
- "fullName": "google.ads.googleads.v16.services.AdGroupLabelClient.MutateAdGroupLabels",
+ "fullName": "google.ads.googleads.v17.services.AdGroupLabelClient.MutateAdGroupLabels",
"parameters": [
{
"type": "context.Context",
@@ -681,14 +681,14 @@
"resultType": "*servicespb.MutateAdGroupLabelsResponse",
"client": {
"shortName": "AdGroupLabelClient",
- "fullName": "google.ads.googleads.v16.services.AdGroupLabelClient"
+ "fullName": "google.ads.googleads.v17.services.AdGroupLabelClient"
},
"method": {
"shortName": "MutateAdGroupLabels",
- "fullName": "google.ads.googleads.v16.services.AdGroupLabelService.MutateAdGroupLabels",
+ "fullName": "google.ads.googleads.v17.services.AdGroupLabelService.MutateAdGroupLabels",
"service": {
"shortName": "AdGroupLabelService",
- "fullName": "google.ads.googleads.v16.services.AdGroupLabelService"
+ "fullName": "google.ads.googleads.v17.services.AdGroupLabelService"
}
}
},
@@ -709,7 +709,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAdGroups",
- "fullName": "google.ads.googleads.v16.services.AdGroupClient.MutateAdGroups",
+ "fullName": "google.ads.googleads.v17.services.AdGroupClient.MutateAdGroups",
"parameters": [
{
"type": "context.Context",
@@ -727,14 +727,14 @@
"resultType": "*servicespb.MutateAdGroupsResponse",
"client": {
"shortName": "AdGroupClient",
- "fullName": "google.ads.googleads.v16.services.AdGroupClient"
+ "fullName": "google.ads.googleads.v17.services.AdGroupClient"
},
"method": {
"shortName": "MutateAdGroups",
- "fullName": "google.ads.googleads.v16.services.AdGroupService.MutateAdGroups",
+ "fullName": "google.ads.googleads.v17.services.AdGroupService.MutateAdGroups",
"service": {
"shortName": "AdGroupService",
- "fullName": "google.ads.googleads.v16.services.AdGroupService"
+ "fullName": "google.ads.googleads.v17.services.AdGroupService"
}
}
},
@@ -755,7 +755,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAdParameters",
- "fullName": "google.ads.googleads.v16.services.AdParameterClient.MutateAdParameters",
+ "fullName": "google.ads.googleads.v17.services.AdParameterClient.MutateAdParameters",
"parameters": [
{
"type": "context.Context",
@@ -773,60 +773,14 @@
"resultType": "*servicespb.MutateAdParametersResponse",
"client": {
"shortName": "AdParameterClient",
- "fullName": "google.ads.googleads.v16.services.AdParameterClient"
+ "fullName": "google.ads.googleads.v17.services.AdParameterClient"
},
"method": {
"shortName": "MutateAdParameters",
- "fullName": "google.ads.googleads.v16.services.AdParameterService.MutateAdParameters",
+ "fullName": "google.ads.googleads.v17.services.AdParameterService.MutateAdParameters",
"service": {
"shortName": "AdParameterService",
- "fullName": "google.ads.googleads.v16.services.AdParameterService"
- }
- }
- },
- "origin": "API_DEFINITION",
- "segments": [
- {
- "start": 18,
- "end": 53,
- "type": "FULL"
- }
- ]
- },
- {
- "regionTag": "googleads_services_generated_AdService_GetAd_sync",
- "title": "googleads GetAd Sample",
- "description": "GetAd returns the requested ad in full detail.\n\nList of thrown errors: \n[AuthenticationError]()\n[AuthorizationError]()\n[HeaderError]()\n[InternalError]()\n[QuotaError]()\n[RequestError]()",
- "file": "AdClient/GetAd/main.go",
- "language": "GO",
- "clientMethod": {
- "shortName": "GetAd",
- "fullName": "google.ads.googleads.v16.services.AdClient.GetAd",
- "parameters": [
- {
- "type": "context.Context",
- "name": "ctx"
- },
- {
- "type": "servicespb.GetAdRequest",
- "name": "req"
- },
- {
- "type": "...gax.CallOption",
- "name": "opts"
- }
- ],
- "resultType": "*resourcespb.Ad",
- "client": {
- "shortName": "AdClient",
- "fullName": "google.ads.googleads.v16.services.AdClient"
- },
- "method": {
- "shortName": "GetAd",
- "fullName": "google.ads.googleads.v16.services.AdService.GetAd",
- "service": {
- "shortName": "AdService",
- "fullName": "google.ads.googleads.v16.services.AdService"
+ "fullName": "google.ads.googleads.v17.services.AdParameterService"
}
}
},
@@ -847,7 +801,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAds",
- "fullName": "google.ads.googleads.v16.services.AdClient.MutateAds",
+ "fullName": "google.ads.googleads.v17.services.AdClient.MutateAds",
"parameters": [
{
"type": "context.Context",
@@ -865,14 +819,14 @@
"resultType": "*servicespb.MutateAdsResponse",
"client": {
"shortName": "AdClient",
- "fullName": "google.ads.googleads.v16.services.AdClient"
+ "fullName": "google.ads.googleads.v17.services.AdClient"
},
"method": {
"shortName": "MutateAds",
- "fullName": "google.ads.googleads.v16.services.AdService.MutateAds",
+ "fullName": "google.ads.googleads.v17.services.AdService.MutateAds",
"service": {
"shortName": "AdService",
- "fullName": "google.ads.googleads.v16.services.AdService"
+ "fullName": "google.ads.googleads.v17.services.AdService"
}
}
},
@@ -893,7 +847,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAssetGroupAssets",
- "fullName": "google.ads.googleads.v16.services.AssetGroupAssetClient.MutateAssetGroupAssets",
+ "fullName": "google.ads.googleads.v17.services.AssetGroupAssetClient.MutateAssetGroupAssets",
"parameters": [
{
"type": "context.Context",
@@ -911,14 +865,14 @@
"resultType": "*servicespb.MutateAssetGroupAssetsResponse",
"client": {
"shortName": "AssetGroupAssetClient",
- "fullName": "google.ads.googleads.v16.services.AssetGroupAssetClient"
+ "fullName": "google.ads.googleads.v17.services.AssetGroupAssetClient"
},
"method": {
"shortName": "MutateAssetGroupAssets",
- "fullName": "google.ads.googleads.v16.services.AssetGroupAssetService.MutateAssetGroupAssets",
+ "fullName": "google.ads.googleads.v17.services.AssetGroupAssetService.MutateAssetGroupAssets",
"service": {
"shortName": "AssetGroupAssetService",
- "fullName": "google.ads.googleads.v16.services.AssetGroupAssetService"
+ "fullName": "google.ads.googleads.v17.services.AssetGroupAssetService"
}
}
},
@@ -939,7 +893,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAssetGroupListingGroupFilters",
- "fullName": "google.ads.googleads.v16.services.AssetGroupListingGroupFilterClient.MutateAssetGroupListingGroupFilters",
+ "fullName": "google.ads.googleads.v17.services.AssetGroupListingGroupFilterClient.MutateAssetGroupListingGroupFilters",
"parameters": [
{
"type": "context.Context",
@@ -957,14 +911,14 @@
"resultType": "*servicespb.MutateAssetGroupListingGroupFiltersResponse",
"client": {
"shortName": "AssetGroupListingGroupFilterClient",
- "fullName": "google.ads.googleads.v16.services.AssetGroupListingGroupFilterClient"
+ "fullName": "google.ads.googleads.v17.services.AssetGroupListingGroupFilterClient"
},
"method": {
"shortName": "MutateAssetGroupListingGroupFilters",
- "fullName": "google.ads.googleads.v16.services.AssetGroupListingGroupFilterService.MutateAssetGroupListingGroupFilters",
+ "fullName": "google.ads.googleads.v17.services.AssetGroupListingGroupFilterService.MutateAssetGroupListingGroupFilters",
"service": {
"shortName": "AssetGroupListingGroupFilterService",
- "fullName": "google.ads.googleads.v16.services.AssetGroupListingGroupFilterService"
+ "fullName": "google.ads.googleads.v17.services.AssetGroupListingGroupFilterService"
}
}
},
@@ -985,7 +939,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAssetGroups",
- "fullName": "google.ads.googleads.v16.services.AssetGroupClient.MutateAssetGroups",
+ "fullName": "google.ads.googleads.v17.services.AssetGroupClient.MutateAssetGroups",
"parameters": [
{
"type": "context.Context",
@@ -1003,14 +957,14 @@
"resultType": "*servicespb.MutateAssetGroupsResponse",
"client": {
"shortName": "AssetGroupClient",
- "fullName": "google.ads.googleads.v16.services.AssetGroupClient"
+ "fullName": "google.ads.googleads.v17.services.AssetGroupClient"
},
"method": {
"shortName": "MutateAssetGroups",
- "fullName": "google.ads.googleads.v16.services.AssetGroupService.MutateAssetGroups",
+ "fullName": "google.ads.googleads.v17.services.AssetGroupService.MutateAssetGroups",
"service": {
"shortName": "AssetGroupService",
- "fullName": "google.ads.googleads.v16.services.AssetGroupService"
+ "fullName": "google.ads.googleads.v17.services.AssetGroupService"
}
}
},
@@ -1031,7 +985,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAssetGroupSignals",
- "fullName": "google.ads.googleads.v16.services.AssetGroupSignalClient.MutateAssetGroupSignals",
+ "fullName": "google.ads.googleads.v17.services.AssetGroupSignalClient.MutateAssetGroupSignals",
"parameters": [
{
"type": "context.Context",
@@ -1049,14 +1003,14 @@
"resultType": "*servicespb.MutateAssetGroupSignalsResponse",
"client": {
"shortName": "AssetGroupSignalClient",
- "fullName": "google.ads.googleads.v16.services.AssetGroupSignalClient"
+ "fullName": "google.ads.googleads.v17.services.AssetGroupSignalClient"
},
"method": {
"shortName": "MutateAssetGroupSignals",
- "fullName": "google.ads.googleads.v16.services.AssetGroupSignalService.MutateAssetGroupSignals",
+ "fullName": "google.ads.googleads.v17.services.AssetGroupSignalService.MutateAssetGroupSignals",
"service": {
"shortName": "AssetGroupSignalService",
- "fullName": "google.ads.googleads.v16.services.AssetGroupSignalService"
+ "fullName": "google.ads.googleads.v17.services.AssetGroupSignalService"
}
}
},
@@ -1077,7 +1031,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAssets",
- "fullName": "google.ads.googleads.v16.services.AssetClient.MutateAssets",
+ "fullName": "google.ads.googleads.v17.services.AssetClient.MutateAssets",
"parameters": [
{
"type": "context.Context",
@@ -1095,14 +1049,14 @@
"resultType": "*servicespb.MutateAssetsResponse",
"client": {
"shortName": "AssetClient",
- "fullName": "google.ads.googleads.v16.services.AssetClient"
+ "fullName": "google.ads.googleads.v17.services.AssetClient"
},
"method": {
"shortName": "MutateAssets",
- "fullName": "google.ads.googleads.v16.services.AssetService.MutateAssets",
+ "fullName": "google.ads.googleads.v17.services.AssetService.MutateAssets",
"service": {
"shortName": "AssetService",
- "fullName": "google.ads.googleads.v16.services.AssetService"
+ "fullName": "google.ads.googleads.v17.services.AssetService"
}
}
},
@@ -1123,7 +1077,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAssetSetAssets",
- "fullName": "google.ads.googleads.v16.services.AssetSetAssetClient.MutateAssetSetAssets",
+ "fullName": "google.ads.googleads.v17.services.AssetSetAssetClient.MutateAssetSetAssets",
"parameters": [
{
"type": "context.Context",
@@ -1141,14 +1095,14 @@
"resultType": "*servicespb.MutateAssetSetAssetsResponse",
"client": {
"shortName": "AssetSetAssetClient",
- "fullName": "google.ads.googleads.v16.services.AssetSetAssetClient"
+ "fullName": "google.ads.googleads.v17.services.AssetSetAssetClient"
},
"method": {
"shortName": "MutateAssetSetAssets",
- "fullName": "google.ads.googleads.v16.services.AssetSetAssetService.MutateAssetSetAssets",
+ "fullName": "google.ads.googleads.v17.services.AssetSetAssetService.MutateAssetSetAssets",
"service": {
"shortName": "AssetSetAssetService",
- "fullName": "google.ads.googleads.v16.services.AssetSetAssetService"
+ "fullName": "google.ads.googleads.v17.services.AssetSetAssetService"
}
}
},
@@ -1169,7 +1123,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAssetSets",
- "fullName": "google.ads.googleads.v16.services.AssetSetClient.MutateAssetSets",
+ "fullName": "google.ads.googleads.v17.services.AssetSetClient.MutateAssetSets",
"parameters": [
{
"type": "context.Context",
@@ -1187,14 +1141,14 @@
"resultType": "*servicespb.MutateAssetSetsResponse",
"client": {
"shortName": "AssetSetClient",
- "fullName": "google.ads.googleads.v16.services.AssetSetClient"
+ "fullName": "google.ads.googleads.v17.services.AssetSetClient"
},
"method": {
"shortName": "MutateAssetSets",
- "fullName": "google.ads.googleads.v16.services.AssetSetService.MutateAssetSets",
+ "fullName": "google.ads.googleads.v17.services.AssetSetService.MutateAssetSets",
"service": {
"shortName": "AssetSetService",
- "fullName": "google.ads.googleads.v16.services.AssetSetService"
+ "fullName": "google.ads.googleads.v17.services.AssetSetService"
}
}
},
@@ -1215,7 +1169,7 @@
"language": "GO",
"clientMethod": {
"shortName": "GenerateAudienceCompositionInsights",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsClient.GenerateAudienceCompositionInsights",
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsClient.GenerateAudienceCompositionInsights",
"parameters": [
{
"type": "context.Context",
@@ -1233,14 +1187,14 @@
"resultType": "*servicespb.GenerateAudienceCompositionInsightsResponse",
"client": {
"shortName": "AudienceInsightsClient",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsClient"
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsClient"
},
"method": {
"shortName": "GenerateAudienceCompositionInsights",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsService.GenerateAudienceCompositionInsights",
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsService.GenerateAudienceCompositionInsights",
"service": {
"shortName": "AudienceInsightsService",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsService"
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsService"
}
}
},
@@ -1261,7 +1215,7 @@
"language": "GO",
"clientMethod": {
"shortName": "GenerateInsightsFinderReport",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsClient.GenerateInsightsFinderReport",
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsClient.GenerateInsightsFinderReport",
"parameters": [
{
"type": "context.Context",
@@ -1279,14 +1233,14 @@
"resultType": "*servicespb.GenerateInsightsFinderReportResponse",
"client": {
"shortName": "AudienceInsightsClient",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsClient"
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsClient"
},
"method": {
"shortName": "GenerateInsightsFinderReport",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsService.GenerateInsightsFinderReport",
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsService.GenerateInsightsFinderReport",
"service": {
"shortName": "AudienceInsightsService",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsService"
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsService"
}
}
},
@@ -1307,7 +1261,7 @@
"language": "GO",
"clientMethod": {
"shortName": "GenerateSuggestedTargetingInsights",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsClient.GenerateSuggestedTargetingInsights",
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsClient.GenerateSuggestedTargetingInsights",
"parameters": [
{
"type": "context.Context",
@@ -1325,14 +1279,14 @@
"resultType": "*servicespb.GenerateSuggestedTargetingInsightsResponse",
"client": {
"shortName": "AudienceInsightsClient",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsClient"
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsClient"
},
"method": {
"shortName": "GenerateSuggestedTargetingInsights",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsService.GenerateSuggestedTargetingInsights",
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsService.GenerateSuggestedTargetingInsights",
"service": {
"shortName": "AudienceInsightsService",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsService"
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsService"
}
}
},
@@ -1353,7 +1307,7 @@
"language": "GO",
"clientMethod": {
"shortName": "ListAudienceInsightsAttributes",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsClient.ListAudienceInsightsAttributes",
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsClient.ListAudienceInsightsAttributes",
"parameters": [
{
"type": "context.Context",
@@ -1371,14 +1325,14 @@
"resultType": "*servicespb.ListAudienceInsightsAttributesResponse",
"client": {
"shortName": "AudienceInsightsClient",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsClient"
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsClient"
},
"method": {
"shortName": "ListAudienceInsightsAttributes",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsService.ListAudienceInsightsAttributes",
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsService.ListAudienceInsightsAttributes",
"service": {
"shortName": "AudienceInsightsService",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsService"
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsService"
}
}
},
@@ -1399,7 +1353,7 @@
"language": "GO",
"clientMethod": {
"shortName": "ListInsightsEligibleDates",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsClient.ListInsightsEligibleDates",
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsClient.ListInsightsEligibleDates",
"parameters": [
{
"type": "context.Context",
@@ -1417,14 +1371,14 @@
"resultType": "*servicespb.ListInsightsEligibleDatesResponse",
"client": {
"shortName": "AudienceInsightsClient",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsClient"
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsClient"
},
"method": {
"shortName": "ListInsightsEligibleDates",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsService.ListInsightsEligibleDates",
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsService.ListInsightsEligibleDates",
"service": {
"shortName": "AudienceInsightsService",
- "fullName": "google.ads.googleads.v16.services.AudienceInsightsService"
+ "fullName": "google.ads.googleads.v17.services.AudienceInsightsService"
}
}
},
@@ -1445,7 +1399,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateAudiences",
- "fullName": "google.ads.googleads.v16.services.AudienceClient.MutateAudiences",
+ "fullName": "google.ads.googleads.v17.services.AudienceClient.MutateAudiences",
"parameters": [
{
"type": "context.Context",
@@ -1463,14 +1417,14 @@
"resultType": "*servicespb.MutateAudiencesResponse",
"client": {
"shortName": "AudienceClient",
- "fullName": "google.ads.googleads.v16.services.AudienceClient"
+ "fullName": "google.ads.googleads.v17.services.AudienceClient"
},
"method": {
"shortName": "MutateAudiences",
- "fullName": "google.ads.googleads.v16.services.AudienceService.MutateAudiences",
+ "fullName": "google.ads.googleads.v17.services.AudienceService.MutateAudiences",
"service": {
"shortName": "AudienceService",
- "fullName": "google.ads.googleads.v16.services.AudienceService"
+ "fullName": "google.ads.googleads.v17.services.AudienceService"
}
}
},
@@ -1491,7 +1445,7 @@
"language": "GO",
"clientMethod": {
"shortName": "AddBatchJobOperations",
- "fullName": "google.ads.googleads.v16.services.BatchJobClient.AddBatchJobOperations",
+ "fullName": "google.ads.googleads.v17.services.BatchJobClient.AddBatchJobOperations",
"parameters": [
{
"type": "context.Context",
@@ -1509,14 +1463,14 @@
"resultType": "*servicespb.AddBatchJobOperationsResponse",
"client": {
"shortName": "BatchJobClient",
- "fullName": "google.ads.googleads.v16.services.BatchJobClient"
+ "fullName": "google.ads.googleads.v17.services.BatchJobClient"
},
"method": {
"shortName": "AddBatchJobOperations",
- "fullName": "google.ads.googleads.v16.services.BatchJobService.AddBatchJobOperations",
+ "fullName": "google.ads.googleads.v17.services.BatchJobService.AddBatchJobOperations",
"service": {
"shortName": "BatchJobService",
- "fullName": "google.ads.googleads.v16.services.BatchJobService"
+ "fullName": "google.ads.googleads.v17.services.BatchJobService"
}
}
},
@@ -1537,7 +1491,7 @@
"language": "GO",
"clientMethod": {
"shortName": "ListBatchJobResults",
- "fullName": "google.ads.googleads.v16.services.BatchJobClient.ListBatchJobResults",
+ "fullName": "google.ads.googleads.v17.services.BatchJobClient.ListBatchJobResults",
"parameters": [
{
"type": "context.Context",
@@ -1555,14 +1509,14 @@
"resultType": "BatchJobResultIterator",
"client": {
"shortName": "BatchJobClient",
- "fullName": "google.ads.googleads.v16.services.BatchJobClient"
+ "fullName": "google.ads.googleads.v17.services.BatchJobClient"
},
"method": {
"shortName": "ListBatchJobResults",
- "fullName": "google.ads.googleads.v16.services.BatchJobService.ListBatchJobResults",
+ "fullName": "google.ads.googleads.v17.services.BatchJobService.ListBatchJobResults",
"service": {
"shortName": "BatchJobService",
- "fullName": "google.ads.googleads.v16.services.BatchJobService"
+ "fullName": "google.ads.googleads.v17.services.BatchJobService"
}
}
},
@@ -1583,7 +1537,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateBatchJob",
- "fullName": "google.ads.googleads.v16.services.BatchJobClient.MutateBatchJob",
+ "fullName": "google.ads.googleads.v17.services.BatchJobClient.MutateBatchJob",
"parameters": [
{
"type": "context.Context",
@@ -1601,14 +1555,14 @@
"resultType": "*servicespb.MutateBatchJobResponse",
"client": {
"shortName": "BatchJobClient",
- "fullName": "google.ads.googleads.v16.services.BatchJobClient"
+ "fullName": "google.ads.googleads.v17.services.BatchJobClient"
},
"method": {
"shortName": "MutateBatchJob",
- "fullName": "google.ads.googleads.v16.services.BatchJobService.MutateBatchJob",
+ "fullName": "google.ads.googleads.v17.services.BatchJobService.MutateBatchJob",
"service": {
"shortName": "BatchJobService",
- "fullName": "google.ads.googleads.v16.services.BatchJobService"
+ "fullName": "google.ads.googleads.v17.services.BatchJobService"
}
}
},
@@ -1629,7 +1583,7 @@
"language": "GO",
"clientMethod": {
"shortName": "RunBatchJob",
- "fullName": "google.ads.googleads.v16.services.BatchJobClient.RunBatchJob",
+ "fullName": "google.ads.googleads.v17.services.BatchJobClient.RunBatchJob",
"parameters": [
{
"type": "context.Context",
@@ -1647,14 +1601,14 @@
"resultType": "RunBatchJobOperation",
"client": {
"shortName": "BatchJobClient",
- "fullName": "google.ads.googleads.v16.services.BatchJobClient"
+ "fullName": "google.ads.googleads.v17.services.BatchJobClient"
},
"method": {
"shortName": "RunBatchJob",
- "fullName": "google.ads.googleads.v16.services.BatchJobService.RunBatchJob",
+ "fullName": "google.ads.googleads.v17.services.BatchJobService.RunBatchJob",
"service": {
"shortName": "BatchJobService",
- "fullName": "google.ads.googleads.v16.services.BatchJobService"
+ "fullName": "google.ads.googleads.v17.services.BatchJobService"
}
}
},
@@ -1675,7 +1629,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateBiddingDataExclusions",
- "fullName": "google.ads.googleads.v16.services.BiddingDataExclusionClient.MutateBiddingDataExclusions",
+ "fullName": "google.ads.googleads.v17.services.BiddingDataExclusionClient.MutateBiddingDataExclusions",
"parameters": [
{
"type": "context.Context",
@@ -1693,14 +1647,14 @@
"resultType": "*servicespb.MutateBiddingDataExclusionsResponse",
"client": {
"shortName": "BiddingDataExclusionClient",
- "fullName": "google.ads.googleads.v16.services.BiddingDataExclusionClient"
+ "fullName": "google.ads.googleads.v17.services.BiddingDataExclusionClient"
},
"method": {
"shortName": "MutateBiddingDataExclusions",
- "fullName": "google.ads.googleads.v16.services.BiddingDataExclusionService.MutateBiddingDataExclusions",
+ "fullName": "google.ads.googleads.v17.services.BiddingDataExclusionService.MutateBiddingDataExclusions",
"service": {
"shortName": "BiddingDataExclusionService",
- "fullName": "google.ads.googleads.v16.services.BiddingDataExclusionService"
+ "fullName": "google.ads.googleads.v17.services.BiddingDataExclusionService"
}
}
},
@@ -1721,7 +1675,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateBiddingSeasonalityAdjustments",
- "fullName": "google.ads.googleads.v16.services.BiddingSeasonalityAdjustmentClient.MutateBiddingSeasonalityAdjustments",
+ "fullName": "google.ads.googleads.v17.services.BiddingSeasonalityAdjustmentClient.MutateBiddingSeasonalityAdjustments",
"parameters": [
{
"type": "context.Context",
@@ -1739,14 +1693,14 @@
"resultType": "*servicespb.MutateBiddingSeasonalityAdjustmentsResponse",
"client": {
"shortName": "BiddingSeasonalityAdjustmentClient",
- "fullName": "google.ads.googleads.v16.services.BiddingSeasonalityAdjustmentClient"
+ "fullName": "google.ads.googleads.v17.services.BiddingSeasonalityAdjustmentClient"
},
"method": {
"shortName": "MutateBiddingSeasonalityAdjustments",
- "fullName": "google.ads.googleads.v16.services.BiddingSeasonalityAdjustmentService.MutateBiddingSeasonalityAdjustments",
+ "fullName": "google.ads.googleads.v17.services.BiddingSeasonalityAdjustmentService.MutateBiddingSeasonalityAdjustments",
"service": {
"shortName": "BiddingSeasonalityAdjustmentService",
- "fullName": "google.ads.googleads.v16.services.BiddingSeasonalityAdjustmentService"
+ "fullName": "google.ads.googleads.v17.services.BiddingSeasonalityAdjustmentService"
}
}
},
@@ -1767,7 +1721,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateBiddingStrategies",
- "fullName": "google.ads.googleads.v16.services.BiddingStrategyClient.MutateBiddingStrategies",
+ "fullName": "google.ads.googleads.v17.services.BiddingStrategyClient.MutateBiddingStrategies",
"parameters": [
{
"type": "context.Context",
@@ -1785,14 +1739,14 @@
"resultType": "*servicespb.MutateBiddingStrategiesResponse",
"client": {
"shortName": "BiddingStrategyClient",
- "fullName": "google.ads.googleads.v16.services.BiddingStrategyClient"
+ "fullName": "google.ads.googleads.v17.services.BiddingStrategyClient"
},
"method": {
"shortName": "MutateBiddingStrategies",
- "fullName": "google.ads.googleads.v16.services.BiddingStrategyService.MutateBiddingStrategies",
+ "fullName": "google.ads.googleads.v17.services.BiddingStrategyService.MutateBiddingStrategies",
"service": {
"shortName": "BiddingStrategyService",
- "fullName": "google.ads.googleads.v16.services.BiddingStrategyService"
+ "fullName": "google.ads.googleads.v17.services.BiddingStrategyService"
}
}
},
@@ -1813,7 +1767,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateBillingSetup",
- "fullName": "google.ads.googleads.v16.services.BillingSetupClient.MutateBillingSetup",
+ "fullName": "google.ads.googleads.v17.services.BillingSetupClient.MutateBillingSetup",
"parameters": [
{
"type": "context.Context",
@@ -1831,14 +1785,14 @@
"resultType": "*servicespb.MutateBillingSetupResponse",
"client": {
"shortName": "BillingSetupClient",
- "fullName": "google.ads.googleads.v16.services.BillingSetupClient"
+ "fullName": "google.ads.googleads.v17.services.BillingSetupClient"
},
"method": {
"shortName": "MutateBillingSetup",
- "fullName": "google.ads.googleads.v16.services.BillingSetupService.MutateBillingSetup",
+ "fullName": "google.ads.googleads.v17.services.BillingSetupService.MutateBillingSetup",
"service": {
"shortName": "BillingSetupService",
- "fullName": "google.ads.googleads.v16.services.BillingSetupService"
+ "fullName": "google.ads.googleads.v17.services.BillingSetupService"
}
}
},
@@ -1859,7 +1813,7 @@
"language": "GO",
"clientMethod": {
"shortName": "SuggestBrands",
- "fullName": "google.ads.googleads.v16.services.BrandSuggestionClient.SuggestBrands",
+ "fullName": "google.ads.googleads.v17.services.BrandSuggestionClient.SuggestBrands",
"parameters": [
{
"type": "context.Context",
@@ -1877,14 +1831,14 @@
"resultType": "*servicespb.SuggestBrandsResponse",
"client": {
"shortName": "BrandSuggestionClient",
- "fullName": "google.ads.googleads.v16.services.BrandSuggestionClient"
+ "fullName": "google.ads.googleads.v17.services.BrandSuggestionClient"
},
"method": {
"shortName": "SuggestBrands",
- "fullName": "google.ads.googleads.v16.services.BrandSuggestionService.SuggestBrands",
+ "fullName": "google.ads.googleads.v17.services.BrandSuggestionService.SuggestBrands",
"service": {
"shortName": "BrandSuggestionService",
- "fullName": "google.ads.googleads.v16.services.BrandSuggestionService"
+ "fullName": "google.ads.googleads.v17.services.BrandSuggestionService"
}
}
},
@@ -1905,7 +1859,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCampaignAssets",
- "fullName": "google.ads.googleads.v16.services.CampaignAssetClient.MutateCampaignAssets",
+ "fullName": "google.ads.googleads.v17.services.CampaignAssetClient.MutateCampaignAssets",
"parameters": [
{
"type": "context.Context",
@@ -1923,14 +1877,14 @@
"resultType": "*servicespb.MutateCampaignAssetsResponse",
"client": {
"shortName": "CampaignAssetClient",
- "fullName": "google.ads.googleads.v16.services.CampaignAssetClient"
+ "fullName": "google.ads.googleads.v17.services.CampaignAssetClient"
},
"method": {
"shortName": "MutateCampaignAssets",
- "fullName": "google.ads.googleads.v16.services.CampaignAssetService.MutateCampaignAssets",
+ "fullName": "google.ads.googleads.v17.services.CampaignAssetService.MutateCampaignAssets",
"service": {
"shortName": "CampaignAssetService",
- "fullName": "google.ads.googleads.v16.services.CampaignAssetService"
+ "fullName": "google.ads.googleads.v17.services.CampaignAssetService"
}
}
},
@@ -1951,7 +1905,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCampaignAssetSets",
- "fullName": "google.ads.googleads.v16.services.CampaignAssetSetClient.MutateCampaignAssetSets",
+ "fullName": "google.ads.googleads.v17.services.CampaignAssetSetClient.MutateCampaignAssetSets",
"parameters": [
{
"type": "context.Context",
@@ -1969,14 +1923,14 @@
"resultType": "*servicespb.MutateCampaignAssetSetsResponse",
"client": {
"shortName": "CampaignAssetSetClient",
- "fullName": "google.ads.googleads.v16.services.CampaignAssetSetClient"
+ "fullName": "google.ads.googleads.v17.services.CampaignAssetSetClient"
},
"method": {
"shortName": "MutateCampaignAssetSets",
- "fullName": "google.ads.googleads.v16.services.CampaignAssetSetService.MutateCampaignAssetSets",
+ "fullName": "google.ads.googleads.v17.services.CampaignAssetSetService.MutateCampaignAssetSets",
"service": {
"shortName": "CampaignAssetSetService",
- "fullName": "google.ads.googleads.v16.services.CampaignAssetSetService"
+ "fullName": "google.ads.googleads.v17.services.CampaignAssetSetService"
}
}
},
@@ -1997,7 +1951,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCampaignBidModifiers",
- "fullName": "google.ads.googleads.v16.services.CampaignBidModifierClient.MutateCampaignBidModifiers",
+ "fullName": "google.ads.googleads.v17.services.CampaignBidModifierClient.MutateCampaignBidModifiers",
"parameters": [
{
"type": "context.Context",
@@ -2015,14 +1969,14 @@
"resultType": "*servicespb.MutateCampaignBidModifiersResponse",
"client": {
"shortName": "CampaignBidModifierClient",
- "fullName": "google.ads.googleads.v16.services.CampaignBidModifierClient"
+ "fullName": "google.ads.googleads.v17.services.CampaignBidModifierClient"
},
"method": {
"shortName": "MutateCampaignBidModifiers",
- "fullName": "google.ads.googleads.v16.services.CampaignBidModifierService.MutateCampaignBidModifiers",
+ "fullName": "google.ads.googleads.v17.services.CampaignBidModifierService.MutateCampaignBidModifiers",
"service": {
"shortName": "CampaignBidModifierService",
- "fullName": "google.ads.googleads.v16.services.CampaignBidModifierService"
+ "fullName": "google.ads.googleads.v17.services.CampaignBidModifierService"
}
}
},
@@ -2043,7 +1997,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCampaignBudgets",
- "fullName": "google.ads.googleads.v16.services.CampaignBudgetClient.MutateCampaignBudgets",
+ "fullName": "google.ads.googleads.v17.services.CampaignBudgetClient.MutateCampaignBudgets",
"parameters": [
{
"type": "context.Context",
@@ -2061,14 +2015,14 @@
"resultType": "*servicespb.MutateCampaignBudgetsResponse",
"client": {
"shortName": "CampaignBudgetClient",
- "fullName": "google.ads.googleads.v16.services.CampaignBudgetClient"
+ "fullName": "google.ads.googleads.v17.services.CampaignBudgetClient"
},
"method": {
"shortName": "MutateCampaignBudgets",
- "fullName": "google.ads.googleads.v16.services.CampaignBudgetService.MutateCampaignBudgets",
+ "fullName": "google.ads.googleads.v17.services.CampaignBudgetService.MutateCampaignBudgets",
"service": {
"shortName": "CampaignBudgetService",
- "fullName": "google.ads.googleads.v16.services.CampaignBudgetService"
+ "fullName": "google.ads.googleads.v17.services.CampaignBudgetService"
}
}
},
@@ -2089,7 +2043,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCampaignConversionGoals",
- "fullName": "google.ads.googleads.v16.services.CampaignConversionGoalClient.MutateCampaignConversionGoals",
+ "fullName": "google.ads.googleads.v17.services.CampaignConversionGoalClient.MutateCampaignConversionGoals",
"parameters": [
{
"type": "context.Context",
@@ -2107,14 +2061,14 @@
"resultType": "*servicespb.MutateCampaignConversionGoalsResponse",
"client": {
"shortName": "CampaignConversionGoalClient",
- "fullName": "google.ads.googleads.v16.services.CampaignConversionGoalClient"
+ "fullName": "google.ads.googleads.v17.services.CampaignConversionGoalClient"
},
"method": {
"shortName": "MutateCampaignConversionGoals",
- "fullName": "google.ads.googleads.v16.services.CampaignConversionGoalService.MutateCampaignConversionGoals",
+ "fullName": "google.ads.googleads.v17.services.CampaignConversionGoalService.MutateCampaignConversionGoals",
"service": {
"shortName": "CampaignConversionGoalService",
- "fullName": "google.ads.googleads.v16.services.CampaignConversionGoalService"
+ "fullName": "google.ads.googleads.v17.services.CampaignConversionGoalService"
}
}
},
@@ -2135,7 +2089,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCampaignCriteria",
- "fullName": "google.ads.googleads.v16.services.CampaignCriterionClient.MutateCampaignCriteria",
+ "fullName": "google.ads.googleads.v17.services.CampaignCriterionClient.MutateCampaignCriteria",
"parameters": [
{
"type": "context.Context",
@@ -2153,14 +2107,14 @@
"resultType": "*servicespb.MutateCampaignCriteriaResponse",
"client": {
"shortName": "CampaignCriterionClient",
- "fullName": "google.ads.googleads.v16.services.CampaignCriterionClient"
+ "fullName": "google.ads.googleads.v17.services.CampaignCriterionClient"
},
"method": {
"shortName": "MutateCampaignCriteria",
- "fullName": "google.ads.googleads.v16.services.CampaignCriterionService.MutateCampaignCriteria",
+ "fullName": "google.ads.googleads.v17.services.CampaignCriterionService.MutateCampaignCriteria",
"service": {
"shortName": "CampaignCriterionService",
- "fullName": "google.ads.googleads.v16.services.CampaignCriterionService"
+ "fullName": "google.ads.googleads.v17.services.CampaignCriterionService"
}
}
},
@@ -2181,7 +2135,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCampaignCustomizers",
- "fullName": "google.ads.googleads.v16.services.CampaignCustomizerClient.MutateCampaignCustomizers",
+ "fullName": "google.ads.googleads.v17.services.CampaignCustomizerClient.MutateCampaignCustomizers",
"parameters": [
{
"type": "context.Context",
@@ -2199,14 +2153,14 @@
"resultType": "*servicespb.MutateCampaignCustomizersResponse",
"client": {
"shortName": "CampaignCustomizerClient",
- "fullName": "google.ads.googleads.v16.services.CampaignCustomizerClient"
+ "fullName": "google.ads.googleads.v17.services.CampaignCustomizerClient"
},
"method": {
"shortName": "MutateCampaignCustomizers",
- "fullName": "google.ads.googleads.v16.services.CampaignCustomizerService.MutateCampaignCustomizers",
+ "fullName": "google.ads.googleads.v17.services.CampaignCustomizerService.MutateCampaignCustomizers",
"service": {
"shortName": "CampaignCustomizerService",
- "fullName": "google.ads.googleads.v16.services.CampaignCustomizerService"
+ "fullName": "google.ads.googleads.v17.services.CampaignCustomizerService"
}
}
},
@@ -2227,7 +2181,7 @@
"language": "GO",
"clientMethod": {
"shortName": "ListCampaignDraftAsyncErrors",
- "fullName": "google.ads.googleads.v16.services.CampaignDraftClient.ListCampaignDraftAsyncErrors",
+ "fullName": "google.ads.googleads.v17.services.CampaignDraftClient.ListCampaignDraftAsyncErrors",
"parameters": [
{
"type": "context.Context",
@@ -2245,14 +2199,14 @@
"resultType": "StatusIterator",
"client": {
"shortName": "CampaignDraftClient",
- "fullName": "google.ads.googleads.v16.services.CampaignDraftClient"
+ "fullName": "google.ads.googleads.v17.services.CampaignDraftClient"
},
"method": {
"shortName": "ListCampaignDraftAsyncErrors",
- "fullName": "google.ads.googleads.v16.services.CampaignDraftService.ListCampaignDraftAsyncErrors",
+ "fullName": "google.ads.googleads.v17.services.CampaignDraftService.ListCampaignDraftAsyncErrors",
"service": {
"shortName": "CampaignDraftService",
- "fullName": "google.ads.googleads.v16.services.CampaignDraftService"
+ "fullName": "google.ads.googleads.v17.services.CampaignDraftService"
}
}
},
@@ -2273,7 +2227,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCampaignDrafts",
- "fullName": "google.ads.googleads.v16.services.CampaignDraftClient.MutateCampaignDrafts",
+ "fullName": "google.ads.googleads.v17.services.CampaignDraftClient.MutateCampaignDrafts",
"parameters": [
{
"type": "context.Context",
@@ -2291,14 +2245,14 @@
"resultType": "*servicespb.MutateCampaignDraftsResponse",
"client": {
"shortName": "CampaignDraftClient",
- "fullName": "google.ads.googleads.v16.services.CampaignDraftClient"
+ "fullName": "google.ads.googleads.v17.services.CampaignDraftClient"
},
"method": {
"shortName": "MutateCampaignDrafts",
- "fullName": "google.ads.googleads.v16.services.CampaignDraftService.MutateCampaignDrafts",
+ "fullName": "google.ads.googleads.v17.services.CampaignDraftService.MutateCampaignDrafts",
"service": {
"shortName": "CampaignDraftService",
- "fullName": "google.ads.googleads.v16.services.CampaignDraftService"
+ "fullName": "google.ads.googleads.v17.services.CampaignDraftService"
}
}
},
@@ -2314,12 +2268,12 @@
{
"regionTag": "googleads_services_generated_CampaignDraftService_PromoteCampaignDraft_sync",
"title": "googleads PromoteCampaignDraft Sample",
- "description": "PromoteCampaignDraft promotes the changes in a draft back to the base campaign.\n\nThis method returns a Long Running Operation (LRO) indicating if the\nPromote is done. Use [Operations.GetOperation] to poll the LRO until it\nis done. Only a done status is returned in the response. See the status\nin the Campaign Draft resource to determine if the promotion was\nsuccessful. If the LRO failed, use\n[CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v16.services.CampaignDraftService.ListCampaignDraftAsyncErrors]\nto view the list of error reasons.\n\nList of thrown errors: \n[AuthenticationError]()\n[AuthorizationError]()\n[CampaignDraftError]()\n[HeaderError]()\n[InternalError]()\n[QuotaError]()\n[RequestError]()",
+ "description": "PromoteCampaignDraft promotes the changes in a draft back to the base campaign.\n\nThis method returns a Long Running Operation (LRO) indicating if the\nPromote is done. Use [Operations.GetOperation] to poll the LRO until it\nis done. Only a done status is returned in the response. See the status\nin the Campaign Draft resource to determine if the promotion was\nsuccessful. If the LRO failed, use\n[CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v17.services.CampaignDraftService.ListCampaignDraftAsyncErrors]\nto view the list of error reasons.\n\nList of thrown errors: \n[AuthenticationError]()\n[AuthorizationError]()\n[CampaignDraftError]()\n[HeaderError]()\n[InternalError]()\n[QuotaError]()\n[RequestError]()",
"file": "CampaignDraftClient/PromoteCampaignDraft/main.go",
"language": "GO",
"clientMethod": {
"shortName": "PromoteCampaignDraft",
- "fullName": "google.ads.googleads.v16.services.CampaignDraftClient.PromoteCampaignDraft",
+ "fullName": "google.ads.googleads.v17.services.CampaignDraftClient.PromoteCampaignDraft",
"parameters": [
{
"type": "context.Context",
@@ -2337,14 +2291,14 @@
"resultType": "PromoteCampaignDraftOperation",
"client": {
"shortName": "CampaignDraftClient",
- "fullName": "google.ads.googleads.v16.services.CampaignDraftClient"
+ "fullName": "google.ads.googleads.v17.services.CampaignDraftClient"
},
"method": {
"shortName": "PromoteCampaignDraft",
- "fullName": "google.ads.googleads.v16.services.CampaignDraftService.PromoteCampaignDraft",
+ "fullName": "google.ads.googleads.v17.services.CampaignDraftService.PromoteCampaignDraft",
"service": {
"shortName": "CampaignDraftService",
- "fullName": "google.ads.googleads.v16.services.CampaignDraftService"
+ "fullName": "google.ads.googleads.v17.services.CampaignDraftService"
}
}
},
@@ -2365,7 +2319,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCampaignExtensionSettings",
- "fullName": "google.ads.googleads.v16.services.CampaignExtensionSettingClient.MutateCampaignExtensionSettings",
+ "fullName": "google.ads.googleads.v17.services.CampaignExtensionSettingClient.MutateCampaignExtensionSettings",
"parameters": [
{
"type": "context.Context",
@@ -2383,14 +2337,14 @@
"resultType": "*servicespb.MutateCampaignExtensionSettingsResponse",
"client": {
"shortName": "CampaignExtensionSettingClient",
- "fullName": "google.ads.googleads.v16.services.CampaignExtensionSettingClient"
+ "fullName": "google.ads.googleads.v17.services.CampaignExtensionSettingClient"
},
"method": {
"shortName": "MutateCampaignExtensionSettings",
- "fullName": "google.ads.googleads.v16.services.CampaignExtensionSettingService.MutateCampaignExtensionSettings",
+ "fullName": "google.ads.googleads.v17.services.CampaignExtensionSettingService.MutateCampaignExtensionSettings",
"service": {
"shortName": "CampaignExtensionSettingService",
- "fullName": "google.ads.googleads.v16.services.CampaignExtensionSettingService"
+ "fullName": "google.ads.googleads.v17.services.CampaignExtensionSettingService"
}
}
},
@@ -2411,7 +2365,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCampaignFeeds",
- "fullName": "google.ads.googleads.v16.services.CampaignFeedClient.MutateCampaignFeeds",
+ "fullName": "google.ads.googleads.v17.services.CampaignFeedClient.MutateCampaignFeeds",
"parameters": [
{
"type": "context.Context",
@@ -2429,14 +2383,14 @@
"resultType": "*servicespb.MutateCampaignFeedsResponse",
"client": {
"shortName": "CampaignFeedClient",
- "fullName": "google.ads.googleads.v16.services.CampaignFeedClient"
+ "fullName": "google.ads.googleads.v17.services.CampaignFeedClient"
},
"method": {
"shortName": "MutateCampaignFeeds",
- "fullName": "google.ads.googleads.v16.services.CampaignFeedService.MutateCampaignFeeds",
+ "fullName": "google.ads.googleads.v17.services.CampaignFeedService.MutateCampaignFeeds",
"service": {
"shortName": "CampaignFeedService",
- "fullName": "google.ads.googleads.v16.services.CampaignFeedService"
+ "fullName": "google.ads.googleads.v17.services.CampaignFeedService"
}
}
},
@@ -2457,7 +2411,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCampaignGroups",
- "fullName": "google.ads.googleads.v16.services.CampaignGroupClient.MutateCampaignGroups",
+ "fullName": "google.ads.googleads.v17.services.CampaignGroupClient.MutateCampaignGroups",
"parameters": [
{
"type": "context.Context",
@@ -2475,14 +2429,14 @@
"resultType": "*servicespb.MutateCampaignGroupsResponse",
"client": {
"shortName": "CampaignGroupClient",
- "fullName": "google.ads.googleads.v16.services.CampaignGroupClient"
+ "fullName": "google.ads.googleads.v17.services.CampaignGroupClient"
},
"method": {
"shortName": "MutateCampaignGroups",
- "fullName": "google.ads.googleads.v16.services.CampaignGroupService.MutateCampaignGroups",
+ "fullName": "google.ads.googleads.v17.services.CampaignGroupService.MutateCampaignGroups",
"service": {
"shortName": "CampaignGroupService",
- "fullName": "google.ads.googleads.v16.services.CampaignGroupService"
+ "fullName": "google.ads.googleads.v17.services.CampaignGroupService"
}
}
},
@@ -2503,7 +2457,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCampaignLabels",
- "fullName": "google.ads.googleads.v16.services.CampaignLabelClient.MutateCampaignLabels",
+ "fullName": "google.ads.googleads.v17.services.CampaignLabelClient.MutateCampaignLabels",
"parameters": [
{
"type": "context.Context",
@@ -2521,14 +2475,14 @@
"resultType": "*servicespb.MutateCampaignLabelsResponse",
"client": {
"shortName": "CampaignLabelClient",
- "fullName": "google.ads.googleads.v16.services.CampaignLabelClient"
+ "fullName": "google.ads.googleads.v17.services.CampaignLabelClient"
},
"method": {
"shortName": "MutateCampaignLabels",
- "fullName": "google.ads.googleads.v16.services.CampaignLabelService.MutateCampaignLabels",
+ "fullName": "google.ads.googleads.v17.services.CampaignLabelService.MutateCampaignLabels",
"service": {
"shortName": "CampaignLabelService",
- "fullName": "google.ads.googleads.v16.services.CampaignLabelService"
+ "fullName": "google.ads.googleads.v17.services.CampaignLabelService"
}
}
},
@@ -2549,7 +2503,7 @@
"language": "GO",
"clientMethod": {
"shortName": "ConfigureCampaignLifecycleGoals",
- "fullName": "google.ads.googleads.v16.services.CampaignLifecycleGoalClient.ConfigureCampaignLifecycleGoals",
+ "fullName": "google.ads.googleads.v17.services.CampaignLifecycleGoalClient.ConfigureCampaignLifecycleGoals",
"parameters": [
{
"type": "context.Context",
@@ -2567,14 +2521,14 @@
"resultType": "*servicespb.ConfigureCampaignLifecycleGoalsResponse",
"client": {
"shortName": "CampaignLifecycleGoalClient",
- "fullName": "google.ads.googleads.v16.services.CampaignLifecycleGoalClient"
+ "fullName": "google.ads.googleads.v17.services.CampaignLifecycleGoalClient"
},
"method": {
"shortName": "ConfigureCampaignLifecycleGoals",
- "fullName": "google.ads.googleads.v16.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals",
+ "fullName": "google.ads.googleads.v17.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals",
"service": {
"shortName": "CampaignLifecycleGoalService",
- "fullName": "google.ads.googleads.v16.services.CampaignLifecycleGoalService"
+ "fullName": "google.ads.googleads.v17.services.CampaignLifecycleGoalService"
}
}
},
@@ -2595,7 +2549,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCampaigns",
- "fullName": "google.ads.googleads.v16.services.CampaignClient.MutateCampaigns",
+ "fullName": "google.ads.googleads.v17.services.CampaignClient.MutateCampaigns",
"parameters": [
{
"type": "context.Context",
@@ -2613,14 +2567,14 @@
"resultType": "*servicespb.MutateCampaignsResponse",
"client": {
"shortName": "CampaignClient",
- "fullName": "google.ads.googleads.v16.services.CampaignClient"
+ "fullName": "google.ads.googleads.v17.services.CampaignClient"
},
"method": {
"shortName": "MutateCampaigns",
- "fullName": "google.ads.googleads.v16.services.CampaignService.MutateCampaigns",
+ "fullName": "google.ads.googleads.v17.services.CampaignService.MutateCampaigns",
"service": {
"shortName": "CampaignService",
- "fullName": "google.ads.googleads.v16.services.CampaignService"
+ "fullName": "google.ads.googleads.v17.services.CampaignService"
}
}
},
@@ -2641,7 +2595,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCampaignSharedSets",
- "fullName": "google.ads.googleads.v16.services.CampaignSharedSetClient.MutateCampaignSharedSets",
+ "fullName": "google.ads.googleads.v17.services.CampaignSharedSetClient.MutateCampaignSharedSets",
"parameters": [
{
"type": "context.Context",
@@ -2659,14 +2613,14 @@
"resultType": "*servicespb.MutateCampaignSharedSetsResponse",
"client": {
"shortName": "CampaignSharedSetClient",
- "fullName": "google.ads.googleads.v16.services.CampaignSharedSetClient"
+ "fullName": "google.ads.googleads.v17.services.CampaignSharedSetClient"
},
"method": {
"shortName": "MutateCampaignSharedSets",
- "fullName": "google.ads.googleads.v16.services.CampaignSharedSetService.MutateCampaignSharedSets",
+ "fullName": "google.ads.googleads.v17.services.CampaignSharedSetService.MutateCampaignSharedSets",
"service": {
"shortName": "CampaignSharedSetService",
- "fullName": "google.ads.googleads.v16.services.CampaignSharedSetService"
+ "fullName": "google.ads.googleads.v17.services.CampaignSharedSetService"
}
}
},
@@ -2687,7 +2641,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateConversionActions",
- "fullName": "google.ads.googleads.v16.services.ConversionActionClient.MutateConversionActions",
+ "fullName": "google.ads.googleads.v17.services.ConversionActionClient.MutateConversionActions",
"parameters": [
{
"type": "context.Context",
@@ -2705,14 +2659,14 @@
"resultType": "*servicespb.MutateConversionActionsResponse",
"client": {
"shortName": "ConversionActionClient",
- "fullName": "google.ads.googleads.v16.services.ConversionActionClient"
+ "fullName": "google.ads.googleads.v17.services.ConversionActionClient"
},
"method": {
"shortName": "MutateConversionActions",
- "fullName": "google.ads.googleads.v16.services.ConversionActionService.MutateConversionActions",
+ "fullName": "google.ads.googleads.v17.services.ConversionActionService.MutateConversionActions",
"service": {
"shortName": "ConversionActionService",
- "fullName": "google.ads.googleads.v16.services.ConversionActionService"
+ "fullName": "google.ads.googleads.v17.services.ConversionActionService"
}
}
},
@@ -2733,7 +2687,7 @@
"language": "GO",
"clientMethod": {
"shortName": "UploadConversionAdjustments",
- "fullName": "google.ads.googleads.v16.services.ConversionAdjustmentUploadClient.UploadConversionAdjustments",
+ "fullName": "google.ads.googleads.v17.services.ConversionAdjustmentUploadClient.UploadConversionAdjustments",
"parameters": [
{
"type": "context.Context",
@@ -2751,14 +2705,14 @@
"resultType": "*servicespb.UploadConversionAdjustmentsResponse",
"client": {
"shortName": "ConversionAdjustmentUploadClient",
- "fullName": "google.ads.googleads.v16.services.ConversionAdjustmentUploadClient"
+ "fullName": "google.ads.googleads.v17.services.ConversionAdjustmentUploadClient"
},
"method": {
"shortName": "UploadConversionAdjustments",
- "fullName": "google.ads.googleads.v16.services.ConversionAdjustmentUploadService.UploadConversionAdjustments",
+ "fullName": "google.ads.googleads.v17.services.ConversionAdjustmentUploadService.UploadConversionAdjustments",
"service": {
"shortName": "ConversionAdjustmentUploadService",
- "fullName": "google.ads.googleads.v16.services.ConversionAdjustmentUploadService"
+ "fullName": "google.ads.googleads.v17.services.ConversionAdjustmentUploadService"
}
}
},
@@ -2779,7 +2733,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateConversionCustomVariables",
- "fullName": "google.ads.googleads.v16.services.ConversionCustomVariableClient.MutateConversionCustomVariables",
+ "fullName": "google.ads.googleads.v17.services.ConversionCustomVariableClient.MutateConversionCustomVariables",
"parameters": [
{
"type": "context.Context",
@@ -2797,14 +2751,14 @@
"resultType": "*servicespb.MutateConversionCustomVariablesResponse",
"client": {
"shortName": "ConversionCustomVariableClient",
- "fullName": "google.ads.googleads.v16.services.ConversionCustomVariableClient"
+ "fullName": "google.ads.googleads.v17.services.ConversionCustomVariableClient"
},
"method": {
"shortName": "MutateConversionCustomVariables",
- "fullName": "google.ads.googleads.v16.services.ConversionCustomVariableService.MutateConversionCustomVariables",
+ "fullName": "google.ads.googleads.v17.services.ConversionCustomVariableService.MutateConversionCustomVariables",
"service": {
"shortName": "ConversionCustomVariableService",
- "fullName": "google.ads.googleads.v16.services.ConversionCustomVariableService"
+ "fullName": "google.ads.googleads.v17.services.ConversionCustomVariableService"
}
}
},
@@ -2825,7 +2779,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateConversionGoalCampaignConfigs",
- "fullName": "google.ads.googleads.v16.services.ConversionGoalCampaignConfigClient.MutateConversionGoalCampaignConfigs",
+ "fullName": "google.ads.googleads.v17.services.ConversionGoalCampaignConfigClient.MutateConversionGoalCampaignConfigs",
"parameters": [
{
"type": "context.Context",
@@ -2843,14 +2797,14 @@
"resultType": "*servicespb.MutateConversionGoalCampaignConfigsResponse",
"client": {
"shortName": "ConversionGoalCampaignConfigClient",
- "fullName": "google.ads.googleads.v16.services.ConversionGoalCampaignConfigClient"
+ "fullName": "google.ads.googleads.v17.services.ConversionGoalCampaignConfigClient"
},
"method": {
"shortName": "MutateConversionGoalCampaignConfigs",
- "fullName": "google.ads.googleads.v16.services.ConversionGoalCampaignConfigService.MutateConversionGoalCampaignConfigs",
+ "fullName": "google.ads.googleads.v17.services.ConversionGoalCampaignConfigService.MutateConversionGoalCampaignConfigs",
"service": {
"shortName": "ConversionGoalCampaignConfigService",
- "fullName": "google.ads.googleads.v16.services.ConversionGoalCampaignConfigService"
+ "fullName": "google.ads.googleads.v17.services.ConversionGoalCampaignConfigService"
}
}
},
@@ -2871,7 +2825,7 @@
"language": "GO",
"clientMethod": {
"shortName": "UploadCallConversions",
- "fullName": "google.ads.googleads.v16.services.ConversionUploadClient.UploadCallConversions",
+ "fullName": "google.ads.googleads.v17.services.ConversionUploadClient.UploadCallConversions",
"parameters": [
{
"type": "context.Context",
@@ -2889,14 +2843,14 @@
"resultType": "*servicespb.UploadCallConversionsResponse",
"client": {
"shortName": "ConversionUploadClient",
- "fullName": "google.ads.googleads.v16.services.ConversionUploadClient"
+ "fullName": "google.ads.googleads.v17.services.ConversionUploadClient"
},
"method": {
"shortName": "UploadCallConversions",
- "fullName": "google.ads.googleads.v16.services.ConversionUploadService.UploadCallConversions",
+ "fullName": "google.ads.googleads.v17.services.ConversionUploadService.UploadCallConversions",
"service": {
"shortName": "ConversionUploadService",
- "fullName": "google.ads.googleads.v16.services.ConversionUploadService"
+ "fullName": "google.ads.googleads.v17.services.ConversionUploadService"
}
}
},
@@ -2917,7 +2871,7 @@
"language": "GO",
"clientMethod": {
"shortName": "UploadClickConversions",
- "fullName": "google.ads.googleads.v16.services.ConversionUploadClient.UploadClickConversions",
+ "fullName": "google.ads.googleads.v17.services.ConversionUploadClient.UploadClickConversions",
"parameters": [
{
"type": "context.Context",
@@ -2935,14 +2889,14 @@
"resultType": "*servicespb.UploadClickConversionsResponse",
"client": {
"shortName": "ConversionUploadClient",
- "fullName": "google.ads.googleads.v16.services.ConversionUploadClient"
+ "fullName": "google.ads.googleads.v17.services.ConversionUploadClient"
},
"method": {
"shortName": "UploadClickConversions",
- "fullName": "google.ads.googleads.v16.services.ConversionUploadService.UploadClickConversions",
+ "fullName": "google.ads.googleads.v17.services.ConversionUploadService.UploadClickConversions",
"service": {
"shortName": "ConversionUploadService",
- "fullName": "google.ads.googleads.v16.services.ConversionUploadService"
+ "fullName": "google.ads.googleads.v17.services.ConversionUploadService"
}
}
},
@@ -2963,7 +2917,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateConversionValueRules",
- "fullName": "google.ads.googleads.v16.services.ConversionValueRuleClient.MutateConversionValueRules",
+ "fullName": "google.ads.googleads.v17.services.ConversionValueRuleClient.MutateConversionValueRules",
"parameters": [
{
"type": "context.Context",
@@ -2981,14 +2935,14 @@
"resultType": "*servicespb.MutateConversionValueRulesResponse",
"client": {
"shortName": "ConversionValueRuleClient",
- "fullName": "google.ads.googleads.v16.services.ConversionValueRuleClient"
+ "fullName": "google.ads.googleads.v17.services.ConversionValueRuleClient"
},
"method": {
"shortName": "MutateConversionValueRules",
- "fullName": "google.ads.googleads.v16.services.ConversionValueRuleService.MutateConversionValueRules",
+ "fullName": "google.ads.googleads.v17.services.ConversionValueRuleService.MutateConversionValueRules",
"service": {
"shortName": "ConversionValueRuleService",
- "fullName": "google.ads.googleads.v16.services.ConversionValueRuleService"
+ "fullName": "google.ads.googleads.v17.services.ConversionValueRuleService"
}
}
},
@@ -3009,7 +2963,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateConversionValueRuleSets",
- "fullName": "google.ads.googleads.v16.services.ConversionValueRuleSetClient.MutateConversionValueRuleSets",
+ "fullName": "google.ads.googleads.v17.services.ConversionValueRuleSetClient.MutateConversionValueRuleSets",
"parameters": [
{
"type": "context.Context",
@@ -3027,14 +2981,14 @@
"resultType": "*servicespb.MutateConversionValueRuleSetsResponse",
"client": {
"shortName": "ConversionValueRuleSetClient",
- "fullName": "google.ads.googleads.v16.services.ConversionValueRuleSetClient"
+ "fullName": "google.ads.googleads.v17.services.ConversionValueRuleSetClient"
},
"method": {
"shortName": "MutateConversionValueRuleSets",
- "fullName": "google.ads.googleads.v16.services.ConversionValueRuleSetService.MutateConversionValueRuleSets",
+ "fullName": "google.ads.googleads.v17.services.ConversionValueRuleSetService.MutateConversionValueRuleSets",
"service": {
"shortName": "ConversionValueRuleSetService",
- "fullName": "google.ads.googleads.v16.services.ConversionValueRuleSetService"
+ "fullName": "google.ads.googleads.v17.services.ConversionValueRuleSetService"
}
}
},
@@ -3055,7 +3009,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCustomAudiences",
- "fullName": "google.ads.googleads.v16.services.CustomAudienceClient.MutateCustomAudiences",
+ "fullName": "google.ads.googleads.v17.services.CustomAudienceClient.MutateCustomAudiences",
"parameters": [
{
"type": "context.Context",
@@ -3073,14 +3027,14 @@
"resultType": "*servicespb.MutateCustomAudiencesResponse",
"client": {
"shortName": "CustomAudienceClient",
- "fullName": "google.ads.googleads.v16.services.CustomAudienceClient"
+ "fullName": "google.ads.googleads.v17.services.CustomAudienceClient"
},
"method": {
"shortName": "MutateCustomAudiences",
- "fullName": "google.ads.googleads.v16.services.CustomAudienceService.MutateCustomAudiences",
+ "fullName": "google.ads.googleads.v17.services.CustomAudienceService.MutateCustomAudiences",
"service": {
"shortName": "CustomAudienceService",
- "fullName": "google.ads.googleads.v16.services.CustomAudienceService"
+ "fullName": "google.ads.googleads.v17.services.CustomAudienceService"
}
}
},
@@ -3101,7 +3055,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCustomConversionGoals",
- "fullName": "google.ads.googleads.v16.services.CustomConversionGoalClient.MutateCustomConversionGoals",
+ "fullName": "google.ads.googleads.v17.services.CustomConversionGoalClient.MutateCustomConversionGoals",
"parameters": [
{
"type": "context.Context",
@@ -3119,14 +3073,14 @@
"resultType": "*servicespb.MutateCustomConversionGoalsResponse",
"client": {
"shortName": "CustomConversionGoalClient",
- "fullName": "google.ads.googleads.v16.services.CustomConversionGoalClient"
+ "fullName": "google.ads.googleads.v17.services.CustomConversionGoalClient"
},
"method": {
"shortName": "MutateCustomConversionGoals",
- "fullName": "google.ads.googleads.v16.services.CustomConversionGoalService.MutateCustomConversionGoals",
+ "fullName": "google.ads.googleads.v17.services.CustomConversionGoalService.MutateCustomConversionGoals",
"service": {
"shortName": "CustomConversionGoalService",
- "fullName": "google.ads.googleads.v16.services.CustomConversionGoalService"
+ "fullName": "google.ads.googleads.v17.services.CustomConversionGoalService"
}
}
},
@@ -3147,7 +3101,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCustomInterests",
- "fullName": "google.ads.googleads.v16.services.CustomInterestClient.MutateCustomInterests",
+ "fullName": "google.ads.googleads.v17.services.CustomInterestClient.MutateCustomInterests",
"parameters": [
{
"type": "context.Context",
@@ -3165,14 +3119,14 @@
"resultType": "*servicespb.MutateCustomInterestsResponse",
"client": {
"shortName": "CustomInterestClient",
- "fullName": "google.ads.googleads.v16.services.CustomInterestClient"
+ "fullName": "google.ads.googleads.v17.services.CustomInterestClient"
},
"method": {
"shortName": "MutateCustomInterests",
- "fullName": "google.ads.googleads.v16.services.CustomInterestService.MutateCustomInterests",
+ "fullName": "google.ads.googleads.v17.services.CustomInterestService.MutateCustomInterests",
"service": {
"shortName": "CustomInterestService",
- "fullName": "google.ads.googleads.v16.services.CustomInterestService"
+ "fullName": "google.ads.googleads.v17.services.CustomInterestService"
}
}
},
@@ -3193,7 +3147,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCustomerAssets",
- "fullName": "google.ads.googleads.v16.services.CustomerAssetClient.MutateCustomerAssets",
+ "fullName": "google.ads.googleads.v17.services.CustomerAssetClient.MutateCustomerAssets",
"parameters": [
{
"type": "context.Context",
@@ -3211,14 +3165,14 @@
"resultType": "*servicespb.MutateCustomerAssetsResponse",
"client": {
"shortName": "CustomerAssetClient",
- "fullName": "google.ads.googleads.v16.services.CustomerAssetClient"
+ "fullName": "google.ads.googleads.v17.services.CustomerAssetClient"
},
"method": {
"shortName": "MutateCustomerAssets",
- "fullName": "google.ads.googleads.v16.services.CustomerAssetService.MutateCustomerAssets",
+ "fullName": "google.ads.googleads.v17.services.CustomerAssetService.MutateCustomerAssets",
"service": {
"shortName": "CustomerAssetService",
- "fullName": "google.ads.googleads.v16.services.CustomerAssetService"
+ "fullName": "google.ads.googleads.v17.services.CustomerAssetService"
}
}
},
@@ -3239,7 +3193,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCustomerAssetSets",
- "fullName": "google.ads.googleads.v16.services.CustomerAssetSetClient.MutateCustomerAssetSets",
+ "fullName": "google.ads.googleads.v17.services.CustomerAssetSetClient.MutateCustomerAssetSets",
"parameters": [
{
"type": "context.Context",
@@ -3257,14 +3211,14 @@
"resultType": "*servicespb.MutateCustomerAssetSetsResponse",
"client": {
"shortName": "CustomerAssetSetClient",
- "fullName": "google.ads.googleads.v16.services.CustomerAssetSetClient"
+ "fullName": "google.ads.googleads.v17.services.CustomerAssetSetClient"
},
"method": {
"shortName": "MutateCustomerAssetSets",
- "fullName": "google.ads.googleads.v16.services.CustomerAssetSetService.MutateCustomerAssetSets",
+ "fullName": "google.ads.googleads.v17.services.CustomerAssetSetService.MutateCustomerAssetSets",
"service": {
"shortName": "CustomerAssetSetService",
- "fullName": "google.ads.googleads.v16.services.CustomerAssetSetService"
+ "fullName": "google.ads.googleads.v17.services.CustomerAssetSetService"
}
}
},
@@ -3285,7 +3239,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCustomerClientLink",
- "fullName": "google.ads.googleads.v16.services.CustomerClientLinkClient.MutateCustomerClientLink",
+ "fullName": "google.ads.googleads.v17.services.CustomerClientLinkClient.MutateCustomerClientLink",
"parameters": [
{
"type": "context.Context",
@@ -3303,14 +3257,14 @@
"resultType": "*servicespb.MutateCustomerClientLinkResponse",
"client": {
"shortName": "CustomerClientLinkClient",
- "fullName": "google.ads.googleads.v16.services.CustomerClientLinkClient"
+ "fullName": "google.ads.googleads.v17.services.CustomerClientLinkClient"
},
"method": {
"shortName": "MutateCustomerClientLink",
- "fullName": "google.ads.googleads.v16.services.CustomerClientLinkService.MutateCustomerClientLink",
+ "fullName": "google.ads.googleads.v17.services.CustomerClientLinkService.MutateCustomerClientLink",
"service": {
"shortName": "CustomerClientLinkService",
- "fullName": "google.ads.googleads.v16.services.CustomerClientLinkService"
+ "fullName": "google.ads.googleads.v17.services.CustomerClientLinkService"
}
}
},
@@ -3331,7 +3285,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCustomerConversionGoals",
- "fullName": "google.ads.googleads.v16.services.CustomerConversionGoalClient.MutateCustomerConversionGoals",
+ "fullName": "google.ads.googleads.v17.services.CustomerConversionGoalClient.MutateCustomerConversionGoals",
"parameters": [
{
"type": "context.Context",
@@ -3349,14 +3303,14 @@
"resultType": "*servicespb.MutateCustomerConversionGoalsResponse",
"client": {
"shortName": "CustomerConversionGoalClient",
- "fullName": "google.ads.googleads.v16.services.CustomerConversionGoalClient"
+ "fullName": "google.ads.googleads.v17.services.CustomerConversionGoalClient"
},
"method": {
"shortName": "MutateCustomerConversionGoals",
- "fullName": "google.ads.googleads.v16.services.CustomerConversionGoalService.MutateCustomerConversionGoals",
+ "fullName": "google.ads.googleads.v17.services.CustomerConversionGoalService.MutateCustomerConversionGoals",
"service": {
"shortName": "CustomerConversionGoalService",
- "fullName": "google.ads.googleads.v16.services.CustomerConversionGoalService"
+ "fullName": "google.ads.googleads.v17.services.CustomerConversionGoalService"
}
}
},
@@ -3377,7 +3331,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCustomerCustomizers",
- "fullName": "google.ads.googleads.v16.services.CustomerCustomizerClient.MutateCustomerCustomizers",
+ "fullName": "google.ads.googleads.v17.services.CustomerCustomizerClient.MutateCustomerCustomizers",
"parameters": [
{
"type": "context.Context",
@@ -3395,14 +3349,14 @@
"resultType": "*servicespb.MutateCustomerCustomizersResponse",
"client": {
"shortName": "CustomerCustomizerClient",
- "fullName": "google.ads.googleads.v16.services.CustomerCustomizerClient"
+ "fullName": "google.ads.googleads.v17.services.CustomerCustomizerClient"
},
"method": {
"shortName": "MutateCustomerCustomizers",
- "fullName": "google.ads.googleads.v16.services.CustomerCustomizerService.MutateCustomerCustomizers",
+ "fullName": "google.ads.googleads.v17.services.CustomerCustomizerService.MutateCustomerCustomizers",
"service": {
"shortName": "CustomerCustomizerService",
- "fullName": "google.ads.googleads.v16.services.CustomerCustomizerService"
+ "fullName": "google.ads.googleads.v17.services.CustomerCustomizerService"
}
}
},
@@ -3423,7 +3377,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCustomerExtensionSettings",
- "fullName": "google.ads.googleads.v16.services.CustomerExtensionSettingClient.MutateCustomerExtensionSettings",
+ "fullName": "google.ads.googleads.v17.services.CustomerExtensionSettingClient.MutateCustomerExtensionSettings",
"parameters": [
{
"type": "context.Context",
@@ -3441,14 +3395,14 @@
"resultType": "*servicespb.MutateCustomerExtensionSettingsResponse",
"client": {
"shortName": "CustomerExtensionSettingClient",
- "fullName": "google.ads.googleads.v16.services.CustomerExtensionSettingClient"
+ "fullName": "google.ads.googleads.v17.services.CustomerExtensionSettingClient"
},
"method": {
"shortName": "MutateCustomerExtensionSettings",
- "fullName": "google.ads.googleads.v16.services.CustomerExtensionSettingService.MutateCustomerExtensionSettings",
+ "fullName": "google.ads.googleads.v17.services.CustomerExtensionSettingService.MutateCustomerExtensionSettings",
"service": {
"shortName": "CustomerExtensionSettingService",
- "fullName": "google.ads.googleads.v16.services.CustomerExtensionSettingService"
+ "fullName": "google.ads.googleads.v17.services.CustomerExtensionSettingService"
}
}
},
@@ -3469,7 +3423,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCustomerFeeds",
- "fullName": "google.ads.googleads.v16.services.CustomerFeedClient.MutateCustomerFeeds",
+ "fullName": "google.ads.googleads.v17.services.CustomerFeedClient.MutateCustomerFeeds",
"parameters": [
{
"type": "context.Context",
@@ -3487,14 +3441,14 @@
"resultType": "*servicespb.MutateCustomerFeedsResponse",
"client": {
"shortName": "CustomerFeedClient",
- "fullName": "google.ads.googleads.v16.services.CustomerFeedClient"
+ "fullName": "google.ads.googleads.v17.services.CustomerFeedClient"
},
"method": {
"shortName": "MutateCustomerFeeds",
- "fullName": "google.ads.googleads.v16.services.CustomerFeedService.MutateCustomerFeeds",
+ "fullName": "google.ads.googleads.v17.services.CustomerFeedService.MutateCustomerFeeds",
"service": {
"shortName": "CustomerFeedService",
- "fullName": "google.ads.googleads.v16.services.CustomerFeedService"
+ "fullName": "google.ads.googleads.v17.services.CustomerFeedService"
}
}
},
@@ -3515,7 +3469,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCustomerLabels",
- "fullName": "google.ads.googleads.v16.services.CustomerLabelClient.MutateCustomerLabels",
+ "fullName": "google.ads.googleads.v17.services.CustomerLabelClient.MutateCustomerLabels",
"parameters": [
{
"type": "context.Context",
@@ -3533,14 +3487,14 @@
"resultType": "*servicespb.MutateCustomerLabelsResponse",
"client": {
"shortName": "CustomerLabelClient",
- "fullName": "google.ads.googleads.v16.services.CustomerLabelClient"
+ "fullName": "google.ads.googleads.v17.services.CustomerLabelClient"
},
"method": {
"shortName": "MutateCustomerLabels",
- "fullName": "google.ads.googleads.v16.services.CustomerLabelService.MutateCustomerLabels",
+ "fullName": "google.ads.googleads.v17.services.CustomerLabelService.MutateCustomerLabels",
"service": {
"shortName": "CustomerLabelService",
- "fullName": "google.ads.googleads.v16.services.CustomerLabelService"
+ "fullName": "google.ads.googleads.v17.services.CustomerLabelService"
}
}
},
@@ -3561,7 +3515,7 @@
"language": "GO",
"clientMethod": {
"shortName": "ConfigureCustomerLifecycleGoals",
- "fullName": "google.ads.googleads.v16.services.CustomerLifecycleGoalClient.ConfigureCustomerLifecycleGoals",
+ "fullName": "google.ads.googleads.v17.services.CustomerLifecycleGoalClient.ConfigureCustomerLifecycleGoals",
"parameters": [
{
"type": "context.Context",
@@ -3579,14 +3533,14 @@
"resultType": "*servicespb.ConfigureCustomerLifecycleGoalsResponse",
"client": {
"shortName": "CustomerLifecycleGoalClient",
- "fullName": "google.ads.googleads.v16.services.CustomerLifecycleGoalClient"
+ "fullName": "google.ads.googleads.v17.services.CustomerLifecycleGoalClient"
},
"method": {
"shortName": "ConfigureCustomerLifecycleGoals",
- "fullName": "google.ads.googleads.v16.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals",
+ "fullName": "google.ads.googleads.v17.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals",
"service": {
"shortName": "CustomerLifecycleGoalService",
- "fullName": "google.ads.googleads.v16.services.CustomerLifecycleGoalService"
+ "fullName": "google.ads.googleads.v17.services.CustomerLifecycleGoalService"
}
}
},
@@ -3607,7 +3561,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MoveManagerLink",
- "fullName": "google.ads.googleads.v16.services.CustomerManagerLinkClient.MoveManagerLink",
+ "fullName": "google.ads.googleads.v17.services.CustomerManagerLinkClient.MoveManagerLink",
"parameters": [
{
"type": "context.Context",
@@ -3625,14 +3579,14 @@
"resultType": "*servicespb.MoveManagerLinkResponse",
"client": {
"shortName": "CustomerManagerLinkClient",
- "fullName": "google.ads.googleads.v16.services.CustomerManagerLinkClient"
+ "fullName": "google.ads.googleads.v17.services.CustomerManagerLinkClient"
},
"method": {
"shortName": "MoveManagerLink",
- "fullName": "google.ads.googleads.v16.services.CustomerManagerLinkService.MoveManagerLink",
+ "fullName": "google.ads.googleads.v17.services.CustomerManagerLinkService.MoveManagerLink",
"service": {
"shortName": "CustomerManagerLinkService",
- "fullName": "google.ads.googleads.v16.services.CustomerManagerLinkService"
+ "fullName": "google.ads.googleads.v17.services.CustomerManagerLinkService"
}
}
},
@@ -3653,7 +3607,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCustomerManagerLink",
- "fullName": "google.ads.googleads.v16.services.CustomerManagerLinkClient.MutateCustomerManagerLink",
+ "fullName": "google.ads.googleads.v17.services.CustomerManagerLinkClient.MutateCustomerManagerLink",
"parameters": [
{
"type": "context.Context",
@@ -3671,14 +3625,14 @@
"resultType": "*servicespb.MutateCustomerManagerLinkResponse",
"client": {
"shortName": "CustomerManagerLinkClient",
- "fullName": "google.ads.googleads.v16.services.CustomerManagerLinkClient"
+ "fullName": "google.ads.googleads.v17.services.CustomerManagerLinkClient"
},
"method": {
"shortName": "MutateCustomerManagerLink",
- "fullName": "google.ads.googleads.v16.services.CustomerManagerLinkService.MutateCustomerManagerLink",
+ "fullName": "google.ads.googleads.v17.services.CustomerManagerLinkService.MutateCustomerManagerLink",
"service": {
"shortName": "CustomerManagerLinkService",
- "fullName": "google.ads.googleads.v16.services.CustomerManagerLinkService"
+ "fullName": "google.ads.googleads.v17.services.CustomerManagerLinkService"
}
}
},
@@ -3699,7 +3653,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCustomerNegativeCriteria",
- "fullName": "google.ads.googleads.v16.services.CustomerNegativeCriterionClient.MutateCustomerNegativeCriteria",
+ "fullName": "google.ads.googleads.v17.services.CustomerNegativeCriterionClient.MutateCustomerNegativeCriteria",
"parameters": [
{
"type": "context.Context",
@@ -3717,14 +3671,14 @@
"resultType": "*servicespb.MutateCustomerNegativeCriteriaResponse",
"client": {
"shortName": "CustomerNegativeCriterionClient",
- "fullName": "google.ads.googleads.v16.services.CustomerNegativeCriterionClient"
+ "fullName": "google.ads.googleads.v17.services.CustomerNegativeCriterionClient"
},
"method": {
"shortName": "MutateCustomerNegativeCriteria",
- "fullName": "google.ads.googleads.v16.services.CustomerNegativeCriterionService.MutateCustomerNegativeCriteria",
+ "fullName": "google.ads.googleads.v17.services.CustomerNegativeCriterionService.MutateCustomerNegativeCriteria",
"service": {
"shortName": "CustomerNegativeCriterionService",
- "fullName": "google.ads.googleads.v16.services.CustomerNegativeCriterionService"
+ "fullName": "google.ads.googleads.v17.services.CustomerNegativeCriterionService"
}
}
},
@@ -3745,7 +3699,7 @@
"language": "GO",
"clientMethod": {
"shortName": "CreateCustomerClient",
- "fullName": "google.ads.googleads.v16.services.CustomerClient.CreateCustomerClient",
+ "fullName": "google.ads.googleads.v17.services.CustomerClient.CreateCustomerClient",
"parameters": [
{
"type": "context.Context",
@@ -3763,14 +3717,14 @@
"resultType": "*servicespb.CreateCustomerClientResponse",
"client": {
"shortName": "CustomerClient",
- "fullName": "google.ads.googleads.v16.services.CustomerClient"
+ "fullName": "google.ads.googleads.v17.services.CustomerClient"
},
"method": {
"shortName": "CreateCustomerClient",
- "fullName": "google.ads.googleads.v16.services.CustomerService.CreateCustomerClient",
+ "fullName": "google.ads.googleads.v17.services.CustomerService.CreateCustomerClient",
"service": {
"shortName": "CustomerService",
- "fullName": "google.ads.googleads.v16.services.CustomerService"
+ "fullName": "google.ads.googleads.v17.services.CustomerService"
}
}
},
@@ -3791,7 +3745,7 @@
"language": "GO",
"clientMethod": {
"shortName": "ListAccessibleCustomers",
- "fullName": "google.ads.googleads.v16.services.CustomerClient.ListAccessibleCustomers",
+ "fullName": "google.ads.googleads.v17.services.CustomerClient.ListAccessibleCustomers",
"parameters": [
{
"type": "context.Context",
@@ -3809,14 +3763,14 @@
"resultType": "*servicespb.ListAccessibleCustomersResponse",
"client": {
"shortName": "CustomerClient",
- "fullName": "google.ads.googleads.v16.services.CustomerClient"
+ "fullName": "google.ads.googleads.v17.services.CustomerClient"
},
"method": {
"shortName": "ListAccessibleCustomers",
- "fullName": "google.ads.googleads.v16.services.CustomerService.ListAccessibleCustomers",
+ "fullName": "google.ads.googleads.v17.services.CustomerService.ListAccessibleCustomers",
"service": {
"shortName": "CustomerService",
- "fullName": "google.ads.googleads.v16.services.CustomerService"
+ "fullName": "google.ads.googleads.v17.services.CustomerService"
}
}
},
@@ -3837,7 +3791,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCustomer",
- "fullName": "google.ads.googleads.v16.services.CustomerClient.MutateCustomer",
+ "fullName": "google.ads.googleads.v17.services.CustomerClient.MutateCustomer",
"parameters": [
{
"type": "context.Context",
@@ -3855,14 +3809,14 @@
"resultType": "*servicespb.MutateCustomerResponse",
"client": {
"shortName": "CustomerClient",
- "fullName": "google.ads.googleads.v16.services.CustomerClient"
+ "fullName": "google.ads.googleads.v17.services.CustomerClient"
},
"method": {
"shortName": "MutateCustomer",
- "fullName": "google.ads.googleads.v16.services.CustomerService.MutateCustomer",
+ "fullName": "google.ads.googleads.v17.services.CustomerService.MutateCustomer",
"service": {
"shortName": "CustomerService",
- "fullName": "google.ads.googleads.v16.services.CustomerService"
+ "fullName": "google.ads.googleads.v17.services.CustomerService"
}
}
},
@@ -3883,7 +3837,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCustomerSkAdNetworkConversionValueSchema",
- "fullName": "google.ads.googleads.v16.services.CustomerSkAdNetworkConversionValueSchemaClient.MutateCustomerSkAdNetworkConversionValueSchema",
+ "fullName": "google.ads.googleads.v17.services.CustomerSkAdNetworkConversionValueSchemaClient.MutateCustomerSkAdNetworkConversionValueSchema",
"parameters": [
{
"type": "context.Context",
@@ -3901,14 +3855,14 @@
"resultType": "*servicespb.MutateCustomerSkAdNetworkConversionValueSchemaResponse",
"client": {
"shortName": "CustomerSkAdNetworkConversionValueSchemaClient",
- "fullName": "google.ads.googleads.v16.services.CustomerSkAdNetworkConversionValueSchemaClient"
+ "fullName": "google.ads.googleads.v17.services.CustomerSkAdNetworkConversionValueSchemaClient"
},
"method": {
"shortName": "MutateCustomerSkAdNetworkConversionValueSchema",
- "fullName": "google.ads.googleads.v16.services.CustomerSkAdNetworkConversionValueSchemaService.MutateCustomerSkAdNetworkConversionValueSchema",
+ "fullName": "google.ads.googleads.v17.services.CustomerSkAdNetworkConversionValueSchemaService.MutateCustomerSkAdNetworkConversionValueSchema",
"service": {
"shortName": "CustomerSkAdNetworkConversionValueSchemaService",
- "fullName": "google.ads.googleads.v16.services.CustomerSkAdNetworkConversionValueSchemaService"
+ "fullName": "google.ads.googleads.v17.services.CustomerSkAdNetworkConversionValueSchemaService"
}
}
},
@@ -3929,7 +3883,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCustomerUserAccessInvitation",
- "fullName": "google.ads.googleads.v16.services.CustomerUserAccessInvitationClient.MutateCustomerUserAccessInvitation",
+ "fullName": "google.ads.googleads.v17.services.CustomerUserAccessInvitationClient.MutateCustomerUserAccessInvitation",
"parameters": [
{
"type": "context.Context",
@@ -3947,14 +3901,14 @@
"resultType": "*servicespb.MutateCustomerUserAccessInvitationResponse",
"client": {
"shortName": "CustomerUserAccessInvitationClient",
- "fullName": "google.ads.googleads.v16.services.CustomerUserAccessInvitationClient"
+ "fullName": "google.ads.googleads.v17.services.CustomerUserAccessInvitationClient"
},
"method": {
"shortName": "MutateCustomerUserAccessInvitation",
- "fullName": "google.ads.googleads.v16.services.CustomerUserAccessInvitationService.MutateCustomerUserAccessInvitation",
+ "fullName": "google.ads.googleads.v17.services.CustomerUserAccessInvitationService.MutateCustomerUserAccessInvitation",
"service": {
"shortName": "CustomerUserAccessInvitationService",
- "fullName": "google.ads.googleads.v16.services.CustomerUserAccessInvitationService"
+ "fullName": "google.ads.googleads.v17.services.CustomerUserAccessInvitationService"
}
}
},
@@ -3975,7 +3929,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCustomerUserAccess",
- "fullName": "google.ads.googleads.v16.services.CustomerUserAccessClient.MutateCustomerUserAccess",
+ "fullName": "google.ads.googleads.v17.services.CustomerUserAccessClient.MutateCustomerUserAccess",
"parameters": [
{
"type": "context.Context",
@@ -3993,14 +3947,14 @@
"resultType": "*servicespb.MutateCustomerUserAccessResponse",
"client": {
"shortName": "CustomerUserAccessClient",
- "fullName": "google.ads.googleads.v16.services.CustomerUserAccessClient"
+ "fullName": "google.ads.googleads.v17.services.CustomerUserAccessClient"
},
"method": {
"shortName": "MutateCustomerUserAccess",
- "fullName": "google.ads.googleads.v16.services.CustomerUserAccessService.MutateCustomerUserAccess",
+ "fullName": "google.ads.googleads.v17.services.CustomerUserAccessService.MutateCustomerUserAccess",
"service": {
"shortName": "CustomerUserAccessService",
- "fullName": "google.ads.googleads.v16.services.CustomerUserAccessService"
+ "fullName": "google.ads.googleads.v17.services.CustomerUserAccessService"
}
}
},
@@ -4021,7 +3975,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateCustomizerAttributes",
- "fullName": "google.ads.googleads.v16.services.CustomizerAttributeClient.MutateCustomizerAttributes",
+ "fullName": "google.ads.googleads.v17.services.CustomizerAttributeClient.MutateCustomizerAttributes",
"parameters": [
{
"type": "context.Context",
@@ -4039,14 +3993,14 @@
"resultType": "*servicespb.MutateCustomizerAttributesResponse",
"client": {
"shortName": "CustomizerAttributeClient",
- "fullName": "google.ads.googleads.v16.services.CustomizerAttributeClient"
+ "fullName": "google.ads.googleads.v17.services.CustomizerAttributeClient"
},
"method": {
"shortName": "MutateCustomizerAttributes",
- "fullName": "google.ads.googleads.v16.services.CustomizerAttributeService.MutateCustomizerAttributes",
+ "fullName": "google.ads.googleads.v17.services.CustomizerAttributeService.MutateCustomizerAttributes",
"service": {
"shortName": "CustomizerAttributeService",
- "fullName": "google.ads.googleads.v16.services.CustomizerAttributeService"
+ "fullName": "google.ads.googleads.v17.services.CustomizerAttributeService"
}
}
},
@@ -4067,7 +4021,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateExperimentArms",
- "fullName": "google.ads.googleads.v16.services.ExperimentArmClient.MutateExperimentArms",
+ "fullName": "google.ads.googleads.v17.services.ExperimentArmClient.MutateExperimentArms",
"parameters": [
{
"type": "context.Context",
@@ -4085,14 +4039,14 @@
"resultType": "*servicespb.MutateExperimentArmsResponse",
"client": {
"shortName": "ExperimentArmClient",
- "fullName": "google.ads.googleads.v16.services.ExperimentArmClient"
+ "fullName": "google.ads.googleads.v17.services.ExperimentArmClient"
},
"method": {
"shortName": "MutateExperimentArms",
- "fullName": "google.ads.googleads.v16.services.ExperimentArmService.MutateExperimentArms",
+ "fullName": "google.ads.googleads.v17.services.ExperimentArmService.MutateExperimentArms",
"service": {
"shortName": "ExperimentArmService",
- "fullName": "google.ads.googleads.v16.services.ExperimentArmService"
+ "fullName": "google.ads.googleads.v17.services.ExperimentArmService"
}
}
},
@@ -4113,7 +4067,7 @@
"language": "GO",
"clientMethod": {
"shortName": "EndExperiment",
- "fullName": "google.ads.googleads.v16.services.ExperimentClient.EndExperiment",
+ "fullName": "google.ads.googleads.v17.services.ExperimentClient.EndExperiment",
"parameters": [
{
"type": "context.Context",
@@ -4130,14 +4084,14 @@
],
"client": {
"shortName": "ExperimentClient",
- "fullName": "google.ads.googleads.v16.services.ExperimentClient"
+ "fullName": "google.ads.googleads.v17.services.ExperimentClient"
},
"method": {
"shortName": "EndExperiment",
- "fullName": "google.ads.googleads.v16.services.ExperimentService.EndExperiment",
+ "fullName": "google.ads.googleads.v17.services.ExperimentService.EndExperiment",
"service": {
"shortName": "ExperimentService",
- "fullName": "google.ads.googleads.v16.services.ExperimentService"
+ "fullName": "google.ads.googleads.v17.services.ExperimentService"
}
}
},
@@ -4158,7 +4112,7 @@
"language": "GO",
"clientMethod": {
"shortName": "GraduateExperiment",
- "fullName": "google.ads.googleads.v16.services.ExperimentClient.GraduateExperiment",
+ "fullName": "google.ads.googleads.v17.services.ExperimentClient.GraduateExperiment",
"parameters": [
{
"type": "context.Context",
@@ -4175,14 +4129,14 @@
],
"client": {
"shortName": "ExperimentClient",
- "fullName": "google.ads.googleads.v16.services.ExperimentClient"
+ "fullName": "google.ads.googleads.v17.services.ExperimentClient"
},
"method": {
"shortName": "GraduateExperiment",
- "fullName": "google.ads.googleads.v16.services.ExperimentService.GraduateExperiment",
+ "fullName": "google.ads.googleads.v17.services.ExperimentService.GraduateExperiment",
"service": {
"shortName": "ExperimentService",
- "fullName": "google.ads.googleads.v16.services.ExperimentService"
+ "fullName": "google.ads.googleads.v17.services.ExperimentService"
}
}
},
@@ -4203,7 +4157,7 @@
"language": "GO",
"clientMethod": {
"shortName": "ListExperimentAsyncErrors",
- "fullName": "google.ads.googleads.v16.services.ExperimentClient.ListExperimentAsyncErrors",
+ "fullName": "google.ads.googleads.v17.services.ExperimentClient.ListExperimentAsyncErrors",
"parameters": [
{
"type": "context.Context",
@@ -4221,14 +4175,14 @@
"resultType": "StatusIterator",
"client": {
"shortName": "ExperimentClient",
- "fullName": "google.ads.googleads.v16.services.ExperimentClient"
+ "fullName": "google.ads.googleads.v17.services.ExperimentClient"
},
"method": {
"shortName": "ListExperimentAsyncErrors",
- "fullName": "google.ads.googleads.v16.services.ExperimentService.ListExperimentAsyncErrors",
+ "fullName": "google.ads.googleads.v17.services.ExperimentService.ListExperimentAsyncErrors",
"service": {
"shortName": "ExperimentService",
- "fullName": "google.ads.googleads.v16.services.ExperimentService"
+ "fullName": "google.ads.googleads.v17.services.ExperimentService"
}
}
},
@@ -4249,7 +4203,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateExperiments",
- "fullName": "google.ads.googleads.v16.services.ExperimentClient.MutateExperiments",
+ "fullName": "google.ads.googleads.v17.services.ExperimentClient.MutateExperiments",
"parameters": [
{
"type": "context.Context",
@@ -4267,14 +4221,14 @@
"resultType": "*servicespb.MutateExperimentsResponse",
"client": {
"shortName": "ExperimentClient",
- "fullName": "google.ads.googleads.v16.services.ExperimentClient"
+ "fullName": "google.ads.googleads.v17.services.ExperimentClient"
},
"method": {
"shortName": "MutateExperiments",
- "fullName": "google.ads.googleads.v16.services.ExperimentService.MutateExperiments",
+ "fullName": "google.ads.googleads.v17.services.ExperimentService.MutateExperiments",
"service": {
"shortName": "ExperimentService",
- "fullName": "google.ads.googleads.v16.services.ExperimentService"
+ "fullName": "google.ads.googleads.v17.services.ExperimentService"
}
}
},
@@ -4295,7 +4249,7 @@
"language": "GO",
"clientMethod": {
"shortName": "PromoteExperiment",
- "fullName": "google.ads.googleads.v16.services.ExperimentClient.PromoteExperiment",
+ "fullName": "google.ads.googleads.v17.services.ExperimentClient.PromoteExperiment",
"parameters": [
{
"type": "context.Context",
@@ -4313,14 +4267,14 @@
"resultType": "PromoteExperimentOperation",
"client": {
"shortName": "ExperimentClient",
- "fullName": "google.ads.googleads.v16.services.ExperimentClient"
+ "fullName": "google.ads.googleads.v17.services.ExperimentClient"
},
"method": {
"shortName": "PromoteExperiment",
- "fullName": "google.ads.googleads.v16.services.ExperimentService.PromoteExperiment",
+ "fullName": "google.ads.googleads.v17.services.ExperimentService.PromoteExperiment",
"service": {
"shortName": "ExperimentService",
- "fullName": "google.ads.googleads.v16.services.ExperimentService"
+ "fullName": "google.ads.googleads.v17.services.ExperimentService"
}
}
},
@@ -4341,7 +4295,7 @@
"language": "GO",
"clientMethod": {
"shortName": "ScheduleExperiment",
- "fullName": "google.ads.googleads.v16.services.ExperimentClient.ScheduleExperiment",
+ "fullName": "google.ads.googleads.v17.services.ExperimentClient.ScheduleExperiment",
"parameters": [
{
"type": "context.Context",
@@ -4359,14 +4313,14 @@
"resultType": "ScheduleExperimentOperation",
"client": {
"shortName": "ExperimentClient",
- "fullName": "google.ads.googleads.v16.services.ExperimentClient"
+ "fullName": "google.ads.googleads.v17.services.ExperimentClient"
},
"method": {
"shortName": "ScheduleExperiment",
- "fullName": "google.ads.googleads.v16.services.ExperimentService.ScheduleExperiment",
+ "fullName": "google.ads.googleads.v17.services.ExperimentService.ScheduleExperiment",
"service": {
"shortName": "ExperimentService",
- "fullName": "google.ads.googleads.v16.services.ExperimentService"
+ "fullName": "google.ads.googleads.v17.services.ExperimentService"
}
}
},
@@ -4387,7 +4341,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateExtensionFeedItems",
- "fullName": "google.ads.googleads.v16.services.ExtensionFeedItemClient.MutateExtensionFeedItems",
+ "fullName": "google.ads.googleads.v17.services.ExtensionFeedItemClient.MutateExtensionFeedItems",
"parameters": [
{
"type": "context.Context",
@@ -4405,14 +4359,14 @@
"resultType": "*servicespb.MutateExtensionFeedItemsResponse",
"client": {
"shortName": "ExtensionFeedItemClient",
- "fullName": "google.ads.googleads.v16.services.ExtensionFeedItemClient"
+ "fullName": "google.ads.googleads.v17.services.ExtensionFeedItemClient"
},
"method": {
"shortName": "MutateExtensionFeedItems",
- "fullName": "google.ads.googleads.v16.services.ExtensionFeedItemService.MutateExtensionFeedItems",
+ "fullName": "google.ads.googleads.v17.services.ExtensionFeedItemService.MutateExtensionFeedItems",
"service": {
"shortName": "ExtensionFeedItemService",
- "fullName": "google.ads.googleads.v16.services.ExtensionFeedItemService"
+ "fullName": "google.ads.googleads.v17.services.ExtensionFeedItemService"
}
}
},
@@ -4433,7 +4387,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateFeedItems",
- "fullName": "google.ads.googleads.v16.services.FeedItemClient.MutateFeedItems",
+ "fullName": "google.ads.googleads.v17.services.FeedItemClient.MutateFeedItems",
"parameters": [
{
"type": "context.Context",
@@ -4451,14 +4405,14 @@
"resultType": "*servicespb.MutateFeedItemsResponse",
"client": {
"shortName": "FeedItemClient",
- "fullName": "google.ads.googleads.v16.services.FeedItemClient"
+ "fullName": "google.ads.googleads.v17.services.FeedItemClient"
},
"method": {
"shortName": "MutateFeedItems",
- "fullName": "google.ads.googleads.v16.services.FeedItemService.MutateFeedItems",
+ "fullName": "google.ads.googleads.v17.services.FeedItemService.MutateFeedItems",
"service": {
"shortName": "FeedItemService",
- "fullName": "google.ads.googleads.v16.services.FeedItemService"
+ "fullName": "google.ads.googleads.v17.services.FeedItemService"
}
}
},
@@ -4479,7 +4433,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateFeedItemSetLinks",
- "fullName": "google.ads.googleads.v16.services.FeedItemSetLinkClient.MutateFeedItemSetLinks",
+ "fullName": "google.ads.googleads.v17.services.FeedItemSetLinkClient.MutateFeedItemSetLinks",
"parameters": [
{
"type": "context.Context",
@@ -4497,14 +4451,14 @@
"resultType": "*servicespb.MutateFeedItemSetLinksResponse",
"client": {
"shortName": "FeedItemSetLinkClient",
- "fullName": "google.ads.googleads.v16.services.FeedItemSetLinkClient"
+ "fullName": "google.ads.googleads.v17.services.FeedItemSetLinkClient"
},
"method": {
"shortName": "MutateFeedItemSetLinks",
- "fullName": "google.ads.googleads.v16.services.FeedItemSetLinkService.MutateFeedItemSetLinks",
+ "fullName": "google.ads.googleads.v17.services.FeedItemSetLinkService.MutateFeedItemSetLinks",
"service": {
"shortName": "FeedItemSetLinkService",
- "fullName": "google.ads.googleads.v16.services.FeedItemSetLinkService"
+ "fullName": "google.ads.googleads.v17.services.FeedItemSetLinkService"
}
}
},
@@ -4525,7 +4479,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateFeedItemSets",
- "fullName": "google.ads.googleads.v16.services.FeedItemSetClient.MutateFeedItemSets",
+ "fullName": "google.ads.googleads.v17.services.FeedItemSetClient.MutateFeedItemSets",
"parameters": [
{
"type": "context.Context",
@@ -4543,14 +4497,14 @@
"resultType": "*servicespb.MutateFeedItemSetsResponse",
"client": {
"shortName": "FeedItemSetClient",
- "fullName": "google.ads.googleads.v16.services.FeedItemSetClient"
+ "fullName": "google.ads.googleads.v17.services.FeedItemSetClient"
},
"method": {
"shortName": "MutateFeedItemSets",
- "fullName": "google.ads.googleads.v16.services.FeedItemSetService.MutateFeedItemSets",
+ "fullName": "google.ads.googleads.v17.services.FeedItemSetService.MutateFeedItemSets",
"service": {
"shortName": "FeedItemSetService",
- "fullName": "google.ads.googleads.v16.services.FeedItemSetService"
+ "fullName": "google.ads.googleads.v17.services.FeedItemSetService"
}
}
},
@@ -4571,7 +4525,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateFeedItemTargets",
- "fullName": "google.ads.googleads.v16.services.FeedItemTargetClient.MutateFeedItemTargets",
+ "fullName": "google.ads.googleads.v17.services.FeedItemTargetClient.MutateFeedItemTargets",
"parameters": [
{
"type": "context.Context",
@@ -4589,14 +4543,14 @@
"resultType": "*servicespb.MutateFeedItemTargetsResponse",
"client": {
"shortName": "FeedItemTargetClient",
- "fullName": "google.ads.googleads.v16.services.FeedItemTargetClient"
+ "fullName": "google.ads.googleads.v17.services.FeedItemTargetClient"
},
"method": {
"shortName": "MutateFeedItemTargets",
- "fullName": "google.ads.googleads.v16.services.FeedItemTargetService.MutateFeedItemTargets",
+ "fullName": "google.ads.googleads.v17.services.FeedItemTargetService.MutateFeedItemTargets",
"service": {
"shortName": "FeedItemTargetService",
- "fullName": "google.ads.googleads.v16.services.FeedItemTargetService"
+ "fullName": "google.ads.googleads.v17.services.FeedItemTargetService"
}
}
},
@@ -4617,7 +4571,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateFeedMappings",
- "fullName": "google.ads.googleads.v16.services.FeedMappingClient.MutateFeedMappings",
+ "fullName": "google.ads.googleads.v17.services.FeedMappingClient.MutateFeedMappings",
"parameters": [
{
"type": "context.Context",
@@ -4635,14 +4589,14 @@
"resultType": "*servicespb.MutateFeedMappingsResponse",
"client": {
"shortName": "FeedMappingClient",
- "fullName": "google.ads.googleads.v16.services.FeedMappingClient"
+ "fullName": "google.ads.googleads.v17.services.FeedMappingClient"
},
"method": {
"shortName": "MutateFeedMappings",
- "fullName": "google.ads.googleads.v16.services.FeedMappingService.MutateFeedMappings",
+ "fullName": "google.ads.googleads.v17.services.FeedMappingService.MutateFeedMappings",
"service": {
"shortName": "FeedMappingService",
- "fullName": "google.ads.googleads.v16.services.FeedMappingService"
+ "fullName": "google.ads.googleads.v17.services.FeedMappingService"
}
}
},
@@ -4663,7 +4617,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateFeeds",
- "fullName": "google.ads.googleads.v16.services.FeedClient.MutateFeeds",
+ "fullName": "google.ads.googleads.v17.services.FeedClient.MutateFeeds",
"parameters": [
{
"type": "context.Context",
@@ -4681,14 +4635,14 @@
"resultType": "*servicespb.MutateFeedsResponse",
"client": {
"shortName": "FeedClient",
- "fullName": "google.ads.googleads.v16.services.FeedClient"
+ "fullName": "google.ads.googleads.v17.services.FeedClient"
},
"method": {
"shortName": "MutateFeeds",
- "fullName": "google.ads.googleads.v16.services.FeedService.MutateFeeds",
+ "fullName": "google.ads.googleads.v17.services.FeedService.MutateFeeds",
"service": {
"shortName": "FeedService",
- "fullName": "google.ads.googleads.v16.services.FeedService"
+ "fullName": "google.ads.googleads.v17.services.FeedService"
}
}
},
@@ -4709,7 +4663,7 @@
"language": "GO",
"clientMethod": {
"shortName": "SuggestGeoTargetConstants",
- "fullName": "google.ads.googleads.v16.services.GeoTargetConstantClient.SuggestGeoTargetConstants",
+ "fullName": "google.ads.googleads.v17.services.GeoTargetConstantClient.SuggestGeoTargetConstants",
"parameters": [
{
"type": "context.Context",
@@ -4727,14 +4681,14 @@
"resultType": "*servicespb.SuggestGeoTargetConstantsResponse",
"client": {
"shortName": "GeoTargetConstantClient",
- "fullName": "google.ads.googleads.v16.services.GeoTargetConstantClient"
+ "fullName": "google.ads.googleads.v17.services.GeoTargetConstantClient"
},
"method": {
"shortName": "SuggestGeoTargetConstants",
- "fullName": "google.ads.googleads.v16.services.GeoTargetConstantService.SuggestGeoTargetConstants",
+ "fullName": "google.ads.googleads.v17.services.GeoTargetConstantService.SuggestGeoTargetConstants",
"service": {
"shortName": "GeoTargetConstantService",
- "fullName": "google.ads.googleads.v16.services.GeoTargetConstantService"
+ "fullName": "google.ads.googleads.v17.services.GeoTargetConstantService"
}
}
},
@@ -4755,7 +4709,7 @@
"language": "GO",
"clientMethod": {
"shortName": "GetGoogleAdsField",
- "fullName": "google.ads.googleads.v16.services.GoogleAdsFieldClient.GetGoogleAdsField",
+ "fullName": "google.ads.googleads.v17.services.GoogleAdsFieldClient.GetGoogleAdsField",
"parameters": [
{
"type": "context.Context",
@@ -4773,14 +4727,14 @@
"resultType": "*resourcespb.GoogleAdsField",
"client": {
"shortName": "GoogleAdsFieldClient",
- "fullName": "google.ads.googleads.v16.services.GoogleAdsFieldClient"
+ "fullName": "google.ads.googleads.v17.services.GoogleAdsFieldClient"
},
"method": {
"shortName": "GetGoogleAdsField",
- "fullName": "google.ads.googleads.v16.services.GoogleAdsFieldService.GetGoogleAdsField",
+ "fullName": "google.ads.googleads.v17.services.GoogleAdsFieldService.GetGoogleAdsField",
"service": {
"shortName": "GoogleAdsFieldService",
- "fullName": "google.ads.googleads.v16.services.GoogleAdsFieldService"
+ "fullName": "google.ads.googleads.v17.services.GoogleAdsFieldService"
}
}
},
@@ -4801,7 +4755,7 @@
"language": "GO",
"clientMethod": {
"shortName": "SearchGoogleAdsFields",
- "fullName": "google.ads.googleads.v16.services.GoogleAdsFieldClient.SearchGoogleAdsFields",
+ "fullName": "google.ads.googleads.v17.services.GoogleAdsFieldClient.SearchGoogleAdsFields",
"parameters": [
{
"type": "context.Context",
@@ -4819,14 +4773,14 @@
"resultType": "GoogleAdsFieldIterator",
"client": {
"shortName": "GoogleAdsFieldClient",
- "fullName": "google.ads.googleads.v16.services.GoogleAdsFieldClient"
+ "fullName": "google.ads.googleads.v17.services.GoogleAdsFieldClient"
},
"method": {
"shortName": "SearchGoogleAdsFields",
- "fullName": "google.ads.googleads.v16.services.GoogleAdsFieldService.SearchGoogleAdsFields",
+ "fullName": "google.ads.googleads.v17.services.GoogleAdsFieldService.SearchGoogleAdsFields",
"service": {
"shortName": "GoogleAdsFieldService",
- "fullName": "google.ads.googleads.v16.services.GoogleAdsFieldService"
+ "fullName": "google.ads.googleads.v17.services.GoogleAdsFieldService"
}
}
},
@@ -4847,7 +4801,7 @@
"language": "GO",
"clientMethod": {
"shortName": "Mutate",
- "fullName": "google.ads.googleads.v16.services.GoogleAdsClient.Mutate",
+ "fullName": "google.ads.googleads.v17.services.GoogleAdsClient.Mutate",
"parameters": [
{
"type": "context.Context",
@@ -4865,14 +4819,14 @@
"resultType": "*servicespb.MutateGoogleAdsResponse",
"client": {
"shortName": "GoogleAdsClient",
- "fullName": "google.ads.googleads.v16.services.GoogleAdsClient"
+ "fullName": "google.ads.googleads.v17.services.GoogleAdsClient"
},
"method": {
"shortName": "Mutate",
- "fullName": "google.ads.googleads.v16.services.GoogleAdsService.Mutate",
+ "fullName": "google.ads.googleads.v17.services.GoogleAdsService.Mutate",
"service": {
"shortName": "GoogleAdsService",
- "fullName": "google.ads.googleads.v16.services.GoogleAdsService"
+ "fullName": "google.ads.googleads.v17.services.GoogleAdsService"
}
}
},
@@ -4893,7 +4847,7 @@
"language": "GO",
"clientMethod": {
"shortName": "Search",
- "fullName": "google.ads.googleads.v16.services.GoogleAdsClient.Search",
+ "fullName": "google.ads.googleads.v17.services.GoogleAdsClient.Search",
"parameters": [
{
"type": "context.Context",
@@ -4911,14 +4865,14 @@
"resultType": "GoogleAdsRowIterator",
"client": {
"shortName": "GoogleAdsClient",
- "fullName": "google.ads.googleads.v16.services.GoogleAdsClient"
+ "fullName": "google.ads.googleads.v17.services.GoogleAdsClient"
},
"method": {
"shortName": "Search",
- "fullName": "google.ads.googleads.v16.services.GoogleAdsService.Search",
+ "fullName": "google.ads.googleads.v17.services.GoogleAdsService.Search",
"service": {
"shortName": "GoogleAdsService",
- "fullName": "google.ads.googleads.v16.services.GoogleAdsService"
+ "fullName": "google.ads.googleads.v17.services.GoogleAdsService"
}
}
},
@@ -4939,7 +4893,7 @@
"language": "GO",
"clientMethod": {
"shortName": "GetIdentityVerification",
- "fullName": "google.ads.googleads.v16.services.IdentityVerificationClient.GetIdentityVerification",
+ "fullName": "google.ads.googleads.v17.services.IdentityVerificationClient.GetIdentityVerification",
"parameters": [
{
"type": "context.Context",
@@ -4957,14 +4911,14 @@
"resultType": "*servicespb.GetIdentityVerificationResponse",
"client": {
"shortName": "IdentityVerificationClient",
- "fullName": "google.ads.googleads.v16.services.IdentityVerificationClient"
+ "fullName": "google.ads.googleads.v17.services.IdentityVerificationClient"
},
"method": {
"shortName": "GetIdentityVerification",
- "fullName": "google.ads.googleads.v16.services.IdentityVerificationService.GetIdentityVerification",
+ "fullName": "google.ads.googleads.v17.services.IdentityVerificationService.GetIdentityVerification",
"service": {
"shortName": "IdentityVerificationService",
- "fullName": "google.ads.googleads.v16.services.IdentityVerificationService"
+ "fullName": "google.ads.googleads.v17.services.IdentityVerificationService"
}
}
},
@@ -4985,7 +4939,7 @@
"language": "GO",
"clientMethod": {
"shortName": "StartIdentityVerification",
- "fullName": "google.ads.googleads.v16.services.IdentityVerificationClient.StartIdentityVerification",
+ "fullName": "google.ads.googleads.v17.services.IdentityVerificationClient.StartIdentityVerification",
"parameters": [
{
"type": "context.Context",
@@ -5002,14 +4956,14 @@
],
"client": {
"shortName": "IdentityVerificationClient",
- "fullName": "google.ads.googleads.v16.services.IdentityVerificationClient"
+ "fullName": "google.ads.googleads.v17.services.IdentityVerificationClient"
},
"method": {
"shortName": "StartIdentityVerification",
- "fullName": "google.ads.googleads.v16.services.IdentityVerificationService.StartIdentityVerification",
+ "fullName": "google.ads.googleads.v17.services.IdentityVerificationService.StartIdentityVerification",
"service": {
"shortName": "IdentityVerificationService",
- "fullName": "google.ads.googleads.v16.services.IdentityVerificationService"
+ "fullName": "google.ads.googleads.v17.services.IdentityVerificationService"
}
}
},
@@ -5030,7 +4984,7 @@
"language": "GO",
"clientMethod": {
"shortName": "ListInvoices",
- "fullName": "google.ads.googleads.v16.services.InvoiceClient.ListInvoices",
+ "fullName": "google.ads.googleads.v17.services.InvoiceClient.ListInvoices",
"parameters": [
{
"type": "context.Context",
@@ -5048,14 +5002,14 @@
"resultType": "*servicespb.ListInvoicesResponse",
"client": {
"shortName": "InvoiceClient",
- "fullName": "google.ads.googleads.v16.services.InvoiceClient"
+ "fullName": "google.ads.googleads.v17.services.InvoiceClient"
},
"method": {
"shortName": "ListInvoices",
- "fullName": "google.ads.googleads.v16.services.InvoiceService.ListInvoices",
+ "fullName": "google.ads.googleads.v17.services.InvoiceService.ListInvoices",
"service": {
"shortName": "InvoiceService",
- "fullName": "google.ads.googleads.v16.services.InvoiceService"
+ "fullName": "google.ads.googleads.v17.services.InvoiceService"
}
}
},
@@ -5076,7 +5030,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateKeywordPlanAdGroupKeywords",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanAdGroupKeywordClient.MutateKeywordPlanAdGroupKeywords",
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanAdGroupKeywordClient.MutateKeywordPlanAdGroupKeywords",
"parameters": [
{
"type": "context.Context",
@@ -5094,14 +5048,14 @@
"resultType": "*servicespb.MutateKeywordPlanAdGroupKeywordsResponse",
"client": {
"shortName": "KeywordPlanAdGroupKeywordClient",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanAdGroupKeywordClient"
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanAdGroupKeywordClient"
},
"method": {
"shortName": "MutateKeywordPlanAdGroupKeywords",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanAdGroupKeywordService.MutateKeywordPlanAdGroupKeywords",
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanAdGroupKeywordService.MutateKeywordPlanAdGroupKeywords",
"service": {
"shortName": "KeywordPlanAdGroupKeywordService",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanAdGroupKeywordService"
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanAdGroupKeywordService"
}
}
},
@@ -5122,7 +5076,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateKeywordPlanAdGroups",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanAdGroupClient.MutateKeywordPlanAdGroups",
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanAdGroupClient.MutateKeywordPlanAdGroups",
"parameters": [
{
"type": "context.Context",
@@ -5140,14 +5094,14 @@
"resultType": "*servicespb.MutateKeywordPlanAdGroupsResponse",
"client": {
"shortName": "KeywordPlanAdGroupClient",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanAdGroupClient"
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanAdGroupClient"
},
"method": {
"shortName": "MutateKeywordPlanAdGroups",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanAdGroupService.MutateKeywordPlanAdGroups",
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanAdGroupService.MutateKeywordPlanAdGroups",
"service": {
"shortName": "KeywordPlanAdGroupService",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanAdGroupService"
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanAdGroupService"
}
}
},
@@ -5168,7 +5122,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateKeywordPlanCampaignKeywords",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanCampaignKeywordClient.MutateKeywordPlanCampaignKeywords",
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanCampaignKeywordClient.MutateKeywordPlanCampaignKeywords",
"parameters": [
{
"type": "context.Context",
@@ -5186,14 +5140,14 @@
"resultType": "*servicespb.MutateKeywordPlanCampaignKeywordsResponse",
"client": {
"shortName": "KeywordPlanCampaignKeywordClient",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanCampaignKeywordClient"
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanCampaignKeywordClient"
},
"method": {
"shortName": "MutateKeywordPlanCampaignKeywords",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanCampaignKeywordService.MutateKeywordPlanCampaignKeywords",
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanCampaignKeywordService.MutateKeywordPlanCampaignKeywords",
"service": {
"shortName": "KeywordPlanCampaignKeywordService",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanCampaignKeywordService"
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanCampaignKeywordService"
}
}
},
@@ -5214,7 +5168,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateKeywordPlanCampaigns",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanCampaignClient.MutateKeywordPlanCampaigns",
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanCampaignClient.MutateKeywordPlanCampaigns",
"parameters": [
{
"type": "context.Context",
@@ -5232,14 +5186,14 @@
"resultType": "*servicespb.MutateKeywordPlanCampaignsResponse",
"client": {
"shortName": "KeywordPlanCampaignClient",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanCampaignClient"
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanCampaignClient"
},
"method": {
"shortName": "MutateKeywordPlanCampaigns",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanCampaignService.MutateKeywordPlanCampaigns",
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanCampaignService.MutateKeywordPlanCampaigns",
"service": {
"shortName": "KeywordPlanCampaignService",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanCampaignService"
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanCampaignService"
}
}
},
@@ -5260,7 +5214,7 @@
"language": "GO",
"clientMethod": {
"shortName": "GenerateAdGroupThemes",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanIdeaClient.GenerateAdGroupThemes",
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanIdeaClient.GenerateAdGroupThemes",
"parameters": [
{
"type": "context.Context",
@@ -5278,14 +5232,14 @@
"resultType": "*servicespb.GenerateAdGroupThemesResponse",
"client": {
"shortName": "KeywordPlanIdeaClient",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanIdeaClient"
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanIdeaClient"
},
"method": {
"shortName": "GenerateAdGroupThemes",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanIdeaService.GenerateAdGroupThemes",
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanIdeaService.GenerateAdGroupThemes",
"service": {
"shortName": "KeywordPlanIdeaService",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanIdeaService"
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanIdeaService"
}
}
},
@@ -5306,7 +5260,7 @@
"language": "GO",
"clientMethod": {
"shortName": "GenerateKeywordForecastMetrics",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanIdeaClient.GenerateKeywordForecastMetrics",
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanIdeaClient.GenerateKeywordForecastMetrics",
"parameters": [
{
"type": "context.Context",
@@ -5324,14 +5278,14 @@
"resultType": "*servicespb.GenerateKeywordForecastMetricsResponse",
"client": {
"shortName": "KeywordPlanIdeaClient",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanIdeaClient"
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanIdeaClient"
},
"method": {
"shortName": "GenerateKeywordForecastMetrics",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics",
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics",
"service": {
"shortName": "KeywordPlanIdeaService",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanIdeaService"
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanIdeaService"
}
}
},
@@ -5352,7 +5306,7 @@
"language": "GO",
"clientMethod": {
"shortName": "GenerateKeywordHistoricalMetrics",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanIdeaClient.GenerateKeywordHistoricalMetrics",
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanIdeaClient.GenerateKeywordHistoricalMetrics",
"parameters": [
{
"type": "context.Context",
@@ -5370,14 +5324,14 @@
"resultType": "*servicespb.GenerateKeywordHistoricalMetricsResponse",
"client": {
"shortName": "KeywordPlanIdeaClient",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanIdeaClient"
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanIdeaClient"
},
"method": {
"shortName": "GenerateKeywordHistoricalMetrics",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics",
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics",
"service": {
"shortName": "KeywordPlanIdeaService",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanIdeaService"
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanIdeaService"
}
}
},
@@ -5398,7 +5352,7 @@
"language": "GO",
"clientMethod": {
"shortName": "GenerateKeywordIdeas",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanIdeaClient.GenerateKeywordIdeas",
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanIdeaClient.GenerateKeywordIdeas",
"parameters": [
{
"type": "context.Context",
@@ -5416,14 +5370,14 @@
"resultType": "GenerateKeywordIdeaResultIterator",
"client": {
"shortName": "KeywordPlanIdeaClient",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanIdeaClient"
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanIdeaClient"
},
"method": {
"shortName": "GenerateKeywordIdeas",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanIdeaService.GenerateKeywordIdeas",
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanIdeaService.GenerateKeywordIdeas",
"service": {
"shortName": "KeywordPlanIdeaService",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanIdeaService"
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanIdeaService"
}
}
},
@@ -5444,7 +5398,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateKeywordPlans",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanClient.MutateKeywordPlans",
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanClient.MutateKeywordPlans",
"parameters": [
{
"type": "context.Context",
@@ -5462,14 +5416,14 @@
"resultType": "*servicespb.MutateKeywordPlansResponse",
"client": {
"shortName": "KeywordPlanClient",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanClient"
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanClient"
},
"method": {
"shortName": "MutateKeywordPlans",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanService.MutateKeywordPlans",
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanService.MutateKeywordPlans",
"service": {
"shortName": "KeywordPlanService",
- "fullName": "google.ads.googleads.v16.services.KeywordPlanService"
+ "fullName": "google.ads.googleads.v17.services.KeywordPlanService"
}
}
},
@@ -5490,7 +5444,7 @@
"language": "GO",
"clientMethod": {
"shortName": "SuggestKeywordThemeConstants",
- "fullName": "google.ads.googleads.v16.services.KeywordThemeConstantClient.SuggestKeywordThemeConstants",
+ "fullName": "google.ads.googleads.v17.services.KeywordThemeConstantClient.SuggestKeywordThemeConstants",
"parameters": [
{
"type": "context.Context",
@@ -5508,14 +5462,14 @@
"resultType": "*servicespb.SuggestKeywordThemeConstantsResponse",
"client": {
"shortName": "KeywordThemeConstantClient",
- "fullName": "google.ads.googleads.v16.services.KeywordThemeConstantClient"
+ "fullName": "google.ads.googleads.v17.services.KeywordThemeConstantClient"
},
"method": {
"shortName": "SuggestKeywordThemeConstants",
- "fullName": "google.ads.googleads.v16.services.KeywordThemeConstantService.SuggestKeywordThemeConstants",
+ "fullName": "google.ads.googleads.v17.services.KeywordThemeConstantService.SuggestKeywordThemeConstants",
"service": {
"shortName": "KeywordThemeConstantService",
- "fullName": "google.ads.googleads.v16.services.KeywordThemeConstantService"
+ "fullName": "google.ads.googleads.v17.services.KeywordThemeConstantService"
}
}
},
@@ -5536,7 +5490,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateLabels",
- "fullName": "google.ads.googleads.v16.services.LabelClient.MutateLabels",
+ "fullName": "google.ads.googleads.v17.services.LabelClient.MutateLabels",
"parameters": [
{
"type": "context.Context",
@@ -5554,14 +5508,60 @@
"resultType": "*servicespb.MutateLabelsResponse",
"client": {
"shortName": "LabelClient",
- "fullName": "google.ads.googleads.v16.services.LabelClient"
+ "fullName": "google.ads.googleads.v17.services.LabelClient"
},
"method": {
"shortName": "MutateLabels",
- "fullName": "google.ads.googleads.v16.services.LabelService.MutateLabels",
+ "fullName": "google.ads.googleads.v17.services.LabelService.MutateLabels",
"service": {
"shortName": "LabelService",
- "fullName": "google.ads.googleads.v16.services.LabelService"
+ "fullName": "google.ads.googleads.v17.services.LabelService"
+ }
+ }
+ },
+ "origin": "API_DEFINITION",
+ "segments": [
+ {
+ "start": 18,
+ "end": 53,
+ "type": "FULL"
+ }
+ ]
+ },
+ {
+ "regionTag": "googleads_services_generated_LocalServicesLeadService_AppendLeadConversation_sync",
+ "title": "googleads AppendLeadConversation Sample",
+ "description": "AppendLeadConversation rPC to append Local Services Lead Conversation resources to Local Services\nLead resources.",
+ "file": "LocalServicesLeadClient/AppendLeadConversation/main.go",
+ "language": "GO",
+ "clientMethod": {
+ "shortName": "AppendLeadConversation",
+ "fullName": "google.ads.googleads.v17.services.LocalServicesLeadClient.AppendLeadConversation",
+ "parameters": [
+ {
+ "type": "context.Context",
+ "name": "ctx"
+ },
+ {
+ "type": "servicespb.AppendLeadConversationRequest",
+ "name": "req"
+ },
+ {
+ "type": "...gax.CallOption",
+ "name": "opts"
+ }
+ ],
+ "resultType": "*servicespb.AppendLeadConversationResponse",
+ "client": {
+ "shortName": "LocalServicesLeadClient",
+ "fullName": "google.ads.googleads.v17.services.LocalServicesLeadClient"
+ },
+ "method": {
+ "shortName": "AppendLeadConversation",
+ "fullName": "google.ads.googleads.v17.services.LocalServicesLeadService.AppendLeadConversation",
+ "service": {
+ "shortName": "LocalServicesLeadService",
+ "fullName": "google.ads.googleads.v17.services.LocalServicesLeadService"
}
}
},
@@ -5582,7 +5582,7 @@
"language": "GO",
"clientMethod": {
"shortName": "AddOfflineUserDataJobOperations",
- "fullName": "google.ads.googleads.v16.services.OfflineUserDataJobClient.AddOfflineUserDataJobOperations",
+ "fullName": "google.ads.googleads.v17.services.OfflineUserDataJobClient.AddOfflineUserDataJobOperations",
"parameters": [
{
"type": "context.Context",
@@ -5600,14 +5600,14 @@
"resultType": "*servicespb.AddOfflineUserDataJobOperationsResponse",
"client": {
"shortName": "OfflineUserDataJobClient",
- "fullName": "google.ads.googleads.v16.services.OfflineUserDataJobClient"
+ "fullName": "google.ads.googleads.v17.services.OfflineUserDataJobClient"
},
"method": {
"shortName": "AddOfflineUserDataJobOperations",
- "fullName": "google.ads.googleads.v16.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations",
+ "fullName": "google.ads.googleads.v17.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations",
"service": {
"shortName": "OfflineUserDataJobService",
- "fullName": "google.ads.googleads.v16.services.OfflineUserDataJobService"
+ "fullName": "google.ads.googleads.v17.services.OfflineUserDataJobService"
}
}
},
@@ -5628,7 +5628,7 @@
"language": "GO",
"clientMethod": {
"shortName": "CreateOfflineUserDataJob",
- "fullName": "google.ads.googleads.v16.services.OfflineUserDataJobClient.CreateOfflineUserDataJob",
+ "fullName": "google.ads.googleads.v17.services.OfflineUserDataJobClient.CreateOfflineUserDataJob",
"parameters": [
{
"type": "context.Context",
@@ -5646,14 +5646,14 @@
"resultType": "*servicespb.CreateOfflineUserDataJobResponse",
"client": {
"shortName": "OfflineUserDataJobClient",
- "fullName": "google.ads.googleads.v16.services.OfflineUserDataJobClient"
+ "fullName": "google.ads.googleads.v17.services.OfflineUserDataJobClient"
},
"method": {
"shortName": "CreateOfflineUserDataJob",
- "fullName": "google.ads.googleads.v16.services.OfflineUserDataJobService.CreateOfflineUserDataJob",
+ "fullName": "google.ads.googleads.v17.services.OfflineUserDataJobService.CreateOfflineUserDataJob",
"service": {
"shortName": "OfflineUserDataJobService",
- "fullName": "google.ads.googleads.v16.services.OfflineUserDataJobService"
+ "fullName": "google.ads.googleads.v17.services.OfflineUserDataJobService"
}
}
},
@@ -5674,7 +5674,7 @@
"language": "GO",
"clientMethod": {
"shortName": "RunOfflineUserDataJob",
- "fullName": "google.ads.googleads.v16.services.OfflineUserDataJobClient.RunOfflineUserDataJob",
+ "fullName": "google.ads.googleads.v17.services.OfflineUserDataJobClient.RunOfflineUserDataJob",
"parameters": [
{
"type": "context.Context",
@@ -5692,14 +5692,14 @@
"resultType": "RunOfflineUserDataJobOperation",
"client": {
"shortName": "OfflineUserDataJobClient",
- "fullName": "google.ads.googleads.v16.services.OfflineUserDataJobClient"
+ "fullName": "google.ads.googleads.v17.services.OfflineUserDataJobClient"
},
"method": {
"shortName": "RunOfflineUserDataJob",
- "fullName": "google.ads.googleads.v16.services.OfflineUserDataJobService.RunOfflineUserDataJob",
+ "fullName": "google.ads.googleads.v17.services.OfflineUserDataJobService.RunOfflineUserDataJob",
"service": {
"shortName": "OfflineUserDataJobService",
- "fullName": "google.ads.googleads.v16.services.OfflineUserDataJobService"
+ "fullName": "google.ads.googleads.v17.services.OfflineUserDataJobService"
}
}
},
@@ -5720,7 +5720,7 @@
"language": "GO",
"clientMethod": {
"shortName": "ListPaymentsAccounts",
- "fullName": "google.ads.googleads.v16.services.PaymentsAccountClient.ListPaymentsAccounts",
+ "fullName": "google.ads.googleads.v17.services.PaymentsAccountClient.ListPaymentsAccounts",
"parameters": [
{
"type": "context.Context",
@@ -5738,14 +5738,14 @@
"resultType": "*servicespb.ListPaymentsAccountsResponse",
"client": {
"shortName": "PaymentsAccountClient",
- "fullName": "google.ads.googleads.v16.services.PaymentsAccountClient"
+ "fullName": "google.ads.googleads.v17.services.PaymentsAccountClient"
},
"method": {
"shortName": "ListPaymentsAccounts",
- "fullName": "google.ads.googleads.v16.services.PaymentsAccountService.ListPaymentsAccounts",
+ "fullName": "google.ads.googleads.v17.services.PaymentsAccountService.ListPaymentsAccounts",
"service": {
"shortName": "PaymentsAccountService",
- "fullName": "google.ads.googleads.v16.services.PaymentsAccountService"
+ "fullName": "google.ads.googleads.v17.services.PaymentsAccountService"
}
}
},
@@ -5766,7 +5766,7 @@
"language": "GO",
"clientMethod": {
"shortName": "CreateProductLinkInvitation",
- "fullName": "google.ads.googleads.v16.services.ProductLinkInvitationClient.CreateProductLinkInvitation",
+ "fullName": "google.ads.googleads.v17.services.ProductLinkInvitationClient.CreateProductLinkInvitation",
"parameters": [
{
"type": "context.Context",
@@ -5784,14 +5784,14 @@
"resultType": "*servicespb.CreateProductLinkInvitationResponse",
"client": {
"shortName": "ProductLinkInvitationClient",
- "fullName": "google.ads.googleads.v16.services.ProductLinkInvitationClient"
+ "fullName": "google.ads.googleads.v17.services.ProductLinkInvitationClient"
},
"method": {
"shortName": "CreateProductLinkInvitation",
- "fullName": "google.ads.googleads.v16.services.ProductLinkInvitationService.CreateProductLinkInvitation",
+ "fullName": "google.ads.googleads.v17.services.ProductLinkInvitationService.CreateProductLinkInvitation",
"service": {
"shortName": "ProductLinkInvitationService",
- "fullName": "google.ads.googleads.v16.services.ProductLinkInvitationService"
+ "fullName": "google.ads.googleads.v17.services.ProductLinkInvitationService"
}
}
},
@@ -5812,7 +5812,7 @@
"language": "GO",
"clientMethod": {
"shortName": "RemoveProductLinkInvitation",
- "fullName": "google.ads.googleads.v16.services.ProductLinkInvitationClient.RemoveProductLinkInvitation",
+ "fullName": "google.ads.googleads.v17.services.ProductLinkInvitationClient.RemoveProductLinkInvitation",
"parameters": [
{
"type": "context.Context",
@@ -5830,14 +5830,14 @@
"resultType": "*servicespb.RemoveProductLinkInvitationResponse",
"client": {
"shortName": "ProductLinkInvitationClient",
- "fullName": "google.ads.googleads.v16.services.ProductLinkInvitationClient"
+ "fullName": "google.ads.googleads.v17.services.ProductLinkInvitationClient"
},
"method": {
"shortName": "RemoveProductLinkInvitation",
- "fullName": "google.ads.googleads.v16.services.ProductLinkInvitationService.RemoveProductLinkInvitation",
+ "fullName": "google.ads.googleads.v17.services.ProductLinkInvitationService.RemoveProductLinkInvitation",
"service": {
"shortName": "ProductLinkInvitationService",
- "fullName": "google.ads.googleads.v16.services.ProductLinkInvitationService"
+ "fullName": "google.ads.googleads.v17.services.ProductLinkInvitationService"
}
}
},
@@ -5858,7 +5858,7 @@
"language": "GO",
"clientMethod": {
"shortName": "UpdateProductLinkInvitation",
- "fullName": "google.ads.googleads.v16.services.ProductLinkInvitationClient.UpdateProductLinkInvitation",
+ "fullName": "google.ads.googleads.v17.services.ProductLinkInvitationClient.UpdateProductLinkInvitation",
"parameters": [
{
"type": "context.Context",
@@ -5876,14 +5876,14 @@
"resultType": "*servicespb.UpdateProductLinkInvitationResponse",
"client": {
"shortName": "ProductLinkInvitationClient",
- "fullName": "google.ads.googleads.v16.services.ProductLinkInvitationClient"
+ "fullName": "google.ads.googleads.v17.services.ProductLinkInvitationClient"
},
"method": {
"shortName": "UpdateProductLinkInvitation",
- "fullName": "google.ads.googleads.v16.services.ProductLinkInvitationService.UpdateProductLinkInvitation",
+ "fullName": "google.ads.googleads.v17.services.ProductLinkInvitationService.UpdateProductLinkInvitation",
"service": {
"shortName": "ProductLinkInvitationService",
- "fullName": "google.ads.googleads.v16.services.ProductLinkInvitationService"
+ "fullName": "google.ads.googleads.v17.services.ProductLinkInvitationService"
}
}
},
@@ -5904,7 +5904,7 @@
"language": "GO",
"clientMethod": {
"shortName": "CreateProductLink",
- "fullName": "google.ads.googleads.v16.services.ProductLinkClient.CreateProductLink",
+ "fullName": "google.ads.googleads.v17.services.ProductLinkClient.CreateProductLink",
"parameters": [
{
"type": "context.Context",
@@ -5922,14 +5922,14 @@
"resultType": "*servicespb.CreateProductLinkResponse",
"client": {
"shortName": "ProductLinkClient",
- "fullName": "google.ads.googleads.v16.services.ProductLinkClient"
+ "fullName": "google.ads.googleads.v17.services.ProductLinkClient"
},
"method": {
"shortName": "CreateProductLink",
- "fullName": "google.ads.googleads.v16.services.ProductLinkService.CreateProductLink",
+ "fullName": "google.ads.googleads.v17.services.ProductLinkService.CreateProductLink",
"service": {
"shortName": "ProductLinkService",
- "fullName": "google.ads.googleads.v16.services.ProductLinkService"
+ "fullName": "google.ads.googleads.v17.services.ProductLinkService"
}
}
},
@@ -5950,7 +5950,7 @@
"language": "GO",
"clientMethod": {
"shortName": "RemoveProductLink",
- "fullName": "google.ads.googleads.v16.services.ProductLinkClient.RemoveProductLink",
+ "fullName": "google.ads.googleads.v17.services.ProductLinkClient.RemoveProductLink",
"parameters": [
{
"type": "context.Context",
@@ -5968,14 +5968,14 @@
"resultType": "*servicespb.RemoveProductLinkResponse",
"client": {
"shortName": "ProductLinkClient",
- "fullName": "google.ads.googleads.v16.services.ProductLinkClient"
+ "fullName": "google.ads.googleads.v17.services.ProductLinkClient"
},
"method": {
"shortName": "RemoveProductLink",
- "fullName": "google.ads.googleads.v16.services.ProductLinkService.RemoveProductLink",
+ "fullName": "google.ads.googleads.v17.services.ProductLinkService.RemoveProductLink",
"service": {
"shortName": "ProductLinkService",
- "fullName": "google.ads.googleads.v16.services.ProductLinkService"
+ "fullName": "google.ads.googleads.v17.services.ProductLinkService"
}
}
},
@@ -5996,7 +5996,7 @@
"language": "GO",
"clientMethod": {
"shortName": "GenerateReachForecast",
- "fullName": "google.ads.googleads.v16.services.ReachPlanClient.GenerateReachForecast",
+ "fullName": "google.ads.googleads.v17.services.ReachPlanClient.GenerateReachForecast",
"parameters": [
{
"type": "context.Context",
@@ -6014,14 +6014,14 @@
"resultType": "*servicespb.GenerateReachForecastResponse",
"client": {
"shortName": "ReachPlanClient",
- "fullName": "google.ads.googleads.v16.services.ReachPlanClient"
+ "fullName": "google.ads.googleads.v17.services.ReachPlanClient"
},
"method": {
"shortName": "GenerateReachForecast",
- "fullName": "google.ads.googleads.v16.services.ReachPlanService.GenerateReachForecast",
+ "fullName": "google.ads.googleads.v17.services.ReachPlanService.GenerateReachForecast",
"service": {
"shortName": "ReachPlanService",
- "fullName": "google.ads.googleads.v16.services.ReachPlanService"
+ "fullName": "google.ads.googleads.v17.services.ReachPlanService"
}
}
},
@@ -6042,7 +6042,7 @@
"language": "GO",
"clientMethod": {
"shortName": "ListPlannableLocations",
- "fullName": "google.ads.googleads.v16.services.ReachPlanClient.ListPlannableLocations",
+ "fullName": "google.ads.googleads.v17.services.ReachPlanClient.ListPlannableLocations",
"parameters": [
{
"type": "context.Context",
@@ -6060,14 +6060,14 @@
"resultType": "*servicespb.ListPlannableLocationsResponse",
"client": {
"shortName": "ReachPlanClient",
- "fullName": "google.ads.googleads.v16.services.ReachPlanClient"
+ "fullName": "google.ads.googleads.v17.services.ReachPlanClient"
},
"method": {
"shortName": "ListPlannableLocations",
- "fullName": "google.ads.googleads.v16.services.ReachPlanService.ListPlannableLocations",
+ "fullName": "google.ads.googleads.v17.services.ReachPlanService.ListPlannableLocations",
"service": {
"shortName": "ReachPlanService",
- "fullName": "google.ads.googleads.v16.services.ReachPlanService"
+ "fullName": "google.ads.googleads.v17.services.ReachPlanService"
}
}
},
@@ -6088,7 +6088,7 @@
"language": "GO",
"clientMethod": {
"shortName": "ListPlannableProducts",
- "fullName": "google.ads.googleads.v16.services.ReachPlanClient.ListPlannableProducts",
+ "fullName": "google.ads.googleads.v17.services.ReachPlanClient.ListPlannableProducts",
"parameters": [
{
"type": "context.Context",
@@ -6106,14 +6106,14 @@
"resultType": "*servicespb.ListPlannableProductsResponse",
"client": {
"shortName": "ReachPlanClient",
- "fullName": "google.ads.googleads.v16.services.ReachPlanClient"
+ "fullName": "google.ads.googleads.v17.services.ReachPlanClient"
},
"method": {
"shortName": "ListPlannableProducts",
- "fullName": "google.ads.googleads.v16.services.ReachPlanService.ListPlannableProducts",
+ "fullName": "google.ads.googleads.v17.services.ReachPlanService.ListPlannableProducts",
"service": {
"shortName": "ReachPlanService",
- "fullName": "google.ads.googleads.v16.services.ReachPlanService"
+ "fullName": "google.ads.googleads.v17.services.ReachPlanService"
}
}
},
@@ -6134,7 +6134,7 @@
"language": "GO",
"clientMethod": {
"shortName": "ApplyRecommendation",
- "fullName": "google.ads.googleads.v16.services.RecommendationClient.ApplyRecommendation",
+ "fullName": "google.ads.googleads.v17.services.RecommendationClient.ApplyRecommendation",
"parameters": [
{
"type": "context.Context",
@@ -6152,14 +6152,14 @@
"resultType": "*servicespb.ApplyRecommendationResponse",
"client": {
"shortName": "RecommendationClient",
- "fullName": "google.ads.googleads.v16.services.RecommendationClient"
+ "fullName": "google.ads.googleads.v17.services.RecommendationClient"
},
"method": {
"shortName": "ApplyRecommendation",
- "fullName": "google.ads.googleads.v16.services.RecommendationService.ApplyRecommendation",
+ "fullName": "google.ads.googleads.v17.services.RecommendationService.ApplyRecommendation",
"service": {
"shortName": "RecommendationService",
- "fullName": "google.ads.googleads.v16.services.RecommendationService"
+ "fullName": "google.ads.googleads.v17.services.RecommendationService"
}
}
},
@@ -6180,7 +6180,7 @@
"language": "GO",
"clientMethod": {
"shortName": "DismissRecommendation",
- "fullName": "google.ads.googleads.v16.services.RecommendationClient.DismissRecommendation",
+ "fullName": "google.ads.googleads.v17.services.RecommendationClient.DismissRecommendation",
"parameters": [
{
"type": "context.Context",
@@ -6198,14 +6198,14 @@
"resultType": "*servicespb.DismissRecommendationResponse",
"client": {
"shortName": "RecommendationClient",
- "fullName": "google.ads.googleads.v16.services.RecommendationClient"
+ "fullName": "google.ads.googleads.v17.services.RecommendationClient"
},
"method": {
"shortName": "DismissRecommendation",
- "fullName": "google.ads.googleads.v16.services.RecommendationService.DismissRecommendation",
+ "fullName": "google.ads.googleads.v17.services.RecommendationService.DismissRecommendation",
"service": {
"shortName": "RecommendationService",
- "fullName": "google.ads.googleads.v16.services.RecommendationService"
+ "fullName": "google.ads.googleads.v17.services.RecommendationService"
}
}
},
@@ -6226,7 +6226,7 @@
"language": "GO",
"clientMethod": {
"shortName": "GenerateRecommendations",
- "fullName": "google.ads.googleads.v16.services.RecommendationClient.GenerateRecommendations",
+ "fullName": "google.ads.googleads.v17.services.RecommendationClient.GenerateRecommendations",
"parameters": [
{
"type": "context.Context",
@@ -6244,14 +6244,14 @@
"resultType": "*servicespb.GenerateRecommendationsResponse",
"client": {
"shortName": "RecommendationClient",
- "fullName": "google.ads.googleads.v16.services.RecommendationClient"
+ "fullName": "google.ads.googleads.v17.services.RecommendationClient"
},
"method": {
"shortName": "GenerateRecommendations",
- "fullName": "google.ads.googleads.v16.services.RecommendationService.GenerateRecommendations",
+ "fullName": "google.ads.googleads.v17.services.RecommendationService.GenerateRecommendations",
"service": {
"shortName": "RecommendationService",
- "fullName": "google.ads.googleads.v16.services.RecommendationService"
+ "fullName": "google.ads.googleads.v17.services.RecommendationService"
}
}
},
@@ -6272,7 +6272,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateRecommendationSubscription",
- "fullName": "google.ads.googleads.v16.services.RecommendationSubscriptionClient.MutateRecommendationSubscription",
+ "fullName": "google.ads.googleads.v17.services.RecommendationSubscriptionClient.MutateRecommendationSubscription",
"parameters": [
{
"type": "context.Context",
@@ -6290,14 +6290,14 @@
"resultType": "*servicespb.MutateRecommendationSubscriptionResponse",
"client": {
"shortName": "RecommendationSubscriptionClient",
- "fullName": "google.ads.googleads.v16.services.RecommendationSubscriptionClient"
+ "fullName": "google.ads.googleads.v17.services.RecommendationSubscriptionClient"
},
"method": {
"shortName": "MutateRecommendationSubscription",
- "fullName": "google.ads.googleads.v16.services.RecommendationSubscriptionService.MutateRecommendationSubscription",
+ "fullName": "google.ads.googleads.v17.services.RecommendationSubscriptionService.MutateRecommendationSubscription",
"service": {
"shortName": "RecommendationSubscriptionService",
- "fullName": "google.ads.googleads.v16.services.RecommendationSubscriptionService"
+ "fullName": "google.ads.googleads.v17.services.RecommendationSubscriptionService"
}
}
},
@@ -6318,7 +6318,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateRemarketingActions",
- "fullName": "google.ads.googleads.v16.services.RemarketingActionClient.MutateRemarketingActions",
+ "fullName": "google.ads.googleads.v17.services.RemarketingActionClient.MutateRemarketingActions",
"parameters": [
{
"type": "context.Context",
@@ -6336,14 +6336,14 @@
"resultType": "*servicespb.MutateRemarketingActionsResponse",
"client": {
"shortName": "RemarketingActionClient",
- "fullName": "google.ads.googleads.v16.services.RemarketingActionClient"
+ "fullName": "google.ads.googleads.v17.services.RemarketingActionClient"
},
"method": {
"shortName": "MutateRemarketingActions",
- "fullName": "google.ads.googleads.v16.services.RemarketingActionService.MutateRemarketingActions",
+ "fullName": "google.ads.googleads.v17.services.RemarketingActionService.MutateRemarketingActions",
"service": {
"shortName": "RemarketingActionService",
- "fullName": "google.ads.googleads.v16.services.RemarketingActionService"
+ "fullName": "google.ads.googleads.v17.services.RemarketingActionService"
}
}
},
@@ -6364,7 +6364,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateSharedCriteria",
- "fullName": "google.ads.googleads.v16.services.SharedCriterionClient.MutateSharedCriteria",
+ "fullName": "google.ads.googleads.v17.services.SharedCriterionClient.MutateSharedCriteria",
"parameters": [
{
"type": "context.Context",
@@ -6382,14 +6382,14 @@
"resultType": "*servicespb.MutateSharedCriteriaResponse",
"client": {
"shortName": "SharedCriterionClient",
- "fullName": "google.ads.googleads.v16.services.SharedCriterionClient"
+ "fullName": "google.ads.googleads.v17.services.SharedCriterionClient"
},
"method": {
"shortName": "MutateSharedCriteria",
- "fullName": "google.ads.googleads.v16.services.SharedCriterionService.MutateSharedCriteria",
+ "fullName": "google.ads.googleads.v17.services.SharedCriterionService.MutateSharedCriteria",
"service": {
"shortName": "SharedCriterionService",
- "fullName": "google.ads.googleads.v16.services.SharedCriterionService"
+ "fullName": "google.ads.googleads.v17.services.SharedCriterionService"
}
}
},
@@ -6410,7 +6410,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateSharedSets",
- "fullName": "google.ads.googleads.v16.services.SharedSetClient.MutateSharedSets",
+ "fullName": "google.ads.googleads.v17.services.SharedSetClient.MutateSharedSets",
"parameters": [
{
"type": "context.Context",
@@ -6428,14 +6428,14 @@
"resultType": "*servicespb.MutateSharedSetsResponse",
"client": {
"shortName": "SharedSetClient",
- "fullName": "google.ads.googleads.v16.services.SharedSetClient"
+ "fullName": "google.ads.googleads.v17.services.SharedSetClient"
},
"method": {
"shortName": "MutateSharedSets",
- "fullName": "google.ads.googleads.v16.services.SharedSetService.MutateSharedSets",
+ "fullName": "google.ads.googleads.v17.services.SharedSetService.MutateSharedSets",
"service": {
"shortName": "SharedSetService",
- "fullName": "google.ads.googleads.v16.services.SharedSetService"
+ "fullName": "google.ads.googleads.v17.services.SharedSetService"
}
}
},
@@ -6456,7 +6456,7 @@
"language": "GO",
"clientMethod": {
"shortName": "GetSmartCampaignStatus",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSettingClient.GetSmartCampaignStatus",
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSettingClient.GetSmartCampaignStatus",
"parameters": [
{
"type": "context.Context",
@@ -6474,14 +6474,14 @@
"resultType": "*servicespb.GetSmartCampaignStatusResponse",
"client": {
"shortName": "SmartCampaignSettingClient",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSettingClient"
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSettingClient"
},
"method": {
"shortName": "GetSmartCampaignStatus",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSettingService.GetSmartCampaignStatus",
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSettingService.GetSmartCampaignStatus",
"service": {
"shortName": "SmartCampaignSettingService",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSettingService"
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSettingService"
}
}
},
@@ -6502,7 +6502,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateSmartCampaignSettings",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSettingClient.MutateSmartCampaignSettings",
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSettingClient.MutateSmartCampaignSettings",
"parameters": [
{
"type": "context.Context",
@@ -6520,14 +6520,14 @@
"resultType": "*servicespb.MutateSmartCampaignSettingsResponse",
"client": {
"shortName": "SmartCampaignSettingClient",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSettingClient"
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSettingClient"
},
"method": {
"shortName": "MutateSmartCampaignSettings",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSettingService.MutateSmartCampaignSettings",
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSettingService.MutateSmartCampaignSettings",
"service": {
"shortName": "SmartCampaignSettingService",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSettingService"
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSettingService"
}
}
},
@@ -6548,7 +6548,7 @@
"language": "GO",
"clientMethod": {
"shortName": "SuggestKeywordThemes",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSuggestClient.SuggestKeywordThemes",
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSuggestClient.SuggestKeywordThemes",
"parameters": [
{
"type": "context.Context",
@@ -6566,14 +6566,14 @@
"resultType": "*servicespb.SuggestKeywordThemesResponse",
"client": {
"shortName": "SmartCampaignSuggestClient",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSuggestClient"
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSuggestClient"
},
"method": {
"shortName": "SuggestKeywordThemes",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSuggestService.SuggestKeywordThemes",
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSuggestService.SuggestKeywordThemes",
"service": {
"shortName": "SmartCampaignSuggestService",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSuggestService"
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSuggestService"
}
}
},
@@ -6594,7 +6594,7 @@
"language": "GO",
"clientMethod": {
"shortName": "SuggestSmartCampaignAd",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSuggestClient.SuggestSmartCampaignAd",
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSuggestClient.SuggestSmartCampaignAd",
"parameters": [
{
"type": "context.Context",
@@ -6612,14 +6612,14 @@
"resultType": "*servicespb.SuggestSmartCampaignAdResponse",
"client": {
"shortName": "SmartCampaignSuggestClient",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSuggestClient"
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSuggestClient"
},
"method": {
"shortName": "SuggestSmartCampaignAd",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSuggestService.SuggestSmartCampaignAd",
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSuggestService.SuggestSmartCampaignAd",
"service": {
"shortName": "SmartCampaignSuggestService",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSuggestService"
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSuggestService"
}
}
},
@@ -6640,7 +6640,7 @@
"language": "GO",
"clientMethod": {
"shortName": "SuggestSmartCampaignBudgetOptions",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSuggestClient.SuggestSmartCampaignBudgetOptions",
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSuggestClient.SuggestSmartCampaignBudgetOptions",
"parameters": [
{
"type": "context.Context",
@@ -6658,14 +6658,14 @@
"resultType": "*servicespb.SuggestSmartCampaignBudgetOptionsResponse",
"client": {
"shortName": "SmartCampaignSuggestClient",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSuggestClient"
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSuggestClient"
},
"method": {
"shortName": "SuggestSmartCampaignBudgetOptions",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions",
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions",
"service": {
"shortName": "SmartCampaignSuggestService",
- "fullName": "google.ads.googleads.v16.services.SmartCampaignSuggestService"
+ "fullName": "google.ads.googleads.v17.services.SmartCampaignSuggestService"
}
}
},
@@ -6686,7 +6686,7 @@
"language": "GO",
"clientMethod": {
"shortName": "RegenerateShareableLinkId",
- "fullName": "google.ads.googleads.v16.services.ThirdPartyAppAnalyticsLinkClient.RegenerateShareableLinkId",
+ "fullName": "google.ads.googleads.v17.services.ThirdPartyAppAnalyticsLinkClient.RegenerateShareableLinkId",
"parameters": [
{
"type": "context.Context",
@@ -6704,14 +6704,14 @@
"resultType": "*servicespb.RegenerateShareableLinkIdResponse",
"client": {
"shortName": "ThirdPartyAppAnalyticsLinkClient",
- "fullName": "google.ads.googleads.v16.services.ThirdPartyAppAnalyticsLinkClient"
+ "fullName": "google.ads.googleads.v17.services.ThirdPartyAppAnalyticsLinkClient"
},
"method": {
"shortName": "RegenerateShareableLinkId",
- "fullName": "google.ads.googleads.v16.services.ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId",
+ "fullName": "google.ads.googleads.v17.services.ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId",
"service": {
"shortName": "ThirdPartyAppAnalyticsLinkService",
- "fullName": "google.ads.googleads.v16.services.ThirdPartyAppAnalyticsLinkService"
+ "fullName": "google.ads.googleads.v17.services.ThirdPartyAppAnalyticsLinkService"
}
}
},
@@ -6732,7 +6732,7 @@
"language": "GO",
"clientMethod": {
"shortName": "SuggestTravelAssets",
- "fullName": "google.ads.googleads.v16.services.TravelAssetSuggestionClient.SuggestTravelAssets",
+ "fullName": "google.ads.googleads.v17.services.TravelAssetSuggestionClient.SuggestTravelAssets",
"parameters": [
{
"type": "context.Context",
@@ -6750,14 +6750,14 @@
"resultType": "*servicespb.SuggestTravelAssetsResponse",
"client": {
"shortName": "TravelAssetSuggestionClient",
- "fullName": "google.ads.googleads.v16.services.TravelAssetSuggestionClient"
+ "fullName": "google.ads.googleads.v17.services.TravelAssetSuggestionClient"
},
"method": {
"shortName": "SuggestTravelAssets",
- "fullName": "google.ads.googleads.v16.services.TravelAssetSuggestionService.SuggestTravelAssets",
+ "fullName": "google.ads.googleads.v17.services.TravelAssetSuggestionService.SuggestTravelAssets",
"service": {
"shortName": "TravelAssetSuggestionService",
- "fullName": "google.ads.googleads.v16.services.TravelAssetSuggestionService"
+ "fullName": "google.ads.googleads.v17.services.TravelAssetSuggestionService"
}
}
},
@@ -6778,7 +6778,7 @@
"language": "GO",
"clientMethod": {
"shortName": "UploadUserData",
- "fullName": "google.ads.googleads.v16.services.UserDataClient.UploadUserData",
+ "fullName": "google.ads.googleads.v17.services.UserDataClient.UploadUserData",
"parameters": [
{
"type": "context.Context",
@@ -6796,14 +6796,60 @@
"resultType": "*servicespb.UploadUserDataResponse",
"client": {
"shortName": "UserDataClient",
- "fullName": "google.ads.googleads.v16.services.UserDataClient"
+ "fullName": "google.ads.googleads.v17.services.UserDataClient"
},
"method": {
"shortName": "UploadUserData",
- "fullName": "google.ads.googleads.v16.services.UserDataService.UploadUserData",
+ "fullName": "google.ads.googleads.v17.services.UserDataService.UploadUserData",
"service": {
"shortName": "UserDataService",
- "fullName": "google.ads.googleads.v16.services.UserDataService"
+ "fullName": "google.ads.googleads.v17.services.UserDataService"
+ }
+ }
+ },
+ "origin": "API_DEFINITION",
+ "segments": [
+ {
+ "start": 18,
+ "end": 53,
+ "type": "FULL"
+ }
+ ]
+ },
+ {
+ "regionTag": "googleads_services_generated_UserListCustomerTypeService_MutateUserListCustomerTypes_sync",
+ "title": "googleads MutateUserListCustomerTypes Sample",
+ "description": "MutateUserListCustomerTypes attach or remove user list customer types. Operation statuses\nare returned.\n\nList of thrown errors: \n[AuthenticationError]()\n[AuthorizationError]()\n[UserListCustomerTypeError]()\n[HeaderError]()\n[InternalError]()\n[QuotaError]()\n[RequestError]()",
+ "file": "UserListCustomerTypeClient/MutateUserListCustomerTypes/main.go",
+ "language": "GO",
+ "clientMethod": {
+ "shortName": "MutateUserListCustomerTypes",
+ "fullName": "google.ads.googleads.v17.services.UserListCustomerTypeClient.MutateUserListCustomerTypes",
+ "parameters": [
+ {
+ "type": "context.Context",
+ "name": "ctx"
+ },
+ {
+ "type": "servicespb.MutateUserListCustomerTypesRequest",
+ "name": "req"
+ },
+ {
+ "type": "...gax.CallOption",
+ "name": "opts"
+ }
+ ],
+ "resultType": "*servicespb.MutateUserListCustomerTypesResponse",
+ "client": {
+ "shortName": "UserListCustomerTypeClient",
+ "fullName": "google.ads.googleads.v17.services.UserListCustomerTypeClient"
+ },
+ "method": {
+ "shortName": "MutateUserListCustomerTypes",
+ "fullName": "google.ads.googleads.v17.services.UserListCustomerTypeService.MutateUserListCustomerTypes",
+ "service": {
+ "shortName": "UserListCustomerTypeService",
+ "fullName": "google.ads.googleads.v17.services.UserListCustomerTypeService"
}
}
},
@@ -6824,7 +6870,7 @@
"language": "GO",
"clientMethod": {
"shortName": "MutateUserLists",
- "fullName": "google.ads.googleads.v16.services.UserListClient.MutateUserLists",
+ "fullName": "google.ads.googleads.v17.services.UserListClient.MutateUserLists",
"parameters": [
{
"type": "context.Context",
@@ -6842,14 +6888,14 @@
"resultType": "*servicespb.MutateUserListsResponse",
"client": {
"shortName": "UserListClient",
- "fullName": "google.ads.googleads.v16.services.UserListClient"
+ "fullName": "google.ads.googleads.v17.services.UserListClient"
},
"method": {
"shortName": "MutateUserLists",
- "fullName": "google.ads.googleads.v16.services.UserListService.MutateUserLists",
+ "fullName": "google.ads.googleads.v17.services.UserListService.MutateUserLists",
"service": {
"shortName": "UserListService",
- "fullName": "google.ads.googleads.v16.services.UserListService"
+ "fullName": "google.ads.googleads.v17.services.UserListService"
}
}
},
diff --git a/clients/invoice_client.go b/clients/invoice_client.go
index 3357ce1e..b77bde83 100644
--- a/clients/invoice_client.go
+++ b/clients/invoice_client.go
@@ -192,7 +192,9 @@ func (c *invoiceGRPCClient) Connection() *grpc.ClientConn {
func (c *invoiceGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/keyword_plan_ad_group_client.go b/clients/keyword_plan_ad_group_client.go
index a2004149..928536b9 100644
--- a/clients/keyword_plan_ad_group_client.go
+++ b/clients/keyword_plan_ad_group_client.go
@@ -199,7 +199,9 @@ func (c *keywordPlanAdGroupGRPCClient) Connection() *grpc.ClientConn {
func (c *keywordPlanAdGroupGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/keyword_plan_ad_group_keyword_client.go b/clients/keyword_plan_ad_group_keyword_client.go
index 495a3915..4f6827dd 100644
--- a/clients/keyword_plan_ad_group_keyword_client.go
+++ b/clients/keyword_plan_ad_group_keyword_client.go
@@ -205,7 +205,9 @@ func (c *keywordPlanAdGroupKeywordGRPCClient) Connection() *grpc.ClientConn {
func (c *keywordPlanAdGroupKeywordGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/keyword_plan_campaign_client.go b/clients/keyword_plan_campaign_client.go
index 66db1eae..61a812ed 100644
--- a/clients/keyword_plan_campaign_client.go
+++ b/clients/keyword_plan_campaign_client.go
@@ -200,7 +200,9 @@ func (c *keywordPlanCampaignGRPCClient) Connection() *grpc.ClientConn {
func (c *keywordPlanCampaignGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/keyword_plan_campaign_keyword_client.go b/clients/keyword_plan_campaign_keyword_client.go
index 40567800..d91d57e8 100644
--- a/clients/keyword_plan_campaign_keyword_client.go
+++ b/clients/keyword_plan_campaign_keyword_client.go
@@ -202,7 +202,9 @@ func (c *keywordPlanCampaignKeywordGRPCClient) Connection() *grpc.ClientConn {
func (c *keywordPlanCampaignKeywordGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/keyword_plan_client.go b/clients/keyword_plan_client.go
index 19fe4f63..4a1896b5 100644
--- a/clients/keyword_plan_client.go
+++ b/clients/keyword_plan_client.go
@@ -198,7 +198,9 @@ func (c *keywordPlanGRPCClient) Connection() *grpc.ClientConn {
func (c *keywordPlanGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/keyword_plan_idea_client.go b/clients/keyword_plan_idea_client.go
index d6447df5..d1dc80c5 100644
--- a/clients/keyword_plan_idea_client.go
+++ b/clients/keyword_plan_idea_client.go
@@ -283,7 +283,9 @@ func (c *keywordPlanIdeaGRPCClient) Connection() *grpc.ClientConn {
func (c *keywordPlanIdeaGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/keyword_theme_constant_client.go b/clients/keyword_theme_constant_client.go
index 13b5741c..d0b456d7 100644
--- a/clients/keyword_theme_constant_client.go
+++ b/clients/keyword_theme_constant_client.go
@@ -188,7 +188,9 @@ func (c *keywordThemeConstantGRPCClient) Connection() *grpc.ClientConn {
func (c *keywordThemeConstantGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/label_client.go b/clients/label_client.go
index 93b50b13..db3a4c6d 100644
--- a/clients/label_client.go
+++ b/clients/label_client.go
@@ -207,7 +207,9 @@ func (c *labelGRPCClient) Connection() *grpc.ClientConn {
func (c *labelGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/local_services_lead_client.go b/clients/local_services_lead_client.go
new file mode 100644
index 00000000..6281cf69
--- /dev/null
+++ b/clients/local_services_lead_client.go
@@ -0,0 +1,213 @@
+// Copyright 2024 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.
+
+// Code generated by protoc-gen-go_gapic. DO NOT EDIT.
+
+package clients
+
+import (
+ "context"
+ "fmt"
+ "math"
+ "net/url"
+ "time"
+
+ gax "github.com/googleapis/gax-go/v2"
+ servicespb "github.com/shenzhencenter/google-ads-pb/services"
+ "google.golang.org/api/option"
+ "google.golang.org/api/option/internaloption"
+ gtransport "google.golang.org/api/transport/grpc"
+ "google.golang.org/grpc"
+ "google.golang.org/grpc/codes"
+)
+
+var newLocalServicesLeadClientHook clientHook
+
+// LocalServicesLeadCallOptions contains the retry settings for each method of LocalServicesLeadClient.
+type LocalServicesLeadCallOptions struct {
+ AppendLeadConversation []gax.CallOption
+}
+
+func defaultLocalServicesLeadGRPCClientOptions() []option.ClientOption {
+ return []option.ClientOption{
+ internaloption.WithDefaultEndpoint("googleads.googleapis.com:443"),
+ internaloption.WithDefaultEndpointTemplate("googleads.UNIVERSE_DOMAIN:443"),
+ internaloption.WithDefaultMTLSEndpoint("googleads.mtls.googleapis.com:443"),
+ internaloption.WithDefaultUniverseDomain("googleapis.com"),
+ internaloption.WithDefaultAudience("https://googleads.googleapis.com/"),
+ internaloption.WithDefaultScopes(DefaultAuthScopes()...),
+ internaloption.EnableJwtWithScope(),
+ option.WithGRPCDialOption(grpc.WithDefaultCallOptions(
+ grpc.MaxCallRecvMsgSize(math.MaxInt32))),
+ }
+}
+
+func defaultLocalServicesLeadCallOptions() *LocalServicesLeadCallOptions {
+ return &LocalServicesLeadCallOptions{
+ AppendLeadConversation: []gax.CallOption{
+ gax.WithTimeout(14400000 * time.Millisecond),
+ gax.WithRetry(func() gax.Retryer {
+ return gax.OnCodes([]codes.Code{
+ codes.Unavailable,
+ codes.DeadlineExceeded,
+ }, gax.Backoff{
+ Initial: 5000 * time.Millisecond,
+ Max: 60000 * time.Millisecond,
+ Multiplier: 1.30,
+ })
+ }),
+ },
+ }
+}
+
+// internalLocalServicesLeadClient is an interface that defines the methods available from Google Ads API.
+type internalLocalServicesLeadClient interface {
+ Close() error
+ setGoogleClientInfo(...string)
+ Connection() *grpc.ClientConn
+ AppendLeadConversation(context.Context, *servicespb.AppendLeadConversationRequest, ...gax.CallOption) (*servicespb.AppendLeadConversationResponse, error)
+}
+
+// LocalServicesLeadClient is a client for interacting with Google Ads API.
+// Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls.
+//
+// This service allows management of LocalServicesLead resources.
+type LocalServicesLeadClient struct {
+ // The internal transport-dependent client.
+ internalClient internalLocalServicesLeadClient
+
+ // The call options for this service.
+ CallOptions *LocalServicesLeadCallOptions
+}
+
+// Wrapper methods routed to the internal client.
+
+// Close closes the connection to the API service. The user should invoke this when
+// the client is no longer required.
+func (c *LocalServicesLeadClient) Close() error {
+ return c.internalClient.Close()
+}
+
+// setGoogleClientInfo sets the name and version of the application in
+// the `x-goog-api-client` header passed on each request. Intended for
+// use by Google-written clients.
+func (c *LocalServicesLeadClient) setGoogleClientInfo(keyval ...string) {
+ c.internalClient.setGoogleClientInfo(keyval...)
+}
+
+// Connection returns a connection to the API service.
+//
+// Deprecated: Connections are now pooled so this method does not always
+// return the same resource.
+func (c *LocalServicesLeadClient) Connection() *grpc.ClientConn {
+ return c.internalClient.Connection()
+}
+
+// AppendLeadConversation rPC to append Local Services Lead Conversation resources to Local Services
+// Lead resources.
+func (c *LocalServicesLeadClient) AppendLeadConversation(ctx context.Context, req *servicespb.AppendLeadConversationRequest, opts ...gax.CallOption) (*servicespb.AppendLeadConversationResponse, error) {
+ return c.internalClient.AppendLeadConversation(ctx, req, opts...)
+}
+
+// localServicesLeadGRPCClient is a client for interacting with Google Ads API over gRPC transport.
+//
+// Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls.
+type localServicesLeadGRPCClient struct {
+ // Connection pool of gRPC connections to the service.
+ connPool gtransport.ConnPool
+
+ // Points back to the CallOptions field of the containing LocalServicesLeadClient
+ CallOptions **LocalServicesLeadCallOptions
+
+ // The gRPC API client.
+ localServicesLeadClient servicespb.LocalServicesLeadServiceClient
+
+ // The x-goog-* metadata to be sent with each request.
+ xGoogHeaders []string
+}
+
+// NewLocalServicesLeadClient creates a new local services lead service client based on gRPC.
+// The returned client must be Closed when it is done being used to clean up its underlying connections.
+//
+// This service allows management of LocalServicesLead resources.
+func NewLocalServicesLeadClient(ctx context.Context, opts ...option.ClientOption) (*LocalServicesLeadClient, error) {
+ clientOpts := defaultLocalServicesLeadGRPCClientOptions()
+ if newLocalServicesLeadClientHook != nil {
+ hookOpts, err := newLocalServicesLeadClientHook(ctx, clientHookParams{})
+ if err != nil {
+ return nil, err
+ }
+ clientOpts = append(clientOpts, hookOpts...)
+ }
+
+ connPool, err := gtransport.DialPool(ctx, append(clientOpts, opts...)...)
+ if err != nil {
+ return nil, err
+ }
+ client := LocalServicesLeadClient{CallOptions: defaultLocalServicesLeadCallOptions()}
+
+ c := &localServicesLeadGRPCClient{
+ connPool: connPool,
+ localServicesLeadClient: servicespb.NewLocalServicesLeadServiceClient(connPool),
+ CallOptions: &client.CallOptions,
+ }
+ c.setGoogleClientInfo()
+
+ client.internalClient = c
+
+ return &client, nil
+}
+
+// Connection returns a connection to the API service.
+//
+// Deprecated: Connections are now pooled so this method does not always
+// return the same resource.
+func (c *localServicesLeadGRPCClient) Connection() *grpc.ClientConn {
+ return c.connPool.Conn()
+}
+
+// setGoogleClientInfo sets the name and version of the application in
+// the `x-goog-api-client` header passed on each request. Intended for
+// use by Google-written clients.
+func (c *localServicesLeadGRPCClient) setGoogleClientInfo(keyval ...string) {
+ kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
+ kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
+}
+
+// Close closes the connection to the API service. The user should invoke this when
+// the client is no longer required.
+func (c *localServicesLeadGRPCClient) Close() error {
+ return c.connPool.Close()
+}
+
+func (c *localServicesLeadGRPCClient) AppendLeadConversation(ctx context.Context, req *servicespb.AppendLeadConversationRequest, opts ...gax.CallOption) (*servicespb.AppendLeadConversationResponse, error) {
+ hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v", "customer_id", url.QueryEscape(req.GetCustomerId()))}
+
+ hds = append(c.xGoogHeaders, hds...)
+ ctx = gax.InsertMetadataIntoOutgoingContext(ctx, hds...)
+ opts = append((*c.CallOptions).AppendLeadConversation[0:len((*c.CallOptions).AppendLeadConversation):len((*c.CallOptions).AppendLeadConversation)], opts...)
+ var resp *servicespb.AppendLeadConversationResponse
+ err := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error {
+ var err error
+ resp, err = c.localServicesLeadClient.AppendLeadConversation(ctx, req, settings.GRPC...)
+ return err
+ }, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return resp, nil
+}
diff --git a/clients/offline_user_data_job_client.go b/clients/offline_user_data_job_client.go
index 48b90730..c43d8817 100644
--- a/clients/offline_user_data_job_client.go
+++ b/clients/offline_user_data_job_client.go
@@ -290,7 +290,9 @@ func (c *offlineUserDataJobGRPCClient) Connection() *grpc.ClientConn {
func (c *offlineUserDataJobGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/payments_account_client.go b/clients/payments_account_client.go
index ff34dec9..896eec6e 100644
--- a/clients/payments_account_client.go
+++ b/clients/payments_account_client.go
@@ -195,7 +195,9 @@ func (c *paymentsAccountGRPCClient) Connection() *grpc.ClientConn {
func (c *paymentsAccountGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/product_link_client.go b/clients/product_link_client.go
index f79ddb06..c6298418 100644
--- a/clients/product_link_client.go
+++ b/clients/product_link_client.go
@@ -225,7 +225,9 @@ func (c *productLinkGRPCClient) Connection() *grpc.ClientConn {
func (c *productLinkGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/product_link_invitation_client.go b/clients/product_link_invitation_client.go
index 6986717a..0017aec8 100644
--- a/clients/product_link_invitation_client.go
+++ b/clients/product_link_invitation_client.go
@@ -224,7 +224,9 @@ func (c *productLinkInvitationGRPCClient) Connection() *grpc.ClientConn {
func (c *productLinkInvitationGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/reach_plan_client.go b/clients/reach_plan_client.go
index 57b01da5..a2915844 100644
--- a/clients/reach_plan_client.go
+++ b/clients/reach_plan_client.go
@@ -258,7 +258,9 @@ func (c *reachPlanGRPCClient) Connection() *grpc.ClientConn {
func (c *reachPlanGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/recommendation_client.go b/clients/recommendation_client.go
index fadccefd..5d4ccd33 100644
--- a/clients/recommendation_client.go
+++ b/clients/recommendation_client.go
@@ -253,7 +253,9 @@ func (c *recommendationGRPCClient) Connection() *grpc.ClientConn {
func (c *recommendationGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/recommendation_subscription_client.go b/clients/recommendation_subscription_client.go
index 3caa4620..4c222c40 100644
--- a/clients/recommendation_subscription_client.go
+++ b/clients/recommendation_subscription_client.go
@@ -195,7 +195,9 @@ func (c *recommendationSubscriptionGRPCClient) Connection() *grpc.ClientConn {
func (c *recommendationSubscriptionGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/remarketing_action_client.go b/clients/remarketing_action_client.go
index 14235834..3e2008f9 100644
--- a/clients/remarketing_action_client.go
+++ b/clients/remarketing_action_client.go
@@ -191,7 +191,9 @@ func (c *remarketingActionGRPCClient) Connection() *grpc.ClientConn {
func (c *remarketingActionGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/shared_criterion_client.go b/clients/shared_criterion_client.go
index ebb6adca..d50e7f1c 100644
--- a/clients/shared_criterion_client.go
+++ b/clients/shared_criterion_client.go
@@ -204,7 +204,9 @@ func (c *sharedCriterionGRPCClient) Connection() *grpc.ClientConn {
func (c *sharedCriterionGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/shared_set_client.go b/clients/shared_set_client.go
index 350cab0b..f9e01953 100644
--- a/clients/shared_set_client.go
+++ b/clients/shared_set_client.go
@@ -207,7 +207,9 @@ func (c *sharedSetGRPCClient) Connection() *grpc.ClientConn {
func (c *sharedSetGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/smart_campaign_setting_client.go b/clients/smart_campaign_setting_client.go
index 39402636..c45ddd1e 100644
--- a/clients/smart_campaign_setting_client.go
+++ b/clients/smart_campaign_setting_client.go
@@ -202,7 +202,9 @@ func (c *smartCampaignSettingGRPCClient) Connection() *grpc.ClientConn {
func (c *smartCampaignSettingGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/smart_campaign_suggest_client.go b/clients/smart_campaign_suggest_client.go
index 1c4bf5ba..e2ed58f8 100644
--- a/clients/smart_campaign_suggest_client.go
+++ b/clients/smart_campaign_suggest_client.go
@@ -223,7 +223,9 @@ func (c *smartCampaignSuggestGRPCClient) Connection() *grpc.ClientConn {
func (c *smartCampaignSuggestGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/third_party_app_analytics_link_client.go b/clients/third_party_app_analytics_link_client.go
index bb4fc67d..c95407cb 100644
--- a/clients/third_party_app_analytics_link_client.go
+++ b/clients/third_party_app_analytics_link_client.go
@@ -193,7 +193,9 @@ func (c *thirdPartyAppAnalyticsLinkGRPCClient) Connection() *grpc.ClientConn {
func (c *thirdPartyAppAnalyticsLinkGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/travel_asset_suggestion_client.go b/clients/travel_asset_suggestion_client.go
index 84a6624e..e12d93d8 100644
--- a/clients/travel_asset_suggestion_client.go
+++ b/clients/travel_asset_suggestion_client.go
@@ -185,7 +185,9 @@ func (c *travelAssetSuggestionGRPCClient) Connection() *grpc.ClientConn {
func (c *travelAssetSuggestionGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/user_data_client.go b/clients/user_data_client.go
index 21a13d06..85e5cdb1 100644
--- a/clients/user_data_client.go
+++ b/clients/user_data_client.go
@@ -205,7 +205,9 @@ func (c *userDataGRPCClient) Connection() *grpc.ClientConn {
func (c *userDataGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/user_list_client.go b/clients/user_list_client.go
index f0cab0f3..feaf8be5 100644
--- a/clients/user_list_client.go
+++ b/clients/user_list_client.go
@@ -204,7 +204,9 @@ func (c *userListGRPCClient) Connection() *grpc.ClientConn {
func (c *userListGRPCClient) setGoogleClientInfo(keyval ...string) {
kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
- c.xGoogHeaders = []string{"x-goog-api-client", gax.XGoogHeader(kv...)}
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
}
// Close closes the connection to the API service. The user should invoke this when
diff --git a/clients/user_list_customer_type_client.go b/clients/user_list_customer_type_client.go
new file mode 100644
index 00000000..bd58d10e
--- /dev/null
+++ b/clients/user_list_customer_type_client.go
@@ -0,0 +1,222 @@
+// Copyright 2024 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.
+
+// Code generated by protoc-gen-go_gapic. DO NOT EDIT.
+
+package clients
+
+import (
+ "context"
+ "fmt"
+ "math"
+ "net/url"
+ "time"
+
+ gax "github.com/googleapis/gax-go/v2"
+ servicespb "github.com/shenzhencenter/google-ads-pb/services"
+ "google.golang.org/api/option"
+ "google.golang.org/api/option/internaloption"
+ gtransport "google.golang.org/api/transport/grpc"
+ "google.golang.org/grpc"
+ "google.golang.org/grpc/codes"
+)
+
+var newUserListCustomerTypeClientHook clientHook
+
+// UserListCustomerTypeCallOptions contains the retry settings for each method of UserListCustomerTypeClient.
+type UserListCustomerTypeCallOptions struct {
+ MutateUserListCustomerTypes []gax.CallOption
+}
+
+func defaultUserListCustomerTypeGRPCClientOptions() []option.ClientOption {
+ return []option.ClientOption{
+ internaloption.WithDefaultEndpoint("googleads.googleapis.com:443"),
+ internaloption.WithDefaultEndpointTemplate("googleads.UNIVERSE_DOMAIN:443"),
+ internaloption.WithDefaultMTLSEndpoint("googleads.mtls.googleapis.com:443"),
+ internaloption.WithDefaultUniverseDomain("googleapis.com"),
+ internaloption.WithDefaultAudience("https://googleads.googleapis.com/"),
+ internaloption.WithDefaultScopes(DefaultAuthScopes()...),
+ internaloption.EnableJwtWithScope(),
+ option.WithGRPCDialOption(grpc.WithDefaultCallOptions(
+ grpc.MaxCallRecvMsgSize(math.MaxInt32))),
+ }
+}
+
+func defaultUserListCustomerTypeCallOptions() *UserListCustomerTypeCallOptions {
+ return &UserListCustomerTypeCallOptions{
+ MutateUserListCustomerTypes: []gax.CallOption{
+ gax.WithTimeout(14400000 * time.Millisecond),
+ gax.WithRetry(func() gax.Retryer {
+ return gax.OnCodes([]codes.Code{
+ codes.Unavailable,
+ codes.DeadlineExceeded,
+ }, gax.Backoff{
+ Initial: 5000 * time.Millisecond,
+ Max: 60000 * time.Millisecond,
+ Multiplier: 1.30,
+ })
+ }),
+ },
+ }
+}
+
+// internalUserListCustomerTypeClient is an interface that defines the methods available from Google Ads API.
+type internalUserListCustomerTypeClient interface {
+ Close() error
+ setGoogleClientInfo(...string)
+ Connection() *grpc.ClientConn
+ MutateUserListCustomerTypes(context.Context, *servicespb.MutateUserListCustomerTypesRequest, ...gax.CallOption) (*servicespb.MutateUserListCustomerTypesResponse, error)
+}
+
+// UserListCustomerTypeClient is a client for interacting with Google Ads API.
+// Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls.
+//
+// Service to manage user list customer types.
+type UserListCustomerTypeClient struct {
+ // The internal transport-dependent client.
+ internalClient internalUserListCustomerTypeClient
+
+ // The call options for this service.
+ CallOptions *UserListCustomerTypeCallOptions
+}
+
+// Wrapper methods routed to the internal client.
+
+// Close closes the connection to the API service. The user should invoke this when
+// the client is no longer required.
+func (c *UserListCustomerTypeClient) Close() error {
+ return c.internalClient.Close()
+}
+
+// setGoogleClientInfo sets the name and version of the application in
+// the `x-goog-api-client` header passed on each request. Intended for
+// use by Google-written clients.
+func (c *UserListCustomerTypeClient) setGoogleClientInfo(keyval ...string) {
+ c.internalClient.setGoogleClientInfo(keyval...)
+}
+
+// Connection returns a connection to the API service.
+//
+// Deprecated: Connections are now pooled so this method does not always
+// return the same resource.
+func (c *UserListCustomerTypeClient) Connection() *grpc.ClientConn {
+ return c.internalClient.Connection()
+}
+
+// MutateUserListCustomerTypes attach or remove user list customer types. Operation statuses
+// are returned.
+//
+// List of thrown errors:
+// AuthenticationError (at )
+// AuthorizationError (at )
+// UserListCustomerTypeError (at )
+// HeaderError (at )
+// InternalError (at )
+// QuotaError (at )
+// RequestError (at )
+func (c *UserListCustomerTypeClient) MutateUserListCustomerTypes(ctx context.Context, req *servicespb.MutateUserListCustomerTypesRequest, opts ...gax.CallOption) (*servicespb.MutateUserListCustomerTypesResponse, error) {
+ return c.internalClient.MutateUserListCustomerTypes(ctx, req, opts...)
+}
+
+// userListCustomerTypeGRPCClient is a client for interacting with Google Ads API over gRPC transport.
+//
+// Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls.
+type userListCustomerTypeGRPCClient struct {
+ // Connection pool of gRPC connections to the service.
+ connPool gtransport.ConnPool
+
+ // Points back to the CallOptions field of the containing UserListCustomerTypeClient
+ CallOptions **UserListCustomerTypeCallOptions
+
+ // The gRPC API client.
+ userListCustomerTypeClient servicespb.UserListCustomerTypeServiceClient
+
+ // The x-goog-* metadata to be sent with each request.
+ xGoogHeaders []string
+}
+
+// NewUserListCustomerTypeClient creates a new user list customer type service client based on gRPC.
+// The returned client must be Closed when it is done being used to clean up its underlying connections.
+//
+// Service to manage user list customer types.
+func NewUserListCustomerTypeClient(ctx context.Context, opts ...option.ClientOption) (*UserListCustomerTypeClient, error) {
+ clientOpts := defaultUserListCustomerTypeGRPCClientOptions()
+ if newUserListCustomerTypeClientHook != nil {
+ hookOpts, err := newUserListCustomerTypeClientHook(ctx, clientHookParams{})
+ if err != nil {
+ return nil, err
+ }
+ clientOpts = append(clientOpts, hookOpts...)
+ }
+
+ connPool, err := gtransport.DialPool(ctx, append(clientOpts, opts...)...)
+ if err != nil {
+ return nil, err
+ }
+ client := UserListCustomerTypeClient{CallOptions: defaultUserListCustomerTypeCallOptions()}
+
+ c := &userListCustomerTypeGRPCClient{
+ connPool: connPool,
+ userListCustomerTypeClient: servicespb.NewUserListCustomerTypeServiceClient(connPool),
+ CallOptions: &client.CallOptions,
+ }
+ c.setGoogleClientInfo()
+
+ client.internalClient = c
+
+ return &client, nil
+}
+
+// Connection returns a connection to the API service.
+//
+// Deprecated: Connections are now pooled so this method does not always
+// return the same resource.
+func (c *userListCustomerTypeGRPCClient) Connection() *grpc.ClientConn {
+ return c.connPool.Conn()
+}
+
+// setGoogleClientInfo sets the name and version of the application in
+// the `x-goog-api-client` header passed on each request. Intended for
+// use by Google-written clients.
+func (c *userListCustomerTypeGRPCClient) setGoogleClientInfo(keyval ...string) {
+ kv := append([]string{"gl-go", gax.GoVersion}, keyval...)
+ kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version)
+ c.xGoogHeaders = []string{
+ "x-goog-api-client", gax.XGoogHeader(kv...),
+ }
+}
+
+// Close closes the connection to the API service. The user should invoke this when
+// the client is no longer required.
+func (c *userListCustomerTypeGRPCClient) Close() error {
+ return c.connPool.Close()
+}
+
+func (c *userListCustomerTypeGRPCClient) MutateUserListCustomerTypes(ctx context.Context, req *servicespb.MutateUserListCustomerTypesRequest, opts ...gax.CallOption) (*servicespb.MutateUserListCustomerTypesResponse, error) {
+ hds := []string{"x-goog-request-params", fmt.Sprintf("%s=%v", "customer_id", url.QueryEscape(req.GetCustomerId()))}
+
+ hds = append(c.xGoogHeaders, hds...)
+ ctx = gax.InsertMetadataIntoOutgoingContext(ctx, hds...)
+ opts = append((*c.CallOptions).MutateUserListCustomerTypes[0:len((*c.CallOptions).MutateUserListCustomerTypes):len((*c.CallOptions).MutateUserListCustomerTypes)], opts...)
+ var resp *servicespb.MutateUserListCustomerTypesResponse
+ err := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error {
+ var err error
+ resp, err = c.userListCustomerTypeClient.MutateUserListCustomerTypes(ctx, req, settings.GRPC...)
+ return err
+ }, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return resp, nil
+}
diff --git a/common/ad_asset.pb.go b/common/ad_asset.pb.go
index 4189ef3b..3c3855c8 100644
--- a/common/ad_asset.pb.go
+++ b/common/ad_asset.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/ad_asset.proto
+// source: google/ads/googleads/v17/common/ad_asset.proto
package common
@@ -47,9 +47,9 @@ type AdTextAsset struct {
// within this field. Multiple assets can be pinned to the same field. An
// asset that is unpinned or pinned to a different field will not serve in a
// field where some other asset has been pinned.
- PinnedField enums.ServedAssetFieldTypeEnum_ServedAssetFieldType `protobuf:"varint,2,opt,name=pinned_field,json=pinnedField,proto3,enum=google.ads.googleads.v16.enums.ServedAssetFieldTypeEnum_ServedAssetFieldType" json:"pinned_field,omitempty"`
+ PinnedField enums.ServedAssetFieldTypeEnum_ServedAssetFieldType `protobuf:"varint,2,opt,name=pinned_field,json=pinnedField,proto3,enum=google.ads.googleads.v17.enums.ServedAssetFieldTypeEnum_ServedAssetFieldType" json:"pinned_field,omitempty"`
// The performance label of this text asset.
- AssetPerformanceLabel enums.AssetPerformanceLabelEnum_AssetPerformanceLabel `protobuf:"varint,5,opt,name=asset_performance_label,json=assetPerformanceLabel,proto3,enum=google.ads.googleads.v16.enums.AssetPerformanceLabelEnum_AssetPerformanceLabel" json:"asset_performance_label,omitempty"`
+ AssetPerformanceLabel enums.AssetPerformanceLabelEnum_AssetPerformanceLabel `protobuf:"varint,5,opt,name=asset_performance_label,json=assetPerformanceLabel,proto3,enum=google.ads.googleads.v17.enums.AssetPerformanceLabelEnum_AssetPerformanceLabel" json:"asset_performance_label,omitempty"`
// The policy summary of this text asset.
PolicySummaryInfo *AdAssetPolicySummary `protobuf:"bytes,6,opt,name=policy_summary_info,json=policySummaryInfo,proto3" json:"policy_summary_info,omitempty"`
}
@@ -57,7 +57,7 @@ type AdTextAsset struct {
func (x *AdTextAsset) Reset() {
*x = AdTextAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -70,7 +70,7 @@ func (x *AdTextAsset) String() string {
func (*AdTextAsset) ProtoMessage() {}
func (x *AdTextAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -83,7 +83,7 @@ func (x *AdTextAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdTextAsset.ProtoReflect.Descriptor instead.
func (*AdTextAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_asset_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_ad_asset_proto_rawDescGZIP(), []int{0}
}
func (x *AdTextAsset) GetText() string {
@@ -127,7 +127,7 @@ type AdImageAsset struct {
func (x *AdImageAsset) Reset() {
*x = AdImageAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -140,7 +140,7 @@ func (x *AdImageAsset) String() string {
func (*AdImageAsset) ProtoMessage() {}
func (x *AdImageAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -153,7 +153,7 @@ func (x *AdImageAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdImageAsset.ProtoReflect.Descriptor instead.
func (*AdImageAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_asset_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_ad_asset_proto_rawDescGZIP(), []int{1}
}
func (x *AdImageAsset) GetAsset() string {
@@ -171,12 +171,14 @@ type AdVideoAsset struct {
// The Asset resource name of this video.
Asset *string `protobuf:"bytes,2,opt,name=asset,proto3,oneof" json:"asset,omitempty"`
+ // Contains info fields for this AdVideoAsset.
+ AdVideoAssetInfo *AdVideoAssetInfo `protobuf:"bytes,4,opt,name=ad_video_asset_info,json=adVideoAssetInfo,proto3,oneof" json:"ad_video_asset_info,omitempty"`
}
func (x *AdVideoAsset) Reset() {
*x = AdVideoAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -189,7 +191,7 @@ func (x *AdVideoAsset) String() string {
func (*AdVideoAsset) ProtoMessage() {}
func (x *AdVideoAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -202,7 +204,7 @@ func (x *AdVideoAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdVideoAsset.ProtoReflect.Descriptor instead.
func (*AdVideoAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_asset_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_common_ad_asset_proto_rawDescGZIP(), []int{2}
}
func (x *AdVideoAsset) GetAsset() string {
@@ -212,6 +214,139 @@ func (x *AdVideoAsset) GetAsset() string {
return ""
}
+func (x *AdVideoAsset) GetAdVideoAssetInfo() *AdVideoAssetInfo {
+ if x != nil {
+ return x.AdVideoAssetInfo
+ }
+ return nil
+}
+
+// Contains info fields for AdVideoAssets.
+type AdVideoAssetInfo struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+
+ // List of inventory preferences for this AdVideoAsset. This field can only be
+ // set for DiscoveryVideoResponsiveAd. The video assets with an inventory
+ // asset preference set will be preferred over other videos from the same ad
+ // during serving time. For example, consider this ad being served for a
+ // specific inventory. The server will first try to match an eligible video
+ // with a matching preference for that inventory. Videos with no preferences
+ // are chosen only when a video with matching preference and eligible for a
+ // given ad slot can be found.
+ AdVideoAssetInventoryPreferences *AdVideoAssetInventoryPreferences `protobuf:"bytes,1,opt,name=ad_video_asset_inventory_preferences,json=adVideoAssetInventoryPreferences,proto3,oneof" json:"ad_video_asset_inventory_preferences,omitempty"`
+}
+
+func (x *AdVideoAssetInfo) Reset() {
+ *x = AdVideoAssetInfo{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[3]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *AdVideoAssetInfo) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*AdVideoAssetInfo) ProtoMessage() {}
+
+func (x *AdVideoAssetInfo) ProtoReflect() protoreflect.Message {
+ mi := &file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[3]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use AdVideoAssetInfo.ProtoReflect.Descriptor instead.
+func (*AdVideoAssetInfo) Descriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_common_ad_asset_proto_rawDescGZIP(), []int{3}
+}
+
+func (x *AdVideoAssetInfo) GetAdVideoAssetInventoryPreferences() *AdVideoAssetInventoryPreferences {
+ if x != nil {
+ return x.AdVideoAssetInventoryPreferences
+ }
+ return nil
+}
+
+// YouTube Video Asset inventory preferences.
+type AdVideoAssetInventoryPreferences struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+
+ // When true, YouTube Video Asset with this inventory preference will be
+ // preferred when choosing a video to serve In Feed.
+ InFeedPreference *bool `protobuf:"varint,1,opt,name=in_feed_preference,json=inFeedPreference,proto3,oneof" json:"in_feed_preference,omitempty"`
+ // When true, YouTube Video Asset with this inventory preference will be
+ // preferred when choosing a video to serve In Stream.
+ InStreamPreference *bool `protobuf:"varint,2,opt,name=in_stream_preference,json=inStreamPreference,proto3,oneof" json:"in_stream_preference,omitempty"`
+ // When true, YouTube Video Asset with this inventory preference will be
+ // preferred when choosing a video to serve on YouTube Shorts.
+ ShortsPreference *bool `protobuf:"varint,3,opt,name=shorts_preference,json=shortsPreference,proto3,oneof" json:"shorts_preference,omitempty"`
+}
+
+func (x *AdVideoAssetInventoryPreferences) Reset() {
+ *x = AdVideoAssetInventoryPreferences{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[4]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *AdVideoAssetInventoryPreferences) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*AdVideoAssetInventoryPreferences) ProtoMessage() {}
+
+func (x *AdVideoAssetInventoryPreferences) ProtoReflect() protoreflect.Message {
+ mi := &file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[4]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use AdVideoAssetInventoryPreferences.ProtoReflect.Descriptor instead.
+func (*AdVideoAssetInventoryPreferences) Descriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_common_ad_asset_proto_rawDescGZIP(), []int{4}
+}
+
+func (x *AdVideoAssetInventoryPreferences) GetInFeedPreference() bool {
+ if x != nil && x.InFeedPreference != nil {
+ return *x.InFeedPreference
+ }
+ return false
+}
+
+func (x *AdVideoAssetInventoryPreferences) GetInStreamPreference() bool {
+ if x != nil && x.InStreamPreference != nil {
+ return *x.InStreamPreference
+ }
+ return false
+}
+
+func (x *AdVideoAssetInventoryPreferences) GetShortsPreference() bool {
+ if x != nil && x.ShortsPreference != nil {
+ return *x.ShortsPreference
+ }
+ return false
+}
+
// A media bundle asset used inside an ad.
type AdMediaBundleAsset struct {
state protoimpl.MessageState
@@ -225,7 +360,7 @@ type AdMediaBundleAsset struct {
func (x *AdMediaBundleAsset) Reset() {
*x = AdMediaBundleAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -238,7 +373,7 @@ func (x *AdMediaBundleAsset) String() string {
func (*AdMediaBundleAsset) ProtoMessage() {}
func (x *AdMediaBundleAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -251,7 +386,7 @@ func (x *AdMediaBundleAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdMediaBundleAsset.ProtoReflect.Descriptor instead.
func (*AdMediaBundleAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_asset_proto_rawDescGZIP(), []int{3}
+ return file_google_ads_googleads_v17_common_ad_asset_proto_rawDescGZIP(), []int{5}
}
func (x *AdMediaBundleAsset) GetAsset() string {
@@ -261,8 +396,8 @@ func (x *AdMediaBundleAsset) GetAsset() string {
return ""
}
-// A discovery carousel card asset used inside an ad.
-type AdDiscoveryCarouselCardAsset struct {
+// A Demand Gen carousel card asset used inside an ad.
+type AdDemandGenCarouselCardAsset struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
@@ -271,23 +406,23 @@ type AdDiscoveryCarouselCardAsset struct {
Asset *string `protobuf:"bytes,1,opt,name=asset,proto3,oneof" json:"asset,omitempty"`
}
-func (x *AdDiscoveryCarouselCardAsset) Reset() {
- *x = AdDiscoveryCarouselCardAsset{}
+func (x *AdDemandGenCarouselCardAsset) Reset() {
+ *x = AdDemandGenCarouselCardAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
-func (x *AdDiscoveryCarouselCardAsset) String() string {
+func (x *AdDemandGenCarouselCardAsset) String() string {
return protoimpl.X.MessageStringOf(x)
}
-func (*AdDiscoveryCarouselCardAsset) ProtoMessage() {}
+func (*AdDemandGenCarouselCardAsset) ProtoMessage() {}
-func (x *AdDiscoveryCarouselCardAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[4]
+func (x *AdDemandGenCarouselCardAsset) ProtoReflect() protoreflect.Message {
+ mi := &file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -298,12 +433,12 @@ func (x *AdDiscoveryCarouselCardAsset) ProtoReflect() protoreflect.Message {
return mi.MessageOf(x)
}
-// Deprecated: Use AdDiscoveryCarouselCardAsset.ProtoReflect.Descriptor instead.
-func (*AdDiscoveryCarouselCardAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_asset_proto_rawDescGZIP(), []int{4}
+// Deprecated: Use AdDemandGenCarouselCardAsset.ProtoReflect.Descriptor instead.
+func (*AdDemandGenCarouselCardAsset) Descriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_common_ad_asset_proto_rawDescGZIP(), []int{6}
}
-func (x *AdDiscoveryCarouselCardAsset) GetAsset() string {
+func (x *AdDemandGenCarouselCardAsset) GetAsset() string {
if x != nil && x.Asset != nil {
return *x.Asset
}
@@ -323,7 +458,7 @@ type AdCallToActionAsset struct {
func (x *AdCallToActionAsset) Reset() {
*x = AdCallToActionAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -336,7 +471,7 @@ func (x *AdCallToActionAsset) String() string {
func (*AdCallToActionAsset) ProtoMessage() {}
func (x *AdCallToActionAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -349,7 +484,7 @@ func (x *AdCallToActionAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdCallToActionAsset.ProtoReflect.Descriptor instead.
func (*AdCallToActionAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_asset_proto_rawDescGZIP(), []int{5}
+ return file_google_ads_googleads_v17_common_ad_asset_proto_rawDescGZIP(), []int{7}
}
func (x *AdCallToActionAsset) GetAsset() string {
@@ -359,23 +494,23 @@ func (x *AdCallToActionAsset) GetAsset() string {
return ""
}
-var File_google_ads_googleads_v16_common_ad_asset_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_ad_asset_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_ad_asset_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_ad_asset_proto_rawDesc = []byte{
0x0a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x61, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x1a, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x66,
0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74,
0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x22, 0x92, 0x03, 0x0a, 0x0b, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65,
@@ -383,7 +518,7 @@ var file_google_ads_googleads_v16_common_ad_asset_proto_rawDesc = []byte{
0x00, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x88, 0x01, 0x01, 0x12, 0x70, 0x0a, 0x0c, 0x70, 0x69,
0x6e, 0x6e, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e,
0x32, 0x4d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65,
0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65,
0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x52,
@@ -391,7 +526,7 @@ var file_google_ads_googleads_v16_common_ad_asset_proto_rawDesc = []byte{
0x17, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e,
0x63, 0x65, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4f,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e,
0x41, 0x73, 0x73, 0x65, 0x74, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65,
0x4c, 0x61, 0x62, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50,
0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52,
@@ -399,90 +534,132 @@ var file_google_ads_googleads_v16_common_ad_asset_proto_rawDesc = []byte{
0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x12, 0x65, 0x0a, 0x13, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79,
0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x06, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50, 0x6f, 0x6c,
0x69, 0x63, 0x79, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x11, 0x70, 0x6f, 0x6c, 0x69,
0x63, 0x79, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x07, 0x0a,
0x05, 0x5f, 0x74, 0x65, 0x78, 0x74, 0x22, 0x33, 0x0a, 0x0c, 0x41, 0x64, 0x49, 0x6d, 0x61, 0x67,
0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x19, 0x0a, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18,
0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x88, 0x01,
- 0x01, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x22, 0x33, 0x0a, 0x0c, 0x41,
- 0x64, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x19, 0x0a, 0x05, 0x61,
- 0x73, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x05, 0x61, 0x73,
- 0x73, 0x65, 0x74, 0x88, 0x01, 0x01, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74,
- 0x22, 0x39, 0x0a, 0x12, 0x41, 0x64, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x42, 0x75, 0x6e, 0x64, 0x6c,
- 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x19, 0x0a, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x88, 0x01,
- 0x01, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x22, 0x43, 0x0a, 0x1c, 0x41,
- 0x64, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x43, 0x61, 0x72, 0x6f, 0x75, 0x73,
- 0x65, 0x6c, 0x43, 0x61, 0x72, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x19, 0x0a, 0x05, 0x61,
- 0x73, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x05, 0x61, 0x73,
- 0x73, 0x65, 0x74, 0x88, 0x01, 0x01, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74,
- 0x22, 0x3a, 0x0a, 0x13, 0x41, 0x64, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x19, 0x0a, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x88,
- 0x01, 0x01, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x42, 0xec, 0x01, 0x0a,
- 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
- 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0c, 0x41, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50, 0x72, 0x6f,
- 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
- 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f,
- 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41,
- 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d,
- 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43,
- 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x33,
+ 0x01, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x22, 0xb2, 0x01, 0x0a, 0x0c,
+ 0x41, 0x64, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x19, 0x0a, 0x05,
+ 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x05, 0x61,
+ 0x73, 0x73, 0x65, 0x74, 0x88, 0x01, 0x01, 0x12, 0x65, 0x0a, 0x13, 0x61, 0x64, 0x5f, 0x76, 0x69,
+ 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x04,
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
+ 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x73,
+ 0x73, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x01, 0x52, 0x10, 0x61, 0x64, 0x56, 0x69, 0x64,
+ 0x65, 0x6f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x88, 0x01, 0x01, 0x42, 0x08,
+ 0x0a, 0x06, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x61, 0x64, 0x5f,
+ 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
+ 0x22, 0xd4, 0x01, 0x0a, 0x10, 0x41, 0x64, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x73, 0x73, 0x65,
+ 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x96, 0x01, 0x0a, 0x24, 0x61, 0x64, 0x5f, 0x76, 0x69, 0x64,
+ 0x65, 0x6f, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f,
+ 0x72, 0x79, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x18, 0x01,
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x41, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
+ 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x73,
+ 0x73, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x50, 0x72, 0x65, 0x66,
+ 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x48, 0x00, 0x52, 0x20, 0x61, 0x64, 0x56, 0x69, 0x64,
+ 0x65, 0x6f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79,
+ 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x88, 0x01, 0x01, 0x42, 0x27,
+ 0x0a, 0x25, 0x5f, 0x61, 0x64, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x73, 0x73, 0x65,
+ 0x74, 0x5f, 0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x70, 0x72, 0x65, 0x66,
+ 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x22, 0x84, 0x02, 0x0a, 0x20, 0x41, 0x64, 0x56, 0x69,
+ 0x64, 0x65, 0x6f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72,
+ 0x79, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x12, 0x31, 0x0a, 0x12,
+ 0x69, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e,
+ 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x10, 0x69, 0x6e, 0x46, 0x65,
+ 0x65, 0x64, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x88, 0x01, 0x01, 0x12,
+ 0x35, 0x0a, 0x14, 0x69, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x5f, 0x70, 0x72, 0x65,
+ 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x48, 0x01, 0x52,
+ 0x12, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x50, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65,
+ 0x6e, 0x63, 0x65, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a, 0x11, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x73,
+ 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
+ 0x08, 0x48, 0x02, 0x52, 0x10, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x73, 0x50, 0x72, 0x65, 0x66, 0x65,
+ 0x72, 0x65, 0x6e, 0x63, 0x65, 0x88, 0x01, 0x01, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x69, 0x6e, 0x5f,
+ 0x66, 0x65, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x42,
+ 0x17, 0x0a, 0x15, 0x5f, 0x69, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x5f, 0x70, 0x72,
+ 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x73, 0x68, 0x6f,
+ 0x72, 0x74, 0x73, 0x5f, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x22, 0x39,
+ 0x0a, 0x12, 0x41, 0x64, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x41,
+ 0x73, 0x73, 0x65, 0x74, 0x12, 0x19, 0x0a, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20,
+ 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x88, 0x01, 0x01, 0x42,
+ 0x08, 0x0a, 0x06, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x22, 0x43, 0x0a, 0x1c, 0x41, 0x64, 0x44,
+ 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x43, 0x61, 0x72, 0x6f, 0x75, 0x73, 0x65, 0x6c,
+ 0x43, 0x61, 0x72, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x19, 0x0a, 0x05, 0x61, 0x73, 0x73,
+ 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x05, 0x61, 0x73, 0x73, 0x65,
+ 0x74, 0x88, 0x01, 0x01, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x22, 0x3a,
+ 0x0a, 0x13, 0x41, 0x64, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x19, 0x0a, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x01,
+ 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x88, 0x01, 0x01,
+ 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x42, 0xec, 0x01, 0x0a, 0x23, 0x63,
+ 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x6e, 0x42, 0x0c, 0x41, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f,
+ 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
+ 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
+ 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d,
+ 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
+ 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
+ 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x33,
}
var (
- file_google_ads_googleads_v16_common_ad_asset_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_ad_asset_proto_rawDescData = file_google_ads_googleads_v16_common_ad_asset_proto_rawDesc
+ file_google_ads_googleads_v17_common_ad_asset_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_ad_asset_proto_rawDescData = file_google_ads_googleads_v17_common_ad_asset_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_ad_asset_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_ad_asset_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_ad_asset_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_ad_asset_proto_rawDescData)
+func file_google_ads_googleads_v17_common_ad_asset_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_ad_asset_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_ad_asset_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_ad_asset_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_ad_asset_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
-var file_google_ads_googleads_v16_common_ad_asset_proto_goTypes = []interface{}{
- (*AdTextAsset)(nil), // 0: google.ads.googleads.v16.common.AdTextAsset
- (*AdImageAsset)(nil), // 1: google.ads.googleads.v16.common.AdImageAsset
- (*AdVideoAsset)(nil), // 2: google.ads.googleads.v16.common.AdVideoAsset
- (*AdMediaBundleAsset)(nil), // 3: google.ads.googleads.v16.common.AdMediaBundleAsset
- (*AdDiscoveryCarouselCardAsset)(nil), // 4: google.ads.googleads.v16.common.AdDiscoveryCarouselCardAsset
- (*AdCallToActionAsset)(nil), // 5: google.ads.googleads.v16.common.AdCallToActionAsset
- (enums.ServedAssetFieldTypeEnum_ServedAssetFieldType)(0), // 6: google.ads.googleads.v16.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType
- (enums.AssetPerformanceLabelEnum_AssetPerformanceLabel)(0), // 7: google.ads.googleads.v16.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel
- (*AdAssetPolicySummary)(nil), // 8: google.ads.googleads.v16.common.AdAssetPolicySummary
-}
-var file_google_ads_googleads_v16_common_ad_asset_proto_depIdxs = []int32{
- 6, // 0: google.ads.googleads.v16.common.AdTextAsset.pinned_field:type_name -> google.ads.googleads.v16.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType
- 7, // 1: google.ads.googleads.v16.common.AdTextAsset.asset_performance_label:type_name -> google.ads.googleads.v16.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel
- 8, // 2: google.ads.googleads.v16.common.AdTextAsset.policy_summary_info:type_name -> google.ads.googleads.v16.common.AdAssetPolicySummary
- 3, // [3:3] is the sub-list for method output_type
- 3, // [3:3] is the sub-list for method input_type
- 3, // [3:3] is the sub-list for extension type_name
- 3, // [3:3] is the sub-list for extension extendee
- 0, // [0:3] is the sub-list for field type_name
-}
-
-func init() { file_google_ads_googleads_v16_common_ad_asset_proto_init() }
-func file_google_ads_googleads_v16_common_ad_asset_proto_init() {
- if File_google_ads_googleads_v16_common_ad_asset_proto != nil {
+ return file_google_ads_googleads_v17_common_ad_asset_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 8)
+var file_google_ads_googleads_v17_common_ad_asset_proto_goTypes = []interface{}{
+ (*AdTextAsset)(nil), // 0: google.ads.googleads.v17.common.AdTextAsset
+ (*AdImageAsset)(nil), // 1: google.ads.googleads.v17.common.AdImageAsset
+ (*AdVideoAsset)(nil), // 2: google.ads.googleads.v17.common.AdVideoAsset
+ (*AdVideoAssetInfo)(nil), // 3: google.ads.googleads.v17.common.AdVideoAssetInfo
+ (*AdVideoAssetInventoryPreferences)(nil), // 4: google.ads.googleads.v17.common.AdVideoAssetInventoryPreferences
+ (*AdMediaBundleAsset)(nil), // 5: google.ads.googleads.v17.common.AdMediaBundleAsset
+ (*AdDemandGenCarouselCardAsset)(nil), // 6: google.ads.googleads.v17.common.AdDemandGenCarouselCardAsset
+ (*AdCallToActionAsset)(nil), // 7: google.ads.googleads.v17.common.AdCallToActionAsset
+ (enums.ServedAssetFieldTypeEnum_ServedAssetFieldType)(0), // 8: google.ads.googleads.v17.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType
+ (enums.AssetPerformanceLabelEnum_AssetPerformanceLabel)(0), // 9: google.ads.googleads.v17.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel
+ (*AdAssetPolicySummary)(nil), // 10: google.ads.googleads.v17.common.AdAssetPolicySummary
+}
+var file_google_ads_googleads_v17_common_ad_asset_proto_depIdxs = []int32{
+ 8, // 0: google.ads.googleads.v17.common.AdTextAsset.pinned_field:type_name -> google.ads.googleads.v17.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType
+ 9, // 1: google.ads.googleads.v17.common.AdTextAsset.asset_performance_label:type_name -> google.ads.googleads.v17.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel
+ 10, // 2: google.ads.googleads.v17.common.AdTextAsset.policy_summary_info:type_name -> google.ads.googleads.v17.common.AdAssetPolicySummary
+ 3, // 3: google.ads.googleads.v17.common.AdVideoAsset.ad_video_asset_info:type_name -> google.ads.googleads.v17.common.AdVideoAssetInfo
+ 4, // 4: google.ads.googleads.v17.common.AdVideoAssetInfo.ad_video_asset_inventory_preferences:type_name -> google.ads.googleads.v17.common.AdVideoAssetInventoryPreferences
+ 5, // [5:5] is the sub-list for method output_type
+ 5, // [5:5] is the sub-list for method input_type
+ 5, // [5:5] is the sub-list for extension type_name
+ 5, // [5:5] is the sub-list for extension extendee
+ 0, // [0:5] is the sub-list for field type_name
+}
+
+func init() { file_google_ads_googleads_v17_common_ad_asset_proto_init() }
+func file_google_ads_googleads_v17_common_ad_asset_proto_init() {
+ if File_google_ads_googleads_v17_common_ad_asset_proto != nil {
return
}
- file_google_ads_googleads_v16_common_asset_policy_proto_init()
+ file_google_ads_googleads_v17_common_asset_policy_proto_init()
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdTextAsset); i {
case 0:
return &v.state
@@ -494,7 +671,7 @@ func file_google_ads_googleads_v16_common_ad_asset_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdImageAsset); i {
case 0:
return &v.state
@@ -506,7 +683,7 @@ func file_google_ads_googleads_v16_common_ad_asset_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdVideoAsset); i {
case 0:
return &v.state
@@ -518,7 +695,31 @@ func file_google_ads_googleads_v16_common_ad_asset_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*AdVideoAssetInfo); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*AdVideoAssetInventoryPreferences); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdMediaBundleAsset); i {
case 0:
return &v.state
@@ -530,8 +731,8 @@ func file_google_ads_googleads_v16_common_ad_asset_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AdDiscoveryCarouselCardAsset); i {
+ file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*AdDemandGenCarouselCardAsset); i {
case 0:
return &v.state
case 1:
@@ -542,7 +743,7 @@ func file_google_ads_googleads_v16_common_ad_asset_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdCallToActionAsset); i {
case 0:
return &v.state
@@ -555,28 +756,30 @@ func file_google_ads_googleads_v16_common_ad_asset_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[0].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[1].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[2].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[3].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[4].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes[5].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[1].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[2].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[3].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[4].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[5].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[6].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes[7].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_ad_asset_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_ad_asset_proto_rawDesc,
NumEnums: 0,
- NumMessages: 6,
+ NumMessages: 8,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_ad_asset_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_ad_asset_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_ad_asset_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_ad_asset_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_ad_asset_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_ad_asset_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_ad_asset_proto = out.File
- file_google_ads_googleads_v16_common_ad_asset_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_ad_asset_proto_goTypes = nil
- file_google_ads_googleads_v16_common_ad_asset_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_ad_asset_proto = out.File
+ file_google_ads_googleads_v17_common_ad_asset_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_ad_asset_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_ad_asset_proto_depIdxs = nil
}
diff --git a/common/ad_type_infos.pb.go b/common/ad_type_infos.pb.go
index 8380d422..2f2e0412 100644
--- a/common/ad_type_infos.pb.go
+++ b/common/ad_type_infos.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/ad_type_infos.proto
+// source: google/ads/googleads/v17/common/ad_type_infos.proto
package common
@@ -53,7 +53,7 @@ type TextAdInfo struct {
func (x *TextAdInfo) Reset() {
*x = TextAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -66,7 +66,7 @@ func (x *TextAdInfo) String() string {
func (*TextAdInfo) ProtoMessage() {}
func (x *TextAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -79,7 +79,7 @@ func (x *TextAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use TextAdInfo.ProtoReflect.Descriptor instead.
func (*TextAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{0}
}
func (x *TextAdInfo) GetHeadline() string {
@@ -128,7 +128,7 @@ type ExpandedTextAdInfo struct {
func (x *ExpandedTextAdInfo) Reset() {
*x = ExpandedTextAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -141,7 +141,7 @@ func (x *ExpandedTextAdInfo) String() string {
func (*ExpandedTextAdInfo) ProtoMessage() {}
func (x *ExpandedTextAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -154,7 +154,7 @@ func (x *ExpandedTextAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ExpandedTextAdInfo.ProtoReflect.Descriptor instead.
func (*ExpandedTextAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{1}
}
func (x *ExpandedTextAdInfo) GetHeadlinePart1() string {
@@ -221,7 +221,7 @@ type ExpandedDynamicSearchAdInfo struct {
func (x *ExpandedDynamicSearchAdInfo) Reset() {
*x = ExpandedDynamicSearchAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -234,7 +234,7 @@ func (x *ExpandedDynamicSearchAdInfo) String() string {
func (*ExpandedDynamicSearchAdInfo) ProtoMessage() {}
func (x *ExpandedDynamicSearchAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -247,7 +247,7 @@ func (x *ExpandedDynamicSearchAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ExpandedDynamicSearchAdInfo.ProtoReflect.Descriptor instead.
func (*ExpandedDynamicSearchAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{2}
}
func (x *ExpandedDynamicSearchAdInfo) GetDescription() string {
@@ -274,7 +274,7 @@ type HotelAdInfo struct {
func (x *HotelAdInfo) Reset() {
*x = HotelAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -287,7 +287,7 @@ func (x *HotelAdInfo) String() string {
func (*HotelAdInfo) ProtoMessage() {}
func (x *HotelAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -300,7 +300,7 @@ func (x *HotelAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelAdInfo.ProtoReflect.Descriptor instead.
func (*HotelAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{3}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{3}
}
// A travel ad.
@@ -313,7 +313,7 @@ type TravelAdInfo struct {
func (x *TravelAdInfo) Reset() {
*x = TravelAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -326,7 +326,7 @@ func (x *TravelAdInfo) String() string {
func (*TravelAdInfo) ProtoMessage() {}
func (x *TravelAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -339,7 +339,7 @@ func (x *TravelAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use TravelAdInfo.ProtoReflect.Descriptor instead.
func (*TravelAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{4}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{4}
}
// A Smart Shopping ad.
@@ -352,7 +352,7 @@ type ShoppingSmartAdInfo struct {
func (x *ShoppingSmartAdInfo) Reset() {
*x = ShoppingSmartAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -365,7 +365,7 @@ func (x *ShoppingSmartAdInfo) String() string {
func (*ShoppingSmartAdInfo) ProtoMessage() {}
func (x *ShoppingSmartAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -378,7 +378,7 @@ func (x *ShoppingSmartAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ShoppingSmartAdInfo.ProtoReflect.Descriptor instead.
func (*ShoppingSmartAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{5}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{5}
}
// A standard Shopping ad.
@@ -391,7 +391,7 @@ type ShoppingProductAdInfo struct {
func (x *ShoppingProductAdInfo) Reset() {
*x = ShoppingProductAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -404,7 +404,7 @@ func (x *ShoppingProductAdInfo) String() string {
func (*ShoppingProductAdInfo) ProtoMessage() {}
func (x *ShoppingProductAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -417,7 +417,7 @@ func (x *ShoppingProductAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ShoppingProductAdInfo.ProtoReflect.Descriptor instead.
func (*ShoppingProductAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{6}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{6}
}
// A Shopping Comparison Listing ad.
@@ -434,7 +434,7 @@ type ShoppingComparisonListingAdInfo struct {
func (x *ShoppingComparisonListingAdInfo) Reset() {
*x = ShoppingComparisonListingAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -447,7 +447,7 @@ func (x *ShoppingComparisonListingAdInfo) String() string {
func (*ShoppingComparisonListingAdInfo) ProtoMessage() {}
func (x *ShoppingComparisonListingAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -460,7 +460,7 @@ func (x *ShoppingComparisonListingAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ShoppingComparisonListingAdInfo.ProtoReflect.Descriptor instead.
func (*ShoppingComparisonListingAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{7}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{7}
}
func (x *ShoppingComparisonListingAdInfo) GetHeadline() string {
@@ -489,7 +489,7 @@ type ImageAdInfo struct {
// URL of the preview size image.
PreviewImageUrl *string `protobuf:"bytes,20,opt,name=preview_image_url,json=previewImageUrl,proto3,oneof" json:"preview_image_url,omitempty"`
// The mime type of the image.
- MimeType enums.MimeTypeEnum_MimeType `protobuf:"varint,10,opt,name=mime_type,json=mimeType,proto3,enum=google.ads.googleads.v16.enums.MimeTypeEnum_MimeType" json:"mime_type,omitempty"`
+ MimeType enums.MimeTypeEnum_MimeType `protobuf:"varint,10,opt,name=mime_type,json=mimeType,proto3,enum=google.ads.googleads.v17.enums.MimeTypeEnum_MimeType" json:"mime_type,omitempty"`
// The name of the image. If the image was created from a MediaFile, this is
// the MediaFile's name. If the image was created from bytes, this is empty.
Name *string `protobuf:"bytes,21,opt,name=name,proto3,oneof" json:"name,omitempty"`
@@ -509,7 +509,7 @@ type ImageAdInfo struct {
func (x *ImageAdInfo) Reset() {
*x = ImageAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -522,7 +522,7 @@ func (x *ImageAdInfo) String() string {
func (*ImageAdInfo) ProtoMessage() {}
func (x *ImageAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -535,7 +535,7 @@ func (x *ImageAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ImageAdInfo.ProtoReflect.Descriptor instead.
func (*ImageAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{8}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{8}
}
func (x *ImageAdInfo) GetPixelWidth() int64 {
@@ -667,7 +667,7 @@ type VideoBumperInStreamAdInfo struct {
func (x *VideoBumperInStreamAdInfo) Reset() {
*x = VideoBumperInStreamAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -680,7 +680,7 @@ func (x *VideoBumperInStreamAdInfo) String() string {
func (*VideoBumperInStreamAdInfo) ProtoMessage() {}
func (x *VideoBumperInStreamAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -693,7 +693,7 @@ func (x *VideoBumperInStreamAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use VideoBumperInStreamAdInfo.ProtoReflect.Descriptor instead.
func (*VideoBumperInStreamAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{9}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{9}
}
func (x *VideoBumperInStreamAdInfo) GetCompanionBanner() *AdImageAsset {
@@ -737,7 +737,7 @@ type VideoNonSkippableInStreamAdInfo struct {
func (x *VideoNonSkippableInStreamAdInfo) Reset() {
*x = VideoNonSkippableInStreamAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -750,7 +750,7 @@ func (x *VideoNonSkippableInStreamAdInfo) String() string {
func (*VideoNonSkippableInStreamAdInfo) ProtoMessage() {}
func (x *VideoNonSkippableInStreamAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -763,7 +763,7 @@ func (x *VideoNonSkippableInStreamAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use VideoNonSkippableInStreamAdInfo.ProtoReflect.Descriptor instead.
func (*VideoNonSkippableInStreamAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{10}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{10}
}
func (x *VideoNonSkippableInStreamAdInfo) GetCompanionBanner() *AdImageAsset {
@@ -809,7 +809,7 @@ type VideoTrueViewInStreamAdInfo struct {
func (x *VideoTrueViewInStreamAdInfo) Reset() {
*x = VideoTrueViewInStreamAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -822,7 +822,7 @@ func (x *VideoTrueViewInStreamAdInfo) String() string {
func (*VideoTrueViewInStreamAdInfo) ProtoMessage() {}
func (x *VideoTrueViewInStreamAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -835,7 +835,7 @@ func (x *VideoTrueViewInStreamAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use VideoTrueViewInStreamAdInfo.ProtoReflect.Descriptor instead.
func (*VideoTrueViewInStreamAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{11}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{11}
}
func (x *VideoTrueViewInStreamAdInfo) GetActionButtonLabel() string {
@@ -875,7 +875,7 @@ type VideoOutstreamAdInfo struct {
func (x *VideoOutstreamAdInfo) Reset() {
*x = VideoOutstreamAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[12]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -888,7 +888,7 @@ func (x *VideoOutstreamAdInfo) String() string {
func (*VideoOutstreamAdInfo) ProtoMessage() {}
func (x *VideoOutstreamAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[12]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -901,7 +901,7 @@ func (x *VideoOutstreamAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use VideoOutstreamAdInfo.ProtoReflect.Descriptor instead.
func (*VideoOutstreamAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{12}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{12}
}
func (x *VideoOutstreamAdInfo) GetHeadline() string {
@@ -931,13 +931,13 @@ type InFeedVideoAdInfo struct {
// Second text line for the ad.
Description2 string `protobuf:"bytes,3,opt,name=description2,proto3" json:"description2,omitempty"`
// Video thumbnail image to use.
- Thumbnail enums.VideoThumbnailEnum_VideoThumbnail `protobuf:"varint,4,opt,name=thumbnail,proto3,enum=google.ads.googleads.v16.enums.VideoThumbnailEnum_VideoThumbnail" json:"thumbnail,omitempty"`
+ Thumbnail enums.VideoThumbnailEnum_VideoThumbnail `protobuf:"varint,4,opt,name=thumbnail,proto3,enum=google.ads.googleads.v17.enums.VideoThumbnailEnum_VideoThumbnail" json:"thumbnail,omitempty"`
}
func (x *InFeedVideoAdInfo) Reset() {
*x = InFeedVideoAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[13]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[13]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -950,7 +950,7 @@ func (x *InFeedVideoAdInfo) String() string {
func (*InFeedVideoAdInfo) ProtoMessage() {}
func (x *InFeedVideoAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[13]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[13]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -963,7 +963,7 @@ func (x *InFeedVideoAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use InFeedVideoAdInfo.ProtoReflect.Descriptor instead.
func (*InFeedVideoAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{13}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{13}
}
func (x *InFeedVideoAdInfo) GetHeadline() string {
@@ -1017,7 +1017,7 @@ type VideoAdInfo struct {
func (x *VideoAdInfo) Reset() {
*x = VideoAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[14]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[14]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1030,7 +1030,7 @@ func (x *VideoAdInfo) String() string {
func (*VideoAdInfo) ProtoMessage() {}
func (x *VideoAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[14]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[14]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1043,7 +1043,7 @@ func (x *VideoAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use VideoAdInfo.ProtoReflect.Descriptor instead.
func (*VideoAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{14}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{14}
}
func (x *VideoAdInfo) GetVideo() *AdVideoAsset {
@@ -1167,7 +1167,7 @@ type VideoResponsiveAdInfo struct {
func (x *VideoResponsiveAdInfo) Reset() {
*x = VideoResponsiveAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[15]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[15]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1180,7 +1180,7 @@ func (x *VideoResponsiveAdInfo) String() string {
func (*VideoResponsiveAdInfo) ProtoMessage() {}
func (x *VideoResponsiveAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[15]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[15]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1193,7 +1193,7 @@ func (x *VideoResponsiveAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use VideoResponsiveAdInfo.ProtoReflect.Descriptor instead.
func (*VideoResponsiveAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{15}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{15}
}
func (x *VideoResponsiveAdInfo) GetHeadlines() []*AdTextAsset {
@@ -1284,7 +1284,7 @@ type ResponsiveSearchAdInfo struct {
func (x *ResponsiveSearchAdInfo) Reset() {
*x = ResponsiveSearchAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[16]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[16]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1297,7 +1297,7 @@ func (x *ResponsiveSearchAdInfo) String() string {
func (*ResponsiveSearchAdInfo) ProtoMessage() {}
func (x *ResponsiveSearchAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[16]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[16]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1310,7 +1310,7 @@ func (x *ResponsiveSearchAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ResponsiveSearchAdInfo.ProtoReflect.Descriptor instead.
func (*ResponsiveSearchAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{16}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{16}
}
func (x *ResponsiveSearchAdInfo) GetHeadlines() []*AdTextAsset {
@@ -1381,7 +1381,7 @@ type LegacyResponsiveDisplayAdInfo struct {
// The MediaFile resource name of the square marketing image used in the ad.
SquareMarketingImage *string `protobuf:"bytes,27,opt,name=square_marketing_image,json=squareMarketingImage,proto3,oneof" json:"square_marketing_image,omitempty"`
// Specifies which format the ad will be served in. Default is ALL_FORMATS.
- FormatSetting enums.DisplayAdFormatSettingEnum_DisplayAdFormatSetting `protobuf:"varint,13,opt,name=format_setting,json=formatSetting,proto3,enum=google.ads.googleads.v16.enums.DisplayAdFormatSettingEnum_DisplayAdFormatSetting" json:"format_setting,omitempty"`
+ FormatSetting enums.DisplayAdFormatSettingEnum_DisplayAdFormatSetting `protobuf:"varint,13,opt,name=format_setting,json=formatSetting,proto3,enum=google.ads.googleads.v17.enums.DisplayAdFormatSettingEnum_DisplayAdFormatSetting" json:"format_setting,omitempty"`
// Prefix before price. For example, 'as low as'.
PricePrefix *string `protobuf:"bytes,28,opt,name=price_prefix,json=pricePrefix,proto3,oneof" json:"price_prefix,omitempty"`
// Promotion text used for dynamic formats of responsive ads. For example
@@ -1392,7 +1392,7 @@ type LegacyResponsiveDisplayAdInfo struct {
func (x *LegacyResponsiveDisplayAdInfo) Reset() {
*x = LegacyResponsiveDisplayAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[17]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[17]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1405,7 +1405,7 @@ func (x *LegacyResponsiveDisplayAdInfo) String() string {
func (*LegacyResponsiveDisplayAdInfo) ProtoMessage() {}
func (x *LegacyResponsiveDisplayAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[17]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[17]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1418,7 +1418,7 @@ func (x *LegacyResponsiveDisplayAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use LegacyResponsiveDisplayAdInfo.ProtoReflect.Descriptor instead.
func (*LegacyResponsiveDisplayAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{17}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{17}
}
func (x *LegacyResponsiveDisplayAdInfo) GetShortHeadline() string {
@@ -1551,7 +1551,7 @@ type AppAdInfo struct {
func (x *AppAdInfo) Reset() {
*x = AppAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[18]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[18]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1564,7 +1564,7 @@ func (x *AppAdInfo) String() string {
func (*AppAdInfo) ProtoMessage() {}
func (x *AppAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[18]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[18]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1577,7 +1577,7 @@ func (x *AppAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use AppAdInfo.ProtoReflect.Descriptor instead.
func (*AppAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{18}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{18}
}
func (x *AppAdInfo) GetMandatoryAdText() *AdTextAsset {
@@ -1646,7 +1646,7 @@ type AppEngagementAdInfo struct {
func (x *AppEngagementAdInfo) Reset() {
*x = AppEngagementAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[19]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[19]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1659,7 +1659,7 @@ func (x *AppEngagementAdInfo) String() string {
func (*AppEngagementAdInfo) ProtoMessage() {}
func (x *AppEngagementAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[19]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[19]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1672,7 +1672,7 @@ func (x *AppEngagementAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use AppEngagementAdInfo.ProtoReflect.Descriptor instead.
func (*AppEngagementAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{19}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{19}
}
func (x *AppEngagementAdInfo) GetHeadlines() []*AdTextAsset {
@@ -1728,7 +1728,7 @@ type AppPreRegistrationAdInfo struct {
func (x *AppPreRegistrationAdInfo) Reset() {
*x = AppPreRegistrationAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[20]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[20]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1741,7 +1741,7 @@ func (x *AppPreRegistrationAdInfo) String() string {
func (*AppPreRegistrationAdInfo) ProtoMessage() {}
func (x *AppPreRegistrationAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[20]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[20]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1754,7 +1754,7 @@ func (x *AppPreRegistrationAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use AppPreRegistrationAdInfo.ProtoReflect.Descriptor instead.
func (*AppPreRegistrationAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{20}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{20}
}
func (x *AppPreRegistrationAdInfo) GetHeadlines() []*AdTextAsset {
@@ -1794,7 +1794,7 @@ type LegacyAppInstallAdInfo struct {
// The ID of the mobile app.
AppId *string `protobuf:"bytes,6,opt,name=app_id,json=appId,proto3,oneof" json:"app_id,omitempty"`
// The app store the mobile app is available in.
- AppStore enums.LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore `protobuf:"varint,2,opt,name=app_store,json=appStore,proto3,enum=google.ads.googleads.v16.enums.LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore" json:"app_store,omitempty"`
+ AppStore enums.LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore `protobuf:"varint,2,opt,name=app_store,json=appStore,proto3,enum=google.ads.googleads.v17.enums.LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore" json:"app_store,omitempty"`
// The headline of the ad.
Headline *string `protobuf:"bytes,7,opt,name=headline,proto3,oneof" json:"headline,omitempty"`
// The first description line of the ad.
@@ -1806,7 +1806,7 @@ type LegacyAppInstallAdInfo struct {
func (x *LegacyAppInstallAdInfo) Reset() {
*x = LegacyAppInstallAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[21]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[21]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1819,7 +1819,7 @@ func (x *LegacyAppInstallAdInfo) String() string {
func (*LegacyAppInstallAdInfo) ProtoMessage() {}
func (x *LegacyAppInstallAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[21]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[21]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1832,7 +1832,7 @@ func (x *LegacyAppInstallAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use LegacyAppInstallAdInfo.ProtoReflect.Descriptor instead.
func (*LegacyAppInstallAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{21}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{21}
}
func (x *LegacyAppInstallAdInfo) GetAppId() string {
@@ -1928,7 +1928,7 @@ type ResponsiveDisplayAdInfo struct {
// 'Free two-day shipping'.
PromoText *string `protobuf:"bytes,23,opt,name=promo_text,json=promoText,proto3,oneof" json:"promo_text,omitempty"`
// Specifies which format the ad will be served in. Default is ALL_FORMATS.
- FormatSetting enums.DisplayAdFormatSettingEnum_DisplayAdFormatSetting `protobuf:"varint,16,opt,name=format_setting,json=formatSetting,proto3,enum=google.ads.googleads.v16.enums.DisplayAdFormatSettingEnum_DisplayAdFormatSetting" json:"format_setting,omitempty"`
+ FormatSetting enums.DisplayAdFormatSettingEnum_DisplayAdFormatSetting `protobuf:"varint,16,opt,name=format_setting,json=formatSetting,proto3,enum=google.ads.googleads.v17.enums.DisplayAdFormatSettingEnum_DisplayAdFormatSetting" json:"format_setting,omitempty"`
// Specification for various creative controls.
ControlSpec *ResponsiveDisplayAdControlSpec `protobuf:"bytes,24,opt,name=control_spec,json=controlSpec,proto3" json:"control_spec,omitempty"`
}
@@ -1936,7 +1936,7 @@ type ResponsiveDisplayAdInfo struct {
func (x *ResponsiveDisplayAdInfo) Reset() {
*x = ResponsiveDisplayAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[22]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[22]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1949,7 +1949,7 @@ func (x *ResponsiveDisplayAdInfo) String() string {
func (*ResponsiveDisplayAdInfo) ProtoMessage() {}
func (x *ResponsiveDisplayAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[22]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[22]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1962,7 +1962,7 @@ func (x *ResponsiveDisplayAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ResponsiveDisplayAdInfo.ProtoReflect.Descriptor instead.
func (*ResponsiveDisplayAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{22}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{22}
}
func (x *ResponsiveDisplayAdInfo) GetMarketingImages() []*AdImageAsset {
@@ -2123,7 +2123,7 @@ type LocalAdInfo struct {
func (x *LocalAdInfo) Reset() {
*x = LocalAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[23]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[23]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2136,7 +2136,7 @@ func (x *LocalAdInfo) String() string {
func (*LocalAdInfo) ProtoMessage() {}
func (x *LocalAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[23]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[23]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2149,7 +2149,7 @@ func (x *LocalAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocalAdInfo.ProtoReflect.Descriptor instead.
func (*LocalAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{23}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{23}
}
func (x *LocalAdInfo) GetHeadlines() []*AdTextAsset {
@@ -2217,7 +2217,7 @@ type DisplayUploadAdInfo struct {
unknownFields protoimpl.UnknownFields
// The product type of this ad. See comments on the enum for details.
- DisplayUploadProductType enums.DisplayUploadProductTypeEnum_DisplayUploadProductType `protobuf:"varint,1,opt,name=display_upload_product_type,json=displayUploadProductType,proto3,enum=google.ads.googleads.v16.enums.DisplayUploadProductTypeEnum_DisplayUploadProductType" json:"display_upload_product_type,omitempty"`
+ DisplayUploadProductType enums.DisplayUploadProductTypeEnum_DisplayUploadProductType `protobuf:"varint,1,opt,name=display_upload_product_type,json=displayUploadProductType,proto3,enum=google.ads.googleads.v17.enums.DisplayUploadProductTypeEnum_DisplayUploadProductType" json:"display_upload_product_type,omitempty"`
// The asset data that makes up the ad.
//
// Types that are assignable to MediaAsset:
@@ -2229,7 +2229,7 @@ type DisplayUploadAdInfo struct {
func (x *DisplayUploadAdInfo) Reset() {
*x = DisplayUploadAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[24]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[24]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2242,7 +2242,7 @@ func (x *DisplayUploadAdInfo) String() string {
func (*DisplayUploadAdInfo) ProtoMessage() {}
func (x *DisplayUploadAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[24]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[24]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2255,7 +2255,7 @@ func (x *DisplayUploadAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use DisplayUploadAdInfo.ProtoReflect.Descriptor instead.
func (*DisplayUploadAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{24}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{24}
}
func (x *DisplayUploadAdInfo) GetDisplayUploadProductType() enums.DisplayUploadProductTypeEnum_DisplayUploadProductType {
@@ -2311,7 +2311,7 @@ type ResponsiveDisplayAdControlSpec struct {
func (x *ResponsiveDisplayAdControlSpec) Reset() {
*x = ResponsiveDisplayAdControlSpec{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[25]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[25]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2324,7 +2324,7 @@ func (x *ResponsiveDisplayAdControlSpec) String() string {
func (*ResponsiveDisplayAdControlSpec) ProtoMessage() {}
func (x *ResponsiveDisplayAdControlSpec) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[25]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[25]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2337,7 +2337,7 @@ func (x *ResponsiveDisplayAdControlSpec) ProtoReflect() protoreflect.Message {
// Deprecated: Use ResponsiveDisplayAdControlSpec.ProtoReflect.Descriptor instead.
func (*ResponsiveDisplayAdControlSpec) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{25}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{25}
}
func (x *ResponsiveDisplayAdControlSpec) GetEnableAssetEnhancements() bool {
@@ -2371,7 +2371,7 @@ type SmartCampaignAdInfo struct {
func (x *SmartCampaignAdInfo) Reset() {
*x = SmartCampaignAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[26]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[26]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2384,7 +2384,7 @@ func (x *SmartCampaignAdInfo) String() string {
func (*SmartCampaignAdInfo) ProtoMessage() {}
func (x *SmartCampaignAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[26]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[26]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2397,7 +2397,7 @@ func (x *SmartCampaignAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use SmartCampaignAdInfo.ProtoReflect.Descriptor instead.
func (*SmartCampaignAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{26}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{26}
}
func (x *SmartCampaignAdInfo) GetHeadlines() []*AdTextAsset {
@@ -2450,7 +2450,7 @@ type CallAdInfo struct {
ConversionAction string `protobuf:"bytes,9,opt,name=conversion_action,json=conversionAction,proto3" json:"conversion_action,omitempty"`
// The call conversion behavior of this call ad. It can use its own call
// conversion setting, inherit the account level setting, or be disabled.
- ConversionReportingState enums.CallConversionReportingStateEnum_CallConversionReportingState `protobuf:"varint,10,opt,name=conversion_reporting_state,json=conversionReportingState,proto3,enum=google.ads.googleads.v16.enums.CallConversionReportingStateEnum_CallConversionReportingState" json:"conversion_reporting_state,omitempty"`
+ ConversionReportingState enums.CallConversionReportingStateEnum_CallConversionReportingState `protobuf:"varint,10,opt,name=conversion_reporting_state,json=conversionReportingState,proto3,enum=google.ads.googleads.v17.enums.CallConversionReportingStateEnum_CallConversionReportingState" json:"conversion_reporting_state,omitempty"`
// First part of text that can be appended to the URL in the ad. Optional.
Path1 string `protobuf:"bytes,13,opt,name=path1,proto3" json:"path1,omitempty"`
// Second part of text that can be appended to the URL in the ad. This field
@@ -2461,7 +2461,7 @@ type CallAdInfo struct {
func (x *CallAdInfo) Reset() {
*x = CallAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[27]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[27]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2474,7 +2474,7 @@ func (x *CallAdInfo) String() string {
func (*CallAdInfo) ProtoMessage() {}
func (x *CallAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[27]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[27]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2487,7 +2487,7 @@ func (x *CallAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use CallAdInfo.ProtoReflect.Descriptor instead.
func (*CallAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{27}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{27}
}
func (x *CallAdInfo) GetCountryCode() string {
@@ -2588,8 +2588,8 @@ func (x *CallAdInfo) GetPath2() string {
return ""
}
-// A discovery multi asset ad.
-type DiscoveryMultiAssetAdInfo struct {
+// A Demand Gen multi asset ad.
+type DemandGenMultiAssetAdInfo struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
@@ -2628,23 +2628,23 @@ type DiscoveryMultiAssetAdInfo struct {
LeadFormOnly *bool `protobuf:"varint,9,opt,name=lead_form_only,json=leadFormOnly,proto3,oneof" json:"lead_form_only,omitempty"`
}
-func (x *DiscoveryMultiAssetAdInfo) Reset() {
- *x = DiscoveryMultiAssetAdInfo{}
+func (x *DemandGenMultiAssetAdInfo) Reset() {
+ *x = DemandGenMultiAssetAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[28]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[28]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
-func (x *DiscoveryMultiAssetAdInfo) String() string {
+func (x *DemandGenMultiAssetAdInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
-func (*DiscoveryMultiAssetAdInfo) ProtoMessage() {}
+func (*DemandGenMultiAssetAdInfo) ProtoMessage() {}
-func (x *DiscoveryMultiAssetAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[28]
+func (x *DemandGenMultiAssetAdInfo) ProtoReflect() protoreflect.Message {
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[28]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2655,76 +2655,76 @@ func (x *DiscoveryMultiAssetAdInfo) ProtoReflect() protoreflect.Message {
return mi.MessageOf(x)
}
-// Deprecated: Use DiscoveryMultiAssetAdInfo.ProtoReflect.Descriptor instead.
-func (*DiscoveryMultiAssetAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{28}
+// Deprecated: Use DemandGenMultiAssetAdInfo.ProtoReflect.Descriptor instead.
+func (*DemandGenMultiAssetAdInfo) Descriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{28}
}
-func (x *DiscoveryMultiAssetAdInfo) GetMarketingImages() []*AdImageAsset {
+func (x *DemandGenMultiAssetAdInfo) GetMarketingImages() []*AdImageAsset {
if x != nil {
return x.MarketingImages
}
return nil
}
-func (x *DiscoveryMultiAssetAdInfo) GetSquareMarketingImages() []*AdImageAsset {
+func (x *DemandGenMultiAssetAdInfo) GetSquareMarketingImages() []*AdImageAsset {
if x != nil {
return x.SquareMarketingImages
}
return nil
}
-func (x *DiscoveryMultiAssetAdInfo) GetPortraitMarketingImages() []*AdImageAsset {
+func (x *DemandGenMultiAssetAdInfo) GetPortraitMarketingImages() []*AdImageAsset {
if x != nil {
return x.PortraitMarketingImages
}
return nil
}
-func (x *DiscoveryMultiAssetAdInfo) GetLogoImages() []*AdImageAsset {
+func (x *DemandGenMultiAssetAdInfo) GetLogoImages() []*AdImageAsset {
if x != nil {
return x.LogoImages
}
return nil
}
-func (x *DiscoveryMultiAssetAdInfo) GetHeadlines() []*AdTextAsset {
+func (x *DemandGenMultiAssetAdInfo) GetHeadlines() []*AdTextAsset {
if x != nil {
return x.Headlines
}
return nil
}
-func (x *DiscoveryMultiAssetAdInfo) GetDescriptions() []*AdTextAsset {
+func (x *DemandGenMultiAssetAdInfo) GetDescriptions() []*AdTextAsset {
if x != nil {
return x.Descriptions
}
return nil
}
-func (x *DiscoveryMultiAssetAdInfo) GetBusinessName() string {
+func (x *DemandGenMultiAssetAdInfo) GetBusinessName() string {
if x != nil && x.BusinessName != nil {
return *x.BusinessName
}
return ""
}
-func (x *DiscoveryMultiAssetAdInfo) GetCallToActionText() string {
+func (x *DemandGenMultiAssetAdInfo) GetCallToActionText() string {
if x != nil && x.CallToActionText != nil {
return *x.CallToActionText
}
return ""
}
-func (x *DiscoveryMultiAssetAdInfo) GetLeadFormOnly() bool {
+func (x *DemandGenMultiAssetAdInfo) GetLeadFormOnly() bool {
if x != nil && x.LeadFormOnly != nil {
return *x.LeadFormOnly
}
return false
}
-// A discovery carousel ad.
-type DiscoveryCarouselAdInfo struct {
+// A Demand Gen carousel ad.
+type DemandGenCarouselAdInfo struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
@@ -2741,26 +2741,26 @@ type DiscoveryCarouselAdInfo struct {
// Call to action text.
CallToActionText string `protobuf:"bytes,5,opt,name=call_to_action_text,json=callToActionText,proto3" json:"call_to_action_text,omitempty"`
// Required. Carousel cards that will display with the ad. Min 2 max 10.
- CarouselCards []*AdDiscoveryCarouselCardAsset `protobuf:"bytes,6,rep,name=carousel_cards,json=carouselCards,proto3" json:"carousel_cards,omitempty"`
+ CarouselCards []*AdDemandGenCarouselCardAsset `protobuf:"bytes,6,rep,name=carousel_cards,json=carouselCards,proto3" json:"carousel_cards,omitempty"`
}
-func (x *DiscoveryCarouselAdInfo) Reset() {
- *x = DiscoveryCarouselAdInfo{}
+func (x *DemandGenCarouselAdInfo) Reset() {
+ *x = DemandGenCarouselAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[29]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[29]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
-func (x *DiscoveryCarouselAdInfo) String() string {
+func (x *DemandGenCarouselAdInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
-func (*DiscoveryCarouselAdInfo) ProtoMessage() {}
+func (*DemandGenCarouselAdInfo) ProtoMessage() {}
-func (x *DiscoveryCarouselAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[29]
+func (x *DemandGenCarouselAdInfo) ProtoReflect() protoreflect.Message {
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[29]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2771,55 +2771,55 @@ func (x *DiscoveryCarouselAdInfo) ProtoReflect() protoreflect.Message {
return mi.MessageOf(x)
}
-// Deprecated: Use DiscoveryCarouselAdInfo.ProtoReflect.Descriptor instead.
-func (*DiscoveryCarouselAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{29}
+// Deprecated: Use DemandGenCarouselAdInfo.ProtoReflect.Descriptor instead.
+func (*DemandGenCarouselAdInfo) Descriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{29}
}
-func (x *DiscoveryCarouselAdInfo) GetBusinessName() string {
+func (x *DemandGenCarouselAdInfo) GetBusinessName() string {
if x != nil {
return x.BusinessName
}
return ""
}
-func (x *DiscoveryCarouselAdInfo) GetLogoImage() *AdImageAsset {
+func (x *DemandGenCarouselAdInfo) GetLogoImage() *AdImageAsset {
if x != nil {
return x.LogoImage
}
return nil
}
-func (x *DiscoveryCarouselAdInfo) GetHeadline() *AdTextAsset {
+func (x *DemandGenCarouselAdInfo) GetHeadline() *AdTextAsset {
if x != nil {
return x.Headline
}
return nil
}
-func (x *DiscoveryCarouselAdInfo) GetDescription() *AdTextAsset {
+func (x *DemandGenCarouselAdInfo) GetDescription() *AdTextAsset {
if x != nil {
return x.Description
}
return nil
}
-func (x *DiscoveryCarouselAdInfo) GetCallToActionText() string {
+func (x *DemandGenCarouselAdInfo) GetCallToActionText() string {
if x != nil {
return x.CallToActionText
}
return ""
}
-func (x *DiscoveryCarouselAdInfo) GetCarouselCards() []*AdDiscoveryCarouselCardAsset {
+func (x *DemandGenCarouselAdInfo) GetCarouselCards() []*AdDemandGenCarouselCardAsset {
if x != nil {
return x.CarouselCards
}
return nil
}
-// A discovery video responsive ad.
-type DiscoveryVideoResponsiveAdInfo struct {
+// A Demand Gen video responsive ad.
+type DemandGenVideoResponsiveAdInfo struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
@@ -2845,23 +2845,23 @@ type DiscoveryVideoResponsiveAdInfo struct {
CallToActions []*AdCallToActionAsset `protobuf:"bytes,9,rep,name=call_to_actions,json=callToActions,proto3" json:"call_to_actions,omitempty"`
}
-func (x *DiscoveryVideoResponsiveAdInfo) Reset() {
- *x = DiscoveryVideoResponsiveAdInfo{}
+func (x *DemandGenVideoResponsiveAdInfo) Reset() {
+ *x = DemandGenVideoResponsiveAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[30]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[30]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
-func (x *DiscoveryVideoResponsiveAdInfo) String() string {
+func (x *DemandGenVideoResponsiveAdInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
-func (*DiscoveryVideoResponsiveAdInfo) ProtoMessage() {}
+func (*DemandGenVideoResponsiveAdInfo) ProtoMessage() {}
-func (x *DiscoveryVideoResponsiveAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[30]
+func (x *DemandGenVideoResponsiveAdInfo) ProtoReflect() protoreflect.Message {
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[30]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2872,68 +2872,68 @@ func (x *DiscoveryVideoResponsiveAdInfo) ProtoReflect() protoreflect.Message {
return mi.MessageOf(x)
}
-// Deprecated: Use DiscoveryVideoResponsiveAdInfo.ProtoReflect.Descriptor instead.
-func (*DiscoveryVideoResponsiveAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{30}
+// Deprecated: Use DemandGenVideoResponsiveAdInfo.ProtoReflect.Descriptor instead.
+func (*DemandGenVideoResponsiveAdInfo) Descriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{30}
}
-func (x *DiscoveryVideoResponsiveAdInfo) GetHeadlines() []*AdTextAsset {
+func (x *DemandGenVideoResponsiveAdInfo) GetHeadlines() []*AdTextAsset {
if x != nil {
return x.Headlines
}
return nil
}
-func (x *DiscoveryVideoResponsiveAdInfo) GetLongHeadlines() []*AdTextAsset {
+func (x *DemandGenVideoResponsiveAdInfo) GetLongHeadlines() []*AdTextAsset {
if x != nil {
return x.LongHeadlines
}
return nil
}
-func (x *DiscoveryVideoResponsiveAdInfo) GetDescriptions() []*AdTextAsset {
+func (x *DemandGenVideoResponsiveAdInfo) GetDescriptions() []*AdTextAsset {
if x != nil {
return x.Descriptions
}
return nil
}
-func (x *DiscoveryVideoResponsiveAdInfo) GetVideos() []*AdVideoAsset {
+func (x *DemandGenVideoResponsiveAdInfo) GetVideos() []*AdVideoAsset {
if x != nil {
return x.Videos
}
return nil
}
-func (x *DiscoveryVideoResponsiveAdInfo) GetLogoImages() []*AdImageAsset {
+func (x *DemandGenVideoResponsiveAdInfo) GetLogoImages() []*AdImageAsset {
if x != nil {
return x.LogoImages
}
return nil
}
-func (x *DiscoveryVideoResponsiveAdInfo) GetBreadcrumb1() string {
+func (x *DemandGenVideoResponsiveAdInfo) GetBreadcrumb1() string {
if x != nil {
return x.Breadcrumb1
}
return ""
}
-func (x *DiscoveryVideoResponsiveAdInfo) GetBreadcrumb2() string {
+func (x *DemandGenVideoResponsiveAdInfo) GetBreadcrumb2() string {
if x != nil {
return x.Breadcrumb2
}
return ""
}
-func (x *DiscoveryVideoResponsiveAdInfo) GetBusinessName() *AdTextAsset {
+func (x *DemandGenVideoResponsiveAdInfo) GetBusinessName() *AdTextAsset {
if x != nil {
return x.BusinessName
}
return nil
}
-func (x *DiscoveryVideoResponsiveAdInfo) GetCallToActions() []*AdCallToActionAsset {
+func (x *DemandGenVideoResponsiveAdInfo) GetCallToActions() []*AdCallToActionAsset {
if x != nil {
return x.CallToActions
}
@@ -2967,7 +2967,7 @@ type DemandGenProductAdInfo struct {
func (x *DemandGenProductAdInfo) Reset() {
*x = DemandGenProductAdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[31]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[31]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2980,7 +2980,7 @@ func (x *DemandGenProductAdInfo) String() string {
func (*DemandGenProductAdInfo) ProtoMessage() {}
func (x *DemandGenProductAdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[31]
+ mi := &file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[31]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2993,7 +2993,7 @@ func (x *DemandGenProductAdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use DemandGenProductAdInfo.ProtoReflect.Descriptor instead.
func (*DemandGenProductAdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP(), []int{31}
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP(), []int{31}
}
func (x *DemandGenProductAdInfo) GetHeadline() *AdTextAsset {
@@ -3045,39 +3045,39 @@ func (x *DemandGenProductAdInfo) GetCallToAction() *AdCallToActionAsset {
return nil
}
-var File_google_ads_googleads_v16_common_ad_type_infos_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_ad_type_infos_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDesc = []byte{
0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x61, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x73, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x61, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76,
0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67,
0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x69, 0x73,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x69, 0x73,
0x70, 0x6c, 0x61, 0x79, 0x5f, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x5f, 0x73,
0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x40, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x69, 0x73,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x69, 0x73,
0x70, 0x6c, 0x61, 0x79, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x70, 0x72, 0x6f, 0x64,
0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x44,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c,
0x65, 0x67, 0x61, 0x63, 0x79, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c,
0x6c, 0x5f, 0x61, 0x64, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d, 0x69, 0x6d, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x74, 0x68, 0x75, 0x6d, 0x62,
0x6e, 0x61, 0x69, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68,
@@ -3157,14 +3157,14 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x61, 0x67, 0x65, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x52, 0x0a, 0x09, 0x6d, 0x69, 0x6d,
0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x35, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x69,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x69,
0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x69, 0x6d, 0x65, 0x54,
0x79, 0x70, 0x65, 0x52, 0x08, 0x6d, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x0a,
0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x48, 0x07, 0x52, 0x04, 0x6e,
0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x50, 0x0a, 0x0b, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f,
0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64,
0x49, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x0a, 0x69, 0x6d,
0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61,
0x18, 0x0d, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x00, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x12, 0x37,
@@ -3185,7 +3185,7 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x10, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x69, 0x6f, 0x6e, 0x5f, 0x62, 0x61, 0x6e, 0x6e, 0x65,
0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, 0x67,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, 0x67,
0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x69, 0x6f,
0x6e, 0x42, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x12, 0x2e, 0x0a, 0x13, 0x61, 0x63, 0x74, 0x69, 0x6f,
0x6e, 0x5f, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x18, 0x04,
@@ -3198,7 +3198,7 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x49, 0x6e, 0x66, 0x6f, 0x12, 0x58, 0x0a, 0x10, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x69, 0x6f,
0x6e, 0x5f, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0f, 0x63,
0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x69, 0x6f, 0x6e, 0x42, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x12, 0x2e,
0x0a, 0x13, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x62, 0x75, 0x74, 0x74, 0x6f, 0x6e, 0x5f,
@@ -3217,7 +3217,7 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x12, 0x58, 0x0a, 0x10, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x69, 0x6f, 0x6e, 0x5f, 0x62, 0x61,
0x6e, 0x6e, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49,
0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x61,
0x6e, 0x69, 0x6f, 0x6e, 0x42, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x22, 0x54, 0x0a, 0x14, 0x56, 0x69,
0x64, 0x65, 0x6f, 0x4f, 0x75, 0x74, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x41, 0x64, 0x49, 0x6e,
@@ -3235,41 +3235,41 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x32, 0x12, 0x5f, 0x0a, 0x09, 0x74, 0x68,
0x75, 0x6d, 0x62, 0x6e, 0x61, 0x69, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x41, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x56,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x56,
0x69, 0x64, 0x65, 0x6f, 0x54, 0x68, 0x75, 0x6d, 0x62, 0x6e, 0x61, 0x69, 0x6c, 0x45, 0x6e, 0x75,
0x6d, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x54, 0x68, 0x75, 0x6d, 0x62, 0x6e, 0x61, 0x69, 0x6c,
0x52, 0x09, 0x74, 0x68, 0x75, 0x6d, 0x62, 0x6e, 0x61, 0x69, 0x6c, 0x22, 0x9f, 0x04, 0x0a, 0x0b,
0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x43, 0x0a, 0x05, 0x76,
0x69, 0x64, 0x65, 0x6f, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x56,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x56,
0x69, 0x64, 0x65, 0x6f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x05, 0x76, 0x69, 0x64, 0x65, 0x6f,
0x12, 0x5b, 0x0a, 0x09, 0x69, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x18, 0x02, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x54, 0x72, 0x75, 0x65, 0x56,
0x69, 0x65, 0x77, 0x49, 0x6e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x41, 0x64, 0x49, 0x6e, 0x66,
0x6f, 0x48, 0x00, 0x52, 0x08, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x12, 0x54, 0x0a,
0x06, 0x62, 0x75, 0x6d, 0x70, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x56, 0x69, 0x64, 0x65, 0x6f, 0x42, 0x75, 0x6d, 0x70, 0x65, 0x72, 0x49, 0x6e, 0x53, 0x74, 0x72,
0x65, 0x61, 0x6d, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x06, 0x62, 0x75, 0x6d,
0x70, 0x65, 0x72, 0x12, 0x56, 0x0a, 0x0a, 0x6f, 0x75, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61,
0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x4f,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x4f,
0x75, 0x74, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00,
0x52, 0x09, 0x6f, 0x75, 0x74, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x12, 0x67, 0x0a, 0x0d, 0x6e,
0x6f, 0x6e, 0x5f, 0x73, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x18, 0x05, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x4e, 0x6f, 0x6e, 0x53, 0x6b, 0x69,
0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x6e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x41, 0x64,
0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0c, 0x6e, 0x6f, 0x6e, 0x53, 0x6b, 0x69, 0x70, 0x70,
0x61, 0x62, 0x6c, 0x65, 0x12, 0x4d, 0x0a, 0x07, 0x69, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x18,
0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x56, 0x69,
0x64, 0x65, 0x6f, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x06, 0x69, 0x6e, 0x46,
0x65, 0x65, 0x64, 0x42, 0x08, 0x0a, 0x06, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x22, 0xc7, 0x04,
@@ -3277,32 +3277,32 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x65, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x4a, 0x0a, 0x09, 0x68, 0x65, 0x61, 0x64, 0x6c,
0x69, 0x6e, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54,
0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x09, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69,
0x6e, 0x65, 0x73, 0x12, 0x53, 0x0a, 0x0e, 0x6c, 0x6f, 0x6e, 0x67, 0x5f, 0x68, 0x65, 0x61, 0x64,
0x6c, 0x69, 0x6e, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64,
0x54, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0d, 0x6c, 0x6f, 0x6e, 0x67, 0x48,
0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x12, 0x50, 0x0a, 0x0c, 0x64, 0x65, 0x73, 0x63,
0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0c, 0x64, 0x65,
0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x54, 0x0a, 0x0f, 0x63, 0x61,
0x6c, 0x6c, 0x5f, 0x74, 0x6f, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x04, 0x20,
0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65,
0x74, 0x52, 0x0d, 0x63, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73,
0x12, 0x45, 0x0a, 0x06, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b,
0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52,
0x06, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x73, 0x12, 0x5a, 0x0a, 0x11, 0x63, 0x6f, 0x6d, 0x70, 0x61,
0x6e, 0x69, 0x6f, 0x6e, 0x5f, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x73, 0x18, 0x06, 0x20, 0x03,
0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65,
0x74, 0x52, 0x10, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x6e, 0x69, 0x6f, 0x6e, 0x42, 0x61, 0x6e, 0x6e,
0x65, 0x72, 0x73, 0x12, 0x20, 0x0a, 0x0b, 0x62, 0x72, 0x65, 0x61, 0x64, 0x63, 0x72, 0x75, 0x6d,
@@ -3313,12 +3313,12 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x49, 0x6e,
0x66, 0x6f, 0x12, 0x4a, 0x0a, 0x09, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x18,
0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73,
0x73, 0x65, 0x74, 0x52, 0x09, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x12, 0x50,
0x0a, 0x0c, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02,
0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73,
0x65, 0x74, 0x52, 0x0c, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
0x12, 0x19, 0x0a, 0x05, 0x70, 0x61, 0x74, 0x68, 0x31, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48,
@@ -3364,7 +3364,7 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x49, 0x6d, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x78, 0x0a, 0x0e, 0x66, 0x6f, 0x72, 0x6d,
0x61, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0e,
0x32, 0x51, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x2e, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61,
0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x69, 0x73,
0x70, 0x6c, 0x61, 0x79, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x53, 0x65, 0x74, 0x74,
@@ -3394,75 +3394,75 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x70, 0x70, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x58, 0x0a, 0x11, 0x6d, 0x61, 0x6e, 0x64,
0x61, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x61, 0x64, 0x5f, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65,
0x74, 0x52, 0x0f, 0x6d, 0x61, 0x6e, 0x64, 0x61, 0x74, 0x6f, 0x72, 0x79, 0x41, 0x64, 0x54, 0x65,
0x78, 0x74, 0x12, 0x4a, 0x0a, 0x09, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x18,
0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73,
0x73, 0x65, 0x74, 0x52, 0x09, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x12, 0x50,
0x0a, 0x0c, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03,
0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73,
0x65, 0x74, 0x52, 0x0c, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
0x12, 0x45, 0x0a, 0x06, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b,
0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52,
0x06, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x12, 0x54, 0x0a, 0x0e, 0x79, 0x6f, 0x75, 0x74, 0x75,
0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2e, 0x41, 0x64, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0d,
0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x73, 0x12, 0x63, 0x0a,
0x13, 0x68, 0x74, 0x6d, 0x6c, 0x35, 0x5f, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x62, 0x75, 0x6e,
0x64, 0x6c, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x4d,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x4d,
0x65, 0x64, 0x69, 0x61, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52,
0x11, 0x68, 0x74, 0x6d, 0x6c, 0x35, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x42, 0x75, 0x6e, 0x64, 0x6c,
0x65, 0x73, 0x22, 0xc1, 0x02, 0x0a, 0x13, 0x41, 0x70, 0x70, 0x45, 0x6e, 0x67, 0x61, 0x67, 0x65,
0x6d, 0x65, 0x6e, 0x74, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x4a, 0x0a, 0x09, 0x68, 0x65,
0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x09, 0x68, 0x65, 0x61,
0x64, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x12, 0x50, 0x0a, 0x0c, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69,
0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41,
0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0c, 0x64, 0x65, 0x73, 0x63,
0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x45, 0x0a, 0x06, 0x69, 0x6d, 0x61, 0x67,
0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61,
+ 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61,
0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x06, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x12,
0x45, 0x0a, 0x06, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2e, 0x41, 0x64, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x06,
0x76, 0x69, 0x64, 0x65, 0x6f, 0x73, 0x22, 0xd5, 0x02, 0x0a, 0x18, 0x41, 0x70, 0x70, 0x50, 0x72,
0x65, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x49,
0x6e, 0x66, 0x6f, 0x12, 0x4a, 0x0a, 0x09, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x73,
0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41,
0x73, 0x73, 0x65, 0x74, 0x52, 0x09, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x12,
0x50, 0x0a, 0x0c, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18,
0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73,
0x73, 0x65, 0x74, 0x52, 0x0c, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
0x73, 0x12, 0x45, 0x0a, 0x06, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74,
0x52, 0x06, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x12, 0x54, 0x0a, 0x0e, 0x79, 0x6f, 0x75, 0x74,
0x75, 0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b,
0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52,
0x0d, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x73, 0x22, 0xd9,
0x02, 0x0a, 0x16, 0x4c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x73, 0x74,
@@ -3471,7 +3471,7 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x76, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x5f, 0x73, 0x74, 0x6f,
0x72, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x59, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x65, 0x67, 0x61, 0x63, 0x79,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x65, 0x67, 0x61, 0x63, 0x79,
0x41, 0x70, 0x70, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x41, 0x64, 0x41, 0x70, 0x70, 0x53,
0x74, 0x6f, 0x72, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x41,
0x70, 0x70, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x41, 0x64, 0x41, 0x70, 0x70, 0x53, 0x74,
@@ -3491,45 +3491,45 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x58, 0x0a, 0x10, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74,
0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52,
0x0f, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x73,
0x12, 0x65, 0x0a, 0x17, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x5f, 0x6d, 0x61, 0x72, 0x6b, 0x65,
0x74, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28,
0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74,
0x52, 0x15, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e,
0x67, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x12, 0x4e, 0x0a, 0x0b, 0x6c, 0x6f, 0x67, 0x6f, 0x5f,
0x69, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41,
0x64, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0a, 0x6c, 0x6f, 0x67,
0x6f, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x12, 0x5b, 0x0a, 0x12, 0x73, 0x71, 0x75, 0x61, 0x72,
0x65, 0x5f, 0x6c, 0x6f, 0x67, 0x6f, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x18, 0x04, 0x20,
0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73,
0x65, 0x74, 0x52, 0x10, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x4c, 0x6f, 0x67, 0x6f, 0x49, 0x6d,
0x61, 0x67, 0x65, 0x73, 0x12, 0x4a, 0x0a, 0x09, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65,
0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74,
0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x09, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x73,
0x12, 0x51, 0x0a, 0x0d, 0x6c, 0x6f, 0x6e, 0x67, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e,
0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74,
0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0c, 0x6c, 0x6f, 0x6e, 0x67, 0x48, 0x65, 0x61, 0x64, 0x6c,
0x69, 0x6e, 0x65, 0x12, 0x50, 0x0a, 0x0c, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
0x6f, 0x6e, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65,
0x78, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0c, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x54, 0x0a, 0x0e, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65,
0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x41, 0x64, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0d, 0x79, 0x6f,
0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x73, 0x12, 0x28, 0x0a, 0x0d, 0x62,
0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x11, 0x20, 0x01,
@@ -3553,7 +3553,7 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x6f, 0x54, 0x65, 0x78, 0x74, 0x88, 0x01, 0x01, 0x12, 0x78, 0x0a, 0x0e, 0x66, 0x6f, 0x72, 0x6d,
0x61, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0e,
0x32, 0x51, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x2e, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61,
0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x69, 0x73,
0x70, 0x6c, 0x61, 0x79, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x53, 0x65, 0x74, 0x74,
@@ -3561,7 +3561,7 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x6e, 0x67, 0x12, 0x62, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x5f, 0x73, 0x70,
0x65, 0x63, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f,
+ 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f,
0x6e, 0x73, 0x69, 0x76, 0x65, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x41, 0x64, 0x43, 0x6f,
0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x53, 0x70, 0x65, 0x63, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x74, 0x72,
0x6f, 0x6c, 0x53, 0x70, 0x65, 0x63, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x62, 0x75, 0x73, 0x69, 0x6e,
@@ -3576,33 +3576,33 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x63, 0x61, 0x6c, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x4a, 0x0a, 0x09, 0x68, 0x65, 0x61,
0x64, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41,
0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x09, 0x68, 0x65, 0x61, 0x64,
0x6c, 0x69, 0x6e, 0x65, 0x73, 0x12, 0x50, 0x0a, 0x0c, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64,
0x54, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0c, 0x64, 0x65, 0x73, 0x63, 0x72,
0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x54, 0x0a, 0x0f, 0x63, 0x61, 0x6c, 0x6c, 0x5f,
0x74, 0x6f, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b,
0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0d,
0x63, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x58, 0x0a,
0x10, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65,
0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, 0x67,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, 0x67,
0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0f, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e,
0x67, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x12, 0x4e, 0x0a, 0x0b, 0x6c, 0x6f, 0x67, 0x6f, 0x5f,
0x69, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41,
0x64, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0a, 0x6c, 0x6f, 0x67,
0x6f, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x12, 0x45, 0x0a, 0x06, 0x76, 0x69, 0x64, 0x65, 0x6f,
0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x56, 0x69, 0x64, 0x65,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x56, 0x69, 0x64, 0x65,
0x6f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x06, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x73, 0x12, 0x19,
0x0a, 0x05, 0x70, 0x61, 0x74, 0x68, 0x31, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52,
0x05, 0x70, 0x61, 0x74, 0x68, 0x31, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x70, 0x61, 0x74,
@@ -3614,7 +3614,7 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x6f, 0x61, 0x64, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x55, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x55,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x55,
0x70, 0x6c, 0x6f, 0x61, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65,
0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x55, 0x70, 0x6c, 0x6f,
0x61, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x18, 0x64,
@@ -3622,7 +3622,7 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x58, 0x0a, 0x0c, 0x6d, 0x65, 0x64, 0x69, 0x61,
0x5f, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x41, 0x64, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x41, 0x73, 0x73,
0x65, 0x74, 0x48, 0x00, 0x52, 0x0b, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x42, 0x75, 0x6e, 0x64, 0x6c,
0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74,
@@ -3639,12 +3639,12 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x69, 0x67, 0x6e, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x4a, 0x0a, 0x09, 0x68, 0x65, 0x61,
0x64, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41,
0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x09, 0x68, 0x65, 0x61, 0x64,
0x6c, 0x69, 0x6e, 0x65, 0x73, 0x12, 0x50, 0x0a, 0x0c, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64,
0x54, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0c, 0x64, 0x65, 0x73, 0x63, 0x72,
0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x90, 0x05, 0x0a, 0x0a, 0x43, 0x61, 0x6c, 0x6c,
0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72,
@@ -3678,7 +3678,7 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x12, 0x9b, 0x01, 0x0a, 0x1a, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f,
0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18,
0x0a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65,
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x74,
0x61, 0x74, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76,
@@ -3688,40 +3688,40 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x0a, 0x05, 0x70, 0x61, 0x74, 0x68, 0x31, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70,
0x61, 0x74, 0x68, 0x31, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x61, 0x74, 0x68, 0x32, 0x18, 0x0e, 0x20,
0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x61, 0x74, 0x68, 0x32, 0x22, 0xfb, 0x05, 0x0a, 0x19, 0x44,
- 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x73, 0x73,
+ 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x73, 0x73,
0x65, 0x74, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x58, 0x0a, 0x10, 0x6d, 0x61, 0x72, 0x6b,
0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03,
0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65,
0x74, 0x52, 0x0f, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x49, 0x6d, 0x61, 0x67,
0x65, 0x73, 0x12, 0x65, 0x0a, 0x17, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x5f, 0x6d, 0x61, 0x72,
0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x18, 0x02, 0x20,
0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73,
0x65, 0x74, 0x52, 0x15, 0x73, 0x71, 0x75, 0x61, 0x72, 0x65, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74,
0x69, 0x6e, 0x67, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x12, 0x69, 0x0a, 0x19, 0x70, 0x6f, 0x72,
0x74, 0x72, 0x61, 0x69, 0x74, 0x5f, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f,
0x69, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41,
0x64, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x17, 0x70, 0x6f, 0x72,
0x74, 0x72, 0x61, 0x69, 0x74, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x49, 0x6d,
0x61, 0x67, 0x65, 0x73, 0x12, 0x4e, 0x0a, 0x0b, 0x6c, 0x6f, 0x67, 0x6f, 0x5f, 0x69, 0x6d, 0x61,
0x67, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d,
0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0a, 0x6c, 0x6f, 0x67, 0x6f, 0x49, 0x6d,
0x61, 0x67, 0x65, 0x73, 0x12, 0x4a, 0x0a, 0x09, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65,
0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74,
0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x09, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x73,
0x12, 0x50, 0x0a, 0x0c, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73,
0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41,
0x73, 0x73, 0x65, 0x74, 0x52, 0x0c, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
0x6e, 0x73, 0x12, 0x28, 0x0a, 0x0d, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x6e,
0x61, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0c, 0x62, 0x75, 0x73,
@@ -3735,24 +3735,24 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x16, 0x0a,
0x14, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x6f, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x74, 0x65, 0x78, 0x74, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x66,
- 0x6f, 0x72, 0x6d, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x22, 0xd4, 0x03, 0x0a, 0x17, 0x44, 0x69, 0x73,
- 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x43, 0x61, 0x72, 0x6f, 0x75, 0x73, 0x65, 0x6c, 0x41, 0x64,
+ 0x6f, 0x72, 0x6d, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x22, 0xd4, 0x03, 0x0a, 0x17, 0x44, 0x65, 0x6d,
+ 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x43, 0x61, 0x72, 0x6f, 0x75, 0x73, 0x65, 0x6c, 0x41, 0x64,
0x49, 0x6e, 0x66, 0x6f, 0x12, 0x28, 0x0a, 0x0d, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73,
0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02,
0x52, 0x0c, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x51,
0x0a, 0x0a, 0x6c, 0x6f, 0x67, 0x6f, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65,
0x74, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x09, 0x6c, 0x6f, 0x67, 0x6f, 0x49, 0x6d, 0x61, 0x67,
0x65, 0x12, 0x4d, 0x0a, 0x08, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x18, 0x03, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65,
0x74, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x08, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65,
0x12, 0x53, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18,
0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73,
0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69,
0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x0a, 0x13, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x6f,
@@ -3761,35 +3761,35 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x54, 0x65, 0x78, 0x74, 0x12, 0x69, 0x0a, 0x0e, 0x63, 0x61, 0x72, 0x6f, 0x75, 0x73, 0x65, 0x6c,
0x5f, 0x63, 0x61, 0x72, 0x64, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41,
- 0x64, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x43, 0x61, 0x72, 0x6f, 0x75, 0x73,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41,
+ 0x64, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x43, 0x61, 0x72, 0x6f, 0x75, 0x73,
0x65, 0x6c, 0x43, 0x61, 0x72, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x02,
0x52, 0x0d, 0x63, 0x61, 0x72, 0x6f, 0x75, 0x73, 0x65, 0x6c, 0x43, 0x61, 0x72, 0x64, 0x73, 0x22,
- 0xa4, 0x05, 0x0a, 0x1e, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x56, 0x69, 0x64,
+ 0xa4, 0x05, 0x0a, 0x1e, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x56, 0x69, 0x64,
0x65, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x41, 0x64, 0x49, 0x6e,
0x66, 0x6f, 0x12, 0x4a, 0x0a, 0x09, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x18,
0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73,
0x73, 0x65, 0x74, 0x52, 0x09, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x12, 0x53,
0x0a, 0x0e, 0x6c, 0x6f, 0x6e, 0x67, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x73,
0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41,
0x73, 0x73, 0x65, 0x74, 0x52, 0x0d, 0x6c, 0x6f, 0x6e, 0x67, 0x48, 0x65, 0x61, 0x64, 0x6c, 0x69,
0x6e, 0x65, 0x73, 0x12, 0x50, 0x0a, 0x0c, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65,
0x78, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0c, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x45, 0x0a, 0x06, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x73, 0x18,
0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41,
0x73, 0x73, 0x65, 0x74, 0x52, 0x06, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x73, 0x12, 0x4e, 0x0a, 0x0b,
0x6c, 0x6f, 0x67, 0x6f, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28,
0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74,
0x52, 0x0a, 0x6c, 0x6f, 0x67, 0x6f, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x12, 0x20, 0x0a, 0x0b,
0x62, 0x72, 0x65, 0x61, 0x64, 0x63, 0x72, 0x75, 0x6d, 0x62, 0x31, 0x18, 0x06, 0x20, 0x01, 0x28,
@@ -3799,30 +3799,30 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x12, 0x56, 0x0a, 0x0d, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x6e, 0x61, 0x6d,
0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74,
0x41, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0c, 0x62, 0x75, 0x73, 0x69,
0x6e, 0x65, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x5c, 0x0a, 0x0f, 0x63, 0x61, 0x6c, 0x6c,
0x5f, 0x74, 0x6f, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x09, 0x20, 0x03, 0x28,
0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69,
0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0d, 0x63, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0xda, 0x04, 0x0a, 0x16, 0x44, 0x65, 0x6d, 0x61, 0x6e,
0x64, 0x47, 0x65, 0x6e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x41, 0x64, 0x49, 0x6e, 0x66,
0x6f, 0x12, 0x52, 0x0a, 0x08, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x18, 0x01, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65,
0x74, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x48, 0x00, 0x52, 0x08, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69,
0x6e, 0x65, 0x88, 0x01, 0x01, 0x12, 0x58, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54,
0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x48, 0x01, 0x52,
0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12,
0x56, 0x0a, 0x0a, 0x6c, 0x6f, 0x67, 0x6f, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x18, 0x03, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73,
0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x48, 0x02, 0x52, 0x09, 0x6c, 0x6f, 0x67, 0x6f, 0x49,
0x6d, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x20, 0x0a, 0x0b, 0x62, 0x72, 0x65, 0x61, 0x64,
@@ -3832,13 +3832,13 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x62, 0x72, 0x65, 0x61, 0x64, 0x63, 0x72, 0x75, 0x6d, 0x62, 0x32, 0x12, 0x56, 0x0a, 0x0d, 0x62,
0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74,
0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0c, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4e,
0x61, 0x6d, 0x65, 0x12, 0x5f, 0x0a, 0x0e, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x6f, 0x5f, 0x61,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64,
0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65,
0x74, 0x48, 0x03, 0x52, 0x0c, 0x63, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f,
0x6e, 0x88, 0x01, 0x01, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e,
@@ -3847,161 +3847,161 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = []byte{
0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x6f, 0x5f, 0x61, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x42, 0xf0, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x10, 0x41, 0x64, 0x54,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x10, 0x41, 0x64, 0x54,
0x79, 0x70, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescData = file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescData = file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescData)
+func file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes = make([]protoimpl.MessageInfo, 32)
-var file_google_ads_googleads_v16_common_ad_type_infos_proto_goTypes = []interface{}{
- (*TextAdInfo)(nil), // 0: google.ads.googleads.v16.common.TextAdInfo
- (*ExpandedTextAdInfo)(nil), // 1: google.ads.googleads.v16.common.ExpandedTextAdInfo
- (*ExpandedDynamicSearchAdInfo)(nil), // 2: google.ads.googleads.v16.common.ExpandedDynamicSearchAdInfo
- (*HotelAdInfo)(nil), // 3: google.ads.googleads.v16.common.HotelAdInfo
- (*TravelAdInfo)(nil), // 4: google.ads.googleads.v16.common.TravelAdInfo
- (*ShoppingSmartAdInfo)(nil), // 5: google.ads.googleads.v16.common.ShoppingSmartAdInfo
- (*ShoppingProductAdInfo)(nil), // 6: google.ads.googleads.v16.common.ShoppingProductAdInfo
- (*ShoppingComparisonListingAdInfo)(nil), // 7: google.ads.googleads.v16.common.ShoppingComparisonListingAdInfo
- (*ImageAdInfo)(nil), // 8: google.ads.googleads.v16.common.ImageAdInfo
- (*VideoBumperInStreamAdInfo)(nil), // 9: google.ads.googleads.v16.common.VideoBumperInStreamAdInfo
- (*VideoNonSkippableInStreamAdInfo)(nil), // 10: google.ads.googleads.v16.common.VideoNonSkippableInStreamAdInfo
- (*VideoTrueViewInStreamAdInfo)(nil), // 11: google.ads.googleads.v16.common.VideoTrueViewInStreamAdInfo
- (*VideoOutstreamAdInfo)(nil), // 12: google.ads.googleads.v16.common.VideoOutstreamAdInfo
- (*InFeedVideoAdInfo)(nil), // 13: google.ads.googleads.v16.common.InFeedVideoAdInfo
- (*VideoAdInfo)(nil), // 14: google.ads.googleads.v16.common.VideoAdInfo
- (*VideoResponsiveAdInfo)(nil), // 15: google.ads.googleads.v16.common.VideoResponsiveAdInfo
- (*ResponsiveSearchAdInfo)(nil), // 16: google.ads.googleads.v16.common.ResponsiveSearchAdInfo
- (*LegacyResponsiveDisplayAdInfo)(nil), // 17: google.ads.googleads.v16.common.LegacyResponsiveDisplayAdInfo
- (*AppAdInfo)(nil), // 18: google.ads.googleads.v16.common.AppAdInfo
- (*AppEngagementAdInfo)(nil), // 19: google.ads.googleads.v16.common.AppEngagementAdInfo
- (*AppPreRegistrationAdInfo)(nil), // 20: google.ads.googleads.v16.common.AppPreRegistrationAdInfo
- (*LegacyAppInstallAdInfo)(nil), // 21: google.ads.googleads.v16.common.LegacyAppInstallAdInfo
- (*ResponsiveDisplayAdInfo)(nil), // 22: google.ads.googleads.v16.common.ResponsiveDisplayAdInfo
- (*LocalAdInfo)(nil), // 23: google.ads.googleads.v16.common.LocalAdInfo
- (*DisplayUploadAdInfo)(nil), // 24: google.ads.googleads.v16.common.DisplayUploadAdInfo
- (*ResponsiveDisplayAdControlSpec)(nil), // 25: google.ads.googleads.v16.common.ResponsiveDisplayAdControlSpec
- (*SmartCampaignAdInfo)(nil), // 26: google.ads.googleads.v16.common.SmartCampaignAdInfo
- (*CallAdInfo)(nil), // 27: google.ads.googleads.v16.common.CallAdInfo
- (*DiscoveryMultiAssetAdInfo)(nil), // 28: google.ads.googleads.v16.common.DiscoveryMultiAssetAdInfo
- (*DiscoveryCarouselAdInfo)(nil), // 29: google.ads.googleads.v16.common.DiscoveryCarouselAdInfo
- (*DiscoveryVideoResponsiveAdInfo)(nil), // 30: google.ads.googleads.v16.common.DiscoveryVideoResponsiveAdInfo
- (*DemandGenProductAdInfo)(nil), // 31: google.ads.googleads.v16.common.DemandGenProductAdInfo
- (enums.MimeTypeEnum_MimeType)(0), // 32: google.ads.googleads.v16.enums.MimeTypeEnum.MimeType
- (*AdImageAsset)(nil), // 33: google.ads.googleads.v16.common.AdImageAsset
- (enums.VideoThumbnailEnum_VideoThumbnail)(0), // 34: google.ads.googleads.v16.enums.VideoThumbnailEnum.VideoThumbnail
- (*AdVideoAsset)(nil), // 35: google.ads.googleads.v16.common.AdVideoAsset
- (*AdTextAsset)(nil), // 36: google.ads.googleads.v16.common.AdTextAsset
- (enums.DisplayAdFormatSettingEnum_DisplayAdFormatSetting)(0), // 37: google.ads.googleads.v16.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting
- (*AdMediaBundleAsset)(nil), // 38: google.ads.googleads.v16.common.AdMediaBundleAsset
- (enums.LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore)(0), // 39: google.ads.googleads.v16.enums.LegacyAppInstallAdAppStoreEnum.LegacyAppInstallAdAppStore
- (enums.DisplayUploadProductTypeEnum_DisplayUploadProductType)(0), // 40: google.ads.googleads.v16.enums.DisplayUploadProductTypeEnum.DisplayUploadProductType
- (enums.CallConversionReportingStateEnum_CallConversionReportingState)(0), // 41: google.ads.googleads.v16.enums.CallConversionReportingStateEnum.CallConversionReportingState
- (*AdDiscoveryCarouselCardAsset)(nil), // 42: google.ads.googleads.v16.common.AdDiscoveryCarouselCardAsset
- (*AdCallToActionAsset)(nil), // 43: google.ads.googleads.v16.common.AdCallToActionAsset
-}
-var file_google_ads_googleads_v16_common_ad_type_infos_proto_depIdxs = []int32{
- 32, // 0: google.ads.googleads.v16.common.ImageAdInfo.mime_type:type_name -> google.ads.googleads.v16.enums.MimeTypeEnum.MimeType
- 33, // 1: google.ads.googleads.v16.common.ImageAdInfo.image_asset:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 33, // 2: google.ads.googleads.v16.common.VideoBumperInStreamAdInfo.companion_banner:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 33, // 3: google.ads.googleads.v16.common.VideoNonSkippableInStreamAdInfo.companion_banner:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 33, // 4: google.ads.googleads.v16.common.VideoTrueViewInStreamAdInfo.companion_banner:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 34, // 5: google.ads.googleads.v16.common.InFeedVideoAdInfo.thumbnail:type_name -> google.ads.googleads.v16.enums.VideoThumbnailEnum.VideoThumbnail
- 35, // 6: google.ads.googleads.v16.common.VideoAdInfo.video:type_name -> google.ads.googleads.v16.common.AdVideoAsset
- 11, // 7: google.ads.googleads.v16.common.VideoAdInfo.in_stream:type_name -> google.ads.googleads.v16.common.VideoTrueViewInStreamAdInfo
- 9, // 8: google.ads.googleads.v16.common.VideoAdInfo.bumper:type_name -> google.ads.googleads.v16.common.VideoBumperInStreamAdInfo
- 12, // 9: google.ads.googleads.v16.common.VideoAdInfo.out_stream:type_name -> google.ads.googleads.v16.common.VideoOutstreamAdInfo
- 10, // 10: google.ads.googleads.v16.common.VideoAdInfo.non_skippable:type_name -> google.ads.googleads.v16.common.VideoNonSkippableInStreamAdInfo
- 13, // 11: google.ads.googleads.v16.common.VideoAdInfo.in_feed:type_name -> google.ads.googleads.v16.common.InFeedVideoAdInfo
- 36, // 12: google.ads.googleads.v16.common.VideoResponsiveAdInfo.headlines:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 36, // 13: google.ads.googleads.v16.common.VideoResponsiveAdInfo.long_headlines:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 36, // 14: google.ads.googleads.v16.common.VideoResponsiveAdInfo.descriptions:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 36, // 15: google.ads.googleads.v16.common.VideoResponsiveAdInfo.call_to_actions:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 35, // 16: google.ads.googleads.v16.common.VideoResponsiveAdInfo.videos:type_name -> google.ads.googleads.v16.common.AdVideoAsset
- 33, // 17: google.ads.googleads.v16.common.VideoResponsiveAdInfo.companion_banners:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 36, // 18: google.ads.googleads.v16.common.ResponsiveSearchAdInfo.headlines:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 36, // 19: google.ads.googleads.v16.common.ResponsiveSearchAdInfo.descriptions:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 37, // 20: google.ads.googleads.v16.common.LegacyResponsiveDisplayAdInfo.format_setting:type_name -> google.ads.googleads.v16.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting
- 36, // 21: google.ads.googleads.v16.common.AppAdInfo.mandatory_ad_text:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 36, // 22: google.ads.googleads.v16.common.AppAdInfo.headlines:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 36, // 23: google.ads.googleads.v16.common.AppAdInfo.descriptions:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 33, // 24: google.ads.googleads.v16.common.AppAdInfo.images:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 35, // 25: google.ads.googleads.v16.common.AppAdInfo.youtube_videos:type_name -> google.ads.googleads.v16.common.AdVideoAsset
- 38, // 26: google.ads.googleads.v16.common.AppAdInfo.html5_media_bundles:type_name -> google.ads.googleads.v16.common.AdMediaBundleAsset
- 36, // 27: google.ads.googleads.v16.common.AppEngagementAdInfo.headlines:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 36, // 28: google.ads.googleads.v16.common.AppEngagementAdInfo.descriptions:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 33, // 29: google.ads.googleads.v16.common.AppEngagementAdInfo.images:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 35, // 30: google.ads.googleads.v16.common.AppEngagementAdInfo.videos:type_name -> google.ads.googleads.v16.common.AdVideoAsset
- 36, // 31: google.ads.googleads.v16.common.AppPreRegistrationAdInfo.headlines:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 36, // 32: google.ads.googleads.v16.common.AppPreRegistrationAdInfo.descriptions:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 33, // 33: google.ads.googleads.v16.common.AppPreRegistrationAdInfo.images:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 35, // 34: google.ads.googleads.v16.common.AppPreRegistrationAdInfo.youtube_videos:type_name -> google.ads.googleads.v16.common.AdVideoAsset
- 39, // 35: google.ads.googleads.v16.common.LegacyAppInstallAdInfo.app_store:type_name -> google.ads.googleads.v16.enums.LegacyAppInstallAdAppStoreEnum.LegacyAppInstallAdAppStore
- 33, // 36: google.ads.googleads.v16.common.ResponsiveDisplayAdInfo.marketing_images:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 33, // 37: google.ads.googleads.v16.common.ResponsiveDisplayAdInfo.square_marketing_images:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 33, // 38: google.ads.googleads.v16.common.ResponsiveDisplayAdInfo.logo_images:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 33, // 39: google.ads.googleads.v16.common.ResponsiveDisplayAdInfo.square_logo_images:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 36, // 40: google.ads.googleads.v16.common.ResponsiveDisplayAdInfo.headlines:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 36, // 41: google.ads.googleads.v16.common.ResponsiveDisplayAdInfo.long_headline:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 36, // 42: google.ads.googleads.v16.common.ResponsiveDisplayAdInfo.descriptions:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 35, // 43: google.ads.googleads.v16.common.ResponsiveDisplayAdInfo.youtube_videos:type_name -> google.ads.googleads.v16.common.AdVideoAsset
- 37, // 44: google.ads.googleads.v16.common.ResponsiveDisplayAdInfo.format_setting:type_name -> google.ads.googleads.v16.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting
- 25, // 45: google.ads.googleads.v16.common.ResponsiveDisplayAdInfo.control_spec:type_name -> google.ads.googleads.v16.common.ResponsiveDisplayAdControlSpec
- 36, // 46: google.ads.googleads.v16.common.LocalAdInfo.headlines:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 36, // 47: google.ads.googleads.v16.common.LocalAdInfo.descriptions:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 36, // 48: google.ads.googleads.v16.common.LocalAdInfo.call_to_actions:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 33, // 49: google.ads.googleads.v16.common.LocalAdInfo.marketing_images:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 33, // 50: google.ads.googleads.v16.common.LocalAdInfo.logo_images:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 35, // 51: google.ads.googleads.v16.common.LocalAdInfo.videos:type_name -> google.ads.googleads.v16.common.AdVideoAsset
- 40, // 52: google.ads.googleads.v16.common.DisplayUploadAdInfo.display_upload_product_type:type_name -> google.ads.googleads.v16.enums.DisplayUploadProductTypeEnum.DisplayUploadProductType
- 38, // 53: google.ads.googleads.v16.common.DisplayUploadAdInfo.media_bundle:type_name -> google.ads.googleads.v16.common.AdMediaBundleAsset
- 36, // 54: google.ads.googleads.v16.common.SmartCampaignAdInfo.headlines:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 36, // 55: google.ads.googleads.v16.common.SmartCampaignAdInfo.descriptions:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 41, // 56: google.ads.googleads.v16.common.CallAdInfo.conversion_reporting_state:type_name -> google.ads.googleads.v16.enums.CallConversionReportingStateEnum.CallConversionReportingState
- 33, // 57: google.ads.googleads.v16.common.DiscoveryMultiAssetAdInfo.marketing_images:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 33, // 58: google.ads.googleads.v16.common.DiscoveryMultiAssetAdInfo.square_marketing_images:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 33, // 59: google.ads.googleads.v16.common.DiscoveryMultiAssetAdInfo.portrait_marketing_images:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 33, // 60: google.ads.googleads.v16.common.DiscoveryMultiAssetAdInfo.logo_images:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 36, // 61: google.ads.googleads.v16.common.DiscoveryMultiAssetAdInfo.headlines:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 36, // 62: google.ads.googleads.v16.common.DiscoveryMultiAssetAdInfo.descriptions:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 33, // 63: google.ads.googleads.v16.common.DiscoveryCarouselAdInfo.logo_image:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 36, // 64: google.ads.googleads.v16.common.DiscoveryCarouselAdInfo.headline:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 36, // 65: google.ads.googleads.v16.common.DiscoveryCarouselAdInfo.description:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 42, // 66: google.ads.googleads.v16.common.DiscoveryCarouselAdInfo.carousel_cards:type_name -> google.ads.googleads.v16.common.AdDiscoveryCarouselCardAsset
- 36, // 67: google.ads.googleads.v16.common.DiscoveryVideoResponsiveAdInfo.headlines:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 36, // 68: google.ads.googleads.v16.common.DiscoveryVideoResponsiveAdInfo.long_headlines:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 36, // 69: google.ads.googleads.v16.common.DiscoveryVideoResponsiveAdInfo.descriptions:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 35, // 70: google.ads.googleads.v16.common.DiscoveryVideoResponsiveAdInfo.videos:type_name -> google.ads.googleads.v16.common.AdVideoAsset
- 33, // 71: google.ads.googleads.v16.common.DiscoveryVideoResponsiveAdInfo.logo_images:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 36, // 72: google.ads.googleads.v16.common.DiscoveryVideoResponsiveAdInfo.business_name:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 43, // 73: google.ads.googleads.v16.common.DiscoveryVideoResponsiveAdInfo.call_to_actions:type_name -> google.ads.googleads.v16.common.AdCallToActionAsset
- 36, // 74: google.ads.googleads.v16.common.DemandGenProductAdInfo.headline:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 36, // 75: google.ads.googleads.v16.common.DemandGenProductAdInfo.description:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 33, // 76: google.ads.googleads.v16.common.DemandGenProductAdInfo.logo_image:type_name -> google.ads.googleads.v16.common.AdImageAsset
- 36, // 77: google.ads.googleads.v16.common.DemandGenProductAdInfo.business_name:type_name -> google.ads.googleads.v16.common.AdTextAsset
- 43, // 78: google.ads.googleads.v16.common.DemandGenProductAdInfo.call_to_action:type_name -> google.ads.googleads.v16.common.AdCallToActionAsset
+ return file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes = make([]protoimpl.MessageInfo, 32)
+var file_google_ads_googleads_v17_common_ad_type_infos_proto_goTypes = []interface{}{
+ (*TextAdInfo)(nil), // 0: google.ads.googleads.v17.common.TextAdInfo
+ (*ExpandedTextAdInfo)(nil), // 1: google.ads.googleads.v17.common.ExpandedTextAdInfo
+ (*ExpandedDynamicSearchAdInfo)(nil), // 2: google.ads.googleads.v17.common.ExpandedDynamicSearchAdInfo
+ (*HotelAdInfo)(nil), // 3: google.ads.googleads.v17.common.HotelAdInfo
+ (*TravelAdInfo)(nil), // 4: google.ads.googleads.v17.common.TravelAdInfo
+ (*ShoppingSmartAdInfo)(nil), // 5: google.ads.googleads.v17.common.ShoppingSmartAdInfo
+ (*ShoppingProductAdInfo)(nil), // 6: google.ads.googleads.v17.common.ShoppingProductAdInfo
+ (*ShoppingComparisonListingAdInfo)(nil), // 7: google.ads.googleads.v17.common.ShoppingComparisonListingAdInfo
+ (*ImageAdInfo)(nil), // 8: google.ads.googleads.v17.common.ImageAdInfo
+ (*VideoBumperInStreamAdInfo)(nil), // 9: google.ads.googleads.v17.common.VideoBumperInStreamAdInfo
+ (*VideoNonSkippableInStreamAdInfo)(nil), // 10: google.ads.googleads.v17.common.VideoNonSkippableInStreamAdInfo
+ (*VideoTrueViewInStreamAdInfo)(nil), // 11: google.ads.googleads.v17.common.VideoTrueViewInStreamAdInfo
+ (*VideoOutstreamAdInfo)(nil), // 12: google.ads.googleads.v17.common.VideoOutstreamAdInfo
+ (*InFeedVideoAdInfo)(nil), // 13: google.ads.googleads.v17.common.InFeedVideoAdInfo
+ (*VideoAdInfo)(nil), // 14: google.ads.googleads.v17.common.VideoAdInfo
+ (*VideoResponsiveAdInfo)(nil), // 15: google.ads.googleads.v17.common.VideoResponsiveAdInfo
+ (*ResponsiveSearchAdInfo)(nil), // 16: google.ads.googleads.v17.common.ResponsiveSearchAdInfo
+ (*LegacyResponsiveDisplayAdInfo)(nil), // 17: google.ads.googleads.v17.common.LegacyResponsiveDisplayAdInfo
+ (*AppAdInfo)(nil), // 18: google.ads.googleads.v17.common.AppAdInfo
+ (*AppEngagementAdInfo)(nil), // 19: google.ads.googleads.v17.common.AppEngagementAdInfo
+ (*AppPreRegistrationAdInfo)(nil), // 20: google.ads.googleads.v17.common.AppPreRegistrationAdInfo
+ (*LegacyAppInstallAdInfo)(nil), // 21: google.ads.googleads.v17.common.LegacyAppInstallAdInfo
+ (*ResponsiveDisplayAdInfo)(nil), // 22: google.ads.googleads.v17.common.ResponsiveDisplayAdInfo
+ (*LocalAdInfo)(nil), // 23: google.ads.googleads.v17.common.LocalAdInfo
+ (*DisplayUploadAdInfo)(nil), // 24: google.ads.googleads.v17.common.DisplayUploadAdInfo
+ (*ResponsiveDisplayAdControlSpec)(nil), // 25: google.ads.googleads.v17.common.ResponsiveDisplayAdControlSpec
+ (*SmartCampaignAdInfo)(nil), // 26: google.ads.googleads.v17.common.SmartCampaignAdInfo
+ (*CallAdInfo)(nil), // 27: google.ads.googleads.v17.common.CallAdInfo
+ (*DemandGenMultiAssetAdInfo)(nil), // 28: google.ads.googleads.v17.common.DemandGenMultiAssetAdInfo
+ (*DemandGenCarouselAdInfo)(nil), // 29: google.ads.googleads.v17.common.DemandGenCarouselAdInfo
+ (*DemandGenVideoResponsiveAdInfo)(nil), // 30: google.ads.googleads.v17.common.DemandGenVideoResponsiveAdInfo
+ (*DemandGenProductAdInfo)(nil), // 31: google.ads.googleads.v17.common.DemandGenProductAdInfo
+ (enums.MimeTypeEnum_MimeType)(0), // 32: google.ads.googleads.v17.enums.MimeTypeEnum.MimeType
+ (*AdImageAsset)(nil), // 33: google.ads.googleads.v17.common.AdImageAsset
+ (enums.VideoThumbnailEnum_VideoThumbnail)(0), // 34: google.ads.googleads.v17.enums.VideoThumbnailEnum.VideoThumbnail
+ (*AdVideoAsset)(nil), // 35: google.ads.googleads.v17.common.AdVideoAsset
+ (*AdTextAsset)(nil), // 36: google.ads.googleads.v17.common.AdTextAsset
+ (enums.DisplayAdFormatSettingEnum_DisplayAdFormatSetting)(0), // 37: google.ads.googleads.v17.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting
+ (*AdMediaBundleAsset)(nil), // 38: google.ads.googleads.v17.common.AdMediaBundleAsset
+ (enums.LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore)(0), // 39: google.ads.googleads.v17.enums.LegacyAppInstallAdAppStoreEnum.LegacyAppInstallAdAppStore
+ (enums.DisplayUploadProductTypeEnum_DisplayUploadProductType)(0), // 40: google.ads.googleads.v17.enums.DisplayUploadProductTypeEnum.DisplayUploadProductType
+ (enums.CallConversionReportingStateEnum_CallConversionReportingState)(0), // 41: google.ads.googleads.v17.enums.CallConversionReportingStateEnum.CallConversionReportingState
+ (*AdDemandGenCarouselCardAsset)(nil), // 42: google.ads.googleads.v17.common.AdDemandGenCarouselCardAsset
+ (*AdCallToActionAsset)(nil), // 43: google.ads.googleads.v17.common.AdCallToActionAsset
+}
+var file_google_ads_googleads_v17_common_ad_type_infos_proto_depIdxs = []int32{
+ 32, // 0: google.ads.googleads.v17.common.ImageAdInfo.mime_type:type_name -> google.ads.googleads.v17.enums.MimeTypeEnum.MimeType
+ 33, // 1: google.ads.googleads.v17.common.ImageAdInfo.image_asset:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 33, // 2: google.ads.googleads.v17.common.VideoBumperInStreamAdInfo.companion_banner:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 33, // 3: google.ads.googleads.v17.common.VideoNonSkippableInStreamAdInfo.companion_banner:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 33, // 4: google.ads.googleads.v17.common.VideoTrueViewInStreamAdInfo.companion_banner:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 34, // 5: google.ads.googleads.v17.common.InFeedVideoAdInfo.thumbnail:type_name -> google.ads.googleads.v17.enums.VideoThumbnailEnum.VideoThumbnail
+ 35, // 6: google.ads.googleads.v17.common.VideoAdInfo.video:type_name -> google.ads.googleads.v17.common.AdVideoAsset
+ 11, // 7: google.ads.googleads.v17.common.VideoAdInfo.in_stream:type_name -> google.ads.googleads.v17.common.VideoTrueViewInStreamAdInfo
+ 9, // 8: google.ads.googleads.v17.common.VideoAdInfo.bumper:type_name -> google.ads.googleads.v17.common.VideoBumperInStreamAdInfo
+ 12, // 9: google.ads.googleads.v17.common.VideoAdInfo.out_stream:type_name -> google.ads.googleads.v17.common.VideoOutstreamAdInfo
+ 10, // 10: google.ads.googleads.v17.common.VideoAdInfo.non_skippable:type_name -> google.ads.googleads.v17.common.VideoNonSkippableInStreamAdInfo
+ 13, // 11: google.ads.googleads.v17.common.VideoAdInfo.in_feed:type_name -> google.ads.googleads.v17.common.InFeedVideoAdInfo
+ 36, // 12: google.ads.googleads.v17.common.VideoResponsiveAdInfo.headlines:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 36, // 13: google.ads.googleads.v17.common.VideoResponsiveAdInfo.long_headlines:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 36, // 14: google.ads.googleads.v17.common.VideoResponsiveAdInfo.descriptions:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 36, // 15: google.ads.googleads.v17.common.VideoResponsiveAdInfo.call_to_actions:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 35, // 16: google.ads.googleads.v17.common.VideoResponsiveAdInfo.videos:type_name -> google.ads.googleads.v17.common.AdVideoAsset
+ 33, // 17: google.ads.googleads.v17.common.VideoResponsiveAdInfo.companion_banners:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 36, // 18: google.ads.googleads.v17.common.ResponsiveSearchAdInfo.headlines:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 36, // 19: google.ads.googleads.v17.common.ResponsiveSearchAdInfo.descriptions:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 37, // 20: google.ads.googleads.v17.common.LegacyResponsiveDisplayAdInfo.format_setting:type_name -> google.ads.googleads.v17.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting
+ 36, // 21: google.ads.googleads.v17.common.AppAdInfo.mandatory_ad_text:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 36, // 22: google.ads.googleads.v17.common.AppAdInfo.headlines:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 36, // 23: google.ads.googleads.v17.common.AppAdInfo.descriptions:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 33, // 24: google.ads.googleads.v17.common.AppAdInfo.images:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 35, // 25: google.ads.googleads.v17.common.AppAdInfo.youtube_videos:type_name -> google.ads.googleads.v17.common.AdVideoAsset
+ 38, // 26: google.ads.googleads.v17.common.AppAdInfo.html5_media_bundles:type_name -> google.ads.googleads.v17.common.AdMediaBundleAsset
+ 36, // 27: google.ads.googleads.v17.common.AppEngagementAdInfo.headlines:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 36, // 28: google.ads.googleads.v17.common.AppEngagementAdInfo.descriptions:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 33, // 29: google.ads.googleads.v17.common.AppEngagementAdInfo.images:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 35, // 30: google.ads.googleads.v17.common.AppEngagementAdInfo.videos:type_name -> google.ads.googleads.v17.common.AdVideoAsset
+ 36, // 31: google.ads.googleads.v17.common.AppPreRegistrationAdInfo.headlines:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 36, // 32: google.ads.googleads.v17.common.AppPreRegistrationAdInfo.descriptions:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 33, // 33: google.ads.googleads.v17.common.AppPreRegistrationAdInfo.images:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 35, // 34: google.ads.googleads.v17.common.AppPreRegistrationAdInfo.youtube_videos:type_name -> google.ads.googleads.v17.common.AdVideoAsset
+ 39, // 35: google.ads.googleads.v17.common.LegacyAppInstallAdInfo.app_store:type_name -> google.ads.googleads.v17.enums.LegacyAppInstallAdAppStoreEnum.LegacyAppInstallAdAppStore
+ 33, // 36: google.ads.googleads.v17.common.ResponsiveDisplayAdInfo.marketing_images:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 33, // 37: google.ads.googleads.v17.common.ResponsiveDisplayAdInfo.square_marketing_images:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 33, // 38: google.ads.googleads.v17.common.ResponsiveDisplayAdInfo.logo_images:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 33, // 39: google.ads.googleads.v17.common.ResponsiveDisplayAdInfo.square_logo_images:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 36, // 40: google.ads.googleads.v17.common.ResponsiveDisplayAdInfo.headlines:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 36, // 41: google.ads.googleads.v17.common.ResponsiveDisplayAdInfo.long_headline:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 36, // 42: google.ads.googleads.v17.common.ResponsiveDisplayAdInfo.descriptions:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 35, // 43: google.ads.googleads.v17.common.ResponsiveDisplayAdInfo.youtube_videos:type_name -> google.ads.googleads.v17.common.AdVideoAsset
+ 37, // 44: google.ads.googleads.v17.common.ResponsiveDisplayAdInfo.format_setting:type_name -> google.ads.googleads.v17.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting
+ 25, // 45: google.ads.googleads.v17.common.ResponsiveDisplayAdInfo.control_spec:type_name -> google.ads.googleads.v17.common.ResponsiveDisplayAdControlSpec
+ 36, // 46: google.ads.googleads.v17.common.LocalAdInfo.headlines:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 36, // 47: google.ads.googleads.v17.common.LocalAdInfo.descriptions:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 36, // 48: google.ads.googleads.v17.common.LocalAdInfo.call_to_actions:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 33, // 49: google.ads.googleads.v17.common.LocalAdInfo.marketing_images:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 33, // 50: google.ads.googleads.v17.common.LocalAdInfo.logo_images:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 35, // 51: google.ads.googleads.v17.common.LocalAdInfo.videos:type_name -> google.ads.googleads.v17.common.AdVideoAsset
+ 40, // 52: google.ads.googleads.v17.common.DisplayUploadAdInfo.display_upload_product_type:type_name -> google.ads.googleads.v17.enums.DisplayUploadProductTypeEnum.DisplayUploadProductType
+ 38, // 53: google.ads.googleads.v17.common.DisplayUploadAdInfo.media_bundle:type_name -> google.ads.googleads.v17.common.AdMediaBundleAsset
+ 36, // 54: google.ads.googleads.v17.common.SmartCampaignAdInfo.headlines:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 36, // 55: google.ads.googleads.v17.common.SmartCampaignAdInfo.descriptions:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 41, // 56: google.ads.googleads.v17.common.CallAdInfo.conversion_reporting_state:type_name -> google.ads.googleads.v17.enums.CallConversionReportingStateEnum.CallConversionReportingState
+ 33, // 57: google.ads.googleads.v17.common.DemandGenMultiAssetAdInfo.marketing_images:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 33, // 58: google.ads.googleads.v17.common.DemandGenMultiAssetAdInfo.square_marketing_images:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 33, // 59: google.ads.googleads.v17.common.DemandGenMultiAssetAdInfo.portrait_marketing_images:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 33, // 60: google.ads.googleads.v17.common.DemandGenMultiAssetAdInfo.logo_images:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 36, // 61: google.ads.googleads.v17.common.DemandGenMultiAssetAdInfo.headlines:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 36, // 62: google.ads.googleads.v17.common.DemandGenMultiAssetAdInfo.descriptions:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 33, // 63: google.ads.googleads.v17.common.DemandGenCarouselAdInfo.logo_image:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 36, // 64: google.ads.googleads.v17.common.DemandGenCarouselAdInfo.headline:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 36, // 65: google.ads.googleads.v17.common.DemandGenCarouselAdInfo.description:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 42, // 66: google.ads.googleads.v17.common.DemandGenCarouselAdInfo.carousel_cards:type_name -> google.ads.googleads.v17.common.AdDemandGenCarouselCardAsset
+ 36, // 67: google.ads.googleads.v17.common.DemandGenVideoResponsiveAdInfo.headlines:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 36, // 68: google.ads.googleads.v17.common.DemandGenVideoResponsiveAdInfo.long_headlines:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 36, // 69: google.ads.googleads.v17.common.DemandGenVideoResponsiveAdInfo.descriptions:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 35, // 70: google.ads.googleads.v17.common.DemandGenVideoResponsiveAdInfo.videos:type_name -> google.ads.googleads.v17.common.AdVideoAsset
+ 33, // 71: google.ads.googleads.v17.common.DemandGenVideoResponsiveAdInfo.logo_images:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 36, // 72: google.ads.googleads.v17.common.DemandGenVideoResponsiveAdInfo.business_name:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 43, // 73: google.ads.googleads.v17.common.DemandGenVideoResponsiveAdInfo.call_to_actions:type_name -> google.ads.googleads.v17.common.AdCallToActionAsset
+ 36, // 74: google.ads.googleads.v17.common.DemandGenProductAdInfo.headline:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 36, // 75: google.ads.googleads.v17.common.DemandGenProductAdInfo.description:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 33, // 76: google.ads.googleads.v17.common.DemandGenProductAdInfo.logo_image:type_name -> google.ads.googleads.v17.common.AdImageAsset
+ 36, // 77: google.ads.googleads.v17.common.DemandGenProductAdInfo.business_name:type_name -> google.ads.googleads.v17.common.AdTextAsset
+ 43, // 78: google.ads.googleads.v17.common.DemandGenProductAdInfo.call_to_action:type_name -> google.ads.googleads.v17.common.AdCallToActionAsset
79, // [79:79] is the sub-list for method output_type
79, // [79:79] is the sub-list for method input_type
79, // [79:79] is the sub-list for extension type_name
@@ -4009,14 +4009,14 @@ var file_google_ads_googleads_v16_common_ad_type_infos_proto_depIdxs = []int32{
0, // [0:79] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_ad_type_infos_proto_init() }
-func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
- if File_google_ads_googleads_v16_common_ad_type_infos_proto != nil {
+func init() { file_google_ads_googleads_v17_common_ad_type_infos_proto_init() }
+func file_google_ads_googleads_v17_common_ad_type_infos_proto_init() {
+ if File_google_ads_googleads_v17_common_ad_type_infos_proto != nil {
return
}
- file_google_ads_googleads_v16_common_ad_asset_proto_init()
+ file_google_ads_googleads_v17_common_ad_asset_proto_init()
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TextAdInfo); i {
case 0:
return &v.state
@@ -4028,7 +4028,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExpandedTextAdInfo); i {
case 0:
return &v.state
@@ -4040,7 +4040,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExpandedDynamicSearchAdInfo); i {
case 0:
return &v.state
@@ -4052,7 +4052,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelAdInfo); i {
case 0:
return &v.state
@@ -4064,7 +4064,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TravelAdInfo); i {
case 0:
return &v.state
@@ -4076,7 +4076,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ShoppingSmartAdInfo); i {
case 0:
return &v.state
@@ -4088,7 +4088,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ShoppingProductAdInfo); i {
case 0:
return &v.state
@@ -4100,7 +4100,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ShoppingComparisonListingAdInfo); i {
case 0:
return &v.state
@@ -4112,7 +4112,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ImageAdInfo); i {
case 0:
return &v.state
@@ -4124,7 +4124,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*VideoBumperInStreamAdInfo); i {
case 0:
return &v.state
@@ -4136,7 +4136,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*VideoNonSkippableInStreamAdInfo); i {
case 0:
return &v.state
@@ -4148,7 +4148,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*VideoTrueViewInStreamAdInfo); i {
case 0:
return &v.state
@@ -4160,7 +4160,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*VideoOutstreamAdInfo); i {
case 0:
return &v.state
@@ -4172,7 +4172,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*InFeedVideoAdInfo); i {
case 0:
return &v.state
@@ -4184,7 +4184,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*VideoAdInfo); i {
case 0:
return &v.state
@@ -4196,7 +4196,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*VideoResponsiveAdInfo); i {
case 0:
return &v.state
@@ -4208,7 +4208,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ResponsiveSearchAdInfo); i {
case 0:
return &v.state
@@ -4220,7 +4220,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LegacyResponsiveDisplayAdInfo); i {
case 0:
return &v.state
@@ -4232,7 +4232,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AppAdInfo); i {
case 0:
return &v.state
@@ -4244,7 +4244,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AppEngagementAdInfo); i {
case 0:
return &v.state
@@ -4256,7 +4256,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AppPreRegistrationAdInfo); i {
case 0:
return &v.state
@@ -4268,7 +4268,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LegacyAppInstallAdInfo); i {
case 0:
return &v.state
@@ -4280,7 +4280,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ResponsiveDisplayAdInfo); i {
case 0:
return &v.state
@@ -4292,7 +4292,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocalAdInfo); i {
case 0:
return &v.state
@@ -4304,7 +4304,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DisplayUploadAdInfo); i {
case 0:
return &v.state
@@ -4316,7 +4316,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ResponsiveDisplayAdControlSpec); i {
case 0:
return &v.state
@@ -4328,7 +4328,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SmartCampaignAdInfo); i {
case 0:
return &v.state
@@ -4340,7 +4340,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CallAdInfo); i {
case 0:
return &v.state
@@ -4352,8 +4352,8 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*DiscoveryMultiAssetAdInfo); i {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*DemandGenMultiAssetAdInfo); i {
case 0:
return &v.state
case 1:
@@ -4364,8 +4364,8 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*DiscoveryCarouselAdInfo); i {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*DemandGenCarouselAdInfo); i {
case 0:
return &v.state
case 1:
@@ -4376,8 +4376,8 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*DiscoveryVideoResponsiveAdInfo); i {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*DemandGenVideoResponsiveAdInfo); i {
case 0:
return &v.state
case 1:
@@ -4388,7 +4388,7 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DemandGenProductAdInfo); i {
case 0:
return &v.state
@@ -4401,48 +4401,48 @@ func file_google_ads_googleads_v16_common_ad_type_infos_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[0].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[1].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[2].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[7].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[8].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[1].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[2].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[7].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[8].OneofWrappers = []interface{}{
(*ImageAdInfo_ImageAsset)(nil),
(*ImageAdInfo_Data)(nil),
(*ImageAdInfo_AdIdToCopyImageFrom)(nil),
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[14].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[14].OneofWrappers = []interface{}{
(*VideoAdInfo_InStream)(nil),
(*VideoAdInfo_Bumper)(nil),
(*VideoAdInfo_OutStream)(nil),
(*VideoAdInfo_NonSkippable)(nil),
(*VideoAdInfo_InFeed)(nil),
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[16].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[17].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[21].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[22].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[23].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[24].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[16].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[17].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[21].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[22].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[23].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[24].OneofWrappers = []interface{}{
(*DisplayUploadAdInfo_MediaBundle)(nil),
}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[28].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes[31].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[28].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes[31].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDesc,
NumEnums: 0,
NumMessages: 32,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_ad_type_infos_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_ad_type_infos_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_ad_type_infos_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_ad_type_infos_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_ad_type_infos_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_ad_type_infos_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_ad_type_infos_proto = out.File
- file_google_ads_googleads_v16_common_ad_type_infos_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_ad_type_infos_proto_goTypes = nil
- file_google_ads_googleads_v16_common_ad_type_infos_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_ad_type_infos_proto = out.File
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_ad_type_infos_proto_depIdxs = nil
}
diff --git a/common/asset_policy.pb.go b/common/asset_policy.pb.go
index 1c219846..32ba028f 100644
--- a/common/asset_policy.pb.go
+++ b/common/asset_policy.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/asset_policy.proto
+// source: google/ads/googleads/v17/common/asset_policy.proto
package common
@@ -44,16 +44,16 @@ type AdAssetPolicySummary struct {
// The list of policy findings for this asset.
PolicyTopicEntries []*PolicyTopicEntry `protobuf:"bytes,1,rep,name=policy_topic_entries,json=policyTopicEntries,proto3" json:"policy_topic_entries,omitempty"`
// Where in the review process this asset.
- ReviewStatus enums.PolicyReviewStatusEnum_PolicyReviewStatus `protobuf:"varint,2,opt,name=review_status,json=reviewStatus,proto3,enum=google.ads.googleads.v16.enums.PolicyReviewStatusEnum_PolicyReviewStatus" json:"review_status,omitempty"`
+ ReviewStatus enums.PolicyReviewStatusEnum_PolicyReviewStatus `protobuf:"varint,2,opt,name=review_status,json=reviewStatus,proto3,enum=google.ads.googleads.v17.enums.PolicyReviewStatusEnum_PolicyReviewStatus" json:"review_status,omitempty"`
// The overall approval status of this asset, which is calculated based on
// the status of its individual policy topic entries.
- ApprovalStatus enums.PolicyApprovalStatusEnum_PolicyApprovalStatus `protobuf:"varint,3,opt,name=approval_status,json=approvalStatus,proto3,enum=google.ads.googleads.v16.enums.PolicyApprovalStatusEnum_PolicyApprovalStatus" json:"approval_status,omitempty"`
+ ApprovalStatus enums.PolicyApprovalStatusEnum_PolicyApprovalStatus `protobuf:"varint,3,opt,name=approval_status,json=approvalStatus,proto3,enum=google.ads.googleads.v17.enums.PolicyApprovalStatusEnum_PolicyApprovalStatus" json:"approval_status,omitempty"`
}
func (x *AdAssetPolicySummary) Reset() {
*x = AdAssetPolicySummary{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_policy_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_asset_policy_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -66,7 +66,7 @@ func (x *AdAssetPolicySummary) String() string {
func (*AdAssetPolicySummary) ProtoMessage() {}
func (x *AdAssetPolicySummary) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_policy_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_asset_policy_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -79,7 +79,7 @@ func (x *AdAssetPolicySummary) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdAssetPolicySummary.ProtoReflect.Descriptor instead.
func (*AdAssetPolicySummary) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_policy_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_asset_policy_proto_rawDescGZIP(), []int{0}
}
func (x *AdAssetPolicySummary) GetPolicyTopicEntries() []*PolicyTopicEntry {
@@ -116,9 +116,9 @@ type AssetLinkPrimaryStatusDetails struct {
unknownFields protoimpl.UnknownFields
// Provides the reason of this PrimaryStatus.
- Reason *enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason `protobuf:"varint,1,opt,name=reason,proto3,enum=google.ads.googleads.v16.enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason,oneof" json:"reason,omitempty"`
+ Reason *enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason `protobuf:"varint,1,opt,name=reason,proto3,enum=google.ads.googleads.v17.enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason,oneof" json:"reason,omitempty"`
// Provides the PrimaryStatus of this status detail.
- Status *enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus `protobuf:"varint,2,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus,oneof" json:"status,omitempty"`
+ Status *enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus `protobuf:"varint,2,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus,oneof" json:"status,omitempty"`
// Provides the details associated with the asset link primary status.
//
// Types that are assignable to Details:
@@ -130,7 +130,7 @@ type AssetLinkPrimaryStatusDetails struct {
func (x *AssetLinkPrimaryStatusDetails) Reset() {
*x = AssetLinkPrimaryStatusDetails{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_policy_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_asset_policy_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -143,7 +143,7 @@ func (x *AssetLinkPrimaryStatusDetails) String() string {
func (*AssetLinkPrimaryStatusDetails) ProtoMessage() {}
func (x *AssetLinkPrimaryStatusDetails) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_policy_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_asset_policy_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -156,7 +156,7 @@ func (x *AssetLinkPrimaryStatusDetails) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetLinkPrimaryStatusDetails.ProtoReflect.Descriptor instead.
func (*AssetLinkPrimaryStatusDetails) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_policy_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_asset_policy_proto_rawDescGZIP(), []int{1}
}
func (x *AssetLinkPrimaryStatusDetails) GetReason() enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason {
@@ -205,13 +205,13 @@ type AssetDisapproved struct {
unknownFields protoimpl.UnknownFields
// Provides the quality evaluation disapproval reason of an asset.
- OfflineEvaluationErrorReasons []enums.AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons `protobuf:"varint,1,rep,packed,name=offline_evaluation_error_reasons,json=offlineEvaluationErrorReasons,proto3,enum=google.ads.googleads.v16.enums.AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons" json:"offline_evaluation_error_reasons,omitempty"`
+ OfflineEvaluationErrorReasons []enums.AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons `protobuf:"varint,1,rep,packed,name=offline_evaluation_error_reasons,json=offlineEvaluationErrorReasons,proto3,enum=google.ads.googleads.v17.enums.AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons" json:"offline_evaluation_error_reasons,omitempty"`
}
func (x *AssetDisapproved) Reset() {
*x = AssetDisapproved{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_policy_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_asset_policy_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -224,7 +224,7 @@ func (x *AssetDisapproved) String() string {
func (*AssetDisapproved) ProtoMessage() {}
func (x *AssetDisapproved) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_policy_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_asset_policy_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -237,7 +237,7 @@ func (x *AssetDisapproved) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetDisapproved.ProtoReflect.Descriptor instead.
func (*AssetDisapproved) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_policy_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_common_asset_policy_proto_rawDescGZIP(), []int{2}
}
func (x *AssetDisapproved) GetOfflineEvaluationErrorReasons() []enums.AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons {
@@ -247,36 +247,36 @@ func (x *AssetDisapproved) GetOfflineEvaluationErrorReasons() []enums.AssetOffli
return nil
}
-var File_google_ads_googleads_v16_common_asset_policy_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_asset_policy_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_asset_policy_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_asset_policy_proto_rawDesc = []byte{
0x0a, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x2c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x70,
0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x70,
0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x72, 0x65,
0x61, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x4b, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74,
0x5f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x65, 0x76, 0x61, 0x6c, 0x75, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e,
0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x61,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x61,
0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x72, 0x65, 0x76, 0x69,
0x65, 0x77, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,
0xe3, 0x02, 0x0a, 0x14, 0x41, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63,
@@ -284,12 +284,12 @@ var file_google_ads_googleads_v16_common_asset_policy_proto_rawDesc = []byte{
0x63, 0x79, 0x5f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f, 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73,
0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54,
0x6f, 0x70, 0x69, 0x63, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x12, 0x70, 0x6f, 0x6c, 0x69, 0x63,
0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x45, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x12, 0x6e, 0x0a,
0x0d, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02,
0x20, 0x01, 0x28, 0x0e, 0x32, 0x49, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x76, 0x69,
0x65, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x6f, 0x6c,
0x69, 0x63, 0x79, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
@@ -297,7 +297,7 @@ var file_google_ads_googleads_v16_common_asset_policy_proto_rawDesc = []byte{
0x0f, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x41, 0x70,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x41, 0x70,
0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d,
0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x41, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0e, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x53,
@@ -306,14 +306,14 @@ var file_google_ads_googleads_v16_common_asset_policy_proto_rawDesc = []byte{
0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x7a, 0x0a, 0x06, 0x72, 0x65, 0x61, 0x73, 0x6f,
0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69,
0x6e, 0x6b, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c,
0x69, 0x6e, 0x6b, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x48, 0x01, 0x52, 0x06, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e,
0x88, 0x01, 0x01, 0x12, 0x6e, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20,
0x01, 0x28, 0x0e, 0x32, 0x51, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72,
0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79,
@@ -321,7 +321,7 @@ var file_google_ads_googleads_v16_common_asset_policy_proto_rawDesc = []byte{
0x88, 0x01, 0x01, 0x12, 0x60, 0x0a, 0x11, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x64, 0x69, 0x73,
0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x44, 0x69, 0x73, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65,
0x64, 0x48, 0x00, 0x52, 0x10, 0x61, 0x73, 0x73, 0x65, 0x74, 0x44, 0x69, 0x73, 0x61, 0x70, 0x70,
0x72, 0x6f, 0x76, 0x65, 0x64, 0x42, 0x09, 0x0a, 0x07, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73,
@@ -332,7 +332,7 @@ var file_google_ads_googleads_v16_common_asset_policy_proto_rawDesc = []byte{
0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73,
0x18, 0x01, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x69, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x66, 0x66,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x66, 0x66,
0x6c, 0x69, 0x6e, 0x65, 0x45, 0x76, 0x61, 0x6c, 0x75, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41,
0x73, 0x73, 0x65, 0x74, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x45, 0x76, 0x61, 0x6c, 0x75,
@@ -341,54 +341,54 @@ var file_google_ads_googleads_v16_common_asset_policy_proto_rawDesc = []byte{
0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73,
0x42, 0xf0, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x10, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x10, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50,
0x6f, 0x6c, 0x69, 0x63, 0x79, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_asset_policy_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_asset_policy_proto_rawDescData = file_google_ads_googleads_v16_common_asset_policy_proto_rawDesc
+ file_google_ads_googleads_v17_common_asset_policy_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_asset_policy_proto_rawDescData = file_google_ads_googleads_v17_common_asset_policy_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_asset_policy_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_asset_policy_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_asset_policy_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_asset_policy_proto_rawDescData)
+func file_google_ads_googleads_v17_common_asset_policy_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_asset_policy_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_asset_policy_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_asset_policy_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_asset_policy_proto_rawDescData
+ return file_google_ads_googleads_v17_common_asset_policy_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_asset_policy_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
-var file_google_ads_googleads_v16_common_asset_policy_proto_goTypes = []interface{}{
- (*AdAssetPolicySummary)(nil), // 0: google.ads.googleads.v16.common.AdAssetPolicySummary
- (*AssetLinkPrimaryStatusDetails)(nil), // 1: google.ads.googleads.v16.common.AssetLinkPrimaryStatusDetails
- (*AssetDisapproved)(nil), // 2: google.ads.googleads.v16.common.AssetDisapproved
- (*PolicyTopicEntry)(nil), // 3: google.ads.googleads.v16.common.PolicyTopicEntry
- (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 4: google.ads.googleads.v16.enums.PolicyReviewStatusEnum.PolicyReviewStatus
- (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 5: google.ads.googleads.v16.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus
- (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 6: google.ads.googleads.v16.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason
- (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 7: google.ads.googleads.v16.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus
- (enums.AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons)(0), // 8: google.ads.googleads.v16.enums.AssetOfflineEvaluationErrorReasonsEnum.AssetOfflineEvaluationErrorReasons
+var file_google_ads_googleads_v17_common_asset_policy_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
+var file_google_ads_googleads_v17_common_asset_policy_proto_goTypes = []interface{}{
+ (*AdAssetPolicySummary)(nil), // 0: google.ads.googleads.v17.common.AdAssetPolicySummary
+ (*AssetLinkPrimaryStatusDetails)(nil), // 1: google.ads.googleads.v17.common.AssetLinkPrimaryStatusDetails
+ (*AssetDisapproved)(nil), // 2: google.ads.googleads.v17.common.AssetDisapproved
+ (*PolicyTopicEntry)(nil), // 3: google.ads.googleads.v17.common.PolicyTopicEntry
+ (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 4: google.ads.googleads.v17.enums.PolicyReviewStatusEnum.PolicyReviewStatus
+ (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 5: google.ads.googleads.v17.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus
+ (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 6: google.ads.googleads.v17.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason
+ (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 7: google.ads.googleads.v17.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus
+ (enums.AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons)(0), // 8: google.ads.googleads.v17.enums.AssetOfflineEvaluationErrorReasonsEnum.AssetOfflineEvaluationErrorReasons
}
-var file_google_ads_googleads_v16_common_asset_policy_proto_depIdxs = []int32{
- 3, // 0: google.ads.googleads.v16.common.AdAssetPolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v16.common.PolicyTopicEntry
- 4, // 1: google.ads.googleads.v16.common.AdAssetPolicySummary.review_status:type_name -> google.ads.googleads.v16.enums.PolicyReviewStatusEnum.PolicyReviewStatus
- 5, // 2: google.ads.googleads.v16.common.AdAssetPolicySummary.approval_status:type_name -> google.ads.googleads.v16.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus
- 6, // 3: google.ads.googleads.v16.common.AssetLinkPrimaryStatusDetails.reason:type_name -> google.ads.googleads.v16.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason
- 7, // 4: google.ads.googleads.v16.common.AssetLinkPrimaryStatusDetails.status:type_name -> google.ads.googleads.v16.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus
- 2, // 5: google.ads.googleads.v16.common.AssetLinkPrimaryStatusDetails.asset_disapproved:type_name -> google.ads.googleads.v16.common.AssetDisapproved
- 8, // 6: google.ads.googleads.v16.common.AssetDisapproved.offline_evaluation_error_reasons:type_name -> google.ads.googleads.v16.enums.AssetOfflineEvaluationErrorReasonsEnum.AssetOfflineEvaluationErrorReasons
+var file_google_ads_googleads_v17_common_asset_policy_proto_depIdxs = []int32{
+ 3, // 0: google.ads.googleads.v17.common.AdAssetPolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v17.common.PolicyTopicEntry
+ 4, // 1: google.ads.googleads.v17.common.AdAssetPolicySummary.review_status:type_name -> google.ads.googleads.v17.enums.PolicyReviewStatusEnum.PolicyReviewStatus
+ 5, // 2: google.ads.googleads.v17.common.AdAssetPolicySummary.approval_status:type_name -> google.ads.googleads.v17.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus
+ 6, // 3: google.ads.googleads.v17.common.AssetLinkPrimaryStatusDetails.reason:type_name -> google.ads.googleads.v17.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason
+ 7, // 4: google.ads.googleads.v17.common.AssetLinkPrimaryStatusDetails.status:type_name -> google.ads.googleads.v17.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus
+ 2, // 5: google.ads.googleads.v17.common.AssetLinkPrimaryStatusDetails.asset_disapproved:type_name -> google.ads.googleads.v17.common.AssetDisapproved
+ 8, // 6: google.ads.googleads.v17.common.AssetDisapproved.offline_evaluation_error_reasons:type_name -> google.ads.googleads.v17.enums.AssetOfflineEvaluationErrorReasonsEnum.AssetOfflineEvaluationErrorReasons
7, // [7:7] is the sub-list for method output_type
7, // [7:7] is the sub-list for method input_type
7, // [7:7] is the sub-list for extension type_name
@@ -396,14 +396,14 @@ var file_google_ads_googleads_v16_common_asset_policy_proto_depIdxs = []int32{
0, // [0:7] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_asset_policy_proto_init() }
-func file_google_ads_googleads_v16_common_asset_policy_proto_init() {
- if File_google_ads_googleads_v16_common_asset_policy_proto != nil {
+func init() { file_google_ads_googleads_v17_common_asset_policy_proto_init() }
+func file_google_ads_googleads_v17_common_asset_policy_proto_init() {
+ if File_google_ads_googleads_v17_common_asset_policy_proto != nil {
return
}
- file_google_ads_googleads_v16_common_policy_proto_init()
+ file_google_ads_googleads_v17_common_policy_proto_init()
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_asset_policy_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_policy_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdAssetPolicySummary); i {
case 0:
return &v.state
@@ -415,7 +415,7 @@ func file_google_ads_googleads_v16_common_asset_policy_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_policy_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_policy_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetLinkPrimaryStatusDetails); i {
case 0:
return &v.state
@@ -427,7 +427,7 @@ func file_google_ads_googleads_v16_common_asset_policy_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_policy_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_policy_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetDisapproved); i {
case 0:
return &v.state
@@ -440,25 +440,25 @@ func file_google_ads_googleads_v16_common_asset_policy_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_asset_policy_proto_msgTypes[1].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_asset_policy_proto_msgTypes[1].OneofWrappers = []interface{}{
(*AssetLinkPrimaryStatusDetails_AssetDisapproved)(nil),
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_asset_policy_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_asset_policy_proto_rawDesc,
NumEnums: 0,
NumMessages: 3,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_asset_policy_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_asset_policy_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_asset_policy_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_asset_policy_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_asset_policy_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_asset_policy_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_asset_policy_proto = out.File
- file_google_ads_googleads_v16_common_asset_policy_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_asset_policy_proto_goTypes = nil
- file_google_ads_googleads_v16_common_asset_policy_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_asset_policy_proto = out.File
+ file_google_ads_googleads_v17_common_asset_policy_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_asset_policy_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_asset_policy_proto_depIdxs = nil
}
diff --git a/common/asset_set_types.pb.go b/common/asset_set_types.pb.go
index 6e4e74c9..cfd25c74 100644
--- a/common/asset_set_types.pb.go
+++ b/common/asset_set_types.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/asset_set_types.proto
+// source: google/ads/googleads/v17/common/asset_set_types.proto
package common
@@ -46,7 +46,7 @@ type LocationSet struct {
// Required. Immutable. Location Ownership Type (owned location or affiliate
// location).
- LocationOwnershipType enums.LocationOwnershipTypeEnum_LocationOwnershipType `protobuf:"varint,3,opt,name=location_ownership_type,json=locationOwnershipType,proto3,enum=google.ads.googleads.v16.enums.LocationOwnershipTypeEnum_LocationOwnershipType" json:"location_ownership_type,omitempty"`
+ LocationOwnershipType enums.LocationOwnershipTypeEnum_LocationOwnershipType `protobuf:"varint,3,opt,name=location_ownership_type,json=locationOwnershipType,proto3,enum=google.ads.googleads.v17.enums.LocationOwnershipTypeEnum_LocationOwnershipType" json:"location_ownership_type,omitempty"`
// Location data specific to each sync source.
//
// Types that are assignable to Source:
@@ -60,7 +60,7 @@ type LocationSet struct {
func (x *LocationSet) Reset() {
*x = LocationSet{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -73,7 +73,7 @@ func (x *LocationSet) String() string {
func (*LocationSet) ProtoMessage() {}
func (x *LocationSet) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -86,7 +86,7 @@ func (x *LocationSet) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocationSet.ProtoReflect.Descriptor instead.
func (*LocationSet) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_set_types_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_asset_set_types_proto_rawDescGZIP(), []int{0}
}
func (x *LocationSet) GetLocationOwnershipType() enums.LocationOwnershipTypeEnum_LocationOwnershipType {
@@ -190,7 +190,7 @@ type BusinessProfileLocationSet struct {
func (x *BusinessProfileLocationSet) Reset() {
*x = BusinessProfileLocationSet{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -203,7 +203,7 @@ func (x *BusinessProfileLocationSet) String() string {
func (*BusinessProfileLocationSet) ProtoMessage() {}
func (x *BusinessProfileLocationSet) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -216,7 +216,7 @@ func (x *BusinessProfileLocationSet) ProtoReflect() protoreflect.Message {
// Deprecated: Use BusinessProfileLocationSet.ProtoReflect.Descriptor instead.
func (*BusinessProfileLocationSet) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_set_types_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_asset_set_types_proto_rawDescGZIP(), []int{1}
}
func (x *BusinessProfileLocationSet) GetHttpAuthorizationToken() string {
@@ -269,7 +269,7 @@ type ChainSet struct {
// Required. Immutable. Relationship type the specified chains have with this
// advertiser.
- RelationshipType enums.ChainRelationshipTypeEnum_ChainRelationshipType `protobuf:"varint,1,opt,name=relationship_type,json=relationshipType,proto3,enum=google.ads.googleads.v16.enums.ChainRelationshipTypeEnum_ChainRelationshipType" json:"relationship_type,omitempty"`
+ RelationshipType enums.ChainRelationshipTypeEnum_ChainRelationshipType `protobuf:"varint,1,opt,name=relationship_type,json=relationshipType,proto3,enum=google.ads.googleads.v17.enums.ChainRelationshipTypeEnum_ChainRelationshipType" json:"relationship_type,omitempty"`
// Required. A list of chain level filters, all filters are OR'ed together.
Chains []*ChainFilter `protobuf:"bytes,2,rep,name=chains,proto3" json:"chains,omitempty"`
}
@@ -277,7 +277,7 @@ type ChainSet struct {
func (x *ChainSet) Reset() {
*x = ChainSet{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -290,7 +290,7 @@ func (x *ChainSet) String() string {
func (*ChainSet) ProtoMessage() {}
func (x *ChainSet) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -303,7 +303,7 @@ func (x *ChainSet) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChainSet.ProtoReflect.Descriptor instead.
func (*ChainSet) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_set_types_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_common_asset_set_types_proto_rawDescGZIP(), []int{2}
}
func (x *ChainSet) GetRelationshipType() enums.ChainRelationshipTypeEnum_ChainRelationshipType {
@@ -340,7 +340,7 @@ type ChainFilter struct {
func (x *ChainFilter) Reset() {
*x = ChainFilter{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -353,7 +353,7 @@ func (x *ChainFilter) String() string {
func (*ChainFilter) ProtoMessage() {}
func (x *ChainFilter) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -366,7 +366,7 @@ func (x *ChainFilter) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChainFilter.ProtoReflect.Descriptor instead.
func (*ChainFilter) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_set_types_proto_rawDescGZIP(), []int{3}
+ return file_google_ads_googleads_v17_common_asset_set_types_proto_rawDescGZIP(), []int{3}
}
func (x *ChainFilter) GetChainId() int64 {
@@ -396,7 +396,7 @@ type MapsLocationSet struct {
func (x *MapsLocationSet) Reset() {
*x = MapsLocationSet{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -409,7 +409,7 @@ func (x *MapsLocationSet) String() string {
func (*MapsLocationSet) ProtoMessage() {}
func (x *MapsLocationSet) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -422,7 +422,7 @@ func (x *MapsLocationSet) ProtoReflect() protoreflect.Message {
// Deprecated: Use MapsLocationSet.ProtoReflect.Descriptor instead.
func (*MapsLocationSet) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_set_types_proto_rawDescGZIP(), []int{4}
+ return file_google_ads_googleads_v17_common_asset_set_types_proto_rawDescGZIP(), []int{4}
}
func (x *MapsLocationSet) GetMapsLocations() []*MapsLocationInfo {
@@ -445,7 +445,7 @@ type MapsLocationInfo struct {
func (x *MapsLocationInfo) Reset() {
*x = MapsLocationInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -458,7 +458,7 @@ func (x *MapsLocationInfo) String() string {
func (*MapsLocationInfo) ProtoMessage() {}
func (x *MapsLocationInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -471,7 +471,7 @@ func (x *MapsLocationInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use MapsLocationInfo.ProtoReflect.Descriptor instead.
func (*MapsLocationInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_set_types_proto_rawDescGZIP(), []int{5}
+ return file_google_ads_googleads_v17_common_asset_set_types_proto_rawDescGZIP(), []int{5}
}
func (x *MapsLocationInfo) GetPlaceId() string {
@@ -496,7 +496,7 @@ type BusinessProfileLocationGroup struct {
func (x *BusinessProfileLocationGroup) Reset() {
*x = BusinessProfileLocationGroup{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -509,7 +509,7 @@ func (x *BusinessProfileLocationGroup) String() string {
func (*BusinessProfileLocationGroup) ProtoMessage() {}
func (x *BusinessProfileLocationGroup) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -522,7 +522,7 @@ func (x *BusinessProfileLocationGroup) ProtoReflect() protoreflect.Message {
// Deprecated: Use BusinessProfileLocationGroup.ProtoReflect.Descriptor instead.
func (*BusinessProfileLocationGroup) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_set_types_proto_rawDescGZIP(), []int{6}
+ return file_google_ads_googleads_v17_common_asset_set_types_proto_rawDescGZIP(), []int{6}
}
func (x *BusinessProfileLocationGroup) GetDynamicBusinessProfileLocationGroupFilter() *DynamicBusinessProfileLocationGroupFilter {
@@ -552,7 +552,7 @@ type DynamicBusinessProfileLocationGroupFilter struct {
func (x *DynamicBusinessProfileLocationGroupFilter) Reset() {
*x = DynamicBusinessProfileLocationGroupFilter{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -565,7 +565,7 @@ func (x *DynamicBusinessProfileLocationGroupFilter) String() string {
func (*DynamicBusinessProfileLocationGroupFilter) ProtoMessage() {}
func (x *DynamicBusinessProfileLocationGroupFilter) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -578,7 +578,7 @@ func (x *DynamicBusinessProfileLocationGroupFilter) ProtoReflect() protoreflect.
// Deprecated: Use DynamicBusinessProfileLocationGroupFilter.ProtoReflect.Descriptor instead.
func (*DynamicBusinessProfileLocationGroupFilter) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_set_types_proto_rawDescGZIP(), []int{7}
+ return file_google_ads_googleads_v17_common_asset_set_types_proto_rawDescGZIP(), []int{7}
}
func (x *DynamicBusinessProfileLocationGroupFilter) GetLabelFilters() []string {
@@ -611,13 +611,13 @@ type BusinessProfileBusinessNameFilter struct {
// Business name string to use for filtering.
BusinessName string `protobuf:"bytes,1,opt,name=business_name,json=businessName,proto3" json:"business_name,omitempty"`
// The type of string matching to use when filtering with business_name.
- FilterType enums.LocationStringFilterTypeEnum_LocationStringFilterType `protobuf:"varint,2,opt,name=filter_type,json=filterType,proto3,enum=google.ads.googleads.v16.enums.LocationStringFilterTypeEnum_LocationStringFilterType" json:"filter_type,omitempty"`
+ FilterType enums.LocationStringFilterTypeEnum_LocationStringFilterType `protobuf:"varint,2,opt,name=filter_type,json=filterType,proto3,enum=google.ads.googleads.v17.enums.LocationStringFilterTypeEnum_LocationStringFilterType" json:"filter_type,omitempty"`
}
func (x *BusinessProfileBusinessNameFilter) Reset() {
*x = BusinessProfileBusinessNameFilter{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -630,7 +630,7 @@ func (x *BusinessProfileBusinessNameFilter) String() string {
func (*BusinessProfileBusinessNameFilter) ProtoMessage() {}
func (x *BusinessProfileBusinessNameFilter) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -643,7 +643,7 @@ func (x *BusinessProfileBusinessNameFilter) ProtoReflect() protoreflect.Message
// Deprecated: Use BusinessProfileBusinessNameFilter.ProtoReflect.Descriptor instead.
func (*BusinessProfileBusinessNameFilter) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_set_types_proto_rawDescGZIP(), []int{8}
+ return file_google_ads_googleads_v17_common_asset_set_types_proto_rawDescGZIP(), []int{8}
}
func (x *BusinessProfileBusinessNameFilter) GetBusinessName() string {
@@ -677,7 +677,7 @@ type ChainLocationGroup struct {
func (x *ChainLocationGroup) Reset() {
*x = ChainLocationGroup{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -690,7 +690,7 @@ func (x *ChainLocationGroup) String() string {
func (*ChainLocationGroup) ProtoMessage() {}
func (x *ChainLocationGroup) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -703,7 +703,7 @@ func (x *ChainLocationGroup) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChainLocationGroup.ProtoReflect.Descriptor instead.
func (*ChainLocationGroup) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_set_types_proto_rawDescGZIP(), []int{9}
+ return file_google_ads_googleads_v17_common_asset_set_types_proto_rawDescGZIP(), []int{9}
}
func (x *ChainLocationGroup) GetDynamicChainLocationGroupFilters() []*ChainFilter {
@@ -713,24 +713,24 @@ func (x *ChainLocationGroup) GetDynamicChainLocationGroupFilters() []*ChainFilte
return nil
}
-var File_google_ads_googleads_v16_common_asset_set_types_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_asset_set_types_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_asset_set_types_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_asset_set_types_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x5f, 0x72,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x5f, 0x72,
0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
0x6f, 0x77, 0x6e, 0x65, 0x72, 0x73, 0x68, 0x69, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
@@ -740,7 +740,7 @@ var file_google_ads_googleads_v16_common_asset_set_types_proto_rawDesc = []byte{
0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x73, 0x68, 0x69, 0x70, 0x5f, 0x74,
0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4f, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x73, 0x68, 0x69, 0x70, 0x54, 0x79, 0x70, 0x65,
0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x77, 0x6e,
0x65, 0x72, 0x73, 0x68, 0x69, 0x70, 0x54, 0x79, 0x70, 0x65, 0x42, 0x06, 0xe0, 0x41, 0x02, 0xe0,
@@ -749,7 +749,7 @@ var file_google_ads_googleads_v16_common_asset_set_types_proto_rawDesc = []byte{
0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6c,
0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x3b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x50, 0x72, 0x6f, 0x66,
0x69, 0x6c, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x48, 0x00,
0x52, 0x1a, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c,
@@ -757,12 +757,12 @@ var file_google_ads_googleads_v16_common_asset_set_types_proto_rawDesc = []byte{
0x63, 0x68, 0x61, 0x69, 0x6e, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73,
0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x69, 0x6e,
+ 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x69, 0x6e,
0x53, 0x65, 0x74, 0x48, 0x00, 0x52, 0x10, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x4c, 0x6f, 0x63, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x12, 0x5e, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x73, 0x5f,
0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x18, 0x05, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x30, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x70, 0x73, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x53, 0x65, 0x74, 0x48, 0x00, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x73, 0x4c, 0x6f, 0x63, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x42, 0x08, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63,
@@ -790,7 +790,7 @@ var file_google_ads_googleads_v16_common_asset_set_types_proto_rawDesc = []byte{
0x61, 0x69, 0x6e, 0x53, 0x65, 0x74, 0x12, 0x84, 0x01, 0x0a, 0x11, 0x72, 0x65, 0x6c, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01,
0x28, 0x0e, 0x32, 0x4f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2e, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x73, 0x68, 0x69, 0x70, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x68,
0x61, 0x69, 0x6e, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x54,
@@ -798,7 +798,7 @@ var file_google_ads_googleads_v16_common_asset_set_types_proto_rawDesc = []byte{
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x49, 0x0a,
0x06, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x43, 0x68, 0x61, 0x69, 0x6e, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x02,
0x52, 0x06, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x73, 0x22, 0x5e, 0x0a, 0x0b, 0x43, 0x68, 0x61, 0x69,
0x6e, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x12, 0x1e, 0x0a, 0x08, 0x63, 0x68, 0x61, 0x69, 0x6e,
@@ -810,7 +810,7 @@ var file_google_ads_googleads_v16_common_asset_set_types_proto_rawDesc = []byte{
0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x12, 0x5d, 0x0a, 0x0e, 0x6d,
0x61, 0x70, 0x73, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20,
0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x70, 0x73, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0d, 0x6d, 0x61, 0x70,
0x73, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x2d, 0x0a, 0x10, 0x4d, 0x61,
@@ -823,7 +823,7 @@ var file_google_ads_googleads_v16_common_asset_set_types_proto_rawDesc = []byte{
0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x01, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x4a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x42, 0x75, 0x73,
0x69, 0x6e, 0x65, 0x73, 0x73, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x4c, 0x6f, 0x63, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52,
@@ -838,7 +838,7 @@ var file_google_ads_googleads_v16_common_asset_set_types_proto_rawDesc = []byte{
0x14, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x66,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x42, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x75,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x75,
0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x42, 0x75, 0x73,
0x69, 0x6e, 0x65, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x48,
0x00, 0x52, 0x12, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x46,
@@ -854,7 +854,7 @@ var file_google_ads_googleads_v16_common_asset_set_types_proto_rawDesc = []byte{
0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x76, 0x0a, 0x0b, 0x66, 0x69,
0x6c, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32,
0x55, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x46,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x6f,
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x46, 0x69, 0x6c, 0x74,
@@ -865,68 +865,68 @@ var file_google_ads_googleads_v16_common_asset_set_types_proto_rawDesc = []byte{
0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72,
0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x46,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x46,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, 0x20, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x43, 0x68,
0x61, 0x69, 0x6e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70,
0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x73, 0x42, 0xf2, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42,
0x12, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
- 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_asset_set_types_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_asset_set_types_proto_rawDescData = file_google_ads_googleads_v16_common_asset_set_types_proto_rawDesc
+ file_google_ads_googleads_v17_common_asset_set_types_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_asset_set_types_proto_rawDescData = file_google_ads_googleads_v17_common_asset_set_types_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_asset_set_types_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_asset_set_types_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_asset_set_types_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_asset_set_types_proto_rawDescData)
+func file_google_ads_googleads_v17_common_asset_set_types_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_asset_set_types_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_asset_set_types_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_asset_set_types_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_asset_set_types_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes = make([]protoimpl.MessageInfo, 10)
-var file_google_ads_googleads_v16_common_asset_set_types_proto_goTypes = []interface{}{
- (*LocationSet)(nil), // 0: google.ads.googleads.v16.common.LocationSet
- (*BusinessProfileLocationSet)(nil), // 1: google.ads.googleads.v16.common.BusinessProfileLocationSet
- (*ChainSet)(nil), // 2: google.ads.googleads.v16.common.ChainSet
- (*ChainFilter)(nil), // 3: google.ads.googleads.v16.common.ChainFilter
- (*MapsLocationSet)(nil), // 4: google.ads.googleads.v16.common.MapsLocationSet
- (*MapsLocationInfo)(nil), // 5: google.ads.googleads.v16.common.MapsLocationInfo
- (*BusinessProfileLocationGroup)(nil), // 6: google.ads.googleads.v16.common.BusinessProfileLocationGroup
- (*DynamicBusinessProfileLocationGroupFilter)(nil), // 7: google.ads.googleads.v16.common.DynamicBusinessProfileLocationGroupFilter
- (*BusinessProfileBusinessNameFilter)(nil), // 8: google.ads.googleads.v16.common.BusinessProfileBusinessNameFilter
- (*ChainLocationGroup)(nil), // 9: google.ads.googleads.v16.common.ChainLocationGroup
- (enums.LocationOwnershipTypeEnum_LocationOwnershipType)(0), // 10: google.ads.googleads.v16.enums.LocationOwnershipTypeEnum.LocationOwnershipType
- (enums.ChainRelationshipTypeEnum_ChainRelationshipType)(0), // 11: google.ads.googleads.v16.enums.ChainRelationshipTypeEnum.ChainRelationshipType
- (enums.LocationStringFilterTypeEnum_LocationStringFilterType)(0), // 12: google.ads.googleads.v16.enums.LocationStringFilterTypeEnum.LocationStringFilterType
-}
-var file_google_ads_googleads_v16_common_asset_set_types_proto_depIdxs = []int32{
- 10, // 0: google.ads.googleads.v16.common.LocationSet.location_ownership_type:type_name -> google.ads.googleads.v16.enums.LocationOwnershipTypeEnum.LocationOwnershipType
- 1, // 1: google.ads.googleads.v16.common.LocationSet.business_profile_location_set:type_name -> google.ads.googleads.v16.common.BusinessProfileLocationSet
- 2, // 2: google.ads.googleads.v16.common.LocationSet.chain_location_set:type_name -> google.ads.googleads.v16.common.ChainSet
- 4, // 3: google.ads.googleads.v16.common.LocationSet.maps_location_set:type_name -> google.ads.googleads.v16.common.MapsLocationSet
- 11, // 4: google.ads.googleads.v16.common.ChainSet.relationship_type:type_name -> google.ads.googleads.v16.enums.ChainRelationshipTypeEnum.ChainRelationshipType
- 3, // 5: google.ads.googleads.v16.common.ChainSet.chains:type_name -> google.ads.googleads.v16.common.ChainFilter
- 5, // 6: google.ads.googleads.v16.common.MapsLocationSet.maps_locations:type_name -> google.ads.googleads.v16.common.MapsLocationInfo
- 7, // 7: google.ads.googleads.v16.common.BusinessProfileLocationGroup.dynamic_business_profile_location_group_filter:type_name -> google.ads.googleads.v16.common.DynamicBusinessProfileLocationGroupFilter
- 8, // 8: google.ads.googleads.v16.common.DynamicBusinessProfileLocationGroupFilter.business_name_filter:type_name -> google.ads.googleads.v16.common.BusinessProfileBusinessNameFilter
- 12, // 9: google.ads.googleads.v16.common.BusinessProfileBusinessNameFilter.filter_type:type_name -> google.ads.googleads.v16.enums.LocationStringFilterTypeEnum.LocationStringFilterType
- 3, // 10: google.ads.googleads.v16.common.ChainLocationGroup.dynamic_chain_location_group_filters:type_name -> google.ads.googleads.v16.common.ChainFilter
+ return file_google_ads_googleads_v17_common_asset_set_types_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes = make([]protoimpl.MessageInfo, 10)
+var file_google_ads_googleads_v17_common_asset_set_types_proto_goTypes = []interface{}{
+ (*LocationSet)(nil), // 0: google.ads.googleads.v17.common.LocationSet
+ (*BusinessProfileLocationSet)(nil), // 1: google.ads.googleads.v17.common.BusinessProfileLocationSet
+ (*ChainSet)(nil), // 2: google.ads.googleads.v17.common.ChainSet
+ (*ChainFilter)(nil), // 3: google.ads.googleads.v17.common.ChainFilter
+ (*MapsLocationSet)(nil), // 4: google.ads.googleads.v17.common.MapsLocationSet
+ (*MapsLocationInfo)(nil), // 5: google.ads.googleads.v17.common.MapsLocationInfo
+ (*BusinessProfileLocationGroup)(nil), // 6: google.ads.googleads.v17.common.BusinessProfileLocationGroup
+ (*DynamicBusinessProfileLocationGroupFilter)(nil), // 7: google.ads.googleads.v17.common.DynamicBusinessProfileLocationGroupFilter
+ (*BusinessProfileBusinessNameFilter)(nil), // 8: google.ads.googleads.v17.common.BusinessProfileBusinessNameFilter
+ (*ChainLocationGroup)(nil), // 9: google.ads.googleads.v17.common.ChainLocationGroup
+ (enums.LocationOwnershipTypeEnum_LocationOwnershipType)(0), // 10: google.ads.googleads.v17.enums.LocationOwnershipTypeEnum.LocationOwnershipType
+ (enums.ChainRelationshipTypeEnum_ChainRelationshipType)(0), // 11: google.ads.googleads.v17.enums.ChainRelationshipTypeEnum.ChainRelationshipType
+ (enums.LocationStringFilterTypeEnum_LocationStringFilterType)(0), // 12: google.ads.googleads.v17.enums.LocationStringFilterTypeEnum.LocationStringFilterType
+}
+var file_google_ads_googleads_v17_common_asset_set_types_proto_depIdxs = []int32{
+ 10, // 0: google.ads.googleads.v17.common.LocationSet.location_ownership_type:type_name -> google.ads.googleads.v17.enums.LocationOwnershipTypeEnum.LocationOwnershipType
+ 1, // 1: google.ads.googleads.v17.common.LocationSet.business_profile_location_set:type_name -> google.ads.googleads.v17.common.BusinessProfileLocationSet
+ 2, // 2: google.ads.googleads.v17.common.LocationSet.chain_location_set:type_name -> google.ads.googleads.v17.common.ChainSet
+ 4, // 3: google.ads.googleads.v17.common.LocationSet.maps_location_set:type_name -> google.ads.googleads.v17.common.MapsLocationSet
+ 11, // 4: google.ads.googleads.v17.common.ChainSet.relationship_type:type_name -> google.ads.googleads.v17.enums.ChainRelationshipTypeEnum.ChainRelationshipType
+ 3, // 5: google.ads.googleads.v17.common.ChainSet.chains:type_name -> google.ads.googleads.v17.common.ChainFilter
+ 5, // 6: google.ads.googleads.v17.common.MapsLocationSet.maps_locations:type_name -> google.ads.googleads.v17.common.MapsLocationInfo
+ 7, // 7: google.ads.googleads.v17.common.BusinessProfileLocationGroup.dynamic_business_profile_location_group_filter:type_name -> google.ads.googleads.v17.common.DynamicBusinessProfileLocationGroupFilter
+ 8, // 8: google.ads.googleads.v17.common.DynamicBusinessProfileLocationGroupFilter.business_name_filter:type_name -> google.ads.googleads.v17.common.BusinessProfileBusinessNameFilter
+ 12, // 9: google.ads.googleads.v17.common.BusinessProfileBusinessNameFilter.filter_type:type_name -> google.ads.googleads.v17.enums.LocationStringFilterTypeEnum.LocationStringFilterType
+ 3, // 10: google.ads.googleads.v17.common.ChainLocationGroup.dynamic_chain_location_group_filters:type_name -> google.ads.googleads.v17.common.ChainFilter
11, // [11:11] is the sub-list for method output_type
11, // [11:11] is the sub-list for method input_type
11, // [11:11] is the sub-list for extension type_name
@@ -934,13 +934,13 @@ var file_google_ads_googleads_v16_common_asset_set_types_proto_depIdxs = []int32
0, // [0:11] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_asset_set_types_proto_init() }
-func file_google_ads_googleads_v16_common_asset_set_types_proto_init() {
- if File_google_ads_googleads_v16_common_asset_set_types_proto != nil {
+func init() { file_google_ads_googleads_v17_common_asset_set_types_proto_init() }
+func file_google_ads_googleads_v17_common_asset_set_types_proto_init() {
+ if File_google_ads_googleads_v17_common_asset_set_types_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocationSet); i {
case 0:
return &v.state
@@ -952,7 +952,7 @@ func file_google_ads_googleads_v16_common_asset_set_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BusinessProfileLocationSet); i {
case 0:
return &v.state
@@ -964,7 +964,7 @@ func file_google_ads_googleads_v16_common_asset_set_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ChainSet); i {
case 0:
return &v.state
@@ -976,7 +976,7 @@ func file_google_ads_googleads_v16_common_asset_set_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ChainFilter); i {
case 0:
return &v.state
@@ -988,7 +988,7 @@ func file_google_ads_googleads_v16_common_asset_set_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MapsLocationSet); i {
case 0:
return &v.state
@@ -1000,7 +1000,7 @@ func file_google_ads_googleads_v16_common_asset_set_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MapsLocationInfo); i {
case 0:
return &v.state
@@ -1012,7 +1012,7 @@ func file_google_ads_googleads_v16_common_asset_set_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BusinessProfileLocationGroup); i {
case 0:
return &v.state
@@ -1024,7 +1024,7 @@ func file_google_ads_googleads_v16_common_asset_set_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DynamicBusinessProfileLocationGroupFilter); i {
case 0:
return &v.state
@@ -1036,7 +1036,7 @@ func file_google_ads_googleads_v16_common_asset_set_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BusinessProfileBusinessNameFilter); i {
case 0:
return &v.state
@@ -1048,7 +1048,7 @@ func file_google_ads_googleads_v16_common_asset_set_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ChainLocationGroup); i {
case 0:
return &v.state
@@ -1061,28 +1061,28 @@ func file_google_ads_googleads_v16_common_asset_set_types_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[0].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[0].OneofWrappers = []interface{}{
(*LocationSet_BusinessProfileLocationSet)(nil),
(*LocationSet_ChainLocationSet)(nil),
(*LocationSet_MapsLocationSet)(nil),
}
- file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes[7].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes[7].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_asset_set_types_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_asset_set_types_proto_rawDesc,
NumEnums: 0,
NumMessages: 10,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_asset_set_types_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_asset_set_types_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_asset_set_types_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_asset_set_types_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_asset_set_types_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_asset_set_types_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_asset_set_types_proto = out.File
- file_google_ads_googleads_v16_common_asset_set_types_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_asset_set_types_proto_goTypes = nil
- file_google_ads_googleads_v16_common_asset_set_types_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_asset_set_types_proto = out.File
+ file_google_ads_googleads_v17_common_asset_set_types_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_asset_set_types_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_asset_set_types_proto_depIdxs = nil
}
diff --git a/common/asset_types.pb.go b/common/asset_types.pb.go
index f8c7e678..7dae4e3c 100644
--- a/common/asset_types.pb.go
+++ b/common/asset_types.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/asset_types.proto
+// source: google/ads/googleads/v17/common/asset_types.proto
package common
@@ -52,7 +52,7 @@ type YoutubeVideoAsset struct {
func (x *YoutubeVideoAsset) Reset() {
*x = YoutubeVideoAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -65,7 +65,7 @@ func (x *YoutubeVideoAsset) String() string {
func (*YoutubeVideoAsset) ProtoMessage() {}
func (x *YoutubeVideoAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -78,7 +78,7 @@ func (x *YoutubeVideoAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use YoutubeVideoAsset.ProtoReflect.Descriptor instead.
func (*YoutubeVideoAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{0}
}
func (x *YoutubeVideoAsset) GetYoutubeVideoId() string {
@@ -111,7 +111,7 @@ type MediaBundleAsset struct {
func (x *MediaBundleAsset) Reset() {
*x = MediaBundleAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -124,7 +124,7 @@ func (x *MediaBundleAsset) String() string {
func (*MediaBundleAsset) ProtoMessage() {}
func (x *MediaBundleAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -137,7 +137,7 @@ func (x *MediaBundleAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use MediaBundleAsset.ProtoReflect.Descriptor instead.
func (*MediaBundleAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{1}
}
func (x *MediaBundleAsset) GetData() []byte {
@@ -158,7 +158,7 @@ type ImageAsset struct {
// File size of the image asset in bytes.
FileSize *int64 `protobuf:"varint,6,opt,name=file_size,json=fileSize,proto3,oneof" json:"file_size,omitempty"`
// MIME type of the image asset.
- MimeType enums.MimeTypeEnum_MimeType `protobuf:"varint,3,opt,name=mime_type,json=mimeType,proto3,enum=google.ads.googleads.v16.enums.MimeTypeEnum_MimeType" json:"mime_type,omitempty"`
+ MimeType enums.MimeTypeEnum_MimeType `protobuf:"varint,3,opt,name=mime_type,json=mimeType,proto3,enum=google.ads.googleads.v17.enums.MimeTypeEnum_MimeType" json:"mime_type,omitempty"`
// Metadata for this image at its original size.
FullSize *ImageDimension `protobuf:"bytes,4,opt,name=full_size,json=fullSize,proto3" json:"full_size,omitempty"`
}
@@ -166,7 +166,7 @@ type ImageAsset struct {
func (x *ImageAsset) Reset() {
*x = ImageAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -179,7 +179,7 @@ func (x *ImageAsset) String() string {
func (*ImageAsset) ProtoMessage() {}
func (x *ImageAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -192,7 +192,7 @@ func (x *ImageAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use ImageAsset.ProtoReflect.Descriptor instead.
func (*ImageAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{2}
}
func (x *ImageAsset) GetData() []byte {
@@ -240,7 +240,7 @@ type ImageDimension struct {
func (x *ImageDimension) Reset() {
*x = ImageDimension{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -253,7 +253,7 @@ func (x *ImageDimension) String() string {
func (*ImageDimension) ProtoMessage() {}
func (x *ImageDimension) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -266,7 +266,7 @@ func (x *ImageDimension) ProtoReflect() protoreflect.Message {
// Deprecated: Use ImageDimension.ProtoReflect.Descriptor instead.
func (*ImageDimension) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{3}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{3}
}
func (x *ImageDimension) GetHeightPixels() int64 {
@@ -303,7 +303,7 @@ type TextAsset struct {
func (x *TextAsset) Reset() {
*x = TextAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -316,7 +316,7 @@ func (x *TextAsset) String() string {
func (*TextAsset) ProtoMessage() {}
func (x *TextAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -329,7 +329,7 @@ func (x *TextAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use TextAsset.ProtoReflect.Descriptor instead.
func (*TextAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{4}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{4}
}
func (x *TextAsset) GetText() string {
@@ -348,7 +348,7 @@ type LeadFormAsset struct {
// Required. The name of the business being advertised.
BusinessName string `protobuf:"bytes,10,opt,name=business_name,json=businessName,proto3" json:"business_name,omitempty"`
// Required. Pre-defined display text that encourages user to expand the form.
- CallToActionType enums.LeadFormCallToActionTypeEnum_LeadFormCallToActionType `protobuf:"varint,17,opt,name=call_to_action_type,json=callToActionType,proto3,enum=google.ads.googleads.v16.enums.LeadFormCallToActionTypeEnum_LeadFormCallToActionType" json:"call_to_action_type,omitempty"`
+ CallToActionType enums.LeadFormCallToActionTypeEnum_LeadFormCallToActionType `protobuf:"varint,17,opt,name=call_to_action_type,json=callToActionType,proto3,enum=google.ads.googleads.v17.enums.LeadFormCallToActionTypeEnum_LeadFormCallToActionType" json:"call_to_action_type,omitempty"`
// Required. Text giving a clear value proposition of what users expect once
// they expand the form.
CallToActionDescription string `protobuf:"bytes,18,opt,name=call_to_action_description,json=callToActionDescription,proto3" json:"call_to_action_description,omitempty"`
@@ -378,13 +378,13 @@ type LeadFormAsset struct {
DeliveryMethods []*LeadFormDeliveryMethod `protobuf:"bytes,9,rep,name=delivery_methods,json=deliveryMethods,proto3" json:"delivery_methods,omitempty"`
// Pre-defined display text that encourages user action after the form is
// submitted.
- PostSubmitCallToActionType enums.LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType `protobuf:"varint,19,opt,name=post_submit_call_to_action_type,json=postSubmitCallToActionType,proto3,enum=google.ads.googleads.v16.enums.LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType" json:"post_submit_call_to_action_type,omitempty"`
+ PostSubmitCallToActionType enums.LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType `protobuf:"varint,19,opt,name=post_submit_call_to_action_type,json=postSubmitCallToActionType,proto3,enum=google.ads.googleads.v17.enums.LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType" json:"post_submit_call_to_action_type,omitempty"`
// Asset resource name of the background image.
// The image dimensions must be exactly 1200x628.
BackgroundImageAsset *string `protobuf:"bytes,20,opt,name=background_image_asset,json=backgroundImageAsset,proto3,oneof" json:"background_image_asset,omitempty"`
// Chosen intent for the lead form, for example, more volume or more
// qualified.
- DesiredIntent enums.LeadFormDesiredIntentEnum_LeadFormDesiredIntent `protobuf:"varint,21,opt,name=desired_intent,json=desiredIntent,proto3,enum=google.ads.googleads.v16.enums.LeadFormDesiredIntentEnum_LeadFormDesiredIntent" json:"desired_intent,omitempty"`
+ DesiredIntent enums.LeadFormDesiredIntentEnum_LeadFormDesiredIntent `protobuf:"varint,21,opt,name=desired_intent,json=desiredIntent,proto3,enum=google.ads.googleads.v17.enums.LeadFormDesiredIntentEnum_LeadFormDesiredIntent" json:"desired_intent,omitempty"`
// Custom disclosure shown along with Google disclaimer on the lead form.
// Accessible to allowed customers only.
CustomDisclosure *string `protobuf:"bytes,22,opt,name=custom_disclosure,json=customDisclosure,proto3,oneof" json:"custom_disclosure,omitempty"`
@@ -393,7 +393,7 @@ type LeadFormAsset struct {
func (x *LeadFormAsset) Reset() {
*x = LeadFormAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -406,7 +406,7 @@ func (x *LeadFormAsset) String() string {
func (*LeadFormAsset) ProtoMessage() {}
func (x *LeadFormAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -419,7 +419,7 @@ func (x *LeadFormAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use LeadFormAsset.ProtoReflect.Descriptor instead.
func (*LeadFormAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{5}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{5}
}
func (x *LeadFormAsset) GetBusinessName() string {
@@ -535,7 +535,7 @@ type LeadFormField struct {
// Describes the input type, which may be a predefined type such as "full
// name" or a pre-vetted question like "What kind of vehicle do you have?".
- InputType enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType `protobuf:"varint,1,opt,name=input_type,json=inputType,proto3,enum=google.ads.googleads.v16.enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType" json:"input_type,omitempty"`
+ InputType enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType `protobuf:"varint,1,opt,name=input_type,json=inputType,proto3,enum=google.ads.googleads.v17.enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType" json:"input_type,omitempty"`
// Defines answer configuration that this form field accepts. If oneof is not
// set, this is a free-text answer.
//
@@ -549,7 +549,7 @@ type LeadFormField struct {
func (x *LeadFormField) Reset() {
*x = LeadFormField{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -562,7 +562,7 @@ func (x *LeadFormField) String() string {
func (*LeadFormField) ProtoMessage() {}
func (x *LeadFormField) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -575,7 +575,7 @@ func (x *LeadFormField) ProtoReflect() protoreflect.Message {
// Deprecated: Use LeadFormField.ProtoReflect.Descriptor instead.
func (*LeadFormField) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{6}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{6}
}
func (x *LeadFormField) GetInputType() enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType {
@@ -653,7 +653,7 @@ type LeadFormCustomQuestionField struct {
func (x *LeadFormCustomQuestionField) Reset() {
*x = LeadFormCustomQuestionField{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -666,7 +666,7 @@ func (x *LeadFormCustomQuestionField) String() string {
func (*LeadFormCustomQuestionField) ProtoMessage() {}
func (x *LeadFormCustomQuestionField) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -679,7 +679,7 @@ func (x *LeadFormCustomQuestionField) ProtoReflect() protoreflect.Message {
// Deprecated: Use LeadFormCustomQuestionField.ProtoReflect.Descriptor instead.
func (*LeadFormCustomQuestionField) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{7}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{7}
}
func (x *LeadFormCustomQuestionField) GetCustomQuestionText() string {
@@ -749,7 +749,7 @@ type LeadFormSingleChoiceAnswers struct {
func (x *LeadFormSingleChoiceAnswers) Reset() {
*x = LeadFormSingleChoiceAnswers{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -762,7 +762,7 @@ func (x *LeadFormSingleChoiceAnswers) String() string {
func (*LeadFormSingleChoiceAnswers) ProtoMessage() {}
func (x *LeadFormSingleChoiceAnswers) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -775,7 +775,7 @@ func (x *LeadFormSingleChoiceAnswers) ProtoReflect() protoreflect.Message {
// Deprecated: Use LeadFormSingleChoiceAnswers.ProtoReflect.Descriptor instead.
func (*LeadFormSingleChoiceAnswers) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{8}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{8}
}
func (x *LeadFormSingleChoiceAnswers) GetAnswers() []string {
@@ -802,7 +802,7 @@ type LeadFormDeliveryMethod struct {
func (x *LeadFormDeliveryMethod) Reset() {
*x = LeadFormDeliveryMethod{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -815,7 +815,7 @@ func (x *LeadFormDeliveryMethod) String() string {
func (*LeadFormDeliveryMethod) ProtoMessage() {}
func (x *LeadFormDeliveryMethod) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -828,7 +828,7 @@ func (x *LeadFormDeliveryMethod) ProtoReflect() protoreflect.Message {
// Deprecated: Use LeadFormDeliveryMethod.ProtoReflect.Descriptor instead.
func (*LeadFormDeliveryMethod) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{9}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{9}
}
func (m *LeadFormDeliveryMethod) GetDeliveryDetails() isLeadFormDeliveryMethod_DeliveryDetails {
@@ -875,7 +875,7 @@ type WebhookDelivery struct {
func (x *WebhookDelivery) Reset() {
*x = WebhookDelivery{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -888,7 +888,7 @@ func (x *WebhookDelivery) String() string {
func (*WebhookDelivery) ProtoMessage() {}
func (x *WebhookDelivery) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -901,7 +901,7 @@ func (x *WebhookDelivery) ProtoReflect() protoreflect.Message {
// Deprecated: Use WebhookDelivery.ProtoReflect.Descriptor instead.
func (*WebhookDelivery) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{10}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{10}
}
func (x *WebhookDelivery) GetAdvertiserWebhookUrl() string {
@@ -937,7 +937,7 @@ type BookOnGoogleAsset struct {
func (x *BookOnGoogleAsset) Reset() {
*x = BookOnGoogleAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -950,7 +950,7 @@ func (x *BookOnGoogleAsset) String() string {
func (*BookOnGoogleAsset) ProtoMessage() {}
func (x *BookOnGoogleAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -963,7 +963,7 @@ func (x *BookOnGoogleAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use BookOnGoogleAsset.ProtoReflect.Descriptor instead.
func (*BookOnGoogleAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{11}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{11}
}
// A Promotion asset.
@@ -975,7 +975,7 @@ type PromotionAsset struct {
// Required. A freeform description of what the promotion is targeting.
PromotionTarget string `protobuf:"bytes,1,opt,name=promotion_target,json=promotionTarget,proto3" json:"promotion_target,omitempty"`
// A modifier for qualification of the discount.
- DiscountModifier enums.PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier `protobuf:"varint,2,opt,name=discount_modifier,json=discountModifier,proto3,enum=google.ads.googleads.v16.enums.PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier" json:"discount_modifier,omitempty"`
+ DiscountModifier enums.PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier `protobuf:"varint,2,opt,name=discount_modifier,json=discountModifier,proto3,enum=google.ads.googleads.v17.enums.PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier" json:"discount_modifier,omitempty"`
// Start date of when the promotion is eligible to be redeemed, in yyyy-MM-dd
// format.
RedemptionStartDate string `protobuf:"bytes,7,opt,name=redemption_start_date,json=redemptionStartDate,proto3" json:"redemption_start_date,omitempty"`
@@ -985,7 +985,7 @@ type PromotionAsset struct {
// The occasion the promotion was intended for.
// If an occasion is set, the redemption window will need to fall within the
// date range associated with the occasion.
- Occasion enums.PromotionExtensionOccasionEnum_PromotionExtensionOccasion `protobuf:"varint,9,opt,name=occasion,proto3,enum=google.ads.googleads.v16.enums.PromotionExtensionOccasionEnum_PromotionExtensionOccasion" json:"occasion,omitempty"`
+ Occasion enums.PromotionExtensionOccasionEnum_PromotionExtensionOccasion `protobuf:"varint,9,opt,name=occasion,proto3,enum=google.ads.googleads.v17.enums.PromotionExtensionOccasionEnum_PromotionExtensionOccasion" json:"occasion,omitempty"`
// The language of the promotion.
// Represented as BCP 47 language tag.
LanguageCode string `protobuf:"bytes,10,opt,name=language_code,json=languageCode,proto3" json:"language_code,omitempty"`
@@ -1019,7 +1019,7 @@ type PromotionAsset struct {
func (x *PromotionAsset) Reset() {
*x = PromotionAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[12]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1032,7 +1032,7 @@ func (x *PromotionAsset) String() string {
func (*PromotionAsset) ProtoMessage() {}
func (x *PromotionAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[12]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1045,7 +1045,7 @@ func (x *PromotionAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use PromotionAsset.ProtoReflect.Descriptor instead.
func (*PromotionAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{12}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{12}
}
func (x *PromotionAsset) GetPromotionTarget() string {
@@ -1216,7 +1216,7 @@ type CalloutAsset struct {
func (x *CalloutAsset) Reset() {
*x = CalloutAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[13]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[13]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1229,7 +1229,7 @@ func (x *CalloutAsset) String() string {
func (*CalloutAsset) ProtoMessage() {}
func (x *CalloutAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[13]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[13]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1242,7 +1242,7 @@ func (x *CalloutAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use CalloutAsset.ProtoReflect.Descriptor instead.
func (*CalloutAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{13}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{13}
}
func (x *CalloutAsset) GetCalloutText() string {
@@ -1292,7 +1292,7 @@ type StructuredSnippetAsset struct {
func (x *StructuredSnippetAsset) Reset() {
*x = StructuredSnippetAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[14]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[14]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1305,7 +1305,7 @@ func (x *StructuredSnippetAsset) String() string {
func (*StructuredSnippetAsset) ProtoMessage() {}
func (x *StructuredSnippetAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[14]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[14]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1318,7 +1318,7 @@ func (x *StructuredSnippetAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use StructuredSnippetAsset.ProtoReflect.Descriptor instead.
func (*StructuredSnippetAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{14}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{14}
}
func (x *StructuredSnippetAsset) GetHeader() string {
@@ -1367,7 +1367,7 @@ type SitelinkAsset struct {
func (x *SitelinkAsset) Reset() {
*x = SitelinkAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[15]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[15]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1380,7 +1380,7 @@ func (x *SitelinkAsset) String() string {
func (*SitelinkAsset) ProtoMessage() {}
func (x *SitelinkAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[15]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[15]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1393,7 +1393,7 @@ func (x *SitelinkAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use SitelinkAsset.ProtoReflect.Descriptor instead.
func (*SitelinkAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{15}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{15}
}
func (x *SitelinkAsset) GetLinkText() string {
@@ -1453,7 +1453,7 @@ type PageFeedAsset struct {
func (x *PageFeedAsset) Reset() {
*x = PageFeedAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[16]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[16]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1466,7 +1466,7 @@ func (x *PageFeedAsset) String() string {
func (*PageFeedAsset) ProtoMessage() {}
func (x *PageFeedAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[16]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[16]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1479,7 +1479,7 @@ func (x *PageFeedAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use PageFeedAsset.ProtoReflect.Descriptor instead.
func (*PageFeedAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{16}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{16}
}
func (x *PageFeedAsset) GetPageUrl() string {
@@ -1546,7 +1546,7 @@ type DynamicEducationAsset struct {
func (x *DynamicEducationAsset) Reset() {
*x = DynamicEducationAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[17]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[17]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1559,7 +1559,7 @@ func (x *DynamicEducationAsset) String() string {
func (*DynamicEducationAsset) ProtoMessage() {}
func (x *DynamicEducationAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[17]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[17]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1572,7 +1572,7 @@ func (x *DynamicEducationAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use DynamicEducationAsset.ProtoReflect.Descriptor instead.
func (*DynamicEducationAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{17}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{17}
}
func (x *DynamicEducationAsset) GetProgramId() string {
@@ -1684,7 +1684,7 @@ type MobileAppAsset struct {
// "12345689" for iOS.
AppId string `protobuf:"bytes,1,opt,name=app_id,json=appId,proto3" json:"app_id,omitempty"`
// Required. The application store that distributes this specific app.
- AppStore enums.MobileAppVendorEnum_MobileAppVendor `protobuf:"varint,2,opt,name=app_store,json=appStore,proto3,enum=google.ads.googleads.v16.enums.MobileAppVendorEnum_MobileAppVendor" json:"app_store,omitempty"`
+ AppStore enums.MobileAppVendorEnum_MobileAppVendor `protobuf:"varint,2,opt,name=app_store,json=appStore,proto3,enum=google.ads.googleads.v17.enums.MobileAppVendorEnum_MobileAppVendor" json:"app_store,omitempty"`
// Required. The visible text displayed when the link is rendered in an ad.
// The length of this string should be between 1 and 25, inclusive.
LinkText string `protobuf:"bytes,3,opt,name=link_text,json=linkText,proto3" json:"link_text,omitempty"`
@@ -1699,7 +1699,7 @@ type MobileAppAsset struct {
func (x *MobileAppAsset) Reset() {
*x = MobileAppAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[18]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[18]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1712,7 +1712,7 @@ func (x *MobileAppAsset) String() string {
func (*MobileAppAsset) ProtoMessage() {}
func (x *MobileAppAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[18]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[18]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1725,7 +1725,7 @@ func (x *MobileAppAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use MobileAppAsset.ProtoReflect.Descriptor instead.
func (*MobileAppAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{18}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{18}
}
func (x *MobileAppAsset) GetAppId() string {
@@ -1780,7 +1780,7 @@ type HotelCalloutAsset struct {
func (x *HotelCalloutAsset) Reset() {
*x = HotelCalloutAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[19]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[19]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1793,7 +1793,7 @@ func (x *HotelCalloutAsset) String() string {
func (*HotelCalloutAsset) ProtoMessage() {}
func (x *HotelCalloutAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[19]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[19]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1806,7 +1806,7 @@ func (x *HotelCalloutAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelCalloutAsset.ProtoReflect.Descriptor instead.
func (*HotelCalloutAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{19}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{19}
}
func (x *HotelCalloutAsset) GetText() string {
@@ -1837,7 +1837,7 @@ type CallAsset struct {
PhoneNumber string `protobuf:"bytes,2,opt,name=phone_number,json=phoneNumber,proto3" json:"phone_number,omitempty"`
// Indicates whether this CallAsset should use its own call conversion
// setting, follow the account level setting, or disable call conversion.
- CallConversionReportingState enums.CallConversionReportingStateEnum_CallConversionReportingState `protobuf:"varint,3,opt,name=call_conversion_reporting_state,json=callConversionReportingState,proto3,enum=google.ads.googleads.v16.enums.CallConversionReportingStateEnum_CallConversionReportingState" json:"call_conversion_reporting_state,omitempty"`
+ CallConversionReportingState enums.CallConversionReportingStateEnum_CallConversionReportingState `protobuf:"varint,3,opt,name=call_conversion_reporting_state,json=callConversionReportingState,proto3,enum=google.ads.googleads.v17.enums.CallConversionReportingStateEnum_CallConversionReportingState" json:"call_conversion_reporting_state,omitempty"`
// The conversion action to attribute a call conversion to. If not set, the
// default conversion action is used. This field only has effect if
// call_conversion_reporting_state is set to
@@ -1852,7 +1852,7 @@ type CallAsset struct {
func (x *CallAsset) Reset() {
*x = CallAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[20]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[20]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1865,7 +1865,7 @@ func (x *CallAsset) String() string {
func (*CallAsset) ProtoMessage() {}
func (x *CallAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[20]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[20]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1878,7 +1878,7 @@ func (x *CallAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use CallAsset.ProtoReflect.Descriptor instead.
func (*CallAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{20}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{20}
}
func (x *CallAsset) GetCountryCode() string {
@@ -1923,9 +1923,9 @@ type PriceAsset struct {
unknownFields protoimpl.UnknownFields
// Required. The type of the price asset.
- Type enums.PriceExtensionTypeEnum_PriceExtensionType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.PriceExtensionTypeEnum_PriceExtensionType" json:"type,omitempty"`
+ Type enums.PriceExtensionTypeEnum_PriceExtensionType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.PriceExtensionTypeEnum_PriceExtensionType" json:"type,omitempty"`
// The price qualifier of the price asset.
- PriceQualifier enums.PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier `protobuf:"varint,2,opt,name=price_qualifier,json=priceQualifier,proto3,enum=google.ads.googleads.v16.enums.PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier" json:"price_qualifier,omitempty"`
+ PriceQualifier enums.PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier `protobuf:"varint,2,opt,name=price_qualifier,json=priceQualifier,proto3,enum=google.ads.googleads.v17.enums.PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier" json:"price_qualifier,omitempty"`
// Required. The language of the price asset.
// Represented as BCP 47 language tag.
LanguageCode string `protobuf:"bytes,3,opt,name=language_code,json=languageCode,proto3" json:"language_code,omitempty"`
@@ -1937,7 +1937,7 @@ type PriceAsset struct {
func (x *PriceAsset) Reset() {
*x = PriceAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[21]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[21]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1950,7 +1950,7 @@ func (x *PriceAsset) String() string {
func (*PriceAsset) ProtoMessage() {}
func (x *PriceAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[21]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[21]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1963,7 +1963,7 @@ func (x *PriceAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use PriceAsset.ProtoReflect.Descriptor instead.
func (*PriceAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{21}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{21}
}
func (x *PriceAsset) GetType() enums.PriceExtensionTypeEnum_PriceExtensionType {
@@ -2009,7 +2009,7 @@ type PriceOffering struct {
// Required. The price value of the price offering.
Price *Money `protobuf:"bytes,3,opt,name=price,proto3" json:"price,omitempty"`
// The price unit of the price offering.
- Unit enums.PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit `protobuf:"varint,4,opt,name=unit,proto3,enum=google.ads.googleads.v16.enums.PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit" json:"unit,omitempty"`
+ Unit enums.PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit `protobuf:"varint,4,opt,name=unit,proto3,enum=google.ads.googleads.v17.enums.PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit" json:"unit,omitempty"`
// Required. The final URL after all cross domain redirects.
FinalUrl string `protobuf:"bytes,5,opt,name=final_url,json=finalUrl,proto3" json:"final_url,omitempty"`
// The final mobile URL after all cross domain redirects.
@@ -2019,7 +2019,7 @@ type PriceOffering struct {
func (x *PriceOffering) Reset() {
*x = PriceOffering{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[22]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[22]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2032,7 +2032,7 @@ func (x *PriceOffering) String() string {
func (*PriceOffering) ProtoMessage() {}
func (x *PriceOffering) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[22]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[22]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2045,7 +2045,7 @@ func (x *PriceOffering) ProtoReflect() protoreflect.Message {
// Deprecated: Use PriceOffering.ProtoReflect.Descriptor instead.
func (*PriceOffering) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{22}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{22}
}
func (x *PriceOffering) GetHeader() string {
@@ -2097,13 +2097,13 @@ type CallToActionAsset struct {
unknownFields protoimpl.UnknownFields
// Call to action.
- CallToAction enums.CallToActionTypeEnum_CallToActionType `protobuf:"varint,1,opt,name=call_to_action,json=callToAction,proto3,enum=google.ads.googleads.v16.enums.CallToActionTypeEnum_CallToActionType" json:"call_to_action,omitempty"`
+ CallToAction enums.CallToActionTypeEnum_CallToActionType `protobuf:"varint,1,opt,name=call_to_action,json=callToAction,proto3,enum=google.ads.googleads.v17.enums.CallToActionTypeEnum_CallToActionType" json:"call_to_action,omitempty"`
}
func (x *CallToActionAsset) Reset() {
*x = CallToActionAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[23]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[23]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2116,7 +2116,7 @@ func (x *CallToActionAsset) String() string {
func (*CallToActionAsset) ProtoMessage() {}
func (x *CallToActionAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[23]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[23]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2129,7 +2129,7 @@ func (x *CallToActionAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use CallToActionAsset.ProtoReflect.Descriptor instead.
func (*CallToActionAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{23}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{23}
}
func (x *CallToActionAsset) GetCallToAction() enums.CallToActionTypeEnum_CallToActionType {
@@ -2191,7 +2191,7 @@ type DynamicRealEstateAsset struct {
func (x *DynamicRealEstateAsset) Reset() {
*x = DynamicRealEstateAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[24]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[24]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2204,7 +2204,7 @@ func (x *DynamicRealEstateAsset) String() string {
func (*DynamicRealEstateAsset) ProtoMessage() {}
func (x *DynamicRealEstateAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[24]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[24]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2217,7 +2217,7 @@ func (x *DynamicRealEstateAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use DynamicRealEstateAsset.ProtoReflect.Descriptor instead.
func (*DynamicRealEstateAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{24}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{24}
}
func (x *DynamicRealEstateAsset) GetListingId() string {
@@ -2385,7 +2385,7 @@ type DynamicCustomAsset struct {
func (x *DynamicCustomAsset) Reset() {
*x = DynamicCustomAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[25]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[25]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2398,7 +2398,7 @@ func (x *DynamicCustomAsset) String() string {
func (*DynamicCustomAsset) ProtoMessage() {}
func (x *DynamicCustomAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[25]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[25]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2411,7 +2411,7 @@ func (x *DynamicCustomAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use DynamicCustomAsset.ProtoReflect.Descriptor instead.
func (*DynamicCustomAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{25}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{25}
}
func (x *DynamicCustomAsset) GetId() string {
@@ -2590,7 +2590,7 @@ type DynamicHotelsAndRentalsAsset struct {
func (x *DynamicHotelsAndRentalsAsset) Reset() {
*x = DynamicHotelsAndRentalsAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[26]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[26]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2603,7 +2603,7 @@ func (x *DynamicHotelsAndRentalsAsset) String() string {
func (*DynamicHotelsAndRentalsAsset) ProtoMessage() {}
func (x *DynamicHotelsAndRentalsAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[26]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[26]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2616,7 +2616,7 @@ func (x *DynamicHotelsAndRentalsAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use DynamicHotelsAndRentalsAsset.ProtoReflect.Descriptor instead.
func (*DynamicHotelsAndRentalsAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{26}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{26}
}
func (x *DynamicHotelsAndRentalsAsset) GetPropertyId() string {
@@ -2794,7 +2794,7 @@ type DynamicFlightsAsset struct {
func (x *DynamicFlightsAsset) Reset() {
*x = DynamicFlightsAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[27]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[27]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2807,7 +2807,7 @@ func (x *DynamicFlightsAsset) String() string {
func (*DynamicFlightsAsset) ProtoMessage() {}
func (x *DynamicFlightsAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[27]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[27]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2820,7 +2820,7 @@ func (x *DynamicFlightsAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use DynamicFlightsAsset.ProtoReflect.Descriptor instead.
func (*DynamicFlightsAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{27}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{27}
}
func (x *DynamicFlightsAsset) GetDestinationId() string {
@@ -2928,8 +2928,8 @@ func (x *DynamicFlightsAsset) GetCustomMapping() string {
return ""
}
-// A Discovery Carousel Card asset.
-type DiscoveryCarouselCardAsset struct {
+// A Demand Gen Carousel Card asset.
+type DemandGenCarouselCardAsset struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
@@ -2948,23 +2948,23 @@ type DiscoveryCarouselCardAsset struct {
CallToActionText string `protobuf:"bytes,5,opt,name=call_to_action_text,json=callToActionText,proto3" json:"call_to_action_text,omitempty"`
}
-func (x *DiscoveryCarouselCardAsset) Reset() {
- *x = DiscoveryCarouselCardAsset{}
+func (x *DemandGenCarouselCardAsset) Reset() {
+ *x = DemandGenCarouselCardAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[28]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[28]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
-func (x *DiscoveryCarouselCardAsset) String() string {
+func (x *DemandGenCarouselCardAsset) String() string {
return protoimpl.X.MessageStringOf(x)
}
-func (*DiscoveryCarouselCardAsset) ProtoMessage() {}
+func (*DemandGenCarouselCardAsset) ProtoMessage() {}
-func (x *DiscoveryCarouselCardAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[28]
+func (x *DemandGenCarouselCardAsset) ProtoReflect() protoreflect.Message {
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[28]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2975,40 +2975,40 @@ func (x *DiscoveryCarouselCardAsset) ProtoReflect() protoreflect.Message {
return mi.MessageOf(x)
}
-// Deprecated: Use DiscoveryCarouselCardAsset.ProtoReflect.Descriptor instead.
-func (*DiscoveryCarouselCardAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{28}
+// Deprecated: Use DemandGenCarouselCardAsset.ProtoReflect.Descriptor instead.
+func (*DemandGenCarouselCardAsset) Descriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{28}
}
-func (x *DiscoveryCarouselCardAsset) GetMarketingImageAsset() string {
+func (x *DemandGenCarouselCardAsset) GetMarketingImageAsset() string {
if x != nil {
return x.MarketingImageAsset
}
return ""
}
-func (x *DiscoveryCarouselCardAsset) GetSquareMarketingImageAsset() string {
+func (x *DemandGenCarouselCardAsset) GetSquareMarketingImageAsset() string {
if x != nil {
return x.SquareMarketingImageAsset
}
return ""
}
-func (x *DiscoveryCarouselCardAsset) GetPortraitMarketingImageAsset() string {
+func (x *DemandGenCarouselCardAsset) GetPortraitMarketingImageAsset() string {
if x != nil {
return x.PortraitMarketingImageAsset
}
return ""
}
-func (x *DiscoveryCarouselCardAsset) GetHeadline() string {
+func (x *DemandGenCarouselCardAsset) GetHeadline() string {
if x != nil {
return x.Headline
}
return ""
}
-func (x *DiscoveryCarouselCardAsset) GetCallToActionText() string {
+func (x *DemandGenCarouselCardAsset) GetCallToActionText() string {
if x != nil {
return x.CallToActionText
}
@@ -3074,7 +3074,7 @@ type DynamicTravelAsset struct {
func (x *DynamicTravelAsset) Reset() {
*x = DynamicTravelAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[29]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[29]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3087,7 +3087,7 @@ func (x *DynamicTravelAsset) String() string {
func (*DynamicTravelAsset) ProtoMessage() {}
func (x *DynamicTravelAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[29]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[29]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3100,7 +3100,7 @@ func (x *DynamicTravelAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use DynamicTravelAsset.ProtoReflect.Descriptor instead.
func (*DynamicTravelAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{29}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{29}
}
func (x *DynamicTravelAsset) GetDestinationId() string {
@@ -3279,7 +3279,7 @@ type DynamicLocalAsset struct {
func (x *DynamicLocalAsset) Reset() {
*x = DynamicLocalAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[30]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[30]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3292,7 +3292,7 @@ func (x *DynamicLocalAsset) String() string {
func (*DynamicLocalAsset) ProtoMessage() {}
func (x *DynamicLocalAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[30]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[30]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3305,7 +3305,7 @@ func (x *DynamicLocalAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use DynamicLocalAsset.ProtoReflect.Descriptor instead.
func (*DynamicLocalAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{30}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{30}
}
func (x *DynamicLocalAsset) GetDealId() string {
@@ -3468,7 +3468,7 @@ type DynamicJobsAsset struct {
func (x *DynamicJobsAsset) Reset() {
*x = DynamicJobsAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[31]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[31]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3481,7 +3481,7 @@ func (x *DynamicJobsAsset) String() string {
func (*DynamicJobsAsset) ProtoMessage() {}
func (x *DynamicJobsAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[31]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[31]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3494,7 +3494,7 @@ func (x *DynamicJobsAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use DynamicJobsAsset.ProtoReflect.Descriptor instead.
func (*DynamicJobsAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{31}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{31}
}
func (x *DynamicJobsAsset) GetJobId() string {
@@ -3615,13 +3615,13 @@ type LocationAsset struct {
// The type of location ownership.
// If the type is BUSINESS_OWNER, it will be served as a location extension.
// If the type is AFFILIATE, it will be served as an affiliate location.
- LocationOwnershipType enums.LocationOwnershipTypeEnum_LocationOwnershipType `protobuf:"varint,3,opt,name=location_ownership_type,json=locationOwnershipType,proto3,enum=google.ads.googleads.v16.enums.LocationOwnershipTypeEnum_LocationOwnershipType" json:"location_ownership_type,omitempty"`
+ LocationOwnershipType enums.LocationOwnershipTypeEnum_LocationOwnershipType `protobuf:"varint,3,opt,name=location_ownership_type,json=locationOwnershipType,proto3,enum=google.ads.googleads.v17.enums.LocationOwnershipTypeEnum_LocationOwnershipType" json:"location_ownership_type,omitempty"`
}
func (x *LocationAsset) Reset() {
*x = LocationAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[32]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[32]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3634,7 +3634,7 @@ func (x *LocationAsset) String() string {
func (*LocationAsset) ProtoMessage() {}
func (x *LocationAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[32]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[32]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3647,7 +3647,7 @@ func (x *LocationAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocationAsset.ProtoReflect.Descriptor instead.
func (*LocationAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{32}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{32}
}
func (x *LocationAsset) GetPlaceId() string {
@@ -3692,7 +3692,7 @@ type BusinessProfileLocation struct {
func (x *BusinessProfileLocation) Reset() {
*x = BusinessProfileLocation{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[33]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[33]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3705,7 +3705,7 @@ func (x *BusinessProfileLocation) String() string {
func (*BusinessProfileLocation) ProtoMessage() {}
func (x *BusinessProfileLocation) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[33]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[33]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3718,7 +3718,7 @@ func (x *BusinessProfileLocation) ProtoReflect() protoreflect.Message {
// Deprecated: Use BusinessProfileLocation.ProtoReflect.Descriptor instead.
func (*BusinessProfileLocation) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{33}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{33}
}
func (x *BusinessProfileLocation) GetLabels() []string {
@@ -3761,7 +3761,7 @@ type HotelPropertyAsset struct {
func (x *HotelPropertyAsset) Reset() {
*x = HotelPropertyAsset{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[34]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[34]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3774,7 +3774,7 @@ func (x *HotelPropertyAsset) String() string {
func (*HotelPropertyAsset) ProtoMessage() {}
func (x *HotelPropertyAsset) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[34]
+ mi := &file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[34]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3787,7 +3787,7 @@ func (x *HotelPropertyAsset) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelPropertyAsset.ProtoReflect.Descriptor instead.
func (*HotelPropertyAsset) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP(), []int{34}
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP(), []int{34}
}
func (x *HotelPropertyAsset) GetPlaceId() string {
@@ -3811,75 +3811,75 @@ func (x *HotelPropertyAsset) GetHotelName() string {
return ""
}
-var File_google_ads_googleads_v16_common_asset_types_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_asset_types_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_asset_types_proto_rawDesc = []byte{
0x0a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e,
0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e,
0x67, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x38, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x61,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x61,
0x6c, 0x6c, 0x5f, 0x74, 0x6f, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70,
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x42, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72,
0x6d, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x6f, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3d, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x65, 0x61, 0x64,
0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x64, 0x65, 0x73, 0x69, 0x72, 0x65, 0x64, 0x5f, 0x69, 0x6e,
0x74, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x44, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x65, 0x61, 0x64, 0x5f,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x65, 0x61, 0x64, 0x5f,
0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f,
0x69, 0x6e, 0x70, 0x75, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x1a, 0x4e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x70, 0x6f, 0x73, 0x74, 0x5f,
0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x6f, 0x5f, 0x61,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x1a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x73,
0x68, 0x69, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d,
0x69, 0x6d, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x36,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d,
0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x65, 0x78, 0x74,
0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x71, 0x75, 0x61,
0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x69,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x69,
0x63, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x69,
0x63, 0x65, 0x5f, 0x75, 0x6e, 0x69, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x39, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72,
0x69, 0x63, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79,
0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x4a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x69, 0x73,
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65,
0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x63, 0x63, 0x61, 0x73, 0x69, 0x6f,
0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
@@ -3905,12 +3905,12 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x88, 0x01, 0x01, 0x12, 0x52, 0x0a,
0x09, 0x6d, 0x69, 0x6d, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e,
0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x2e, 0x4d, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d,
0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x08, 0x6d, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70,
0x65, 0x12, 0x4c, 0x0a, 0x09, 0x66, 0x75, 0x6c, 0x6c, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x44, 0x69, 0x6d, 0x65,
0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x08, 0x66, 0x75, 0x6c, 0x6c, 0x53, 0x69, 0x7a, 0x65, 0x42,
0x07, 0x0a, 0x05, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x66, 0x69, 0x6c,
@@ -3935,7 +3935,7 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x6c, 0x5f, 0x74, 0x6f, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x18, 0x11, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x55, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d,
0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65,
0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x43, 0x61, 0x6c,
0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0,
@@ -3961,27 +3961,27 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x74, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x46, 0x0a, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18,
0x08, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d,
0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x72, 0x0a,
0x16, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x71, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x18, 0x17, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3c, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x51, 0x75,
0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x14, 0x63, 0x75, 0x73,
0x74, 0x6f, 0x6d, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x65, 0x6c, 0x64,
0x73, 0x12, 0x62, 0x0a, 0x10, 0x64, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x5f, 0x6d, 0x65,
0x74, 0x68, 0x6f, 0x64, 0x73, 0x18, 0x09, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x65,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x65,
0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x44, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x4d, 0x65,
0x74, 0x68, 0x6f, 0x64, 0x52, 0x0f, 0x64, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x4d, 0x65,
0x74, 0x68, 0x6f, 0x64, 0x73, 0x12, 0xae, 0x01, 0x0a, 0x1f, 0x70, 0x6f, 0x73, 0x74, 0x5f, 0x73,
0x75, 0x62, 0x6d, 0x69, 0x74, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x6f, 0x5f, 0x61, 0x63,
0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0e, 0x32,
0x69, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x50, 0x6f, 0x73, 0x74, 0x53, 0x75, 0x62,
0x6d, 0x69, 0x74, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54,
0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d,
@@ -3995,7 +3995,7 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x01, 0x12, 0x76, 0x0a, 0x0e, 0x64, 0x65, 0x73, 0x69, 0x72, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74,
0x65, 0x6e, 0x74, 0x18, 0x15, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4f, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46,
0x6f, 0x72, 0x6d, 0x44, 0x65, 0x73, 0x69, 0x72, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x65, 0x6e, 0x74,
0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x44, 0x65, 0x73,
0x69, 0x72, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x52, 0x0d, 0x64, 0x65, 0x73, 0x69,
@@ -4013,7 +4013,7 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x65, 0x6c, 0x64, 0x12, 0x78, 0x0a, 0x0a, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x5f, 0x74, 0x79, 0x70,
0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x59, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72,
0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x54,
0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d,
0x46, 0x69, 0x65, 0x6c, 0x64, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x54, 0x79,
@@ -4021,7 +4021,7 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x15, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x5f, 0x63, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x5f, 0x61,
0x6e, 0x73, 0x77, 0x65, 0x72, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c,
0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x53, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x43, 0x68, 0x6f,
0x69, 0x63, 0x65, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x73, 0x48, 0x00, 0x52, 0x13, 0x73, 0x69,
0x6e, 0x67, 0x6c, 0x65, 0x43, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72,
@@ -4037,7 +4037,7 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x12, 0x72, 0x0a, 0x15, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x5f, 0x63, 0x68, 0x6f, 0x69, 0x63,
0x65, 0x5f, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x3c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x53, 0x69, 0x6e, 0x67, 0x6c, 0x65,
0x43, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x73, 0x48, 0x00, 0x52,
0x13, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x43, 0x68, 0x6f, 0x69, 0x63, 0x65, 0x41, 0x6e, 0x73,
@@ -4052,7 +4052,7 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x44, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x4d, 0x65,
0x74, 0x68, 0x6f, 0x64, 0x12, 0x4c, 0x0a, 0x07, 0x77, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x18,
0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x65, 0x62, 0x68, 0x6f, 0x6f, 0x6b, 0x44,
0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x48, 0x00, 0x52, 0x07, 0x77, 0x65, 0x62, 0x68, 0x6f,
0x6f, 0x6b, 0x42, 0x12, 0x0a, 0x10, 0x64, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x5f, 0x64,
@@ -4081,7 +4081,7 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x69, 0x73, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72,
0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x69, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f,
0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x75,
0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50,
0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
@@ -4096,7 +4096,7 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x45, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65, 0x12, 0x75, 0x0a, 0x08, 0x6f, 0x63, 0x63, 0x61, 0x73,
0x69, 0x6f, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x59, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f,
0x74, 0x69, 0x6f, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x63, 0x63,
0x61, 0x73, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74,
0x69, 0x6f, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x63, 0x63, 0x61,
@@ -4110,7 +4110,7 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x13, 0x61, 0x64, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x5f, 0x74, 0x61, 0x72,
0x67, 0x65, 0x74, 0x73, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x53,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x53,
0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x11, 0x61, 0x64, 0x53,
0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x12, 0x21,
0x0a, 0x0b, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x6f, 0x66, 0x66, 0x18, 0x03, 0x20,
@@ -4118,7 +4118,7 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x66, 0x12, 0x52, 0x0a, 0x10, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x5f, 0x61, 0x6d, 0x6f, 0x75, 0x6e,
0x74, 0x5f, 0x6f, 0x66, 0x66, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f,
0x6e, 0x65, 0x79, 0x48, 0x00, 0x52, 0x0e, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x41, 0x6d, 0x6f, 0x75,
0x6e, 0x74, 0x4f, 0x66, 0x66, 0x12, 0x27, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52,
@@ -4126,7 +4126,7 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x0a, 0x12, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x73, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x61, 0x6d,
0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x6e,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x6e,
0x65, 0x79, 0x48, 0x01, 0x52, 0x10, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x73, 0x4f, 0x76, 0x65, 0x72,
0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x0f, 0x0a, 0x0d, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x75,
0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x42, 0x13, 0x0a, 0x11, 0x70, 0x72, 0x6f, 0x6d, 0x6f,
@@ -4141,7 +4141,7 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x5f, 0x0a, 0x13, 0x61, 0x64, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x5f, 0x74,
0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41,
0x64, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x11, 0x61,
0x64, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73,
0x22, 0x52, 0x0a, 0x16, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x75, 0x72, 0x65, 0x64, 0x53, 0x6e,
@@ -4164,7 +4164,7 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x5f, 0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74,
0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x53, 0x63, 0x68, 0x65,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x53, 0x63, 0x68, 0x65,
0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x11, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65,
0x64, 0x75, 0x6c, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x22, 0x47, 0x0a, 0x0d, 0x50,
0x61, 0x67, 0x65, 0x46, 0x65, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x1e, 0x0a, 0x08,
@@ -4212,7 +4212,7 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x70, 0x49, 0x64, 0x12, 0x65, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65,
0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x43, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70,
0x70, 0x56, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x6f, 0x62, 0x69,
0x6c, 0x65, 0x41, 0x70, 0x70, 0x56, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x02,
0x52, 0x08, 0x61, 0x70, 0x70, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x12, 0x20, 0x0a, 0x09, 0x6c, 0x69,
@@ -4237,7 +4237,7 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x5f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65,
0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76,
0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x53,
0x74, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e,
0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67,
@@ -4253,20 +4253,20 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x73, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73,
0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x53, 0x63, 0x68, 0x65, 0x64,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x53, 0x63, 0x68, 0x65, 0x64,
0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x11, 0x61, 0x64, 0x53, 0x63, 0x68, 0x65, 0x64,
0x75, 0x6c, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x73, 0x22, 0xfc, 0x02, 0x0a, 0x0a, 0x50,
0x72, 0x69, 0x63, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x62, 0x0a, 0x04, 0x74, 0x79, 0x70,
0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x49, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x45, 0x78,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x45, 0x78,
0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
0x50, 0x72, 0x69, 0x63, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79,
0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x86, 0x01,
0x0a, 0x0f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65,
0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x45, 0x78,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x45, 0x78,
0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x51, 0x75, 0x61, 0x6c,
0x69, 0x66, 0x69, 0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x45,
0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x51, 0x75, 0x61,
@@ -4277,7 +4277,7 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x12, 0x57, 0x0a, 0x0f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x6f, 0x66, 0x66, 0x65, 0x72, 0x69,
0x6e, 0x67, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x69, 0x63,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x69, 0x63,
0x65, 0x4f, 0x66, 0x66, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x0e, 0x70, 0x72, 0x69, 0x63, 0x65,
0x4f, 0x66, 0x66, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x73, 0x22, 0xcb, 0x02, 0x0a, 0x0d, 0x50, 0x72,
0x69, 0x63, 0x65, 0x4f, 0x66, 0x66, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x1b, 0x0a, 0x06, 0x68,
@@ -4287,11 +4287,11 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x41, 0x02, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12,
0x41, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x2e, 0x4d, 0x6f, 0x6e, 0x65, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x05, 0x70, 0x72, 0x69,
0x63, 0x65, 0x12, 0x67, 0x0a, 0x04, 0x75, 0x6e, 0x69, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e,
0x32, 0x53, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x2e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
0x50, 0x72, 0x69, 0x63, 0x65, 0x55, 0x6e, 0x69, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72,
0x69, 0x63, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x69, 0x63,
@@ -4304,7 +4304,7 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x6b, 0x0a,
0x0e, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x6f, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18,
0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x45, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6c, 0x6c,
0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0c, 0x63, 0x61,
@@ -4464,8 +4464,8 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x6c, 0x61, 0x72, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64,
0x73, 0x12, 0x25, 0x0a, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x6d, 0x61, 0x70, 0x70,
0x69, 0x6e, 0x67, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x75, 0x73, 0x74, 0x6f,
- 0x6d, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x22, 0xa6, 0x02, 0x0a, 0x1a, 0x44, 0x69, 0x73,
- 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x43, 0x61, 0x72, 0x6f, 0x75, 0x73, 0x65, 0x6c, 0x43, 0x61,
+ 0x6d, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x22, 0xa6, 0x02, 0x0a, 0x1a, 0x44, 0x65, 0x6d,
+ 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x43, 0x61, 0x72, 0x6f, 0x75, 0x73, 0x65, 0x6c, 0x43, 0x61,
0x72, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x32, 0x0a, 0x15, 0x6d, 0x61, 0x72, 0x6b, 0x65,
0x74, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74,
0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x13, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e,
@@ -4599,7 +4599,7 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x1a, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c,
0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28,
0x0b, 0x32, 0x38, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x50, 0x72, 0x6f, 0x66,
0x69, 0x6c, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x18, 0x62, 0x75, 0x73,
0x69, 0x6e, 0x65, 0x73, 0x73, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x4c, 0x6f, 0x63, 0x61,
@@ -4607,7 +4607,7 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x6f, 0x6e, 0x5f, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x73, 0x68, 0x69, 0x70, 0x5f, 0x74, 0x79, 0x70,
0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x73, 0x68, 0x69, 0x70, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e,
0x75, 0x6d, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x77, 0x6e, 0x65, 0x72,
0x73, 0x68, 0x69, 0x70, 0x54, 0x79, 0x70, 0x65, 0x52, 0x15, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
@@ -4628,119 +4628,119 @@ var file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = []byte{
0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x68, 0x6f, 0x74, 0x65,
0x6c, 0x4e, 0x61, 0x6d, 0x65, 0x42, 0xef, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0f, 0x41,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0f, 0x41,
0x73, 0x73, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_asset_types_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_asset_types_proto_rawDescData = file_google_ads_googleads_v16_common_asset_types_proto_rawDesc
+ file_google_ads_googleads_v17_common_asset_types_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_asset_types_proto_rawDescData = file_google_ads_googleads_v17_common_asset_types_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_asset_types_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_asset_types_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_asset_types_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_asset_types_proto_rawDescData)
+func file_google_ads_googleads_v17_common_asset_types_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_asset_types_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_asset_types_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_asset_types_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_asset_types_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_common_asset_types_proto_msgTypes = make([]protoimpl.MessageInfo, 35)
-var file_google_ads_googleads_v16_common_asset_types_proto_goTypes = []interface{}{
- (*YoutubeVideoAsset)(nil), // 0: google.ads.googleads.v16.common.YoutubeVideoAsset
- (*MediaBundleAsset)(nil), // 1: google.ads.googleads.v16.common.MediaBundleAsset
- (*ImageAsset)(nil), // 2: google.ads.googleads.v16.common.ImageAsset
- (*ImageDimension)(nil), // 3: google.ads.googleads.v16.common.ImageDimension
- (*TextAsset)(nil), // 4: google.ads.googleads.v16.common.TextAsset
- (*LeadFormAsset)(nil), // 5: google.ads.googleads.v16.common.LeadFormAsset
- (*LeadFormField)(nil), // 6: google.ads.googleads.v16.common.LeadFormField
- (*LeadFormCustomQuestionField)(nil), // 7: google.ads.googleads.v16.common.LeadFormCustomQuestionField
- (*LeadFormSingleChoiceAnswers)(nil), // 8: google.ads.googleads.v16.common.LeadFormSingleChoiceAnswers
- (*LeadFormDeliveryMethod)(nil), // 9: google.ads.googleads.v16.common.LeadFormDeliveryMethod
- (*WebhookDelivery)(nil), // 10: google.ads.googleads.v16.common.WebhookDelivery
- (*BookOnGoogleAsset)(nil), // 11: google.ads.googleads.v16.common.BookOnGoogleAsset
- (*PromotionAsset)(nil), // 12: google.ads.googleads.v16.common.PromotionAsset
- (*CalloutAsset)(nil), // 13: google.ads.googleads.v16.common.CalloutAsset
- (*StructuredSnippetAsset)(nil), // 14: google.ads.googleads.v16.common.StructuredSnippetAsset
- (*SitelinkAsset)(nil), // 15: google.ads.googleads.v16.common.SitelinkAsset
- (*PageFeedAsset)(nil), // 16: google.ads.googleads.v16.common.PageFeedAsset
- (*DynamicEducationAsset)(nil), // 17: google.ads.googleads.v16.common.DynamicEducationAsset
- (*MobileAppAsset)(nil), // 18: google.ads.googleads.v16.common.MobileAppAsset
- (*HotelCalloutAsset)(nil), // 19: google.ads.googleads.v16.common.HotelCalloutAsset
- (*CallAsset)(nil), // 20: google.ads.googleads.v16.common.CallAsset
- (*PriceAsset)(nil), // 21: google.ads.googleads.v16.common.PriceAsset
- (*PriceOffering)(nil), // 22: google.ads.googleads.v16.common.PriceOffering
- (*CallToActionAsset)(nil), // 23: google.ads.googleads.v16.common.CallToActionAsset
- (*DynamicRealEstateAsset)(nil), // 24: google.ads.googleads.v16.common.DynamicRealEstateAsset
- (*DynamicCustomAsset)(nil), // 25: google.ads.googleads.v16.common.DynamicCustomAsset
- (*DynamicHotelsAndRentalsAsset)(nil), // 26: google.ads.googleads.v16.common.DynamicHotelsAndRentalsAsset
- (*DynamicFlightsAsset)(nil), // 27: google.ads.googleads.v16.common.DynamicFlightsAsset
- (*DiscoveryCarouselCardAsset)(nil), // 28: google.ads.googleads.v16.common.DiscoveryCarouselCardAsset
- (*DynamicTravelAsset)(nil), // 29: google.ads.googleads.v16.common.DynamicTravelAsset
- (*DynamicLocalAsset)(nil), // 30: google.ads.googleads.v16.common.DynamicLocalAsset
- (*DynamicJobsAsset)(nil), // 31: google.ads.googleads.v16.common.DynamicJobsAsset
- (*LocationAsset)(nil), // 32: google.ads.googleads.v16.common.LocationAsset
- (*BusinessProfileLocation)(nil), // 33: google.ads.googleads.v16.common.BusinessProfileLocation
- (*HotelPropertyAsset)(nil), // 34: google.ads.googleads.v16.common.HotelPropertyAsset
- (enums.MimeTypeEnum_MimeType)(0), // 35: google.ads.googleads.v16.enums.MimeTypeEnum.MimeType
- (enums.LeadFormCallToActionTypeEnum_LeadFormCallToActionType)(0), // 36: google.ads.googleads.v16.enums.LeadFormCallToActionTypeEnum.LeadFormCallToActionType
- (enums.LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType)(0), // 37: google.ads.googleads.v16.enums.LeadFormPostSubmitCallToActionTypeEnum.LeadFormPostSubmitCallToActionType
- (enums.LeadFormDesiredIntentEnum_LeadFormDesiredIntent)(0), // 38: google.ads.googleads.v16.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent
- (enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType)(0), // 39: google.ads.googleads.v16.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType
- (enums.PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier)(0), // 40: google.ads.googleads.v16.enums.PromotionExtensionDiscountModifierEnum.PromotionExtensionDiscountModifier
- (enums.PromotionExtensionOccasionEnum_PromotionExtensionOccasion)(0), // 41: google.ads.googleads.v16.enums.PromotionExtensionOccasionEnum.PromotionExtensionOccasion
- (*AdScheduleInfo)(nil), // 42: google.ads.googleads.v16.common.AdScheduleInfo
- (*Money)(nil), // 43: google.ads.googleads.v16.common.Money
- (enums.MobileAppVendorEnum_MobileAppVendor)(0), // 44: google.ads.googleads.v16.enums.MobileAppVendorEnum.MobileAppVendor
- (enums.CallConversionReportingStateEnum_CallConversionReportingState)(0), // 45: google.ads.googleads.v16.enums.CallConversionReportingStateEnum.CallConversionReportingState
- (enums.PriceExtensionTypeEnum_PriceExtensionType)(0), // 46: google.ads.googleads.v16.enums.PriceExtensionTypeEnum.PriceExtensionType
- (enums.PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier)(0), // 47: google.ads.googleads.v16.enums.PriceExtensionPriceQualifierEnum.PriceExtensionPriceQualifier
- (enums.PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit)(0), // 48: google.ads.googleads.v16.enums.PriceExtensionPriceUnitEnum.PriceExtensionPriceUnit
- (enums.CallToActionTypeEnum_CallToActionType)(0), // 49: google.ads.googleads.v16.enums.CallToActionTypeEnum.CallToActionType
- (enums.LocationOwnershipTypeEnum_LocationOwnershipType)(0), // 50: google.ads.googleads.v16.enums.LocationOwnershipTypeEnum.LocationOwnershipType
-}
-var file_google_ads_googleads_v16_common_asset_types_proto_depIdxs = []int32{
- 35, // 0: google.ads.googleads.v16.common.ImageAsset.mime_type:type_name -> google.ads.googleads.v16.enums.MimeTypeEnum.MimeType
- 3, // 1: google.ads.googleads.v16.common.ImageAsset.full_size:type_name -> google.ads.googleads.v16.common.ImageDimension
- 36, // 2: google.ads.googleads.v16.common.LeadFormAsset.call_to_action_type:type_name -> google.ads.googleads.v16.enums.LeadFormCallToActionTypeEnum.LeadFormCallToActionType
- 6, // 3: google.ads.googleads.v16.common.LeadFormAsset.fields:type_name -> google.ads.googleads.v16.common.LeadFormField
- 7, // 4: google.ads.googleads.v16.common.LeadFormAsset.custom_question_fields:type_name -> google.ads.googleads.v16.common.LeadFormCustomQuestionField
- 9, // 5: google.ads.googleads.v16.common.LeadFormAsset.delivery_methods:type_name -> google.ads.googleads.v16.common.LeadFormDeliveryMethod
- 37, // 6: google.ads.googleads.v16.common.LeadFormAsset.post_submit_call_to_action_type:type_name -> google.ads.googleads.v16.enums.LeadFormPostSubmitCallToActionTypeEnum.LeadFormPostSubmitCallToActionType
- 38, // 7: google.ads.googleads.v16.common.LeadFormAsset.desired_intent:type_name -> google.ads.googleads.v16.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent
- 39, // 8: google.ads.googleads.v16.common.LeadFormField.input_type:type_name -> google.ads.googleads.v16.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType
- 8, // 9: google.ads.googleads.v16.common.LeadFormField.single_choice_answers:type_name -> google.ads.googleads.v16.common.LeadFormSingleChoiceAnswers
- 8, // 10: google.ads.googleads.v16.common.LeadFormCustomQuestionField.single_choice_answers:type_name -> google.ads.googleads.v16.common.LeadFormSingleChoiceAnswers
- 10, // 11: google.ads.googleads.v16.common.LeadFormDeliveryMethod.webhook:type_name -> google.ads.googleads.v16.common.WebhookDelivery
- 40, // 12: google.ads.googleads.v16.common.PromotionAsset.discount_modifier:type_name -> google.ads.googleads.v16.enums.PromotionExtensionDiscountModifierEnum.PromotionExtensionDiscountModifier
- 41, // 13: google.ads.googleads.v16.common.PromotionAsset.occasion:type_name -> google.ads.googleads.v16.enums.PromotionExtensionOccasionEnum.PromotionExtensionOccasion
- 42, // 14: google.ads.googleads.v16.common.PromotionAsset.ad_schedule_targets:type_name -> google.ads.googleads.v16.common.AdScheduleInfo
- 43, // 15: google.ads.googleads.v16.common.PromotionAsset.money_amount_off:type_name -> google.ads.googleads.v16.common.Money
- 43, // 16: google.ads.googleads.v16.common.PromotionAsset.orders_over_amount:type_name -> google.ads.googleads.v16.common.Money
- 42, // 17: google.ads.googleads.v16.common.CalloutAsset.ad_schedule_targets:type_name -> google.ads.googleads.v16.common.AdScheduleInfo
- 42, // 18: google.ads.googleads.v16.common.SitelinkAsset.ad_schedule_targets:type_name -> google.ads.googleads.v16.common.AdScheduleInfo
- 44, // 19: google.ads.googleads.v16.common.MobileAppAsset.app_store:type_name -> google.ads.googleads.v16.enums.MobileAppVendorEnum.MobileAppVendor
- 45, // 20: google.ads.googleads.v16.common.CallAsset.call_conversion_reporting_state:type_name -> google.ads.googleads.v16.enums.CallConversionReportingStateEnum.CallConversionReportingState
- 42, // 21: google.ads.googleads.v16.common.CallAsset.ad_schedule_targets:type_name -> google.ads.googleads.v16.common.AdScheduleInfo
- 46, // 22: google.ads.googleads.v16.common.PriceAsset.type:type_name -> google.ads.googleads.v16.enums.PriceExtensionTypeEnum.PriceExtensionType
- 47, // 23: google.ads.googleads.v16.common.PriceAsset.price_qualifier:type_name -> google.ads.googleads.v16.enums.PriceExtensionPriceQualifierEnum.PriceExtensionPriceQualifier
- 22, // 24: google.ads.googleads.v16.common.PriceAsset.price_offerings:type_name -> google.ads.googleads.v16.common.PriceOffering
- 43, // 25: google.ads.googleads.v16.common.PriceOffering.price:type_name -> google.ads.googleads.v16.common.Money
- 48, // 26: google.ads.googleads.v16.common.PriceOffering.unit:type_name -> google.ads.googleads.v16.enums.PriceExtensionPriceUnitEnum.PriceExtensionPriceUnit
- 49, // 27: google.ads.googleads.v16.common.CallToActionAsset.call_to_action:type_name -> google.ads.googleads.v16.enums.CallToActionTypeEnum.CallToActionType
- 33, // 28: google.ads.googleads.v16.common.LocationAsset.business_profile_locations:type_name -> google.ads.googleads.v16.common.BusinessProfileLocation
- 50, // 29: google.ads.googleads.v16.common.LocationAsset.location_ownership_type:type_name -> google.ads.googleads.v16.enums.LocationOwnershipTypeEnum.LocationOwnershipType
+ return file_google_ads_googleads_v17_common_asset_types_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_common_asset_types_proto_msgTypes = make([]protoimpl.MessageInfo, 35)
+var file_google_ads_googleads_v17_common_asset_types_proto_goTypes = []interface{}{
+ (*YoutubeVideoAsset)(nil), // 0: google.ads.googleads.v17.common.YoutubeVideoAsset
+ (*MediaBundleAsset)(nil), // 1: google.ads.googleads.v17.common.MediaBundleAsset
+ (*ImageAsset)(nil), // 2: google.ads.googleads.v17.common.ImageAsset
+ (*ImageDimension)(nil), // 3: google.ads.googleads.v17.common.ImageDimension
+ (*TextAsset)(nil), // 4: google.ads.googleads.v17.common.TextAsset
+ (*LeadFormAsset)(nil), // 5: google.ads.googleads.v17.common.LeadFormAsset
+ (*LeadFormField)(nil), // 6: google.ads.googleads.v17.common.LeadFormField
+ (*LeadFormCustomQuestionField)(nil), // 7: google.ads.googleads.v17.common.LeadFormCustomQuestionField
+ (*LeadFormSingleChoiceAnswers)(nil), // 8: google.ads.googleads.v17.common.LeadFormSingleChoiceAnswers
+ (*LeadFormDeliveryMethod)(nil), // 9: google.ads.googleads.v17.common.LeadFormDeliveryMethod
+ (*WebhookDelivery)(nil), // 10: google.ads.googleads.v17.common.WebhookDelivery
+ (*BookOnGoogleAsset)(nil), // 11: google.ads.googleads.v17.common.BookOnGoogleAsset
+ (*PromotionAsset)(nil), // 12: google.ads.googleads.v17.common.PromotionAsset
+ (*CalloutAsset)(nil), // 13: google.ads.googleads.v17.common.CalloutAsset
+ (*StructuredSnippetAsset)(nil), // 14: google.ads.googleads.v17.common.StructuredSnippetAsset
+ (*SitelinkAsset)(nil), // 15: google.ads.googleads.v17.common.SitelinkAsset
+ (*PageFeedAsset)(nil), // 16: google.ads.googleads.v17.common.PageFeedAsset
+ (*DynamicEducationAsset)(nil), // 17: google.ads.googleads.v17.common.DynamicEducationAsset
+ (*MobileAppAsset)(nil), // 18: google.ads.googleads.v17.common.MobileAppAsset
+ (*HotelCalloutAsset)(nil), // 19: google.ads.googleads.v17.common.HotelCalloutAsset
+ (*CallAsset)(nil), // 20: google.ads.googleads.v17.common.CallAsset
+ (*PriceAsset)(nil), // 21: google.ads.googleads.v17.common.PriceAsset
+ (*PriceOffering)(nil), // 22: google.ads.googleads.v17.common.PriceOffering
+ (*CallToActionAsset)(nil), // 23: google.ads.googleads.v17.common.CallToActionAsset
+ (*DynamicRealEstateAsset)(nil), // 24: google.ads.googleads.v17.common.DynamicRealEstateAsset
+ (*DynamicCustomAsset)(nil), // 25: google.ads.googleads.v17.common.DynamicCustomAsset
+ (*DynamicHotelsAndRentalsAsset)(nil), // 26: google.ads.googleads.v17.common.DynamicHotelsAndRentalsAsset
+ (*DynamicFlightsAsset)(nil), // 27: google.ads.googleads.v17.common.DynamicFlightsAsset
+ (*DemandGenCarouselCardAsset)(nil), // 28: google.ads.googleads.v17.common.DemandGenCarouselCardAsset
+ (*DynamicTravelAsset)(nil), // 29: google.ads.googleads.v17.common.DynamicTravelAsset
+ (*DynamicLocalAsset)(nil), // 30: google.ads.googleads.v17.common.DynamicLocalAsset
+ (*DynamicJobsAsset)(nil), // 31: google.ads.googleads.v17.common.DynamicJobsAsset
+ (*LocationAsset)(nil), // 32: google.ads.googleads.v17.common.LocationAsset
+ (*BusinessProfileLocation)(nil), // 33: google.ads.googleads.v17.common.BusinessProfileLocation
+ (*HotelPropertyAsset)(nil), // 34: google.ads.googleads.v17.common.HotelPropertyAsset
+ (enums.MimeTypeEnum_MimeType)(0), // 35: google.ads.googleads.v17.enums.MimeTypeEnum.MimeType
+ (enums.LeadFormCallToActionTypeEnum_LeadFormCallToActionType)(0), // 36: google.ads.googleads.v17.enums.LeadFormCallToActionTypeEnum.LeadFormCallToActionType
+ (enums.LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType)(0), // 37: google.ads.googleads.v17.enums.LeadFormPostSubmitCallToActionTypeEnum.LeadFormPostSubmitCallToActionType
+ (enums.LeadFormDesiredIntentEnum_LeadFormDesiredIntent)(0), // 38: google.ads.googleads.v17.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent
+ (enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType)(0), // 39: google.ads.googleads.v17.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType
+ (enums.PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier)(0), // 40: google.ads.googleads.v17.enums.PromotionExtensionDiscountModifierEnum.PromotionExtensionDiscountModifier
+ (enums.PromotionExtensionOccasionEnum_PromotionExtensionOccasion)(0), // 41: google.ads.googleads.v17.enums.PromotionExtensionOccasionEnum.PromotionExtensionOccasion
+ (*AdScheduleInfo)(nil), // 42: google.ads.googleads.v17.common.AdScheduleInfo
+ (*Money)(nil), // 43: google.ads.googleads.v17.common.Money
+ (enums.MobileAppVendorEnum_MobileAppVendor)(0), // 44: google.ads.googleads.v17.enums.MobileAppVendorEnum.MobileAppVendor
+ (enums.CallConversionReportingStateEnum_CallConversionReportingState)(0), // 45: google.ads.googleads.v17.enums.CallConversionReportingStateEnum.CallConversionReportingState
+ (enums.PriceExtensionTypeEnum_PriceExtensionType)(0), // 46: google.ads.googleads.v17.enums.PriceExtensionTypeEnum.PriceExtensionType
+ (enums.PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier)(0), // 47: google.ads.googleads.v17.enums.PriceExtensionPriceQualifierEnum.PriceExtensionPriceQualifier
+ (enums.PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit)(0), // 48: google.ads.googleads.v17.enums.PriceExtensionPriceUnitEnum.PriceExtensionPriceUnit
+ (enums.CallToActionTypeEnum_CallToActionType)(0), // 49: google.ads.googleads.v17.enums.CallToActionTypeEnum.CallToActionType
+ (enums.LocationOwnershipTypeEnum_LocationOwnershipType)(0), // 50: google.ads.googleads.v17.enums.LocationOwnershipTypeEnum.LocationOwnershipType
+}
+var file_google_ads_googleads_v17_common_asset_types_proto_depIdxs = []int32{
+ 35, // 0: google.ads.googleads.v17.common.ImageAsset.mime_type:type_name -> google.ads.googleads.v17.enums.MimeTypeEnum.MimeType
+ 3, // 1: google.ads.googleads.v17.common.ImageAsset.full_size:type_name -> google.ads.googleads.v17.common.ImageDimension
+ 36, // 2: google.ads.googleads.v17.common.LeadFormAsset.call_to_action_type:type_name -> google.ads.googleads.v17.enums.LeadFormCallToActionTypeEnum.LeadFormCallToActionType
+ 6, // 3: google.ads.googleads.v17.common.LeadFormAsset.fields:type_name -> google.ads.googleads.v17.common.LeadFormField
+ 7, // 4: google.ads.googleads.v17.common.LeadFormAsset.custom_question_fields:type_name -> google.ads.googleads.v17.common.LeadFormCustomQuestionField
+ 9, // 5: google.ads.googleads.v17.common.LeadFormAsset.delivery_methods:type_name -> google.ads.googleads.v17.common.LeadFormDeliveryMethod
+ 37, // 6: google.ads.googleads.v17.common.LeadFormAsset.post_submit_call_to_action_type:type_name -> google.ads.googleads.v17.enums.LeadFormPostSubmitCallToActionTypeEnum.LeadFormPostSubmitCallToActionType
+ 38, // 7: google.ads.googleads.v17.common.LeadFormAsset.desired_intent:type_name -> google.ads.googleads.v17.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent
+ 39, // 8: google.ads.googleads.v17.common.LeadFormField.input_type:type_name -> google.ads.googleads.v17.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType
+ 8, // 9: google.ads.googleads.v17.common.LeadFormField.single_choice_answers:type_name -> google.ads.googleads.v17.common.LeadFormSingleChoiceAnswers
+ 8, // 10: google.ads.googleads.v17.common.LeadFormCustomQuestionField.single_choice_answers:type_name -> google.ads.googleads.v17.common.LeadFormSingleChoiceAnswers
+ 10, // 11: google.ads.googleads.v17.common.LeadFormDeliveryMethod.webhook:type_name -> google.ads.googleads.v17.common.WebhookDelivery
+ 40, // 12: google.ads.googleads.v17.common.PromotionAsset.discount_modifier:type_name -> google.ads.googleads.v17.enums.PromotionExtensionDiscountModifierEnum.PromotionExtensionDiscountModifier
+ 41, // 13: google.ads.googleads.v17.common.PromotionAsset.occasion:type_name -> google.ads.googleads.v17.enums.PromotionExtensionOccasionEnum.PromotionExtensionOccasion
+ 42, // 14: google.ads.googleads.v17.common.PromotionAsset.ad_schedule_targets:type_name -> google.ads.googleads.v17.common.AdScheduleInfo
+ 43, // 15: google.ads.googleads.v17.common.PromotionAsset.money_amount_off:type_name -> google.ads.googleads.v17.common.Money
+ 43, // 16: google.ads.googleads.v17.common.PromotionAsset.orders_over_amount:type_name -> google.ads.googleads.v17.common.Money
+ 42, // 17: google.ads.googleads.v17.common.CalloutAsset.ad_schedule_targets:type_name -> google.ads.googleads.v17.common.AdScheduleInfo
+ 42, // 18: google.ads.googleads.v17.common.SitelinkAsset.ad_schedule_targets:type_name -> google.ads.googleads.v17.common.AdScheduleInfo
+ 44, // 19: google.ads.googleads.v17.common.MobileAppAsset.app_store:type_name -> google.ads.googleads.v17.enums.MobileAppVendorEnum.MobileAppVendor
+ 45, // 20: google.ads.googleads.v17.common.CallAsset.call_conversion_reporting_state:type_name -> google.ads.googleads.v17.enums.CallConversionReportingStateEnum.CallConversionReportingState
+ 42, // 21: google.ads.googleads.v17.common.CallAsset.ad_schedule_targets:type_name -> google.ads.googleads.v17.common.AdScheduleInfo
+ 46, // 22: google.ads.googleads.v17.common.PriceAsset.type:type_name -> google.ads.googleads.v17.enums.PriceExtensionTypeEnum.PriceExtensionType
+ 47, // 23: google.ads.googleads.v17.common.PriceAsset.price_qualifier:type_name -> google.ads.googleads.v17.enums.PriceExtensionPriceQualifierEnum.PriceExtensionPriceQualifier
+ 22, // 24: google.ads.googleads.v17.common.PriceAsset.price_offerings:type_name -> google.ads.googleads.v17.common.PriceOffering
+ 43, // 25: google.ads.googleads.v17.common.PriceOffering.price:type_name -> google.ads.googleads.v17.common.Money
+ 48, // 26: google.ads.googleads.v17.common.PriceOffering.unit:type_name -> google.ads.googleads.v17.enums.PriceExtensionPriceUnitEnum.PriceExtensionPriceUnit
+ 49, // 27: google.ads.googleads.v17.common.CallToActionAsset.call_to_action:type_name -> google.ads.googleads.v17.enums.CallToActionTypeEnum.CallToActionType
+ 33, // 28: google.ads.googleads.v17.common.LocationAsset.business_profile_locations:type_name -> google.ads.googleads.v17.common.BusinessProfileLocation
+ 50, // 29: google.ads.googleads.v17.common.LocationAsset.location_ownership_type:type_name -> google.ads.googleads.v17.enums.LocationOwnershipTypeEnum.LocationOwnershipType
30, // [30:30] is the sub-list for method output_type
30, // [30:30] is the sub-list for method input_type
30, // [30:30] is the sub-list for extension type_name
@@ -4748,15 +4748,15 @@ var file_google_ads_googleads_v16_common_asset_types_proto_depIdxs = []int32{
0, // [0:30] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_asset_types_proto_init() }
-func file_google_ads_googleads_v16_common_asset_types_proto_init() {
- if File_google_ads_googleads_v16_common_asset_types_proto != nil {
+func init() { file_google_ads_googleads_v17_common_asset_types_proto_init() }
+func file_google_ads_googleads_v17_common_asset_types_proto_init() {
+ if File_google_ads_googleads_v17_common_asset_types_proto != nil {
return
}
- file_google_ads_googleads_v16_common_criteria_proto_init()
- file_google_ads_googleads_v16_common_feed_common_proto_init()
+ file_google_ads_googleads_v17_common_criteria_proto_init()
+ file_google_ads_googleads_v17_common_feed_common_proto_init()
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*YoutubeVideoAsset); i {
case 0:
return &v.state
@@ -4768,7 +4768,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MediaBundleAsset); i {
case 0:
return &v.state
@@ -4780,7 +4780,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ImageAsset); i {
case 0:
return &v.state
@@ -4792,7 +4792,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ImageDimension); i {
case 0:
return &v.state
@@ -4804,7 +4804,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TextAsset); i {
case 0:
return &v.state
@@ -4816,7 +4816,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LeadFormAsset); i {
case 0:
return &v.state
@@ -4828,7 +4828,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LeadFormField); i {
case 0:
return &v.state
@@ -4840,7 +4840,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LeadFormCustomQuestionField); i {
case 0:
return &v.state
@@ -4852,7 +4852,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LeadFormSingleChoiceAnswers); i {
case 0:
return &v.state
@@ -4864,7 +4864,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LeadFormDeliveryMethod); i {
case 0:
return &v.state
@@ -4876,7 +4876,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*WebhookDelivery); i {
case 0:
return &v.state
@@ -4888,7 +4888,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BookOnGoogleAsset); i {
case 0:
return &v.state
@@ -4900,7 +4900,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PromotionAsset); i {
case 0:
return &v.state
@@ -4912,7 +4912,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CalloutAsset); i {
case 0:
return &v.state
@@ -4924,7 +4924,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*StructuredSnippetAsset); i {
case 0:
return &v.state
@@ -4936,7 +4936,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SitelinkAsset); i {
case 0:
return &v.state
@@ -4948,7 +4948,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PageFeedAsset); i {
case 0:
return &v.state
@@ -4960,7 +4960,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DynamicEducationAsset); i {
case 0:
return &v.state
@@ -4972,7 +4972,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MobileAppAsset); i {
case 0:
return &v.state
@@ -4984,7 +4984,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelCalloutAsset); i {
case 0:
return &v.state
@@ -4996,7 +4996,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CallAsset); i {
case 0:
return &v.state
@@ -5008,7 +5008,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PriceAsset); i {
case 0:
return &v.state
@@ -5020,7 +5020,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PriceOffering); i {
case 0:
return &v.state
@@ -5032,7 +5032,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CallToActionAsset); i {
case 0:
return &v.state
@@ -5044,7 +5044,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DynamicRealEstateAsset); i {
case 0:
return &v.state
@@ -5056,7 +5056,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DynamicCustomAsset); i {
case 0:
return &v.state
@@ -5068,7 +5068,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DynamicHotelsAndRentalsAsset); i {
case 0:
return &v.state
@@ -5080,7 +5080,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DynamicFlightsAsset); i {
case 0:
return &v.state
@@ -5092,8 +5092,8 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*DiscoveryCarouselCardAsset); i {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*DemandGenCarouselCardAsset); i {
case 0:
return &v.state
case 1:
@@ -5104,7 +5104,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DynamicTravelAsset); i {
case 0:
return &v.state
@@ -5116,7 +5116,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DynamicLocalAsset); i {
case 0:
return &v.state
@@ -5128,7 +5128,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DynamicJobsAsset); i {
case 0:
return &v.state
@@ -5140,7 +5140,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocationAsset); i {
case 0:
return &v.state
@@ -5152,7 +5152,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BusinessProfileLocation); i {
case 0:
return &v.state
@@ -5164,7 +5164,7 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelPropertyAsset); i {
case 0:
return &v.state
@@ -5177,25 +5177,25 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[0].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[1].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[2].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[3].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[4].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[5].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[6].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[1].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[2].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[3].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[4].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[5].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[6].OneofWrappers = []interface{}{
(*LeadFormField_SingleChoiceAnswers)(nil),
(*LeadFormField_HasLocationAnswer)(nil),
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[7].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[7].OneofWrappers = []interface{}{
(*LeadFormCustomQuestionField_SingleChoiceAnswers)(nil),
(*LeadFormCustomQuestionField_HasLocationAnswer)(nil),
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[9].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[9].OneofWrappers = []interface{}{
(*LeadFormDeliveryMethod_Webhook)(nil),
}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[10].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_asset_types_proto_msgTypes[12].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[10].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_asset_types_proto_msgTypes[12].OneofWrappers = []interface{}{
(*PromotionAsset_PercentOff)(nil),
(*PromotionAsset_MoneyAmountOff)(nil),
(*PromotionAsset_PromotionCode)(nil),
@@ -5205,18 +5205,18 @@ func file_google_ads_googleads_v16_common_asset_types_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_asset_types_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_asset_types_proto_rawDesc,
NumEnums: 0,
NumMessages: 35,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_asset_types_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_asset_types_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_asset_types_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_asset_types_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_asset_types_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_asset_types_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_asset_types_proto = out.File
- file_google_ads_googleads_v16_common_asset_types_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_asset_types_proto_goTypes = nil
- file_google_ads_googleads_v16_common_asset_types_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_asset_types_proto = out.File
+ file_google_ads_googleads_v17_common_asset_types_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_asset_types_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_asset_types_proto_depIdxs = nil
}
diff --git a/common/asset_usage.pb.go b/common/asset_usage.pb.go
index a069e828..acb0ed01 100644
--- a/common/asset_usage.pb.go
+++ b/common/asset_usage.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/asset_usage.proto
+// source: google/ads/googleads/v17/common/asset_usage.proto
package common
@@ -44,13 +44,13 @@ type AssetUsage struct {
// Resource name of the asset.
Asset string `protobuf:"bytes,1,opt,name=asset,proto3" json:"asset,omitempty"`
// The served field type of the asset.
- ServedAssetFieldType enums.ServedAssetFieldTypeEnum_ServedAssetFieldType `protobuf:"varint,2,opt,name=served_asset_field_type,json=servedAssetFieldType,proto3,enum=google.ads.googleads.v16.enums.ServedAssetFieldTypeEnum_ServedAssetFieldType" json:"served_asset_field_type,omitempty"`
+ ServedAssetFieldType enums.ServedAssetFieldTypeEnum_ServedAssetFieldType `protobuf:"varint,2,opt,name=served_asset_field_type,json=servedAssetFieldType,proto3,enum=google.ads.googleads.v17.enums.ServedAssetFieldTypeEnum_ServedAssetFieldType" json:"served_asset_field_type,omitempty"`
}
func (x *AssetUsage) Reset() {
*x = AssetUsage{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_asset_usage_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_asset_usage_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -63,7 +63,7 @@ func (x *AssetUsage) String() string {
func (*AssetUsage) ProtoMessage() {}
func (x *AssetUsage) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_asset_usage_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_asset_usage_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -76,7 +76,7 @@ func (x *AssetUsage) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetUsage.ProtoReflect.Descriptor instead.
func (*AssetUsage) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_asset_usage_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_asset_usage_proto_rawDescGZIP(), []int{0}
}
func (x *AssetUsage) GetAsset() string {
@@ -93,16 +93,16 @@ func (x *AssetUsage) GetServedAssetFieldType() enums.ServedAssetFieldTypeEnum_Se
return enums.ServedAssetFieldTypeEnum_ServedAssetFieldType(0)
}
-var File_google_ads_googleads_v16_common_asset_usage_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_asset_usage_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_asset_usage_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_asset_usage_proto_rawDesc = []byte{
0x0a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x75, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65,
0x74, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x22, 0xa9, 0x01, 0x0a, 0x0a, 0x41, 0x73, 0x73, 0x65, 0x74, 0x55, 0x73, 0x61, 0x67,
@@ -111,48 +111,48 @@ var file_google_ads_googleads_v16_common_asset_usage_proto_rawDesc = []byte{
0x65, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74,
0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65,
0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x45,
0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46,
0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x52, 0x14, 0x73, 0x65, 0x72, 0x76, 0x65, 0x64,
0x41, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x42, 0xef,
0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x55, 0x73, 0x61,
0x67, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_asset_usage_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_asset_usage_proto_rawDescData = file_google_ads_googleads_v16_common_asset_usage_proto_rawDesc
+ file_google_ads_googleads_v17_common_asset_usage_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_asset_usage_proto_rawDescData = file_google_ads_googleads_v17_common_asset_usage_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_asset_usage_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_asset_usage_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_asset_usage_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_asset_usage_proto_rawDescData)
+func file_google_ads_googleads_v17_common_asset_usage_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_asset_usage_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_asset_usage_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_asset_usage_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_asset_usage_proto_rawDescData
+ return file_google_ads_googleads_v17_common_asset_usage_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_asset_usage_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_common_asset_usage_proto_goTypes = []interface{}{
- (*AssetUsage)(nil), // 0: google.ads.googleads.v16.common.AssetUsage
- (enums.ServedAssetFieldTypeEnum_ServedAssetFieldType)(0), // 1: google.ads.googleads.v16.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType
+var file_google_ads_googleads_v17_common_asset_usage_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_common_asset_usage_proto_goTypes = []interface{}{
+ (*AssetUsage)(nil), // 0: google.ads.googleads.v17.common.AssetUsage
+ (enums.ServedAssetFieldTypeEnum_ServedAssetFieldType)(0), // 1: google.ads.googleads.v17.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType
}
-var file_google_ads_googleads_v16_common_asset_usage_proto_depIdxs = []int32{
- 1, // 0: google.ads.googleads.v16.common.AssetUsage.served_asset_field_type:type_name -> google.ads.googleads.v16.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType
+var file_google_ads_googleads_v17_common_asset_usage_proto_depIdxs = []int32{
+ 1, // 0: google.ads.googleads.v17.common.AssetUsage.served_asset_field_type:type_name -> google.ads.googleads.v17.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType
1, // [1:1] is the sub-list for method output_type
1, // [1:1] is the sub-list for method input_type
1, // [1:1] is the sub-list for extension type_name
@@ -160,13 +160,13 @@ var file_google_ads_googleads_v16_common_asset_usage_proto_depIdxs = []int32{
0, // [0:1] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_asset_usage_proto_init() }
-func file_google_ads_googleads_v16_common_asset_usage_proto_init() {
- if File_google_ads_googleads_v16_common_asset_usage_proto != nil {
+func init() { file_google_ads_googleads_v17_common_asset_usage_proto_init() }
+func file_google_ads_googleads_v17_common_asset_usage_proto_init() {
+ if File_google_ads_googleads_v17_common_asset_usage_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_asset_usage_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_asset_usage_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetUsage); i {
case 0:
return &v.state
@@ -183,18 +183,18 @@ func file_google_ads_googleads_v16_common_asset_usage_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_asset_usage_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_asset_usage_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_asset_usage_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_asset_usage_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_asset_usage_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_asset_usage_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_asset_usage_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_asset_usage_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_asset_usage_proto = out.File
- file_google_ads_googleads_v16_common_asset_usage_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_asset_usage_proto_goTypes = nil
- file_google_ads_googleads_v16_common_asset_usage_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_asset_usage_proto = out.File
+ file_google_ads_googleads_v17_common_asset_usage_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_asset_usage_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_asset_usage_proto_depIdxs = nil
}
diff --git a/common/audiences.pb.go b/common/audiences.pb.go
index 87322ebd..b737bfd2 100644
--- a/common/audiences.pb.go
+++ b/common/audiences.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/audiences.proto
+// source: google/ads/googleads/v17/common/audiences.proto
package common
@@ -57,7 +57,7 @@ type AudienceDimension struct {
func (x *AudienceDimension) Reset() {
*x = AudienceDimension{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -70,7 +70,7 @@ func (x *AudienceDimension) String() string {
func (*AudienceDimension) ProtoMessage() {}
func (x *AudienceDimension) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -83,7 +83,7 @@ func (x *AudienceDimension) ProtoReflect() protoreflect.Message {
// Deprecated: Use AudienceDimension.ProtoReflect.Descriptor instead.
func (*AudienceDimension) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_audiences_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_audiences_proto_rawDescGZIP(), []int{0}
}
func (m *AudienceDimension) GetDimension() isAudienceDimension_Dimension {
@@ -181,7 +181,7 @@ type AudienceExclusionDimension struct {
func (x *AudienceExclusionDimension) Reset() {
*x = AudienceExclusionDimension{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -194,7 +194,7 @@ func (x *AudienceExclusionDimension) String() string {
func (*AudienceExclusionDimension) ProtoMessage() {}
func (x *AudienceExclusionDimension) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -207,7 +207,7 @@ func (x *AudienceExclusionDimension) ProtoReflect() protoreflect.Message {
// Deprecated: Use AudienceExclusionDimension.ProtoReflect.Descriptor instead.
func (*AudienceExclusionDimension) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_audiences_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_audiences_proto_rawDescGZIP(), []int{1}
}
func (x *AudienceExclusionDimension) GetExclusions() []*ExclusionSegment {
@@ -234,7 +234,7 @@ type ExclusionSegment struct {
func (x *ExclusionSegment) Reset() {
*x = ExclusionSegment{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -247,7 +247,7 @@ func (x *ExclusionSegment) String() string {
func (*ExclusionSegment) ProtoMessage() {}
func (x *ExclusionSegment) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -260,7 +260,7 @@ func (x *ExclusionSegment) ProtoReflect() protoreflect.Message {
// Deprecated: Use ExclusionSegment.ProtoReflect.Descriptor instead.
func (*ExclusionSegment) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_audiences_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_common_audiences_proto_rawDescGZIP(), []int{2}
}
func (m *ExclusionSegment) GetSegment() isExclusionSegment_Segment {
@@ -303,7 +303,7 @@ type AgeDimension struct {
func (x *AgeDimension) Reset() {
*x = AgeDimension{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -316,7 +316,7 @@ func (x *AgeDimension) String() string {
func (*AgeDimension) ProtoMessage() {}
func (x *AgeDimension) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -329,7 +329,7 @@ func (x *AgeDimension) ProtoReflect() protoreflect.Message {
// Deprecated: Use AgeDimension.ProtoReflect.Descriptor instead.
func (*AgeDimension) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_audiences_proto_rawDescGZIP(), []int{3}
+ return file_google_ads_googleads_v17_common_audiences_proto_rawDescGZIP(), []int{3}
}
func (x *AgeDimension) GetAgeRanges() []*AgeSegment {
@@ -364,7 +364,7 @@ type AgeSegment struct {
func (x *AgeSegment) Reset() {
*x = AgeSegment{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -377,7 +377,7 @@ func (x *AgeSegment) String() string {
func (*AgeSegment) ProtoMessage() {}
func (x *AgeSegment) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -390,7 +390,7 @@ func (x *AgeSegment) ProtoReflect() protoreflect.Message {
// Deprecated: Use AgeSegment.ProtoReflect.Descriptor instead.
func (*AgeSegment) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_audiences_proto_rawDescGZIP(), []int{4}
+ return file_google_ads_googleads_v17_common_audiences_proto_rawDescGZIP(), []int{4}
}
func (x *AgeSegment) GetMinAge() int32 {
@@ -414,7 +414,7 @@ type GenderDimension struct {
unknownFields protoimpl.UnknownFields
// Included gender demographic segments.
- Genders []enums.GenderTypeEnum_GenderType `protobuf:"varint,1,rep,packed,name=genders,proto3,enum=google.ads.googleads.v16.enums.GenderTypeEnum_GenderType" json:"genders,omitempty"`
+ Genders []enums.GenderTypeEnum_GenderType `protobuf:"varint,1,rep,packed,name=genders,proto3,enum=google.ads.googleads.v17.enums.GenderTypeEnum_GenderType" json:"genders,omitempty"`
// Include users whose gender is not determined.
IncludeUndetermined *bool `protobuf:"varint,2,opt,name=include_undetermined,json=includeUndetermined,proto3,oneof" json:"include_undetermined,omitempty"`
}
@@ -422,7 +422,7 @@ type GenderDimension struct {
func (x *GenderDimension) Reset() {
*x = GenderDimension{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -435,7 +435,7 @@ func (x *GenderDimension) String() string {
func (*GenderDimension) ProtoMessage() {}
func (x *GenderDimension) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -448,7 +448,7 @@ func (x *GenderDimension) ProtoReflect() protoreflect.Message {
// Deprecated: Use GenderDimension.ProtoReflect.Descriptor instead.
func (*GenderDimension) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_audiences_proto_rawDescGZIP(), []int{5}
+ return file_google_ads_googleads_v17_common_audiences_proto_rawDescGZIP(), []int{5}
}
func (x *GenderDimension) GetGenders() []enums.GenderTypeEnum_GenderType {
@@ -472,7 +472,7 @@ type HouseholdIncomeDimension struct {
unknownFields protoimpl.UnknownFields
// Included household income demographic segments.
- IncomeRanges []enums.IncomeRangeTypeEnum_IncomeRangeType `protobuf:"varint,1,rep,packed,name=income_ranges,json=incomeRanges,proto3,enum=google.ads.googleads.v16.enums.IncomeRangeTypeEnum_IncomeRangeType" json:"income_ranges,omitempty"`
+ IncomeRanges []enums.IncomeRangeTypeEnum_IncomeRangeType `protobuf:"varint,1,rep,packed,name=income_ranges,json=incomeRanges,proto3,enum=google.ads.googleads.v17.enums.IncomeRangeTypeEnum_IncomeRangeType" json:"income_ranges,omitempty"`
// Include users whose household income is not determined.
IncludeUndetermined *bool `protobuf:"varint,2,opt,name=include_undetermined,json=includeUndetermined,proto3,oneof" json:"include_undetermined,omitempty"`
}
@@ -480,7 +480,7 @@ type HouseholdIncomeDimension struct {
func (x *HouseholdIncomeDimension) Reset() {
*x = HouseholdIncomeDimension{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -493,7 +493,7 @@ func (x *HouseholdIncomeDimension) String() string {
func (*HouseholdIncomeDimension) ProtoMessage() {}
func (x *HouseholdIncomeDimension) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -506,7 +506,7 @@ func (x *HouseholdIncomeDimension) ProtoReflect() protoreflect.Message {
// Deprecated: Use HouseholdIncomeDimension.ProtoReflect.Descriptor instead.
func (*HouseholdIncomeDimension) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_audiences_proto_rawDescGZIP(), []int{6}
+ return file_google_ads_googleads_v17_common_audiences_proto_rawDescGZIP(), []int{6}
}
func (x *HouseholdIncomeDimension) GetIncomeRanges() []enums.IncomeRangeTypeEnum_IncomeRangeType {
@@ -530,7 +530,7 @@ type ParentalStatusDimension struct {
unknownFields protoimpl.UnknownFields
// Included parental status demographic segments.
- ParentalStatuses []enums.ParentalStatusTypeEnum_ParentalStatusType `protobuf:"varint,1,rep,packed,name=parental_statuses,json=parentalStatuses,proto3,enum=google.ads.googleads.v16.enums.ParentalStatusTypeEnum_ParentalStatusType" json:"parental_statuses,omitempty"`
+ ParentalStatuses []enums.ParentalStatusTypeEnum_ParentalStatusType `protobuf:"varint,1,rep,packed,name=parental_statuses,json=parentalStatuses,proto3,enum=google.ads.googleads.v17.enums.ParentalStatusTypeEnum_ParentalStatusType" json:"parental_statuses,omitempty"`
// Include users whose parental status is undetermined.
IncludeUndetermined *bool `protobuf:"varint,2,opt,name=include_undetermined,json=includeUndetermined,proto3,oneof" json:"include_undetermined,omitempty"`
}
@@ -538,7 +538,7 @@ type ParentalStatusDimension struct {
func (x *ParentalStatusDimension) Reset() {
*x = ParentalStatusDimension{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -551,7 +551,7 @@ func (x *ParentalStatusDimension) String() string {
func (*ParentalStatusDimension) ProtoMessage() {}
func (x *ParentalStatusDimension) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -564,7 +564,7 @@ func (x *ParentalStatusDimension) ProtoReflect() protoreflect.Message {
// Deprecated: Use ParentalStatusDimension.ProtoReflect.Descriptor instead.
func (*ParentalStatusDimension) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_audiences_proto_rawDescGZIP(), []int{7}
+ return file_google_ads_googleads_v17_common_audiences_proto_rawDescGZIP(), []int{7}
}
func (x *ParentalStatusDimension) GetParentalStatuses() []enums.ParentalStatusTypeEnum_ParentalStatusType {
@@ -595,7 +595,7 @@ type AudienceSegmentDimension struct {
func (x *AudienceSegmentDimension) Reset() {
*x = AudienceSegmentDimension{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -608,7 +608,7 @@ func (x *AudienceSegmentDimension) String() string {
func (*AudienceSegmentDimension) ProtoMessage() {}
func (x *AudienceSegmentDimension) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -621,7 +621,7 @@ func (x *AudienceSegmentDimension) ProtoReflect() protoreflect.Message {
// Deprecated: Use AudienceSegmentDimension.ProtoReflect.Descriptor instead.
func (*AudienceSegmentDimension) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_audiences_proto_rawDescGZIP(), []int{8}
+ return file_google_ads_googleads_v17_common_audiences_proto_rawDescGZIP(), []int{8}
}
func (x *AudienceSegmentDimension) GetSegments() []*AudienceSegment {
@@ -652,7 +652,7 @@ type AudienceSegment struct {
func (x *AudienceSegment) Reset() {
*x = AudienceSegment{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -665,7 +665,7 @@ func (x *AudienceSegment) String() string {
func (*AudienceSegment) ProtoMessage() {}
func (x *AudienceSegment) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -678,7 +678,7 @@ func (x *AudienceSegment) ProtoReflect() protoreflect.Message {
// Deprecated: Use AudienceSegment.ProtoReflect.Descriptor instead.
func (*AudienceSegment) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_audiences_proto_rawDescGZIP(), []int{9}
+ return file_google_ads_googleads_v17_common_audiences_proto_rawDescGZIP(), []int{9}
}
func (m *AudienceSegment) GetSegment() isAudienceSegment_Segment {
@@ -763,9 +763,6 @@ func (*AudienceSegment_DetailedDemographic) isAudienceSegment_Segment() {}
func (*AudienceSegment_CustomAudience) isAudienceSegment_Segment() {}
// User list segment.
-// The Similar Audiences sunset starts May 2023. Refer to
-// https://ads-developers.googleblog.com/2022/11/announcing-deprecation-and-sunset-of.html
-// for other options.
type UserListSegment struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
@@ -778,7 +775,7 @@ type UserListSegment struct {
func (x *UserListSegment) Reset() {
*x = UserListSegment{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -791,7 +788,7 @@ func (x *UserListSegment) String() string {
func (*UserListSegment) ProtoMessage() {}
func (x *UserListSegment) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -804,7 +801,7 @@ func (x *UserListSegment) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListSegment.ProtoReflect.Descriptor instead.
func (*UserListSegment) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_audiences_proto_rawDescGZIP(), []int{10}
+ return file_google_ads_googleads_v17_common_audiences_proto_rawDescGZIP(), []int{10}
}
func (x *UserListSegment) GetUserList() string {
@@ -827,7 +824,7 @@ type UserInterestSegment struct {
func (x *UserInterestSegment) Reset() {
*x = UserInterestSegment{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -840,7 +837,7 @@ func (x *UserInterestSegment) String() string {
func (*UserInterestSegment) ProtoMessage() {}
func (x *UserInterestSegment) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -853,7 +850,7 @@ func (x *UserInterestSegment) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserInterestSegment.ProtoReflect.Descriptor instead.
func (*UserInterestSegment) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_audiences_proto_rawDescGZIP(), []int{11}
+ return file_google_ads_googleads_v17_common_audiences_proto_rawDescGZIP(), []int{11}
}
func (x *UserInterestSegment) GetUserInterestCategory() string {
@@ -876,7 +873,7 @@ type LifeEventSegment struct {
func (x *LifeEventSegment) Reset() {
*x = LifeEventSegment{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[12]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -889,7 +886,7 @@ func (x *LifeEventSegment) String() string {
func (*LifeEventSegment) ProtoMessage() {}
func (x *LifeEventSegment) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[12]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -902,7 +899,7 @@ func (x *LifeEventSegment) ProtoReflect() protoreflect.Message {
// Deprecated: Use LifeEventSegment.ProtoReflect.Descriptor instead.
func (*LifeEventSegment) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_audiences_proto_rawDescGZIP(), []int{12}
+ return file_google_ads_googleads_v17_common_audiences_proto_rawDescGZIP(), []int{12}
}
func (x *LifeEventSegment) GetLifeEvent() string {
@@ -925,7 +922,7 @@ type DetailedDemographicSegment struct {
func (x *DetailedDemographicSegment) Reset() {
*x = DetailedDemographicSegment{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[13]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[13]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -938,7 +935,7 @@ func (x *DetailedDemographicSegment) String() string {
func (*DetailedDemographicSegment) ProtoMessage() {}
func (x *DetailedDemographicSegment) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[13]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[13]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -951,7 +948,7 @@ func (x *DetailedDemographicSegment) ProtoReflect() protoreflect.Message {
// Deprecated: Use DetailedDemographicSegment.ProtoReflect.Descriptor instead.
func (*DetailedDemographicSegment) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_audiences_proto_rawDescGZIP(), []int{13}
+ return file_google_ads_googleads_v17_common_audiences_proto_rawDescGZIP(), []int{13}
}
func (x *DetailedDemographicSegment) GetDetailedDemographic() string {
@@ -974,7 +971,7 @@ type CustomAudienceSegment struct {
func (x *CustomAudienceSegment) Reset() {
*x = CustomAudienceSegment{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[14]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[14]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -987,7 +984,7 @@ func (x *CustomAudienceSegment) String() string {
func (*CustomAudienceSegment) ProtoMessage() {}
func (x *CustomAudienceSegment) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_audiences_proto_msgTypes[14]
+ mi := &file_google_ads_googleads_v17_common_audiences_proto_msgTypes[14]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1000,7 +997,7 @@ func (x *CustomAudienceSegment) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomAudienceSegment.ProtoReflect.Descriptor instead.
func (*CustomAudienceSegment) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_audiences_proto_rawDescGZIP(), []int{14}
+ return file_google_ads_googleads_v17_common_audiences_proto_rawDescGZIP(), []int{14}
}
func (x *CustomAudienceSegment) GetCustomAudience() string {
@@ -1010,53 +1007,53 @@ func (x *CustomAudienceSegment) GetCustomAudience() string {
return ""
}
-var File_google_ads_googleads_v16_common_audiences_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_audiences_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_audiences_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_audiences_proto_rawDesc = []byte{
0x0a, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x1a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x2f, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67,
0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x39, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x61, 0x72,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x61, 0x72,
0x65, 0x6e, 0x74, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x74, 0x79, 0x70,
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x22, 0xe6, 0x03, 0x0a, 0x11, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x44,
0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x41, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18,
0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x67, 0x65, 0x44, 0x69, 0x6d, 0x65, 0x6e,
0x73, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x4a, 0x0a, 0x06, 0x67,
0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x47, 0x65,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x47, 0x65,
0x6e, 0x64, 0x65, 0x72, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52,
0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x66, 0x0a, 0x10, 0x68, 0x6f, 0x75, 0x73, 0x65,
0x68, 0x6f, 0x6c, 0x64, 0x5f, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x75, 0x73, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x49, 0x6e, 0x63,
0x6f, 0x6d, 0x65, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x0f,
0x68, 0x6f, 0x75, 0x73, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x12,
0x63, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74,
0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x65, 0x6e,
+ 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x65, 0x6e,
0x74, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69,
0x6f, 0x6e, 0x48, 0x00, 0x52, 0x0e, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x53, 0x74,
0x61, 0x74, 0x75, 0x73, 0x12, 0x68, 0x0a, 0x11, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65,
0x5f, 0x73, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x39, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e,
0x74, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x10, 0x61, 0x75,
0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x42, 0x0b,
@@ -1065,20 +1062,20 @@ var file_google_ads_googleads_v16_common_audiences_proto_rawDesc = []byte{
0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x51, 0x0a, 0x0a, 0x65, 0x78, 0x63,
0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74,
0x52, 0x0a, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x6e, 0x0a, 0x10,
0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74,
0x12, 0x4f, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x65,
0x67, 0x6d, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73,
0x74, 0x42, 0x09, 0x0a, 0x07, 0x73, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x22, 0xab, 0x01, 0x0a,
0x0c, 0x41, 0x67, 0x65, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x4a, 0x0a,
0x0a, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
0x0b, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x67, 0x65, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x09,
0x61, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x12, 0x36, 0x0a, 0x14, 0x69, 0x6e, 0x63,
0x6c, 0x75, 0x64, 0x65, 0x5f, 0x75, 0x6e, 0x64, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x69, 0x6e, 0x65,
@@ -1095,7 +1092,7 @@ var file_google_ads_googleads_v16_common_audiences_proto_rawDesc = []byte{
0x0f, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
0x12, 0x53, 0x0a, 0x07, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
0x0e, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75,
0x6d, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x52, 0x07, 0x67, 0x65,
0x6e, 0x64, 0x65, 0x72, 0x73, 0x12, 0x36, 0x0a, 0x14, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65,
@@ -1108,7 +1105,7 @@ var file_google_ads_googleads_v16_common_audiences_proto_rawDesc = []byte{
0x69, 0x6f, 0x6e, 0x12, 0x68, 0x0a, 0x0d, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x5f, 0x72, 0x61,
0x6e, 0x67, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x43, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x49, 0x6e, 0x63, 0x6f,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x49, 0x6e, 0x63, 0x6f,
0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52,
0x0c, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x12, 0x36, 0x0a,
@@ -1121,7 +1118,7 @@ var file_google_ads_googleads_v16_common_audiences_proto_rawDesc = []byte{
0x73, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x76, 0x0a, 0x11, 0x70, 0x61,
0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x65, 0x73, 0x18,
0x01, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x49, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x61,
0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x54, 0x79, 0x70, 0x65,
@@ -1135,37 +1132,37 @@ var file_google_ads_googleads_v16_common_audiences_proto_rawDesc = []byte{
0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12,
0x4c, 0x0a, 0x08, 0x73, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
0x0b, 0x32, 0x30, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x65, 0x67, 0x6d,
0x65, 0x6e, 0x74, 0x52, 0x08, 0x73, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x22, 0xf3, 0x03,
0x0a, 0x0f, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e,
0x74, 0x12, 0x4f, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x53,
0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69,
0x73, 0x74, 0x12, 0x5b, 0x0a, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72,
0x65, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72,
0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x48,
0x00, 0x52, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x12,
0x52, 0x0a, 0x0a, 0x6c, 0x69, 0x66, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x66, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x53,
0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x09, 0x6c, 0x69, 0x66, 0x65, 0x45, 0x76,
0x65, 0x6e, 0x74, 0x12, 0x70, 0x0a, 0x14, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x5f,
0x64, 0x65, 0x6d, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x18, 0x04, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x3b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x44, 0x65, 0x6d, 0x6f,
0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x48, 0x00,
0x52, 0x13, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x44, 0x65, 0x6d, 0x6f, 0x67, 0x72,
0x61, 0x70, 0x68, 0x69, 0x63, 0x12, 0x61, 0x0a, 0x0f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f,
0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x36,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53,
0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d,
0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x42, 0x09, 0x0a, 0x07, 0x73, 0x65, 0x67, 0x6d,
@@ -1205,73 +1202,73 @@ var file_google_ads_googleads_v16_common_audiences_proto_rawDesc = []byte{
0x10, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63,
0x65, 0x42, 0xee, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0e, 0x41, 0x75, 0x64, 0x69, 0x65,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0e, 0x41, 0x75, 0x64, 0x69, 0x65,
0x6e, 0x63, 0x65, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_audiences_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_audiences_proto_rawDescData = file_google_ads_googleads_v16_common_audiences_proto_rawDesc
+ file_google_ads_googleads_v17_common_audiences_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_audiences_proto_rawDescData = file_google_ads_googleads_v17_common_audiences_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_audiences_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_audiences_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_audiences_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_audiences_proto_rawDescData)
+func file_google_ads_googleads_v17_common_audiences_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_audiences_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_audiences_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_audiences_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_audiences_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_common_audiences_proto_msgTypes = make([]protoimpl.MessageInfo, 15)
-var file_google_ads_googleads_v16_common_audiences_proto_goTypes = []interface{}{
- (*AudienceDimension)(nil), // 0: google.ads.googleads.v16.common.AudienceDimension
- (*AudienceExclusionDimension)(nil), // 1: google.ads.googleads.v16.common.AudienceExclusionDimension
- (*ExclusionSegment)(nil), // 2: google.ads.googleads.v16.common.ExclusionSegment
- (*AgeDimension)(nil), // 3: google.ads.googleads.v16.common.AgeDimension
- (*AgeSegment)(nil), // 4: google.ads.googleads.v16.common.AgeSegment
- (*GenderDimension)(nil), // 5: google.ads.googleads.v16.common.GenderDimension
- (*HouseholdIncomeDimension)(nil), // 6: google.ads.googleads.v16.common.HouseholdIncomeDimension
- (*ParentalStatusDimension)(nil), // 7: google.ads.googleads.v16.common.ParentalStatusDimension
- (*AudienceSegmentDimension)(nil), // 8: google.ads.googleads.v16.common.AudienceSegmentDimension
- (*AudienceSegment)(nil), // 9: google.ads.googleads.v16.common.AudienceSegment
- (*UserListSegment)(nil), // 10: google.ads.googleads.v16.common.UserListSegment
- (*UserInterestSegment)(nil), // 11: google.ads.googleads.v16.common.UserInterestSegment
- (*LifeEventSegment)(nil), // 12: google.ads.googleads.v16.common.LifeEventSegment
- (*DetailedDemographicSegment)(nil), // 13: google.ads.googleads.v16.common.DetailedDemographicSegment
- (*CustomAudienceSegment)(nil), // 14: google.ads.googleads.v16.common.CustomAudienceSegment
- (enums.GenderTypeEnum_GenderType)(0), // 15: google.ads.googleads.v16.enums.GenderTypeEnum.GenderType
- (enums.IncomeRangeTypeEnum_IncomeRangeType)(0), // 16: google.ads.googleads.v16.enums.IncomeRangeTypeEnum.IncomeRangeType
- (enums.ParentalStatusTypeEnum_ParentalStatusType)(0), // 17: google.ads.googleads.v16.enums.ParentalStatusTypeEnum.ParentalStatusType
-}
-var file_google_ads_googleads_v16_common_audiences_proto_depIdxs = []int32{
- 3, // 0: google.ads.googleads.v16.common.AudienceDimension.age:type_name -> google.ads.googleads.v16.common.AgeDimension
- 5, // 1: google.ads.googleads.v16.common.AudienceDimension.gender:type_name -> google.ads.googleads.v16.common.GenderDimension
- 6, // 2: google.ads.googleads.v16.common.AudienceDimension.household_income:type_name -> google.ads.googleads.v16.common.HouseholdIncomeDimension
- 7, // 3: google.ads.googleads.v16.common.AudienceDimension.parental_status:type_name -> google.ads.googleads.v16.common.ParentalStatusDimension
- 8, // 4: google.ads.googleads.v16.common.AudienceDimension.audience_segments:type_name -> google.ads.googleads.v16.common.AudienceSegmentDimension
- 2, // 5: google.ads.googleads.v16.common.AudienceExclusionDimension.exclusions:type_name -> google.ads.googleads.v16.common.ExclusionSegment
- 10, // 6: google.ads.googleads.v16.common.ExclusionSegment.user_list:type_name -> google.ads.googleads.v16.common.UserListSegment
- 4, // 7: google.ads.googleads.v16.common.AgeDimension.age_ranges:type_name -> google.ads.googleads.v16.common.AgeSegment
- 15, // 8: google.ads.googleads.v16.common.GenderDimension.genders:type_name -> google.ads.googleads.v16.enums.GenderTypeEnum.GenderType
- 16, // 9: google.ads.googleads.v16.common.HouseholdIncomeDimension.income_ranges:type_name -> google.ads.googleads.v16.enums.IncomeRangeTypeEnum.IncomeRangeType
- 17, // 10: google.ads.googleads.v16.common.ParentalStatusDimension.parental_statuses:type_name -> google.ads.googleads.v16.enums.ParentalStatusTypeEnum.ParentalStatusType
- 9, // 11: google.ads.googleads.v16.common.AudienceSegmentDimension.segments:type_name -> google.ads.googleads.v16.common.AudienceSegment
- 10, // 12: google.ads.googleads.v16.common.AudienceSegment.user_list:type_name -> google.ads.googleads.v16.common.UserListSegment
- 11, // 13: google.ads.googleads.v16.common.AudienceSegment.user_interest:type_name -> google.ads.googleads.v16.common.UserInterestSegment
- 12, // 14: google.ads.googleads.v16.common.AudienceSegment.life_event:type_name -> google.ads.googleads.v16.common.LifeEventSegment
- 13, // 15: google.ads.googleads.v16.common.AudienceSegment.detailed_demographic:type_name -> google.ads.googleads.v16.common.DetailedDemographicSegment
- 14, // 16: google.ads.googleads.v16.common.AudienceSegment.custom_audience:type_name -> google.ads.googleads.v16.common.CustomAudienceSegment
+ return file_google_ads_googleads_v17_common_audiences_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_common_audiences_proto_msgTypes = make([]protoimpl.MessageInfo, 15)
+var file_google_ads_googleads_v17_common_audiences_proto_goTypes = []interface{}{
+ (*AudienceDimension)(nil), // 0: google.ads.googleads.v17.common.AudienceDimension
+ (*AudienceExclusionDimension)(nil), // 1: google.ads.googleads.v17.common.AudienceExclusionDimension
+ (*ExclusionSegment)(nil), // 2: google.ads.googleads.v17.common.ExclusionSegment
+ (*AgeDimension)(nil), // 3: google.ads.googleads.v17.common.AgeDimension
+ (*AgeSegment)(nil), // 4: google.ads.googleads.v17.common.AgeSegment
+ (*GenderDimension)(nil), // 5: google.ads.googleads.v17.common.GenderDimension
+ (*HouseholdIncomeDimension)(nil), // 6: google.ads.googleads.v17.common.HouseholdIncomeDimension
+ (*ParentalStatusDimension)(nil), // 7: google.ads.googleads.v17.common.ParentalStatusDimension
+ (*AudienceSegmentDimension)(nil), // 8: google.ads.googleads.v17.common.AudienceSegmentDimension
+ (*AudienceSegment)(nil), // 9: google.ads.googleads.v17.common.AudienceSegment
+ (*UserListSegment)(nil), // 10: google.ads.googleads.v17.common.UserListSegment
+ (*UserInterestSegment)(nil), // 11: google.ads.googleads.v17.common.UserInterestSegment
+ (*LifeEventSegment)(nil), // 12: google.ads.googleads.v17.common.LifeEventSegment
+ (*DetailedDemographicSegment)(nil), // 13: google.ads.googleads.v17.common.DetailedDemographicSegment
+ (*CustomAudienceSegment)(nil), // 14: google.ads.googleads.v17.common.CustomAudienceSegment
+ (enums.GenderTypeEnum_GenderType)(0), // 15: google.ads.googleads.v17.enums.GenderTypeEnum.GenderType
+ (enums.IncomeRangeTypeEnum_IncomeRangeType)(0), // 16: google.ads.googleads.v17.enums.IncomeRangeTypeEnum.IncomeRangeType
+ (enums.ParentalStatusTypeEnum_ParentalStatusType)(0), // 17: google.ads.googleads.v17.enums.ParentalStatusTypeEnum.ParentalStatusType
+}
+var file_google_ads_googleads_v17_common_audiences_proto_depIdxs = []int32{
+ 3, // 0: google.ads.googleads.v17.common.AudienceDimension.age:type_name -> google.ads.googleads.v17.common.AgeDimension
+ 5, // 1: google.ads.googleads.v17.common.AudienceDimension.gender:type_name -> google.ads.googleads.v17.common.GenderDimension
+ 6, // 2: google.ads.googleads.v17.common.AudienceDimension.household_income:type_name -> google.ads.googleads.v17.common.HouseholdIncomeDimension
+ 7, // 3: google.ads.googleads.v17.common.AudienceDimension.parental_status:type_name -> google.ads.googleads.v17.common.ParentalStatusDimension
+ 8, // 4: google.ads.googleads.v17.common.AudienceDimension.audience_segments:type_name -> google.ads.googleads.v17.common.AudienceSegmentDimension
+ 2, // 5: google.ads.googleads.v17.common.AudienceExclusionDimension.exclusions:type_name -> google.ads.googleads.v17.common.ExclusionSegment
+ 10, // 6: google.ads.googleads.v17.common.ExclusionSegment.user_list:type_name -> google.ads.googleads.v17.common.UserListSegment
+ 4, // 7: google.ads.googleads.v17.common.AgeDimension.age_ranges:type_name -> google.ads.googleads.v17.common.AgeSegment
+ 15, // 8: google.ads.googleads.v17.common.GenderDimension.genders:type_name -> google.ads.googleads.v17.enums.GenderTypeEnum.GenderType
+ 16, // 9: google.ads.googleads.v17.common.HouseholdIncomeDimension.income_ranges:type_name -> google.ads.googleads.v17.enums.IncomeRangeTypeEnum.IncomeRangeType
+ 17, // 10: google.ads.googleads.v17.common.ParentalStatusDimension.parental_statuses:type_name -> google.ads.googleads.v17.enums.ParentalStatusTypeEnum.ParentalStatusType
+ 9, // 11: google.ads.googleads.v17.common.AudienceSegmentDimension.segments:type_name -> google.ads.googleads.v17.common.AudienceSegment
+ 10, // 12: google.ads.googleads.v17.common.AudienceSegment.user_list:type_name -> google.ads.googleads.v17.common.UserListSegment
+ 11, // 13: google.ads.googleads.v17.common.AudienceSegment.user_interest:type_name -> google.ads.googleads.v17.common.UserInterestSegment
+ 12, // 14: google.ads.googleads.v17.common.AudienceSegment.life_event:type_name -> google.ads.googleads.v17.common.LifeEventSegment
+ 13, // 15: google.ads.googleads.v17.common.AudienceSegment.detailed_demographic:type_name -> google.ads.googleads.v17.common.DetailedDemographicSegment
+ 14, // 16: google.ads.googleads.v17.common.AudienceSegment.custom_audience:type_name -> google.ads.googleads.v17.common.CustomAudienceSegment
17, // [17:17] is the sub-list for method output_type
17, // [17:17] is the sub-list for method input_type
17, // [17:17] is the sub-list for extension type_name
@@ -1279,13 +1276,13 @@ var file_google_ads_googleads_v16_common_audiences_proto_depIdxs = []int32{
0, // [0:17] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_audiences_proto_init() }
-func file_google_ads_googleads_v16_common_audiences_proto_init() {
- if File_google_ads_googleads_v16_common_audiences_proto != nil {
+func init() { file_google_ads_googleads_v17_common_audiences_proto_init() }
+func file_google_ads_googleads_v17_common_audiences_proto_init() {
+ if File_google_ads_googleads_v17_common_audiences_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AudienceDimension); i {
case 0:
return &v.state
@@ -1297,7 +1294,7 @@ func file_google_ads_googleads_v16_common_audiences_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AudienceExclusionDimension); i {
case 0:
return &v.state
@@ -1309,7 +1306,7 @@ func file_google_ads_googleads_v16_common_audiences_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExclusionSegment); i {
case 0:
return &v.state
@@ -1321,7 +1318,7 @@ func file_google_ads_googleads_v16_common_audiences_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AgeDimension); i {
case 0:
return &v.state
@@ -1333,7 +1330,7 @@ func file_google_ads_googleads_v16_common_audiences_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AgeSegment); i {
case 0:
return &v.state
@@ -1345,7 +1342,7 @@ func file_google_ads_googleads_v16_common_audiences_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GenderDimension); i {
case 0:
return &v.state
@@ -1357,7 +1354,7 @@ func file_google_ads_googleads_v16_common_audiences_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HouseholdIncomeDimension); i {
case 0:
return &v.state
@@ -1369,7 +1366,7 @@ func file_google_ads_googleads_v16_common_audiences_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ParentalStatusDimension); i {
case 0:
return &v.state
@@ -1381,7 +1378,7 @@ func file_google_ads_googleads_v16_common_audiences_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AudienceSegmentDimension); i {
case 0:
return &v.state
@@ -1393,7 +1390,7 @@ func file_google_ads_googleads_v16_common_audiences_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AudienceSegment); i {
case 0:
return &v.state
@@ -1405,7 +1402,7 @@ func file_google_ads_googleads_v16_common_audiences_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListSegment); i {
case 0:
return &v.state
@@ -1417,7 +1414,7 @@ func file_google_ads_googleads_v16_common_audiences_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserInterestSegment); i {
case 0:
return &v.state
@@ -1429,7 +1426,7 @@ func file_google_ads_googleads_v16_common_audiences_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LifeEventSegment); i {
case 0:
return &v.state
@@ -1441,7 +1438,7 @@ func file_google_ads_googleads_v16_common_audiences_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DetailedDemographicSegment); i {
case 0:
return &v.state
@@ -1453,7 +1450,7 @@ func file_google_ads_googleads_v16_common_audiences_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomAudienceSegment); i {
case 0:
return &v.state
@@ -1466,49 +1463,49 @@ func file_google_ads_googleads_v16_common_audiences_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[0].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[0].OneofWrappers = []interface{}{
(*AudienceDimension_Age)(nil),
(*AudienceDimension_Gender)(nil),
(*AudienceDimension_HouseholdIncome)(nil),
(*AudienceDimension_ParentalStatus)(nil),
(*AudienceDimension_AudienceSegments)(nil),
}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[2].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[2].OneofWrappers = []interface{}{
(*ExclusionSegment_UserList)(nil),
}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[3].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[4].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[5].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[6].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[7].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[9].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[3].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[4].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[5].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[6].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[7].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[9].OneofWrappers = []interface{}{
(*AudienceSegment_UserList)(nil),
(*AudienceSegment_UserInterest)(nil),
(*AudienceSegment_LifeEvent)(nil),
(*AudienceSegment_DetailedDemographic)(nil),
(*AudienceSegment_CustomAudience)(nil),
}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[10].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[11].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[12].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[13].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_audiences_proto_msgTypes[14].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[10].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[11].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[12].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[13].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_audiences_proto_msgTypes[14].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_audiences_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_audiences_proto_rawDesc,
NumEnums: 0,
NumMessages: 15,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_audiences_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_audiences_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_audiences_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_audiences_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_audiences_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_audiences_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_audiences_proto = out.File
- file_google_ads_googleads_v16_common_audiences_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_audiences_proto_goTypes = nil
- file_google_ads_googleads_v16_common_audiences_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_audiences_proto = out.File
+ file_google_ads_googleads_v17_common_audiences_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_audiences_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_audiences_proto_depIdxs = nil
}
diff --git a/common/bidding.pb.go b/common/bidding.pb.go
index 0f9d125c..65c89069 100644
--- a/common/bidding.pb.go
+++ b/common/bidding.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/bidding.proto
+// source: google/ads/googleads/v17/common/bidding.proto
package common
@@ -52,7 +52,7 @@ type Commission struct {
func (x *Commission) Reset() {
*x = Commission{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -65,7 +65,7 @@ func (x *Commission) String() string {
func (*Commission) ProtoMessage() {}
func (x *Commission) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -78,7 +78,7 @@ func (x *Commission) ProtoReflect() protoreflect.Message {
// Deprecated: Use Commission.ProtoReflect.Descriptor instead.
func (*Commission) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_bidding_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_bidding_proto_rawDescGZIP(), []int{0}
}
func (x *Commission) GetCommissionRateMicros() int64 {
@@ -103,7 +103,7 @@ type EnhancedCpc struct {
func (x *EnhancedCpc) Reset() {
*x = EnhancedCpc{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -116,7 +116,7 @@ func (x *EnhancedCpc) String() string {
func (*EnhancedCpc) ProtoMessage() {}
func (x *EnhancedCpc) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -129,7 +129,7 @@ func (x *EnhancedCpc) ProtoReflect() protoreflect.Message {
// Deprecated: Use EnhancedCpc.ProtoReflect.Descriptor instead.
func (*EnhancedCpc) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_bidding_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_bidding_proto_rawDescGZIP(), []int{1}
}
// Manual bidding strategy that allows advertiser to set the bid per
@@ -143,7 +143,7 @@ type ManualCpa struct {
func (x *ManualCpa) Reset() {
*x = ManualCpa{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -156,7 +156,7 @@ func (x *ManualCpa) String() string {
func (*ManualCpa) ProtoMessage() {}
func (x *ManualCpa) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -169,7 +169,7 @@ func (x *ManualCpa) ProtoReflect() protoreflect.Message {
// Deprecated: Use ManualCpa.ProtoReflect.Descriptor instead.
func (*ManualCpa) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_bidding_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_common_bidding_proto_rawDescGZIP(), []int{2}
}
// Manual click-based bidding where user pays per click.
@@ -185,7 +185,7 @@ type ManualCpc struct {
func (x *ManualCpc) Reset() {
*x = ManualCpc{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -198,7 +198,7 @@ func (x *ManualCpc) String() string {
func (*ManualCpc) ProtoMessage() {}
func (x *ManualCpc) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -211,7 +211,7 @@ func (x *ManualCpc) ProtoReflect() protoreflect.Message {
// Deprecated: Use ManualCpc.ProtoReflect.Descriptor instead.
func (*ManualCpc) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_bidding_proto_rawDescGZIP(), []int{3}
+ return file_google_ads_googleads_v17_common_bidding_proto_rawDescGZIP(), []int{3}
}
func (x *ManualCpc) GetEnhancedCpcEnabled() bool {
@@ -231,7 +231,7 @@ type ManualCpm struct {
func (x *ManualCpm) Reset() {
*x = ManualCpm{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -244,7 +244,7 @@ func (x *ManualCpm) String() string {
func (*ManualCpm) ProtoMessage() {}
func (x *ManualCpm) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -257,7 +257,7 @@ func (x *ManualCpm) ProtoReflect() protoreflect.Message {
// Deprecated: Use ManualCpm.ProtoReflect.Descriptor instead.
func (*ManualCpm) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_bidding_proto_rawDescGZIP(), []int{4}
+ return file_google_ads_googleads_v17_common_bidding_proto_rawDescGZIP(), []int{4}
}
// View based bidding where user pays per video view.
@@ -270,7 +270,7 @@ type ManualCpv struct {
func (x *ManualCpv) Reset() {
*x = ManualCpv{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -283,7 +283,7 @@ func (x *ManualCpv) String() string {
func (*ManualCpv) ProtoMessage() {}
func (x *ManualCpv) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -296,7 +296,7 @@ func (x *ManualCpv) ProtoReflect() protoreflect.Message {
// Deprecated: Use ManualCpv.ProtoReflect.Descriptor instead.
func (*ManualCpv) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_bidding_proto_rawDescGZIP(), []int{5}
+ return file_google_ads_googleads_v17_common_bidding_proto_rawDescGZIP(), []int{5}
}
// An automated bidding strategy to help get the most conversions for your
@@ -326,7 +326,7 @@ type MaximizeConversions struct {
func (x *MaximizeConversions) Reset() {
*x = MaximizeConversions{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -339,7 +339,7 @@ func (x *MaximizeConversions) String() string {
func (*MaximizeConversions) ProtoMessage() {}
func (x *MaximizeConversions) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -352,7 +352,7 @@ func (x *MaximizeConversions) ProtoReflect() protoreflect.Message {
// Deprecated: Use MaximizeConversions.ProtoReflect.Descriptor instead.
func (*MaximizeConversions) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_bidding_proto_rawDescGZIP(), []int{6}
+ return file_google_ads_googleads_v17_common_bidding_proto_rawDescGZIP(), []int{6}
}
func (x *MaximizeConversions) GetCpcBidCeilingMicros() int64 {
@@ -402,7 +402,7 @@ type MaximizeConversionValue struct {
func (x *MaximizeConversionValue) Reset() {
*x = MaximizeConversionValue{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -415,7 +415,7 @@ func (x *MaximizeConversionValue) String() string {
func (*MaximizeConversionValue) ProtoMessage() {}
func (x *MaximizeConversionValue) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -428,7 +428,7 @@ func (x *MaximizeConversionValue) ProtoReflect() protoreflect.Message {
// Deprecated: Use MaximizeConversionValue.ProtoReflect.Descriptor instead.
func (*MaximizeConversionValue) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_bidding_proto_rawDescGZIP(), []int{7}
+ return file_google_ads_googleads_v17_common_bidding_proto_rawDescGZIP(), []int{7}
}
func (x *MaximizeConversionValue) GetTargetRoas() float64 {
@@ -476,7 +476,7 @@ type TargetCpa struct {
func (x *TargetCpa) Reset() {
*x = TargetCpa{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -489,7 +489,7 @@ func (x *TargetCpa) String() string {
func (*TargetCpa) ProtoMessage() {}
func (x *TargetCpa) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -502,7 +502,7 @@ func (x *TargetCpa) ProtoReflect() protoreflect.Message {
// Deprecated: Use TargetCpa.ProtoReflect.Descriptor instead.
func (*TargetCpa) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_bidding_proto_rawDescGZIP(), []int{8}
+ return file_google_ads_googleads_v17_common_bidding_proto_rawDescGZIP(), []int{8}
}
func (x *TargetCpa) GetTargetCpaMicros() int64 {
@@ -544,7 +544,7 @@ type TargetCpm struct {
func (x *TargetCpm) Reset() {
*x = TargetCpm{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -557,7 +557,7 @@ func (x *TargetCpm) String() string {
func (*TargetCpm) ProtoMessage() {}
func (x *TargetCpm) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -570,7 +570,7 @@ func (x *TargetCpm) ProtoReflect() protoreflect.Message {
// Deprecated: Use TargetCpm.ProtoReflect.Descriptor instead.
func (*TargetCpm) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_bidding_proto_rawDescGZIP(), []int{9}
+ return file_google_ads_googleads_v17_common_bidding_proto_rawDescGZIP(), []int{9}
}
func (m *TargetCpm) GetGoal() isTargetCpm_Goal {
@@ -609,13 +609,13 @@ type TargetCpmTargetFrequencyGoal struct {
TargetCount int64 `protobuf:"varint,1,opt,name=target_count,json=targetCount,proto3" json:"target_count,omitempty"`
// Time window expressing the period over which you want to reach
// the specified target_count.
- TimeUnit enums.TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit `protobuf:"varint,2,opt,name=time_unit,json=timeUnit,proto3,enum=google.ads.googleads.v16.enums.TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit" json:"time_unit,omitempty"`
+ TimeUnit enums.TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit `protobuf:"varint,2,opt,name=time_unit,json=timeUnit,proto3,enum=google.ads.googleads.v17.enums.TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit" json:"time_unit,omitempty"`
}
func (x *TargetCpmTargetFrequencyGoal) Reset() {
*x = TargetCpmTargetFrequencyGoal{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -628,7 +628,7 @@ func (x *TargetCpmTargetFrequencyGoal) String() string {
func (*TargetCpmTargetFrequencyGoal) ProtoMessage() {}
func (x *TargetCpmTargetFrequencyGoal) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -641,7 +641,7 @@ func (x *TargetCpmTargetFrequencyGoal) ProtoReflect() protoreflect.Message {
// Deprecated: Use TargetCpmTargetFrequencyGoal.ProtoReflect.Descriptor instead.
func (*TargetCpmTargetFrequencyGoal) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_bidding_proto_rawDescGZIP(), []int{10}
+ return file_google_ads_googleads_v17_common_bidding_proto_rawDescGZIP(), []int{10}
}
func (x *TargetCpmTargetFrequencyGoal) GetTargetCount() int64 {
@@ -667,7 +667,7 @@ type TargetImpressionShare struct {
unknownFields protoimpl.UnknownFields
// The targeted location on the search results page.
- Location enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation `protobuf:"varint,1,opt,name=location,proto3,enum=google.ads.googleads.v16.enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation" json:"location,omitempty"`
+ Location enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation `protobuf:"varint,1,opt,name=location,proto3,enum=google.ads.googleads.v17.enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation" json:"location,omitempty"`
// The chosen fraction of ads to be shown in the targeted location in micros.
// For example, 1% equals 10,000.
LocationFractionMicros *int64 `protobuf:"varint,4,opt,name=location_fraction_micros,json=locationFractionMicros,proto3,oneof" json:"location_fraction_micros,omitempty"`
@@ -680,7 +680,7 @@ type TargetImpressionShare struct {
func (x *TargetImpressionShare) Reset() {
*x = TargetImpressionShare{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -693,7 +693,7 @@ func (x *TargetImpressionShare) String() string {
func (*TargetImpressionShare) ProtoMessage() {}
func (x *TargetImpressionShare) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -706,7 +706,7 @@ func (x *TargetImpressionShare) ProtoReflect() protoreflect.Message {
// Deprecated: Use TargetImpressionShare.ProtoReflect.Descriptor instead.
func (*TargetImpressionShare) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_bidding_proto_rawDescGZIP(), []int{11}
+ return file_google_ads_googleads_v17_common_bidding_proto_rawDescGZIP(), []int{11}
}
func (x *TargetImpressionShare) GetLocation() enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation {
@@ -753,7 +753,7 @@ type TargetRoas struct {
func (x *TargetRoas) Reset() {
*x = TargetRoas{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[12]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -766,7 +766,7 @@ func (x *TargetRoas) String() string {
func (*TargetRoas) ProtoMessage() {}
func (x *TargetRoas) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[12]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -779,7 +779,7 @@ func (x *TargetRoas) ProtoReflect() protoreflect.Message {
// Deprecated: Use TargetRoas.ProtoReflect.Descriptor instead.
func (*TargetRoas) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_bidding_proto_rawDescGZIP(), []int{12}
+ return file_google_ads_googleads_v17_common_bidding_proto_rawDescGZIP(), []int{12}
}
func (x *TargetRoas) GetTargetRoas() float64 {
@@ -810,7 +810,7 @@ type TargetSpend struct {
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
- // The spend target under which to maximize clicks.
+ // Deprecated: The spend target under which to maximize clicks.
// A TargetSpend bidder will attempt to spend the smaller of this value
// or the natural throttling spend amount.
// If not specified, the budget is used as the spend target.
@@ -818,7 +818,7 @@ type TargetSpend struct {
// https://ads-developers.googleblog.com/2020/05/reminder-about-sunset-creation-of.html
// for details.
//
- // Deprecated: Marked as deprecated in google/ads/googleads/v16/common/bidding.proto.
+ // Deprecated: Marked as deprecated in google/ads/googleads/v17/common/bidding.proto.
TargetSpendMicros *int64 `protobuf:"varint,3,opt,name=target_spend_micros,json=targetSpendMicros,proto3,oneof" json:"target_spend_micros,omitempty"`
// Maximum bid limit that can be set by the bid strategy.
// The limit applies to all keywords managed by the strategy.
@@ -828,7 +828,7 @@ type TargetSpend struct {
func (x *TargetSpend) Reset() {
*x = TargetSpend{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[13]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[13]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -841,7 +841,7 @@ func (x *TargetSpend) String() string {
func (*TargetSpend) ProtoMessage() {}
func (x *TargetSpend) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[13]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[13]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -854,10 +854,10 @@ func (x *TargetSpend) ProtoReflect() protoreflect.Message {
// Deprecated: Use TargetSpend.ProtoReflect.Descriptor instead.
func (*TargetSpend) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_bidding_proto_rawDescGZIP(), []int{13}
+ return file_google_ads_googleads_v17_common_bidding_proto_rawDescGZIP(), []int{13}
}
-// Deprecated: Marked as deprecated in google/ads/googleads/v16/common/bidding.proto.
+// Deprecated: Marked as deprecated in google/ads/googleads/v17/common/bidding.proto.
func (x *TargetSpend) GetTargetSpendMicros() int64 {
if x != nil && x.TargetSpendMicros != nil {
return *x.TargetSpendMicros
@@ -894,7 +894,7 @@ type PercentCpc struct {
func (x *PercentCpc) Reset() {
*x = PercentCpc{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[14]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[14]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -907,7 +907,7 @@ func (x *PercentCpc) String() string {
func (*PercentCpc) ProtoMessage() {}
func (x *PercentCpc) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_bidding_proto_msgTypes[14]
+ mi := &file_google_ads_googleads_v17_common_bidding_proto_msgTypes[14]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -920,7 +920,7 @@ func (x *PercentCpc) ProtoReflect() protoreflect.Message {
// Deprecated: Use PercentCpc.ProtoReflect.Descriptor instead.
func (*PercentCpc) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_bidding_proto_rawDescGZIP(), []int{14}
+ return file_google_ads_googleads_v17_common_bidding_proto_rawDescGZIP(), []int{14}
}
func (x *PercentCpc) GetCpcBidCeilingMicros() int64 {
@@ -937,20 +937,20 @@ func (x *PercentCpc) GetEnhancedCpcEnabled() bool {
return false
}
-var File_google_ads_googleads_v16_common_bidding_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_bidding_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_bidding_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_bidding_proto_rawDesc = []byte{
0x0a, 0x2d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x1a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63,
0x79, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x75, 0x6e, 0x69, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x1a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x2f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x62, 0x0a, 0x0a, 0x43, 0x6f, 0x6d, 0x6d,
@@ -1009,7 +1009,7 @@ var file_google_ads_googleads_v16_common_bidding_proto_rawDesc = []byte{
0x43, 0x70, 0x6d, 0x12, 0x73, 0x0a, 0x15, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x66, 0x72,
0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x18, 0x01, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x6d, 0x54, 0x61,
0x72, 0x67, 0x65, 0x74, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x47, 0x6f, 0x61,
0x6c, 0x48, 0x00, 0x52, 0x13, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x46, 0x72, 0x65, 0x71, 0x75,
@@ -1021,7 +1021,7 @@ var file_google_ads_googleads_v16_common_bidding_proto_rawDesc = []byte{
0x6f, 0x75, 0x6e, 0x74, 0x12, 0x70, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x75, 0x6e, 0x69,
0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x53, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x46,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x46,
0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x55, 0x6e, 0x69, 0x74,
0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x46, 0x72, 0x65, 0x71, 0x75,
0x65, 0x6e, 0x63, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x55, 0x6e, 0x69, 0x74, 0x52, 0x08, 0x74, 0x69,
@@ -1029,7 +1029,7 @@ var file_google_ads_googleads_v16_common_bidding_proto_rawDesc = []byte{
0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65,
0x12, 0x7b, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01,
0x28, 0x0e, 0x32, 0x5f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73,
0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x49, 0x6d, 0x70, 0x72,
@@ -1085,58 +1085,58 @@ var file_google_ads_googleads_v16_common_bidding_proto_rawDesc = []byte{
0x61, 0x6e, 0x63, 0x65, 0x64, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65,
0x64, 0x42, 0xec, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0c, 0x42, 0x69, 0x64, 0x64, 0x69,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0c, 0x42, 0x69, 0x64, 0x64, 0x69,
0x6e, 0x67, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_bidding_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_bidding_proto_rawDescData = file_google_ads_googleads_v16_common_bidding_proto_rawDesc
+ file_google_ads_googleads_v17_common_bidding_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_bidding_proto_rawDescData = file_google_ads_googleads_v17_common_bidding_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_bidding_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_bidding_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_bidding_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_bidding_proto_rawDescData)
+func file_google_ads_googleads_v17_common_bidding_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_bidding_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_bidding_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_bidding_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_bidding_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_common_bidding_proto_msgTypes = make([]protoimpl.MessageInfo, 15)
-var file_google_ads_googleads_v16_common_bidding_proto_goTypes = []interface{}{
- (*Commission)(nil), // 0: google.ads.googleads.v16.common.Commission
- (*EnhancedCpc)(nil), // 1: google.ads.googleads.v16.common.EnhancedCpc
- (*ManualCpa)(nil), // 2: google.ads.googleads.v16.common.ManualCpa
- (*ManualCpc)(nil), // 3: google.ads.googleads.v16.common.ManualCpc
- (*ManualCpm)(nil), // 4: google.ads.googleads.v16.common.ManualCpm
- (*ManualCpv)(nil), // 5: google.ads.googleads.v16.common.ManualCpv
- (*MaximizeConversions)(nil), // 6: google.ads.googleads.v16.common.MaximizeConversions
- (*MaximizeConversionValue)(nil), // 7: google.ads.googleads.v16.common.MaximizeConversionValue
- (*TargetCpa)(nil), // 8: google.ads.googleads.v16.common.TargetCpa
- (*TargetCpm)(nil), // 9: google.ads.googleads.v16.common.TargetCpm
- (*TargetCpmTargetFrequencyGoal)(nil), // 10: google.ads.googleads.v16.common.TargetCpmTargetFrequencyGoal
- (*TargetImpressionShare)(nil), // 11: google.ads.googleads.v16.common.TargetImpressionShare
- (*TargetRoas)(nil), // 12: google.ads.googleads.v16.common.TargetRoas
- (*TargetSpend)(nil), // 13: google.ads.googleads.v16.common.TargetSpend
- (*PercentCpc)(nil), // 14: google.ads.googleads.v16.common.PercentCpc
- (enums.TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit)(0), // 15: google.ads.googleads.v16.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit
- (enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation)(0), // 16: google.ads.googleads.v16.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation
-}
-var file_google_ads_googleads_v16_common_bidding_proto_depIdxs = []int32{
- 10, // 0: google.ads.googleads.v16.common.TargetCpm.target_frequency_goal:type_name -> google.ads.googleads.v16.common.TargetCpmTargetFrequencyGoal
- 15, // 1: google.ads.googleads.v16.common.TargetCpmTargetFrequencyGoal.time_unit:type_name -> google.ads.googleads.v16.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit
- 16, // 2: google.ads.googleads.v16.common.TargetImpressionShare.location:type_name -> google.ads.googleads.v16.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation
+ return file_google_ads_googleads_v17_common_bidding_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_common_bidding_proto_msgTypes = make([]protoimpl.MessageInfo, 15)
+var file_google_ads_googleads_v17_common_bidding_proto_goTypes = []interface{}{
+ (*Commission)(nil), // 0: google.ads.googleads.v17.common.Commission
+ (*EnhancedCpc)(nil), // 1: google.ads.googleads.v17.common.EnhancedCpc
+ (*ManualCpa)(nil), // 2: google.ads.googleads.v17.common.ManualCpa
+ (*ManualCpc)(nil), // 3: google.ads.googleads.v17.common.ManualCpc
+ (*ManualCpm)(nil), // 4: google.ads.googleads.v17.common.ManualCpm
+ (*ManualCpv)(nil), // 5: google.ads.googleads.v17.common.ManualCpv
+ (*MaximizeConversions)(nil), // 6: google.ads.googleads.v17.common.MaximizeConversions
+ (*MaximizeConversionValue)(nil), // 7: google.ads.googleads.v17.common.MaximizeConversionValue
+ (*TargetCpa)(nil), // 8: google.ads.googleads.v17.common.TargetCpa
+ (*TargetCpm)(nil), // 9: google.ads.googleads.v17.common.TargetCpm
+ (*TargetCpmTargetFrequencyGoal)(nil), // 10: google.ads.googleads.v17.common.TargetCpmTargetFrequencyGoal
+ (*TargetImpressionShare)(nil), // 11: google.ads.googleads.v17.common.TargetImpressionShare
+ (*TargetRoas)(nil), // 12: google.ads.googleads.v17.common.TargetRoas
+ (*TargetSpend)(nil), // 13: google.ads.googleads.v17.common.TargetSpend
+ (*PercentCpc)(nil), // 14: google.ads.googleads.v17.common.PercentCpc
+ (enums.TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit)(0), // 15: google.ads.googleads.v17.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit
+ (enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation)(0), // 16: google.ads.googleads.v17.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation
+}
+var file_google_ads_googleads_v17_common_bidding_proto_depIdxs = []int32{
+ 10, // 0: google.ads.googleads.v17.common.TargetCpm.target_frequency_goal:type_name -> google.ads.googleads.v17.common.TargetCpmTargetFrequencyGoal
+ 15, // 1: google.ads.googleads.v17.common.TargetCpmTargetFrequencyGoal.time_unit:type_name -> google.ads.googleads.v17.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit
+ 16, // 2: google.ads.googleads.v17.common.TargetImpressionShare.location:type_name -> google.ads.googleads.v17.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation
3, // [3:3] is the sub-list for method output_type
3, // [3:3] is the sub-list for method input_type
3, // [3:3] is the sub-list for extension type_name
@@ -1144,13 +1144,13 @@ var file_google_ads_googleads_v16_common_bidding_proto_depIdxs = []int32{
0, // [0:3] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_bidding_proto_init() }
-func file_google_ads_googleads_v16_common_bidding_proto_init() {
- if File_google_ads_googleads_v16_common_bidding_proto != nil {
+func init() { file_google_ads_googleads_v17_common_bidding_proto_init() }
+func file_google_ads_googleads_v17_common_bidding_proto_init() {
+ if File_google_ads_googleads_v17_common_bidding_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Commission); i {
case 0:
return &v.state
@@ -1162,7 +1162,7 @@ func file_google_ads_googleads_v16_common_bidding_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*EnhancedCpc); i {
case 0:
return &v.state
@@ -1174,7 +1174,7 @@ func file_google_ads_googleads_v16_common_bidding_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ManualCpa); i {
case 0:
return &v.state
@@ -1186,7 +1186,7 @@ func file_google_ads_googleads_v16_common_bidding_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ManualCpc); i {
case 0:
return &v.state
@@ -1198,7 +1198,7 @@ func file_google_ads_googleads_v16_common_bidding_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ManualCpm); i {
case 0:
return &v.state
@@ -1210,7 +1210,7 @@ func file_google_ads_googleads_v16_common_bidding_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ManualCpv); i {
case 0:
return &v.state
@@ -1222,7 +1222,7 @@ func file_google_ads_googleads_v16_common_bidding_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MaximizeConversions); i {
case 0:
return &v.state
@@ -1234,7 +1234,7 @@ func file_google_ads_googleads_v16_common_bidding_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MaximizeConversionValue); i {
case 0:
return &v.state
@@ -1246,7 +1246,7 @@ func file_google_ads_googleads_v16_common_bidding_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TargetCpa); i {
case 0:
return &v.state
@@ -1258,7 +1258,7 @@ func file_google_ads_googleads_v16_common_bidding_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TargetCpm); i {
case 0:
return &v.state
@@ -1270,7 +1270,7 @@ func file_google_ads_googleads_v16_common_bidding_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TargetCpmTargetFrequencyGoal); i {
case 0:
return &v.state
@@ -1282,7 +1282,7 @@ func file_google_ads_googleads_v16_common_bidding_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TargetImpressionShare); i {
case 0:
return &v.state
@@ -1294,7 +1294,7 @@ func file_google_ads_googleads_v16_common_bidding_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TargetRoas); i {
case 0:
return &v.state
@@ -1306,7 +1306,7 @@ func file_google_ads_googleads_v16_common_bidding_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TargetSpend); i {
case 0:
return &v.state
@@ -1318,7 +1318,7 @@ func file_google_ads_googleads_v16_common_bidding_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PercentCpc); i {
case 0:
return &v.state
@@ -1331,32 +1331,32 @@ func file_google_ads_googleads_v16_common_bidding_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[0].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[3].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[8].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[9].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[3].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[8].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[9].OneofWrappers = []interface{}{
(*TargetCpm_TargetFrequencyGoal)(nil),
}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[11].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[12].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[13].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_bidding_proto_msgTypes[14].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[11].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[12].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[13].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_bidding_proto_msgTypes[14].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_bidding_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_bidding_proto_rawDesc,
NumEnums: 0,
NumMessages: 15,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_bidding_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_bidding_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_bidding_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_bidding_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_bidding_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_bidding_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_bidding_proto = out.File
- file_google_ads_googleads_v16_common_bidding_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_bidding_proto_goTypes = nil
- file_google_ads_googleads_v16_common_bidding_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_bidding_proto = out.File
+ file_google_ads_googleads_v17_common_bidding_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_bidding_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_bidding_proto_depIdxs = nil
}
diff --git a/common/click_location.pb.go b/common/click_location.pb.go
index 5fb96b31..312671d2 100644
--- a/common/click_location.pb.go
+++ b/common/click_location.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/click_location.proto
+// source: google/ads/googleads/v17/common/click_location.proto
package common
@@ -55,7 +55,7 @@ type ClickLocation struct {
func (x *ClickLocation) Reset() {
*x = ClickLocation{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_click_location_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_click_location_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -68,7 +68,7 @@ func (x *ClickLocation) String() string {
func (*ClickLocation) ProtoMessage() {}
func (x *ClickLocation) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_click_location_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_click_location_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -81,7 +81,7 @@ func (x *ClickLocation) ProtoReflect() protoreflect.Message {
// Deprecated: Use ClickLocation.ProtoReflect.Descriptor instead.
func (*ClickLocation) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_click_location_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_click_location_proto_rawDescGZIP(), []int{0}
}
func (x *ClickLocation) GetCity() string {
@@ -119,14 +119,14 @@ func (x *ClickLocation) GetRegion() string {
return ""
}
-var File_google_ads_googleads_v16_common_click_location_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_click_location_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_click_location_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_click_location_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0xe5, 0x01, 0x0a, 0x0d, 0x43, 0x6c, 0x69, 0x63,
0x6b, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x17, 0x0a, 0x04, 0x63, 0x69, 0x74,
0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x88,
@@ -143,40 +143,40 @@ var file_google_ads_googleads_v16_common_click_location_proto_rawDesc = []byte{
0x72, 0x6f, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x6d, 0x6f, 0x73, 0x74, 0x5f, 0x73, 0x70, 0x65, 0x63,
0x69, 0x66, 0x69, 0x63, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x42,
0xf2, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x12, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x4c, 0x6f,
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02,
0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_click_location_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_click_location_proto_rawDescData = file_google_ads_googleads_v16_common_click_location_proto_rawDesc
+ file_google_ads_googleads_v17_common_click_location_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_click_location_proto_rawDescData = file_google_ads_googleads_v17_common_click_location_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_click_location_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_click_location_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_click_location_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_click_location_proto_rawDescData)
+func file_google_ads_googleads_v17_common_click_location_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_click_location_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_click_location_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_click_location_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_click_location_proto_rawDescData
+ return file_google_ads_googleads_v17_common_click_location_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_click_location_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_common_click_location_proto_goTypes = []interface{}{
- (*ClickLocation)(nil), // 0: google.ads.googleads.v16.common.ClickLocation
+var file_google_ads_googleads_v17_common_click_location_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_common_click_location_proto_goTypes = []interface{}{
+ (*ClickLocation)(nil), // 0: google.ads.googleads.v17.common.ClickLocation
}
-var file_google_ads_googleads_v16_common_click_location_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_common_click_location_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -184,13 +184,13 @@ var file_google_ads_googleads_v16_common_click_location_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_click_location_proto_init() }
-func file_google_ads_googleads_v16_common_click_location_proto_init() {
- if File_google_ads_googleads_v16_common_click_location_proto != nil {
+func init() { file_google_ads_googleads_v17_common_click_location_proto_init() }
+func file_google_ads_googleads_v17_common_click_location_proto_init() {
+ if File_google_ads_googleads_v17_common_click_location_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_click_location_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_click_location_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ClickLocation); i {
case 0:
return &v.state
@@ -203,23 +203,23 @@ func file_google_ads_googleads_v16_common_click_location_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_click_location_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_click_location_proto_msgTypes[0].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_click_location_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_click_location_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_click_location_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_click_location_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_click_location_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_click_location_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_click_location_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_click_location_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_click_location_proto = out.File
- file_google_ads_googleads_v16_common_click_location_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_click_location_proto_goTypes = nil
- file_google_ads_googleads_v16_common_click_location_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_click_location_proto = out.File
+ file_google_ads_googleads_v17_common_click_location_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_click_location_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_click_location_proto_depIdxs = nil
}
diff --git a/common/consent.pb.go b/common/consent.pb.go
index 97151468..51855a77 100644
--- a/common/consent.pb.go
+++ b/common/consent.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/consent.proto
+// source: google/ads/googleads/v17/common/consent.proto
package common
@@ -42,16 +42,16 @@ type Consent struct {
unknownFields protoimpl.UnknownFields
// This represents consent for ad user data.
- AdUserData enums.ConsentStatusEnum_ConsentStatus `protobuf:"varint,1,opt,name=ad_user_data,json=adUserData,proto3,enum=google.ads.googleads.v16.enums.ConsentStatusEnum_ConsentStatus" json:"ad_user_data,omitempty"`
+ AdUserData enums.ConsentStatusEnum_ConsentStatus `protobuf:"varint,1,opt,name=ad_user_data,json=adUserData,proto3,enum=google.ads.googleads.v17.enums.ConsentStatusEnum_ConsentStatus" json:"ad_user_data,omitempty"`
// This represents consent for ad personalization.
// This can only be set for OfflineUserDataJobService and UserDataService.
- AdPersonalization enums.ConsentStatusEnum_ConsentStatus `protobuf:"varint,2,opt,name=ad_personalization,json=adPersonalization,proto3,enum=google.ads.googleads.v16.enums.ConsentStatusEnum_ConsentStatus" json:"ad_personalization,omitempty"`
+ AdPersonalization enums.ConsentStatusEnum_ConsentStatus `protobuf:"varint,2,opt,name=ad_personalization,json=adPersonalization,proto3,enum=google.ads.googleads.v17.enums.ConsentStatusEnum_ConsentStatus" json:"ad_personalization,omitempty"`
}
func (x *Consent) Reset() {
*x = Consent{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_consent_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_consent_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -64,7 +64,7 @@ func (x *Consent) String() string {
func (*Consent) ProtoMessage() {}
func (x *Consent) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_consent_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_consent_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -77,7 +77,7 @@ func (x *Consent) ProtoReflect() protoreflect.Message {
// Deprecated: Use Consent.ProtoReflect.Descriptor instead.
func (*Consent) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_consent_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_consent_proto_rawDescGZIP(), []int{0}
}
func (x *Consent) GetAdUserData() enums.ConsentStatusEnum_ConsentStatus {
@@ -94,69 +94,69 @@ func (x *Consent) GetAdPersonalization() enums.ConsentStatusEnum_ConsentStatus {
return enums.ConsentStatusEnum_ConsentStatus(0)
}
-var File_google_ads_googleads_v16_common_consent_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_consent_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_consent_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_consent_proto_rawDesc = []byte{
0x0a, 0x2d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x63, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x1a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xdc, 0x01, 0x0a, 0x07, 0x43, 0x6f, 0x6e, 0x73, 0x65, 0x6e,
0x74, 0x12, 0x61, 0x0a, 0x0c, 0x61, 0x64, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74,
0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x73, 0x65,
0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0a, 0x61, 0x64, 0x55, 0x73, 0x65, 0x72,
0x44, 0x61, 0x74, 0x61, 0x12, 0x6e, 0x0a, 0x12, 0x61, 0x64, 0x5f, 0x70, 0x65, 0x72, 0x73, 0x6f,
0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e,
0x32, 0x3f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45,
0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75,
0x73, 0x52, 0x11, 0x61, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x7a, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x42, 0xec, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0c, 0x43, 0x6f,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0c, 0x43, 0x6f,
0x6e, 0x73, 0x65, 0x6e, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_consent_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_consent_proto_rawDescData = file_google_ads_googleads_v16_common_consent_proto_rawDesc
+ file_google_ads_googleads_v17_common_consent_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_consent_proto_rawDescData = file_google_ads_googleads_v17_common_consent_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_consent_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_consent_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_consent_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_consent_proto_rawDescData)
+func file_google_ads_googleads_v17_common_consent_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_consent_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_consent_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_consent_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_consent_proto_rawDescData
+ return file_google_ads_googleads_v17_common_consent_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_consent_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_common_consent_proto_goTypes = []interface{}{
- (*Consent)(nil), // 0: google.ads.googleads.v16.common.Consent
- (enums.ConsentStatusEnum_ConsentStatus)(0), // 1: google.ads.googleads.v16.enums.ConsentStatusEnum.ConsentStatus
+var file_google_ads_googleads_v17_common_consent_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_common_consent_proto_goTypes = []interface{}{
+ (*Consent)(nil), // 0: google.ads.googleads.v17.common.Consent
+ (enums.ConsentStatusEnum_ConsentStatus)(0), // 1: google.ads.googleads.v17.enums.ConsentStatusEnum.ConsentStatus
}
-var file_google_ads_googleads_v16_common_consent_proto_depIdxs = []int32{
- 1, // 0: google.ads.googleads.v16.common.Consent.ad_user_data:type_name -> google.ads.googleads.v16.enums.ConsentStatusEnum.ConsentStatus
- 1, // 1: google.ads.googleads.v16.common.Consent.ad_personalization:type_name -> google.ads.googleads.v16.enums.ConsentStatusEnum.ConsentStatus
+var file_google_ads_googleads_v17_common_consent_proto_depIdxs = []int32{
+ 1, // 0: google.ads.googleads.v17.common.Consent.ad_user_data:type_name -> google.ads.googleads.v17.enums.ConsentStatusEnum.ConsentStatus
+ 1, // 1: google.ads.googleads.v17.common.Consent.ad_personalization:type_name -> google.ads.googleads.v17.enums.ConsentStatusEnum.ConsentStatus
2, // [2:2] is the sub-list for method output_type
2, // [2:2] is the sub-list for method input_type
2, // [2:2] is the sub-list for extension type_name
@@ -164,13 +164,13 @@ var file_google_ads_googleads_v16_common_consent_proto_depIdxs = []int32{
0, // [0:2] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_consent_proto_init() }
-func file_google_ads_googleads_v16_common_consent_proto_init() {
- if File_google_ads_googleads_v16_common_consent_proto != nil {
+func init() { file_google_ads_googleads_v17_common_consent_proto_init() }
+func file_google_ads_googleads_v17_common_consent_proto_init() {
+ if File_google_ads_googleads_v17_common_consent_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_consent_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_consent_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Consent); i {
case 0:
return &v.state
@@ -187,18 +187,18 @@ func file_google_ads_googleads_v16_common_consent_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_consent_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_consent_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_consent_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_consent_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_consent_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_consent_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_consent_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_consent_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_consent_proto = out.File
- file_google_ads_googleads_v16_common_consent_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_consent_proto_goTypes = nil
- file_google_ads_googleads_v16_common_consent_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_consent_proto = out.File
+ file_google_ads_googleads_v17_common_consent_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_consent_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_consent_proto_depIdxs = nil
}
diff --git a/common/criteria.pb.go b/common/criteria.pb.go
index a0b56dd9..eeb70370 100644
--- a/common/criteria.pb.go
+++ b/common/criteria.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/criteria.proto
+// source: google/ads/googleads/v17/common/criteria.proto
package common
@@ -45,13 +45,13 @@ type KeywordInfo struct {
// The text of the keyword (at most 80 characters and 10 words).
Text *string `protobuf:"bytes,3,opt,name=text,proto3,oneof" json:"text,omitempty"`
// The match type of the keyword.
- MatchType enums.KeywordMatchTypeEnum_KeywordMatchType `protobuf:"varint,2,opt,name=match_type,json=matchType,proto3,enum=google.ads.googleads.v16.enums.KeywordMatchTypeEnum_KeywordMatchType" json:"match_type,omitempty"`
+ MatchType enums.KeywordMatchTypeEnum_KeywordMatchType `protobuf:"varint,2,opt,name=match_type,json=matchType,proto3,enum=google.ads.googleads.v17.enums.KeywordMatchTypeEnum_KeywordMatchType" json:"match_type,omitempty"`
}
func (x *KeywordInfo) Reset() {
*x = KeywordInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -64,7 +64,7 @@ func (x *KeywordInfo) String() string {
func (*KeywordInfo) ProtoMessage() {}
func (x *KeywordInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -77,7 +77,7 @@ func (x *KeywordInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use KeywordInfo.ProtoReflect.Descriptor instead.
func (*KeywordInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{0}
}
func (x *KeywordInfo) GetText() string {
@@ -110,7 +110,7 @@ type PlacementInfo struct {
func (x *PlacementInfo) Reset() {
*x = PlacementInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -123,7 +123,7 @@ func (x *PlacementInfo) String() string {
func (*PlacementInfo) ProtoMessage() {}
func (x *PlacementInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -136,7 +136,7 @@ func (x *PlacementInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use PlacementInfo.ProtoReflect.Descriptor instead.
func (*PlacementInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{1}
}
func (x *PlacementInfo) GetUrl() string {
@@ -161,7 +161,7 @@ type NegativeKeywordListInfo struct {
func (x *NegativeKeywordListInfo) Reset() {
*x = NegativeKeywordListInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -174,7 +174,7 @@ func (x *NegativeKeywordListInfo) String() string {
func (*NegativeKeywordListInfo) ProtoMessage() {}
func (x *NegativeKeywordListInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -187,7 +187,7 @@ func (x *NegativeKeywordListInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use NegativeKeywordListInfo.ProtoReflect.Descriptor instead.
func (*NegativeKeywordListInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{2}
}
func (x *NegativeKeywordListInfo) GetSharedSet() string {
@@ -210,7 +210,7 @@ type MobileAppCategoryInfo struct {
func (x *MobileAppCategoryInfo) Reset() {
*x = MobileAppCategoryInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -223,7 +223,7 @@ func (x *MobileAppCategoryInfo) String() string {
func (*MobileAppCategoryInfo) ProtoMessage() {}
func (x *MobileAppCategoryInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -236,7 +236,7 @@ func (x *MobileAppCategoryInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use MobileAppCategoryInfo.ProtoReflect.Descriptor instead.
func (*MobileAppCategoryInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{3}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{3}
}
func (x *MobileAppCategoryInfo) GetMobileAppCategoryConstant() string {
@@ -275,7 +275,7 @@ type MobileApplicationInfo struct {
func (x *MobileApplicationInfo) Reset() {
*x = MobileApplicationInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -288,7 +288,7 @@ func (x *MobileApplicationInfo) String() string {
func (*MobileApplicationInfo) ProtoMessage() {}
func (x *MobileApplicationInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -301,7 +301,7 @@ func (x *MobileApplicationInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use MobileApplicationInfo.ProtoReflect.Descriptor instead.
func (*MobileApplicationInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{4}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{4}
}
func (x *MobileApplicationInfo) GetAppId() string {
@@ -331,7 +331,7 @@ type LocationInfo struct {
func (x *LocationInfo) Reset() {
*x = LocationInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -344,7 +344,7 @@ func (x *LocationInfo) String() string {
func (*LocationInfo) ProtoMessage() {}
func (x *LocationInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -357,7 +357,7 @@ func (x *LocationInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocationInfo.ProtoReflect.Descriptor instead.
func (*LocationInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{5}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{5}
}
func (x *LocationInfo) GetGeoTargetConstant() string {
@@ -374,13 +374,13 @@ type DeviceInfo struct {
unknownFields protoimpl.UnknownFields
// Type of the device.
- Type enums.DeviceEnum_Device `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.DeviceEnum_Device" json:"type,omitempty"`
+ Type enums.DeviceEnum_Device `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.DeviceEnum_Device" json:"type,omitempty"`
}
func (x *DeviceInfo) Reset() {
*x = DeviceInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -393,7 +393,7 @@ func (x *DeviceInfo) String() string {
func (*DeviceInfo) ProtoMessage() {}
func (x *DeviceInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -406,7 +406,7 @@ func (x *DeviceInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use DeviceInfo.ProtoReflect.Descriptor instead.
func (*DeviceInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{6}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{6}
}
func (x *DeviceInfo) GetType() enums.DeviceEnum_Device {
@@ -423,7 +423,7 @@ type ListingGroupInfo struct {
unknownFields protoimpl.UnknownFields
// Type of the listing group.
- Type enums.ListingGroupTypeEnum_ListingGroupType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.ListingGroupTypeEnum_ListingGroupType" json:"type,omitempty"`
+ Type enums.ListingGroupTypeEnum_ListingGroupType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.ListingGroupTypeEnum_ListingGroupType" json:"type,omitempty"`
// Dimension value with which this listing group is refining its parent.
// Undefined for the root group.
CaseValue *ListingDimensionInfo `protobuf:"bytes,2,opt,name=case_value,json=caseValue,proto3" json:"case_value,omitempty"`
@@ -437,7 +437,7 @@ type ListingGroupInfo struct {
func (x *ListingGroupInfo) Reset() {
*x = ListingGroupInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -450,7 +450,7 @@ func (x *ListingGroupInfo) String() string {
func (*ListingGroupInfo) ProtoMessage() {}
func (x *ListingGroupInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -463,7 +463,7 @@ func (x *ListingGroupInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListingGroupInfo.ProtoReflect.Descriptor instead.
func (*ListingGroupInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{7}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{7}
}
func (x *ListingGroupInfo) GetType() enums.ListingGroupTypeEnum_ListingGroupType {
@@ -508,7 +508,7 @@ type ListingDimensionPath struct {
func (x *ListingDimensionPath) Reset() {
*x = ListingDimensionPath{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -521,7 +521,7 @@ func (x *ListingDimensionPath) String() string {
func (*ListingDimensionPath) ProtoMessage() {}
func (x *ListingDimensionPath) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -534,7 +534,7 @@ func (x *ListingDimensionPath) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListingDimensionPath.ProtoReflect.Descriptor instead.
func (*ListingDimensionPath) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{8}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{8}
}
func (x *ListingDimensionPath) GetDimensions() []*ListingDimensionInfo {
@@ -557,7 +557,7 @@ type ListingScopeInfo struct {
func (x *ListingScopeInfo) Reset() {
*x = ListingScopeInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -570,7 +570,7 @@ func (x *ListingScopeInfo) String() string {
func (*ListingScopeInfo) ProtoMessage() {}
func (x *ListingScopeInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -583,7 +583,7 @@ func (x *ListingScopeInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListingScopeInfo.ProtoReflect.Descriptor instead.
func (*ListingScopeInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{9}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{9}
}
func (x *ListingScopeInfo) GetDimensions() []*ListingDimensionInfo {
@@ -632,7 +632,7 @@ type ListingDimensionInfo struct {
func (x *ListingDimensionInfo) Reset() {
*x = ListingDimensionInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -645,7 +645,7 @@ func (x *ListingDimensionInfo) String() string {
func (*ListingDimensionInfo) ProtoMessage() {}
func (x *ListingDimensionInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -658,7 +658,7 @@ func (x *ListingDimensionInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListingDimensionInfo.ProtoReflect.Descriptor instead.
func (*ListingDimensionInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{10}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{10}
}
func (m *ListingDimensionInfo) GetDimension() isListingDimensionInfo_Dimension {
@@ -1011,7 +1011,7 @@ type HotelIdInfo struct {
func (x *HotelIdInfo) Reset() {
*x = HotelIdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1024,7 +1024,7 @@ func (x *HotelIdInfo) String() string {
func (*HotelIdInfo) ProtoMessage() {}
func (x *HotelIdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1037,7 +1037,7 @@ func (x *HotelIdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelIdInfo.ProtoReflect.Descriptor instead.
func (*HotelIdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{11}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{11}
}
func (x *HotelIdInfo) GetValue() string {
@@ -1060,7 +1060,7 @@ type HotelClassInfo struct {
func (x *HotelClassInfo) Reset() {
*x = HotelClassInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[12]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1073,7 +1073,7 @@ func (x *HotelClassInfo) String() string {
func (*HotelClassInfo) ProtoMessage() {}
func (x *HotelClassInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[12]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1086,7 +1086,7 @@ func (x *HotelClassInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelClassInfo.ProtoReflect.Descriptor instead.
func (*HotelClassInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{12}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{12}
}
func (x *HotelClassInfo) GetValue() int64 {
@@ -1109,7 +1109,7 @@ type HotelCountryRegionInfo struct {
func (x *HotelCountryRegionInfo) Reset() {
*x = HotelCountryRegionInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[13]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[13]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1122,7 +1122,7 @@ func (x *HotelCountryRegionInfo) String() string {
func (*HotelCountryRegionInfo) ProtoMessage() {}
func (x *HotelCountryRegionInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[13]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[13]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1135,7 +1135,7 @@ func (x *HotelCountryRegionInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelCountryRegionInfo.ProtoReflect.Descriptor instead.
func (*HotelCountryRegionInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{13}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{13}
}
func (x *HotelCountryRegionInfo) GetCountryRegionCriterion() string {
@@ -1158,7 +1158,7 @@ type HotelStateInfo struct {
func (x *HotelStateInfo) Reset() {
*x = HotelStateInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[14]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[14]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1171,7 +1171,7 @@ func (x *HotelStateInfo) String() string {
func (*HotelStateInfo) ProtoMessage() {}
func (x *HotelStateInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[14]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[14]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1184,7 +1184,7 @@ func (x *HotelStateInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelStateInfo.ProtoReflect.Descriptor instead.
func (*HotelStateInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{14}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{14}
}
func (x *HotelStateInfo) GetStateCriterion() string {
@@ -1207,7 +1207,7 @@ type HotelCityInfo struct {
func (x *HotelCityInfo) Reset() {
*x = HotelCityInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[15]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[15]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1220,7 +1220,7 @@ func (x *HotelCityInfo) String() string {
func (*HotelCityInfo) ProtoMessage() {}
func (x *HotelCityInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[15]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[15]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1233,7 +1233,7 @@ func (x *HotelCityInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelCityInfo.ProtoReflect.Descriptor instead.
func (*HotelCityInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{15}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{15}
}
func (x *HotelCityInfo) GetCityCriterion() string {
@@ -1255,13 +1255,13 @@ type ProductCategoryInfo struct {
// this article: https://support.google.com/merchants/answer/6324436
CategoryId *int64 `protobuf:"varint,1,opt,name=category_id,json=categoryId,proto3,oneof" json:"category_id,omitempty"`
// Level of the product category.
- Level enums.ProductCategoryLevelEnum_ProductCategoryLevel `protobuf:"varint,2,opt,name=level,proto3,enum=google.ads.googleads.v16.enums.ProductCategoryLevelEnum_ProductCategoryLevel" json:"level,omitempty"`
+ Level enums.ProductCategoryLevelEnum_ProductCategoryLevel `protobuf:"varint,2,opt,name=level,proto3,enum=google.ads.googleads.v17.enums.ProductCategoryLevelEnum_ProductCategoryLevel" json:"level,omitempty"`
}
func (x *ProductCategoryInfo) Reset() {
*x = ProductCategoryInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[16]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[16]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1274,7 +1274,7 @@ func (x *ProductCategoryInfo) String() string {
func (*ProductCategoryInfo) ProtoMessage() {}
func (x *ProductCategoryInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[16]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[16]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1287,7 +1287,7 @@ func (x *ProductCategoryInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductCategoryInfo.ProtoReflect.Descriptor instead.
func (*ProductCategoryInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{16}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{16}
}
func (x *ProductCategoryInfo) GetCategoryId() int64 {
@@ -1317,7 +1317,7 @@ type ProductBrandInfo struct {
func (x *ProductBrandInfo) Reset() {
*x = ProductBrandInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[17]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[17]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1330,7 +1330,7 @@ func (x *ProductBrandInfo) String() string {
func (*ProductBrandInfo) ProtoMessage() {}
func (x *ProductBrandInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[17]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[17]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1343,7 +1343,7 @@ func (x *ProductBrandInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductBrandInfo.ProtoReflect.Descriptor instead.
func (*ProductBrandInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{17}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{17}
}
func (x *ProductBrandInfo) GetValue() string {
@@ -1360,13 +1360,13 @@ type ProductChannelInfo struct {
unknownFields protoimpl.UnknownFields
// Value of the locality.
- Channel enums.ProductChannelEnum_ProductChannel `protobuf:"varint,1,opt,name=channel,proto3,enum=google.ads.googleads.v16.enums.ProductChannelEnum_ProductChannel" json:"channel,omitempty"`
+ Channel enums.ProductChannelEnum_ProductChannel `protobuf:"varint,1,opt,name=channel,proto3,enum=google.ads.googleads.v17.enums.ProductChannelEnum_ProductChannel" json:"channel,omitempty"`
}
func (x *ProductChannelInfo) Reset() {
*x = ProductChannelInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[18]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[18]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1379,7 +1379,7 @@ func (x *ProductChannelInfo) String() string {
func (*ProductChannelInfo) ProtoMessage() {}
func (x *ProductChannelInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[18]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[18]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1392,7 +1392,7 @@ func (x *ProductChannelInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductChannelInfo.ProtoReflect.Descriptor instead.
func (*ProductChannelInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{18}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{18}
}
func (x *ProductChannelInfo) GetChannel() enums.ProductChannelEnum_ProductChannel {
@@ -1409,13 +1409,13 @@ type ProductChannelExclusivityInfo struct {
unknownFields protoimpl.UnknownFields
// Value of the availability.
- ChannelExclusivity enums.ProductChannelExclusivityEnum_ProductChannelExclusivity `protobuf:"varint,1,opt,name=channel_exclusivity,json=channelExclusivity,proto3,enum=google.ads.googleads.v16.enums.ProductChannelExclusivityEnum_ProductChannelExclusivity" json:"channel_exclusivity,omitempty"`
+ ChannelExclusivity enums.ProductChannelExclusivityEnum_ProductChannelExclusivity `protobuf:"varint,1,opt,name=channel_exclusivity,json=channelExclusivity,proto3,enum=google.ads.googleads.v17.enums.ProductChannelExclusivityEnum_ProductChannelExclusivity" json:"channel_exclusivity,omitempty"`
}
func (x *ProductChannelExclusivityInfo) Reset() {
*x = ProductChannelExclusivityInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[19]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[19]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1428,7 +1428,7 @@ func (x *ProductChannelExclusivityInfo) String() string {
func (*ProductChannelExclusivityInfo) ProtoMessage() {}
func (x *ProductChannelExclusivityInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[19]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[19]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1441,7 +1441,7 @@ func (x *ProductChannelExclusivityInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductChannelExclusivityInfo.ProtoReflect.Descriptor instead.
func (*ProductChannelExclusivityInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{19}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{19}
}
func (x *ProductChannelExclusivityInfo) GetChannelExclusivity() enums.ProductChannelExclusivityEnum_ProductChannelExclusivity {
@@ -1458,13 +1458,13 @@ type ProductConditionInfo struct {
unknownFields protoimpl.UnknownFields
// Value of the condition.
- Condition enums.ProductConditionEnum_ProductCondition `protobuf:"varint,1,opt,name=condition,proto3,enum=google.ads.googleads.v16.enums.ProductConditionEnum_ProductCondition" json:"condition,omitempty"`
+ Condition enums.ProductConditionEnum_ProductCondition `protobuf:"varint,1,opt,name=condition,proto3,enum=google.ads.googleads.v17.enums.ProductConditionEnum_ProductCondition" json:"condition,omitempty"`
}
func (x *ProductConditionInfo) Reset() {
*x = ProductConditionInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[20]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[20]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1477,7 +1477,7 @@ func (x *ProductConditionInfo) String() string {
func (*ProductConditionInfo) ProtoMessage() {}
func (x *ProductConditionInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[20]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[20]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1490,7 +1490,7 @@ func (x *ProductConditionInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductConditionInfo.ProtoReflect.Descriptor instead.
func (*ProductConditionInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{20}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{20}
}
func (x *ProductConditionInfo) GetCondition() enums.ProductConditionEnum_ProductCondition {
@@ -1509,13 +1509,13 @@ type ProductCustomAttributeInfo struct {
// String value of the product custom attribute.
Value *string `protobuf:"bytes,3,opt,name=value,proto3,oneof" json:"value,omitempty"`
// Indicates the index of the custom attribute.
- Index enums.ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex `protobuf:"varint,2,opt,name=index,proto3,enum=google.ads.googleads.v16.enums.ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex" json:"index,omitempty"`
+ Index enums.ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex `protobuf:"varint,2,opt,name=index,proto3,enum=google.ads.googleads.v17.enums.ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex" json:"index,omitempty"`
}
func (x *ProductCustomAttributeInfo) Reset() {
*x = ProductCustomAttributeInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[21]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[21]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1528,7 +1528,7 @@ func (x *ProductCustomAttributeInfo) String() string {
func (*ProductCustomAttributeInfo) ProtoMessage() {}
func (x *ProductCustomAttributeInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[21]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[21]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1541,7 +1541,7 @@ func (x *ProductCustomAttributeInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductCustomAttributeInfo.ProtoReflect.Descriptor instead.
func (*ProductCustomAttributeInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{21}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{21}
}
func (x *ProductCustomAttributeInfo) GetValue() string {
@@ -1571,7 +1571,7 @@ type ProductItemIdInfo struct {
func (x *ProductItemIdInfo) Reset() {
*x = ProductItemIdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[22]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[22]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1584,7 +1584,7 @@ func (x *ProductItemIdInfo) String() string {
func (*ProductItemIdInfo) ProtoMessage() {}
func (x *ProductItemIdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[22]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[22]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1597,7 +1597,7 @@ func (x *ProductItemIdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductItemIdInfo.ProtoReflect.Descriptor instead.
func (*ProductItemIdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{22}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{22}
}
func (x *ProductItemIdInfo) GetValue() string {
@@ -1616,13 +1616,13 @@ type ProductTypeInfo struct {
// Value of the type.
Value *string `protobuf:"bytes,3,opt,name=value,proto3,oneof" json:"value,omitempty"`
// Level of the type.
- Level enums.ProductTypeLevelEnum_ProductTypeLevel `protobuf:"varint,2,opt,name=level,proto3,enum=google.ads.googleads.v16.enums.ProductTypeLevelEnum_ProductTypeLevel" json:"level,omitempty"`
+ Level enums.ProductTypeLevelEnum_ProductTypeLevel `protobuf:"varint,2,opt,name=level,proto3,enum=google.ads.googleads.v17.enums.ProductTypeLevelEnum_ProductTypeLevel" json:"level,omitempty"`
}
func (x *ProductTypeInfo) Reset() {
*x = ProductTypeInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[23]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[23]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1635,7 +1635,7 @@ func (x *ProductTypeInfo) String() string {
func (*ProductTypeInfo) ProtoMessage() {}
func (x *ProductTypeInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[23]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[23]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1648,7 +1648,7 @@ func (x *ProductTypeInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductTypeInfo.ProtoReflect.Descriptor instead.
func (*ProductTypeInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{23}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{23}
}
func (x *ProductTypeInfo) GetValue() string {
@@ -1679,7 +1679,7 @@ type ProductGroupingInfo struct {
func (x *ProductGroupingInfo) Reset() {
*x = ProductGroupingInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[24]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[24]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1692,7 +1692,7 @@ func (x *ProductGroupingInfo) String() string {
func (*ProductGroupingInfo) ProtoMessage() {}
func (x *ProductGroupingInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[24]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[24]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1705,7 +1705,7 @@ func (x *ProductGroupingInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductGroupingInfo.ProtoReflect.Descriptor instead.
func (*ProductGroupingInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{24}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{24}
}
func (x *ProductGroupingInfo) GetValue() string {
@@ -1729,7 +1729,7 @@ type ProductLabelsInfo struct {
func (x *ProductLabelsInfo) Reset() {
*x = ProductLabelsInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[25]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[25]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1742,7 +1742,7 @@ func (x *ProductLabelsInfo) String() string {
func (*ProductLabelsInfo) ProtoMessage() {}
func (x *ProductLabelsInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[25]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[25]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1755,7 +1755,7 @@ func (x *ProductLabelsInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductLabelsInfo.ProtoReflect.Descriptor instead.
func (*ProductLabelsInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{25}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{25}
}
func (x *ProductLabelsInfo) GetValue() string {
@@ -1779,7 +1779,7 @@ type ProductLegacyConditionInfo struct {
func (x *ProductLegacyConditionInfo) Reset() {
*x = ProductLegacyConditionInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[26]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[26]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1792,7 +1792,7 @@ func (x *ProductLegacyConditionInfo) String() string {
func (*ProductLegacyConditionInfo) ProtoMessage() {}
func (x *ProductLegacyConditionInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[26]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[26]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1805,7 +1805,7 @@ func (x *ProductLegacyConditionInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductLegacyConditionInfo.ProtoReflect.Descriptor instead.
func (*ProductLegacyConditionInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{26}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{26}
}
func (x *ProductLegacyConditionInfo) GetValue() string {
@@ -1829,7 +1829,7 @@ type ProductTypeFullInfo struct {
func (x *ProductTypeFullInfo) Reset() {
*x = ProductTypeFullInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[27]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[27]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1842,7 +1842,7 @@ func (x *ProductTypeFullInfo) String() string {
func (*ProductTypeFullInfo) ProtoMessage() {}
func (x *ProductTypeFullInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[27]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[27]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1855,7 +1855,7 @@ func (x *ProductTypeFullInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductTypeFullInfo.ProtoReflect.Descriptor instead.
func (*ProductTypeFullInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{27}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{27}
}
func (x *ProductTypeFullInfo) GetValue() string {
@@ -1875,7 +1875,7 @@ type UnknownListingDimensionInfo struct {
func (x *UnknownListingDimensionInfo) Reset() {
*x = UnknownListingDimensionInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[28]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[28]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1888,7 +1888,7 @@ func (x *UnknownListingDimensionInfo) String() string {
func (*UnknownListingDimensionInfo) ProtoMessage() {}
func (x *UnknownListingDimensionInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[28]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[28]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1901,7 +1901,7 @@ func (x *UnknownListingDimensionInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use UnknownListingDimensionInfo.ProtoReflect.Descriptor instead.
func (*UnknownListingDimensionInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{28}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{28}
}
// Criterion for hotel date selection (default dates versus user selected).
@@ -1911,13 +1911,13 @@ type HotelDateSelectionTypeInfo struct {
unknownFields protoimpl.UnknownFields
// Type of the hotel date selection
- Type enums.HotelDateSelectionTypeEnum_HotelDateSelectionType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.HotelDateSelectionTypeEnum_HotelDateSelectionType" json:"type,omitempty"`
+ Type enums.HotelDateSelectionTypeEnum_HotelDateSelectionType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.HotelDateSelectionTypeEnum_HotelDateSelectionType" json:"type,omitempty"`
}
func (x *HotelDateSelectionTypeInfo) Reset() {
*x = HotelDateSelectionTypeInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[29]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[29]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1930,7 +1930,7 @@ func (x *HotelDateSelectionTypeInfo) String() string {
func (*HotelDateSelectionTypeInfo) ProtoMessage() {}
func (x *HotelDateSelectionTypeInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[29]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[29]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1943,7 +1943,7 @@ func (x *HotelDateSelectionTypeInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelDateSelectionTypeInfo.ProtoReflect.Descriptor instead.
func (*HotelDateSelectionTypeInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{29}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{29}
}
func (x *HotelDateSelectionTypeInfo) GetType() enums.HotelDateSelectionTypeEnum_HotelDateSelectionType {
@@ -1968,7 +1968,7 @@ type HotelAdvanceBookingWindowInfo struct {
func (x *HotelAdvanceBookingWindowInfo) Reset() {
*x = HotelAdvanceBookingWindowInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[30]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[30]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1981,7 +1981,7 @@ func (x *HotelAdvanceBookingWindowInfo) String() string {
func (*HotelAdvanceBookingWindowInfo) ProtoMessage() {}
func (x *HotelAdvanceBookingWindowInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[30]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[30]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1994,7 +1994,7 @@ func (x *HotelAdvanceBookingWindowInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelAdvanceBookingWindowInfo.ProtoReflect.Descriptor instead.
func (*HotelAdvanceBookingWindowInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{30}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{30}
}
func (x *HotelAdvanceBookingWindowInfo) GetMinDays() int64 {
@@ -2026,7 +2026,7 @@ type HotelLengthOfStayInfo struct {
func (x *HotelLengthOfStayInfo) Reset() {
*x = HotelLengthOfStayInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[31]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[31]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2039,7 +2039,7 @@ func (x *HotelLengthOfStayInfo) String() string {
func (*HotelLengthOfStayInfo) ProtoMessage() {}
func (x *HotelLengthOfStayInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[31]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[31]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2052,7 +2052,7 @@ func (x *HotelLengthOfStayInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelLengthOfStayInfo.ProtoReflect.Descriptor instead.
func (*HotelLengthOfStayInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{31}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{31}
}
func (x *HotelLengthOfStayInfo) GetMinNights() int64 {
@@ -2084,7 +2084,7 @@ type HotelCheckInDateRangeInfo struct {
func (x *HotelCheckInDateRangeInfo) Reset() {
*x = HotelCheckInDateRangeInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[32]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[32]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2097,7 +2097,7 @@ func (x *HotelCheckInDateRangeInfo) String() string {
func (*HotelCheckInDateRangeInfo) ProtoMessage() {}
func (x *HotelCheckInDateRangeInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[32]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[32]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2110,7 +2110,7 @@ func (x *HotelCheckInDateRangeInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelCheckInDateRangeInfo.ProtoReflect.Descriptor instead.
func (*HotelCheckInDateRangeInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{32}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{32}
}
func (x *HotelCheckInDateRangeInfo) GetStartDate() string {
@@ -2134,13 +2134,13 @@ type HotelCheckInDayInfo struct {
unknownFields protoimpl.UnknownFields
// The day of the week.
- DayOfWeek enums.DayOfWeekEnum_DayOfWeek `protobuf:"varint,1,opt,name=day_of_week,json=dayOfWeek,proto3,enum=google.ads.googleads.v16.enums.DayOfWeekEnum_DayOfWeek" json:"day_of_week,omitempty"`
+ DayOfWeek enums.DayOfWeekEnum_DayOfWeek `protobuf:"varint,1,opt,name=day_of_week,json=dayOfWeek,proto3,enum=google.ads.googleads.v17.enums.DayOfWeekEnum_DayOfWeek" json:"day_of_week,omitempty"`
}
func (x *HotelCheckInDayInfo) Reset() {
*x = HotelCheckInDayInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[33]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[33]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2153,7 +2153,7 @@ func (x *HotelCheckInDayInfo) String() string {
func (*HotelCheckInDayInfo) ProtoMessage() {}
func (x *HotelCheckInDayInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[33]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[33]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2166,7 +2166,7 @@ func (x *HotelCheckInDayInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelCheckInDayInfo.ProtoReflect.Descriptor instead.
func (*HotelCheckInDayInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{33}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{33}
}
func (x *HotelCheckInDayInfo) GetDayOfWeek() enums.DayOfWeekEnum_DayOfWeek {
@@ -2189,7 +2189,7 @@ type ActivityIdInfo struct {
func (x *ActivityIdInfo) Reset() {
*x = ActivityIdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[34]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[34]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2202,7 +2202,7 @@ func (x *ActivityIdInfo) String() string {
func (*ActivityIdInfo) ProtoMessage() {}
func (x *ActivityIdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[34]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[34]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2215,7 +2215,7 @@ func (x *ActivityIdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ActivityIdInfo.ProtoReflect.Descriptor instead.
func (*ActivityIdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{34}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{34}
}
func (x *ActivityIdInfo) GetValue() string {
@@ -2238,7 +2238,7 @@ type ActivityRatingInfo struct {
func (x *ActivityRatingInfo) Reset() {
*x = ActivityRatingInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[35]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[35]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2251,7 +2251,7 @@ func (x *ActivityRatingInfo) String() string {
func (*ActivityRatingInfo) ProtoMessage() {}
func (x *ActivityRatingInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[35]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[35]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2264,7 +2264,7 @@ func (x *ActivityRatingInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ActivityRatingInfo.ProtoReflect.Descriptor instead.
func (*ActivityRatingInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{35}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{35}
}
func (x *ActivityRatingInfo) GetValue() int64 {
@@ -2288,7 +2288,7 @@ type ActivityCountryInfo struct {
func (x *ActivityCountryInfo) Reset() {
*x = ActivityCountryInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[36]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[36]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2301,7 +2301,7 @@ func (x *ActivityCountryInfo) String() string {
func (*ActivityCountryInfo) ProtoMessage() {}
func (x *ActivityCountryInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[36]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[36]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2314,7 +2314,7 @@ func (x *ActivityCountryInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ActivityCountryInfo.ProtoReflect.Descriptor instead.
func (*ActivityCountryInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{36}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{36}
}
func (x *ActivityCountryInfo) GetValue() string {
@@ -2338,7 +2338,7 @@ type ActivityStateInfo struct {
func (x *ActivityStateInfo) Reset() {
*x = ActivityStateInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[37]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[37]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2351,7 +2351,7 @@ func (x *ActivityStateInfo) String() string {
func (*ActivityStateInfo) ProtoMessage() {}
func (x *ActivityStateInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[37]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[37]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2364,7 +2364,7 @@ func (x *ActivityStateInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ActivityStateInfo.ProtoReflect.Descriptor instead.
func (*ActivityStateInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{37}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{37}
}
func (x *ActivityStateInfo) GetValue() string {
@@ -2388,7 +2388,7 @@ type ActivityCityInfo struct {
func (x *ActivityCityInfo) Reset() {
*x = ActivityCityInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[38]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[38]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2401,7 +2401,7 @@ func (x *ActivityCityInfo) String() string {
func (*ActivityCityInfo) ProtoMessage() {}
func (x *ActivityCityInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[38]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[38]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2414,7 +2414,7 @@ func (x *ActivityCityInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ActivityCityInfo.ProtoReflect.Descriptor instead.
func (*ActivityCityInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{38}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{38}
}
func (x *ActivityCityInfo) GetValue() string {
@@ -2431,13 +2431,13 @@ type InteractionTypeInfo struct {
unknownFields protoimpl.UnknownFields
// The interaction type.
- Type enums.InteractionTypeEnum_InteractionType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.InteractionTypeEnum_InteractionType" json:"type,omitempty"`
+ Type enums.InteractionTypeEnum_InteractionType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.InteractionTypeEnum_InteractionType" json:"type,omitempty"`
}
func (x *InteractionTypeInfo) Reset() {
*x = InteractionTypeInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[39]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[39]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2450,7 +2450,7 @@ func (x *InteractionTypeInfo) String() string {
func (*InteractionTypeInfo) ProtoMessage() {}
func (x *InteractionTypeInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[39]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[39]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2463,7 +2463,7 @@ func (x *InteractionTypeInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use InteractionTypeInfo.ProtoReflect.Descriptor instead.
func (*InteractionTypeInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{39}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{39}
}
func (x *InteractionTypeInfo) GetType() enums.InteractionTypeEnum_InteractionType {
@@ -2488,13 +2488,13 @@ type AdScheduleInfo struct {
//
// This field is required for CREATE operations and is prohibited on UPDATE
// operations.
- StartMinute enums.MinuteOfHourEnum_MinuteOfHour `protobuf:"varint,1,opt,name=start_minute,json=startMinute,proto3,enum=google.ads.googleads.v16.enums.MinuteOfHourEnum_MinuteOfHour" json:"start_minute,omitempty"`
+ StartMinute enums.MinuteOfHourEnum_MinuteOfHour `protobuf:"varint,1,opt,name=start_minute,json=startMinute,proto3,enum=google.ads.googleads.v17.enums.MinuteOfHourEnum_MinuteOfHour" json:"start_minute,omitempty"`
// Minutes after the end hour at which this schedule ends. The schedule is
// exclusive of the end minute.
//
// This field is required for CREATE operations and is prohibited on UPDATE
// operations.
- EndMinute enums.MinuteOfHourEnum_MinuteOfHour `protobuf:"varint,2,opt,name=end_minute,json=endMinute,proto3,enum=google.ads.googleads.v16.enums.MinuteOfHourEnum_MinuteOfHour" json:"end_minute,omitempty"`
+ EndMinute enums.MinuteOfHourEnum_MinuteOfHour `protobuf:"varint,2,opt,name=end_minute,json=endMinute,proto3,enum=google.ads.googleads.v17.enums.MinuteOfHourEnum_MinuteOfHour" json:"end_minute,omitempty"`
// Starting hour in 24 hour time.
// This field must be between 0 and 23, inclusive.
//
@@ -2511,13 +2511,13 @@ type AdScheduleInfo struct {
//
// This field is required for CREATE operations and is prohibited on UPDATE
// operations.
- DayOfWeek enums.DayOfWeekEnum_DayOfWeek `protobuf:"varint,5,opt,name=day_of_week,json=dayOfWeek,proto3,enum=google.ads.googleads.v16.enums.DayOfWeekEnum_DayOfWeek" json:"day_of_week,omitempty"`
+ DayOfWeek enums.DayOfWeekEnum_DayOfWeek `protobuf:"varint,5,opt,name=day_of_week,json=dayOfWeek,proto3,enum=google.ads.googleads.v17.enums.DayOfWeekEnum_DayOfWeek" json:"day_of_week,omitempty"`
}
func (x *AdScheduleInfo) Reset() {
*x = AdScheduleInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[40]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[40]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2530,7 +2530,7 @@ func (x *AdScheduleInfo) String() string {
func (*AdScheduleInfo) ProtoMessage() {}
func (x *AdScheduleInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[40]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[40]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2543,7 +2543,7 @@ func (x *AdScheduleInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdScheduleInfo.ProtoReflect.Descriptor instead.
func (*AdScheduleInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{40}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{40}
}
func (x *AdScheduleInfo) GetStartMinute() enums.MinuteOfHourEnum_MinuteOfHour {
@@ -2588,13 +2588,13 @@ type AgeRangeInfo struct {
unknownFields protoimpl.UnknownFields
// Type of the age range.
- Type enums.AgeRangeTypeEnum_AgeRangeType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.AgeRangeTypeEnum_AgeRangeType" json:"type,omitempty"`
+ Type enums.AgeRangeTypeEnum_AgeRangeType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.AgeRangeTypeEnum_AgeRangeType" json:"type,omitempty"`
}
func (x *AgeRangeInfo) Reset() {
*x = AgeRangeInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[41]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[41]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2607,7 +2607,7 @@ func (x *AgeRangeInfo) String() string {
func (*AgeRangeInfo) ProtoMessage() {}
func (x *AgeRangeInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[41]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[41]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2620,7 +2620,7 @@ func (x *AgeRangeInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use AgeRangeInfo.ProtoReflect.Descriptor instead.
func (*AgeRangeInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{41}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{41}
}
func (x *AgeRangeInfo) GetType() enums.AgeRangeTypeEnum_AgeRangeType {
@@ -2637,13 +2637,13 @@ type GenderInfo struct {
unknownFields protoimpl.UnknownFields
// Type of the gender.
- Type enums.GenderTypeEnum_GenderType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.GenderTypeEnum_GenderType" json:"type,omitempty"`
+ Type enums.GenderTypeEnum_GenderType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.GenderTypeEnum_GenderType" json:"type,omitempty"`
}
func (x *GenderInfo) Reset() {
*x = GenderInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[42]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[42]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2656,7 +2656,7 @@ func (x *GenderInfo) String() string {
func (*GenderInfo) ProtoMessage() {}
func (x *GenderInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[42]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[42]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2669,7 +2669,7 @@ func (x *GenderInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use GenderInfo.ProtoReflect.Descriptor instead.
func (*GenderInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{42}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{42}
}
func (x *GenderInfo) GetType() enums.GenderTypeEnum_GenderType {
@@ -2686,13 +2686,13 @@ type IncomeRangeInfo struct {
unknownFields protoimpl.UnknownFields
// Type of the income range.
- Type enums.IncomeRangeTypeEnum_IncomeRangeType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.IncomeRangeTypeEnum_IncomeRangeType" json:"type,omitempty"`
+ Type enums.IncomeRangeTypeEnum_IncomeRangeType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.IncomeRangeTypeEnum_IncomeRangeType" json:"type,omitempty"`
}
func (x *IncomeRangeInfo) Reset() {
*x = IncomeRangeInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[43]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[43]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2705,7 +2705,7 @@ func (x *IncomeRangeInfo) String() string {
func (*IncomeRangeInfo) ProtoMessage() {}
func (x *IncomeRangeInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[43]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[43]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2718,7 +2718,7 @@ func (x *IncomeRangeInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use IncomeRangeInfo.ProtoReflect.Descriptor instead.
func (*IncomeRangeInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{43}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{43}
}
func (x *IncomeRangeInfo) GetType() enums.IncomeRangeTypeEnum_IncomeRangeType {
@@ -2735,13 +2735,13 @@ type ParentalStatusInfo struct {
unknownFields protoimpl.UnknownFields
// Type of the parental status.
- Type enums.ParentalStatusTypeEnum_ParentalStatusType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.ParentalStatusTypeEnum_ParentalStatusType" json:"type,omitempty"`
+ Type enums.ParentalStatusTypeEnum_ParentalStatusType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.ParentalStatusTypeEnum_ParentalStatusType" json:"type,omitempty"`
}
func (x *ParentalStatusInfo) Reset() {
*x = ParentalStatusInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[44]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[44]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2754,7 +2754,7 @@ func (x *ParentalStatusInfo) String() string {
func (*ParentalStatusInfo) ProtoMessage() {}
func (x *ParentalStatusInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[44]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[44]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2767,7 +2767,7 @@ func (x *ParentalStatusInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ParentalStatusInfo.ProtoReflect.Descriptor instead.
func (*ParentalStatusInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{44}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{44}
}
func (x *ParentalStatusInfo) GetType() enums.ParentalStatusTypeEnum_ParentalStatusType {
@@ -2790,7 +2790,7 @@ type YouTubeVideoInfo struct {
func (x *YouTubeVideoInfo) Reset() {
*x = YouTubeVideoInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[45]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[45]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2803,7 +2803,7 @@ func (x *YouTubeVideoInfo) String() string {
func (*YouTubeVideoInfo) ProtoMessage() {}
func (x *YouTubeVideoInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[45]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[45]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2816,7 +2816,7 @@ func (x *YouTubeVideoInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use YouTubeVideoInfo.ProtoReflect.Descriptor instead.
func (*YouTubeVideoInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{45}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{45}
}
func (x *YouTubeVideoInfo) GetVideoId() string {
@@ -2839,7 +2839,7 @@ type YouTubeChannelInfo struct {
func (x *YouTubeChannelInfo) Reset() {
*x = YouTubeChannelInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[46]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[46]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2852,7 +2852,7 @@ func (x *YouTubeChannelInfo) String() string {
func (*YouTubeChannelInfo) ProtoMessage() {}
func (x *YouTubeChannelInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[46]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[46]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2865,7 +2865,7 @@ func (x *YouTubeChannelInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use YouTubeChannelInfo.ProtoReflect.Descriptor instead.
func (*YouTubeChannelInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{46}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{46}
}
func (x *YouTubeChannelInfo) GetChannelId() string {
@@ -2889,7 +2889,7 @@ type UserListInfo struct {
func (x *UserListInfo) Reset() {
*x = UserListInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[47]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[47]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2902,7 +2902,7 @@ func (x *UserListInfo) String() string {
func (*UserListInfo) ProtoMessage() {}
func (x *UserListInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[47]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[47]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2915,7 +2915,7 @@ func (x *UserListInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListInfo.ProtoReflect.Descriptor instead.
func (*UserListInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{47}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{47}
}
func (x *UserListInfo) GetUserList() string {
@@ -2943,7 +2943,7 @@ type ProximityInfo struct {
// The radius of the proximity.
Radius *float64 `protobuf:"fixed64,5,opt,name=radius,proto3,oneof" json:"radius,omitempty"`
// The unit of measurement of the radius. Default is KILOMETERS.
- RadiusUnits enums.ProximityRadiusUnitsEnum_ProximityRadiusUnits `protobuf:"varint,3,opt,name=radius_units,json=radiusUnits,proto3,enum=google.ads.googleads.v16.enums.ProximityRadiusUnitsEnum_ProximityRadiusUnits" json:"radius_units,omitempty"`
+ RadiusUnits enums.ProximityRadiusUnitsEnum_ProximityRadiusUnits `protobuf:"varint,3,opt,name=radius_units,json=radiusUnits,proto3,enum=google.ads.googleads.v17.enums.ProximityRadiusUnitsEnum_ProximityRadiusUnits" json:"radius_units,omitempty"`
// Full address.
Address *AddressInfo `protobuf:"bytes,4,opt,name=address,proto3" json:"address,omitempty"`
}
@@ -2951,7 +2951,7 @@ type ProximityInfo struct {
func (x *ProximityInfo) Reset() {
*x = ProximityInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[48]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[48]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2964,7 +2964,7 @@ func (x *ProximityInfo) String() string {
func (*ProximityInfo) ProtoMessage() {}
func (x *ProximityInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[48]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[48]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2977,7 +2977,7 @@ func (x *ProximityInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProximityInfo.ProtoReflect.Descriptor instead.
func (*ProximityInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{48}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{48}
}
func (x *ProximityInfo) GetGeoPoint() *GeoPointInfo {
@@ -3023,7 +3023,7 @@ type GeoPointInfo struct {
func (x *GeoPointInfo) Reset() {
*x = GeoPointInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[49]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[49]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3036,7 +3036,7 @@ func (x *GeoPointInfo) String() string {
func (*GeoPointInfo) ProtoMessage() {}
func (x *GeoPointInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[49]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[49]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3049,7 +3049,7 @@ func (x *GeoPointInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use GeoPointInfo.ProtoReflect.Descriptor instead.
func (*GeoPointInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{49}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{49}
}
func (x *GeoPointInfo) GetLongitudeInMicroDegrees() int32 {
@@ -3093,7 +3093,7 @@ type AddressInfo struct {
func (x *AddressInfo) Reset() {
*x = AddressInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[50]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[50]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3106,7 +3106,7 @@ func (x *AddressInfo) String() string {
func (*AddressInfo) ProtoMessage() {}
func (x *AddressInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[50]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[50]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3119,7 +3119,7 @@ func (x *AddressInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use AddressInfo.ProtoReflect.Descriptor instead.
func (*AddressInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{50}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{50}
}
func (x *AddressInfo) GetPostalCode() string {
@@ -3191,7 +3191,7 @@ type TopicInfo struct {
func (x *TopicInfo) Reset() {
*x = TopicInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[51]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[51]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3204,7 +3204,7 @@ func (x *TopicInfo) String() string {
func (*TopicInfo) ProtoMessage() {}
func (x *TopicInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[51]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[51]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3217,7 +3217,7 @@ func (x *TopicInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use TopicInfo.ProtoReflect.Descriptor instead.
func (*TopicInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{51}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{51}
}
func (x *TopicInfo) GetTopicConstant() string {
@@ -3247,7 +3247,7 @@ type LanguageInfo struct {
func (x *LanguageInfo) Reset() {
*x = LanguageInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[52]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[52]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3260,7 +3260,7 @@ func (x *LanguageInfo) String() string {
func (*LanguageInfo) ProtoMessage() {}
func (x *LanguageInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[52]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[52]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3273,7 +3273,7 @@ func (x *LanguageInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use LanguageInfo.ProtoReflect.Descriptor instead.
func (*LanguageInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{52}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{52}
}
func (x *LanguageInfo) GetLanguageConstant() string {
@@ -3300,7 +3300,7 @@ type IpBlockInfo struct {
func (x *IpBlockInfo) Reset() {
*x = IpBlockInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[53]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[53]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3313,7 +3313,7 @@ func (x *IpBlockInfo) String() string {
func (*IpBlockInfo) ProtoMessage() {}
func (x *IpBlockInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[53]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[53]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3326,7 +3326,7 @@ func (x *IpBlockInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use IpBlockInfo.ProtoReflect.Descriptor instead.
func (*IpBlockInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{53}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{53}
}
func (x *IpBlockInfo) GetIpAddress() string {
@@ -3343,13 +3343,13 @@ type ContentLabelInfo struct {
unknownFields protoimpl.UnknownFields
// Content label type, required for CREATE operations.
- Type enums.ContentLabelTypeEnum_ContentLabelType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.ContentLabelTypeEnum_ContentLabelType" json:"type,omitempty"`
+ Type enums.ContentLabelTypeEnum_ContentLabelType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.ContentLabelTypeEnum_ContentLabelType" json:"type,omitempty"`
}
func (x *ContentLabelInfo) Reset() {
*x = ContentLabelInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[54]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[54]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3362,7 +3362,7 @@ func (x *ContentLabelInfo) String() string {
func (*ContentLabelInfo) ProtoMessage() {}
func (x *ContentLabelInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[54]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[54]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3375,7 +3375,7 @@ func (x *ContentLabelInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use ContentLabelInfo.ProtoReflect.Descriptor instead.
func (*ContentLabelInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{54}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{54}
}
func (x *ContentLabelInfo) GetType() enums.ContentLabelTypeEnum_ContentLabelType {
@@ -3398,7 +3398,7 @@ type CarrierInfo struct {
func (x *CarrierInfo) Reset() {
*x = CarrierInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[55]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[55]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3411,7 +3411,7 @@ func (x *CarrierInfo) String() string {
func (*CarrierInfo) ProtoMessage() {}
func (x *CarrierInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[55]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[55]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3424,7 +3424,7 @@ func (x *CarrierInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use CarrierInfo.ProtoReflect.Descriptor instead.
func (*CarrierInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{55}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{55}
}
func (x *CarrierInfo) GetCarrierConstant() string {
@@ -3447,7 +3447,7 @@ type UserInterestInfo struct {
func (x *UserInterestInfo) Reset() {
*x = UserInterestInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[56]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[56]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3460,7 +3460,7 @@ func (x *UserInterestInfo) String() string {
func (*UserInterestInfo) ProtoMessage() {}
func (x *UserInterestInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[56]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[56]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3473,7 +3473,7 @@ func (x *UserInterestInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserInterestInfo.ProtoReflect.Descriptor instead.
func (*UserInterestInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{56}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{56}
}
func (x *UserInterestInfo) GetUserInterestCategory() string {
@@ -3517,7 +3517,7 @@ type WebpageInfo struct {
func (x *WebpageInfo) Reset() {
*x = WebpageInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[57]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[57]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3530,7 +3530,7 @@ func (x *WebpageInfo) String() string {
func (*WebpageInfo) ProtoMessage() {}
func (x *WebpageInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[57]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[57]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3543,7 +3543,7 @@ func (x *WebpageInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use WebpageInfo.ProtoReflect.Descriptor instead.
func (*WebpageInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{57}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{57}
}
func (x *WebpageInfo) GetCriterionName() string {
@@ -3581,9 +3581,9 @@ type WebpageConditionInfo struct {
unknownFields protoimpl.UnknownFields
// Operand of webpage targeting condition.
- Operand enums.WebpageConditionOperandEnum_WebpageConditionOperand `protobuf:"varint,1,opt,name=operand,proto3,enum=google.ads.googleads.v16.enums.WebpageConditionOperandEnum_WebpageConditionOperand" json:"operand,omitempty"`
+ Operand enums.WebpageConditionOperandEnum_WebpageConditionOperand `protobuf:"varint,1,opt,name=operand,proto3,enum=google.ads.googleads.v17.enums.WebpageConditionOperandEnum_WebpageConditionOperand" json:"operand,omitempty"`
// Operator of webpage targeting condition.
- Operator enums.WebpageConditionOperatorEnum_WebpageConditionOperator `protobuf:"varint,2,opt,name=operator,proto3,enum=google.ads.googleads.v16.enums.WebpageConditionOperatorEnum_WebpageConditionOperator" json:"operator,omitempty"`
+ Operator enums.WebpageConditionOperatorEnum_WebpageConditionOperator `protobuf:"varint,2,opt,name=operator,proto3,enum=google.ads.googleads.v17.enums.WebpageConditionOperatorEnum_WebpageConditionOperator" json:"operator,omitempty"`
// Argument of webpage targeting condition.
Argument *string `protobuf:"bytes,4,opt,name=argument,proto3,oneof" json:"argument,omitempty"`
}
@@ -3591,7 +3591,7 @@ type WebpageConditionInfo struct {
func (x *WebpageConditionInfo) Reset() {
*x = WebpageConditionInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[58]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[58]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3604,7 +3604,7 @@ func (x *WebpageConditionInfo) String() string {
func (*WebpageConditionInfo) ProtoMessage() {}
func (x *WebpageConditionInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[58]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[58]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3617,7 +3617,7 @@ func (x *WebpageConditionInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use WebpageConditionInfo.ProtoReflect.Descriptor instead.
func (*WebpageConditionInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{58}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{58}
}
func (x *WebpageConditionInfo) GetOperand() enums.WebpageConditionOperandEnum_WebpageConditionOperand {
@@ -3654,7 +3654,7 @@ type WebpageSampleInfo struct {
func (x *WebpageSampleInfo) Reset() {
*x = WebpageSampleInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[59]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[59]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3667,7 +3667,7 @@ func (x *WebpageSampleInfo) String() string {
func (*WebpageSampleInfo) ProtoMessage() {}
func (x *WebpageSampleInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[59]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[59]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3680,7 +3680,7 @@ func (x *WebpageSampleInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use WebpageSampleInfo.ProtoReflect.Descriptor instead.
func (*WebpageSampleInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{59}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{59}
}
func (x *WebpageSampleInfo) GetSampleUrls() []string {
@@ -3703,7 +3703,7 @@ type OperatingSystemVersionInfo struct {
func (x *OperatingSystemVersionInfo) Reset() {
*x = OperatingSystemVersionInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[60]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[60]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3716,7 +3716,7 @@ func (x *OperatingSystemVersionInfo) String() string {
func (*OperatingSystemVersionInfo) ProtoMessage() {}
func (x *OperatingSystemVersionInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[60]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[60]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3729,7 +3729,7 @@ func (x *OperatingSystemVersionInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use OperatingSystemVersionInfo.ProtoReflect.Descriptor instead.
func (*OperatingSystemVersionInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{60}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{60}
}
func (x *OperatingSystemVersionInfo) GetOperatingSystemVersionConstant() string {
@@ -3746,13 +3746,13 @@ type AppPaymentModelInfo struct {
unknownFields protoimpl.UnknownFields
// Type of the app payment model.
- Type enums.AppPaymentModelTypeEnum_AppPaymentModelType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.AppPaymentModelTypeEnum_AppPaymentModelType" json:"type,omitempty"`
+ Type enums.AppPaymentModelTypeEnum_AppPaymentModelType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.AppPaymentModelTypeEnum_AppPaymentModelType" json:"type,omitempty"`
}
func (x *AppPaymentModelInfo) Reset() {
*x = AppPaymentModelInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[61]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[61]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3765,7 +3765,7 @@ func (x *AppPaymentModelInfo) String() string {
func (*AppPaymentModelInfo) ProtoMessage() {}
func (x *AppPaymentModelInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[61]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[61]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3778,7 +3778,7 @@ func (x *AppPaymentModelInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use AppPaymentModelInfo.ProtoReflect.Descriptor instead.
func (*AppPaymentModelInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{61}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{61}
}
func (x *AppPaymentModelInfo) GetType() enums.AppPaymentModelTypeEnum_AppPaymentModelType {
@@ -3801,7 +3801,7 @@ type MobileDeviceInfo struct {
func (x *MobileDeviceInfo) Reset() {
*x = MobileDeviceInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[62]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[62]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3814,7 +3814,7 @@ func (x *MobileDeviceInfo) String() string {
func (*MobileDeviceInfo) ProtoMessage() {}
func (x *MobileDeviceInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[62]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[62]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3827,7 +3827,7 @@ func (x *MobileDeviceInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use MobileDeviceInfo.ProtoReflect.Descriptor instead.
func (*MobileDeviceInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{62}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{62}
}
func (x *MobileDeviceInfo) GetMobileDeviceConstant() string {
@@ -3851,7 +3851,7 @@ type CustomAffinityInfo struct {
func (x *CustomAffinityInfo) Reset() {
*x = CustomAffinityInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[63]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[63]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3864,7 +3864,7 @@ func (x *CustomAffinityInfo) String() string {
func (*CustomAffinityInfo) ProtoMessage() {}
func (x *CustomAffinityInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[63]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[63]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3877,7 +3877,7 @@ func (x *CustomAffinityInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomAffinityInfo.ProtoReflect.Descriptor instead.
func (*CustomAffinityInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{63}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{63}
}
func (x *CustomAffinityInfo) GetCustomAffinity() string {
@@ -3901,7 +3901,7 @@ type CustomIntentInfo struct {
func (x *CustomIntentInfo) Reset() {
*x = CustomIntentInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[64]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[64]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3914,7 +3914,7 @@ func (x *CustomIntentInfo) String() string {
func (*CustomIntentInfo) ProtoMessage() {}
func (x *CustomIntentInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[64]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[64]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3927,7 +3927,7 @@ func (x *CustomIntentInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomIntentInfo.ProtoReflect.Descriptor instead.
func (*CustomIntentInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{64}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{64}
}
func (x *CustomIntentInfo) GetCustomIntent() string {
@@ -3956,7 +3956,7 @@ type LocationGroupInfo struct {
// Unit of the radius. Miles and meters are supported for geo target
// constants. Milli miles and meters are supported for feed item sets and
// asset sets. This is required and must be set in CREATE operations.
- RadiusUnits enums.LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits `protobuf:"varint,4,opt,name=radius_units,json=radiusUnits,proto3,enum=google.ads.googleads.v16.enums.LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits" json:"radius_units,omitempty"`
+ RadiusUnits enums.LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits `protobuf:"varint,4,opt,name=radius_units,json=radiusUnits,proto3,enum=google.ads.googleads.v17.enums.LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits" json:"radius_units,omitempty"`
// FeedItemSets whose FeedItems are targeted. If multiple IDs are specified,
// then all items that appear in at least one set are targeted. This field
// cannot be used with geo_target_constants. This is optional and can only be
@@ -3980,7 +3980,7 @@ type LocationGroupInfo struct {
func (x *LocationGroupInfo) Reset() {
*x = LocationGroupInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[65]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[65]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3993,7 +3993,7 @@ func (x *LocationGroupInfo) String() string {
func (*LocationGroupInfo) ProtoMessage() {}
func (x *LocationGroupInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[65]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[65]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4006,7 +4006,7 @@ func (x *LocationGroupInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocationGroupInfo.ProtoReflect.Descriptor instead.
func (*LocationGroupInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{65}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{65}
}
func (x *LocationGroupInfo) GetFeed() string {
@@ -4071,7 +4071,7 @@ type CustomAudienceInfo struct {
func (x *CustomAudienceInfo) Reset() {
*x = CustomAudienceInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[66]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[66]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4084,7 +4084,7 @@ func (x *CustomAudienceInfo) String() string {
func (*CustomAudienceInfo) ProtoMessage() {}
func (x *CustomAudienceInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[66]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[66]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4097,7 +4097,7 @@ func (x *CustomAudienceInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomAudienceInfo.ProtoReflect.Descriptor instead.
func (*CustomAudienceInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{66}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{66}
}
func (x *CustomAudienceInfo) GetCustomAudience() string {
@@ -4120,7 +4120,7 @@ type CombinedAudienceInfo struct {
func (x *CombinedAudienceInfo) Reset() {
*x = CombinedAudienceInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[67]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[67]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4133,7 +4133,7 @@ func (x *CombinedAudienceInfo) String() string {
func (*CombinedAudienceInfo) ProtoMessage() {}
func (x *CombinedAudienceInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[67]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[67]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4146,7 +4146,7 @@ func (x *CombinedAudienceInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use CombinedAudienceInfo.ProtoReflect.Descriptor instead.
func (*CombinedAudienceInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{67}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{67}
}
func (x *CombinedAudienceInfo) GetCombinedAudience() string {
@@ -4169,7 +4169,7 @@ type AudienceInfo struct {
func (x *AudienceInfo) Reset() {
*x = AudienceInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[68]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[68]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4182,7 +4182,7 @@ func (x *AudienceInfo) String() string {
func (*AudienceInfo) ProtoMessage() {}
func (x *AudienceInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[68]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[68]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4195,7 +4195,7 @@ func (x *AudienceInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use AudienceInfo.ProtoReflect.Descriptor instead.
func (*AudienceInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{68}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{68}
}
func (x *AudienceInfo) GetAudience() string {
@@ -4224,7 +4224,7 @@ type KeywordThemeInfo struct {
func (x *KeywordThemeInfo) Reset() {
*x = KeywordThemeInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[69]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[69]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4237,7 +4237,7 @@ func (x *KeywordThemeInfo) String() string {
func (*KeywordThemeInfo) ProtoMessage() {}
func (x *KeywordThemeInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[69]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[69]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4250,7 +4250,7 @@ func (x *KeywordThemeInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use KeywordThemeInfo.ProtoReflect.Descriptor instead.
func (*KeywordThemeInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{69}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{69}
}
func (m *KeywordThemeInfo) GetKeywordTheme() isKeywordThemeInfo_KeywordTheme {
@@ -4308,7 +4308,7 @@ type LocalServiceIdInfo struct {
func (x *LocalServiceIdInfo) Reset() {
*x = LocalServiceIdInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[70]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[70]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4321,7 +4321,7 @@ func (x *LocalServiceIdInfo) String() string {
func (*LocalServiceIdInfo) ProtoMessage() {}
func (x *LocalServiceIdInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[70]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[70]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4334,7 +4334,7 @@ func (x *LocalServiceIdInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocalServiceIdInfo.ProtoReflect.Descriptor instead.
func (*LocalServiceIdInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{70}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{70}
}
func (x *LocalServiceIdInfo) GetServiceId() string {
@@ -4360,7 +4360,7 @@ type SearchThemeInfo struct {
func (x *SearchThemeInfo) Reset() {
*x = SearchThemeInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[71]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[71]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4373,7 +4373,7 @@ func (x *SearchThemeInfo) String() string {
func (*SearchThemeInfo) ProtoMessage() {}
func (x *SearchThemeInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[71]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[71]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4386,7 +4386,7 @@ func (x *SearchThemeInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use SearchThemeInfo.ProtoReflect.Descriptor instead.
func (*SearchThemeInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{71}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{71}
}
func (x *SearchThemeInfo) GetText() string {
@@ -4410,15 +4410,15 @@ type BrandInfo struct {
// Output only. The primary url of a brand.
PrimaryUrl *string `protobuf:"bytes,3,opt,name=primary_url,json=primaryUrl,proto3,oneof" json:"primary_url,omitempty"`
// Output only. The rejection reason when a brand status is REJECTED.
- RejectionReason *enums.BrandRequestRejectionReasonEnum_BrandRequestRejectionReason `protobuf:"varint,4,opt,name=rejection_reason,json=rejectionReason,proto3,enum=google.ads.googleads.v16.enums.BrandRequestRejectionReasonEnum_BrandRequestRejectionReason,oneof" json:"rejection_reason,omitempty"`
+ RejectionReason *enums.BrandRequestRejectionReasonEnum_BrandRequestRejectionReason `protobuf:"varint,4,opt,name=rejection_reason,json=rejectionReason,proto3,enum=google.ads.googleads.v17.enums.BrandRequestRejectionReasonEnum_BrandRequestRejectionReason,oneof" json:"rejection_reason,omitempty"`
// Output only. The status of a brand.
- Status *enums.BrandStateEnum_BrandState `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.BrandStateEnum_BrandState,oneof" json:"status,omitempty"`
+ Status *enums.BrandStateEnum_BrandState `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.BrandStateEnum_BrandState,oneof" json:"status,omitempty"`
}
func (x *BrandInfo) Reset() {
*x = BrandInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[72]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[72]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4431,7 +4431,7 @@ func (x *BrandInfo) String() string {
func (*BrandInfo) ProtoMessage() {}
func (x *BrandInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[72]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[72]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4444,7 +4444,7 @@ func (x *BrandInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use BrandInfo.ProtoReflect.Descriptor instead.
func (*BrandInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{72}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{72}
}
func (x *BrandInfo) GetDisplayName() string {
@@ -4497,7 +4497,7 @@ type BrandListInfo struct {
func (x *BrandListInfo) Reset() {
*x = BrandListInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[73]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[73]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -4510,7 +4510,7 @@ func (x *BrandListInfo) String() string {
func (*BrandListInfo) ProtoMessage() {}
func (x *BrandListInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criteria_proto_msgTypes[73]
+ mi := &file_google_ads_googleads_v17_common_criteria_proto_msgTypes[73]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -4523,7 +4523,7 @@ func (x *BrandListInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use BrandListInfo.ProtoReflect.Descriptor instead.
func (*BrandListInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP(), []int{73}
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP(), []int{73}
}
func (x *BrandListInfo) GetSharedSet() string {
@@ -4533,103 +4533,103 @@ func (x *BrandListInfo) GetSharedSet() string {
return ""
}
-var File_google_ads_googleads_v16_common_criteria_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_criteria_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_criteria_proto_rawDesc = []byte{
0x0a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x1a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x2f, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x70, 0x70, 0x5f, 0x70, 0x61, 0x79, 0x6d, 0x65,
0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73,
0x74, 0x5f, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x61, 0x73,
0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x73,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x73,
0x74, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x37, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x65,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x65,
0x6e, 0x74, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2f, 0x64, 0x61, 0x79, 0x5f, 0x6f, 0x66, 0x5f, 0x77, 0x65, 0x65, 0x6b, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x2f, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x5f,
0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67,
0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x35, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x69, 0x6e, 0x74,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x69, 0x6e, 0x74,
0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x6d, 0x61, 0x74, 0x63,
0x68, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x37, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x69, 0x73,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x69, 0x73,
0x74, 0x69, 0x6e, 0x67, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x67,
0x72, 0x6f, 0x75, 0x70, 0x5f, 0x72, 0x61, 0x64, 0x69, 0x75, 0x73, 0x5f, 0x75, 0x6e, 0x69, 0x74,
0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x5f, 0x6f,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x5f, 0x6f,
0x66, 0x5f, 0x68, 0x6f, 0x75, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x39, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x61, 0x72,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x61, 0x72,
0x65, 0x6e, 0x74, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x74, 0x79, 0x70,
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x68, 0x61,
0x6e, 0x6e, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x40, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75,
0x63, 0x74, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75,
0x73, 0x69, 0x76, 0x69, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x36, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f,
0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x75, 0x73,
0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x69, 0x6e,
0x64, 0x65, 0x78, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x78, 0x69, 0x6d, 0x69, 0x74, 0x79, 0x5f, 0x72, 0x61, 0x64,
0x69, 0x75, 0x73, 0x5f, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f,
0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f,
0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f,
0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f,
0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65,
@@ -4641,7 +4641,7 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x78, 0x74, 0x88, 0x01, 0x01, 0x12, 0x64, 0x0a, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x74,
0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x45, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f,
0x72, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65,
0x52, 0x09, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x42, 0x07, 0x0a, 0x05, 0x5f,
@@ -4680,18 +4680,18 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x65, 0x76, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x45, 0x0a, 0x04, 0x74, 0x79, 0x70,
0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x31, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x45,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x45,
0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65,
0x22, 0xfa, 0x02, 0x0a, 0x10, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75,
0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x59, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20,
0x01, 0x28, 0x0e, 0x32, 0x45, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75,
0x70, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e,
0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65,
0x12, 0x54, 0x0a, 0x0a, 0x63, 0x61, 0x73, 0x65, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x44, 0x69,
0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x63, 0x61, 0x73,
0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x3e, 0x0a, 0x19, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
@@ -4700,7 +4700,7 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x65, 0x6e, 0x74, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72,
0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x4e, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x05,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x44, 0x69,
0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x74, 0x68, 0x48, 0x01, 0x52, 0x04, 0x70,
0x61, 0x74, 0x68, 0x88, 0x01, 0x01, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e,
@@ -4710,66 +4710,66 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x6e, 0x50, 0x61, 0x74, 0x68, 0x12, 0x55, 0x0a, 0x0a, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69,
0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74,
0x69, 0x6e, 0x67, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f,
0x52, 0x0a, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x69, 0x0a, 0x10,
0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x49, 0x6e, 0x66, 0x6f,
0x12, 0x55, 0x0a, 0x0a, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02,
0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x44, 0x69,
0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0a, 0x64, 0x69, 0x6d,
0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0xef, 0x11, 0x0a, 0x14, 0x4c, 0x69, 0x73, 0x74,
0x69, 0x6e, 0x67, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f,
0x12, 0x49, 0x0a, 0x08, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x49, 0x64, 0x49, 0x6e, 0x66, 0x6f,
0x48, 0x00, 0x52, 0x07, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x49, 0x64, 0x12, 0x52, 0x0a, 0x0b, 0x68,
0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x49, 0x6e, 0x66,
0x6f, 0x48, 0x00, 0x52, 0x0a, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x12,
0x6b, 0x0a, 0x14, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79,
0x5f, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x48, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x67, 0x69,
0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x12, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x43,
0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x12, 0x52, 0x0a, 0x0b,
0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x65, 0x49, 0x6e,
0x66, 0x6f, 0x48, 0x00, 0x52, 0x0a, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x65,
0x12, 0x4f, 0x0a, 0x0a, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x63, 0x69, 0x74, 0x79, 0x18, 0x06,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x69, 0x74, 0x79,
0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x09, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x69, 0x74,
0x79, 0x12, 0x61, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x61, 0x74,
0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72,
0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x6e, 0x66,
0x6f, 0x48, 0x00, 0x52, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65,
0x67, 0x6f, 0x72, 0x79, 0x12, 0x58, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
0x62, 0x72, 0x61, 0x6e, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72,
0x6f, 0x64, 0x75, 0x63, 0x74, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00,
0x52, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x12, 0x5e,
0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65,
0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63,
0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0e,
0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x12, 0x80,
0x01, 0x0a, 0x1b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e,
0x65, 0x6c, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x69, 0x74, 0x79, 0x18, 0x09,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x3e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x68,
0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x69, 0x74, 0x79,
0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x19, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43,
@@ -4777,87 +4777,87 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x79, 0x12, 0x64, 0x0a, 0x11, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x6e,
0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49,
0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x6f,
0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x77, 0x0a, 0x18, 0x70, 0x72, 0x6f, 0x64, 0x75,
0x63, 0x74, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62,
0x75, 0x74, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64,
0x75, 0x63, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75,
0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x16, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
0x12, 0x5c, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x69, 0x74, 0x65, 0x6d,
0x5f, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64,
0x75, 0x63, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x49, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52,
0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x74, 0x65, 0x6d, 0x49, 0x64, 0x12, 0x55,
0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0c,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79,
0x70, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x61, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x34, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x69, 0x6e,
0x67, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
0x47, 0x72, 0x6f, 0x75, 0x70, 0x69, 0x6e, 0x67, 0x12, 0x5b, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x64,
0x75, 0x63, 0x74, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x32, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x73,
0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c,
0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 0x77, 0x0a, 0x18, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
0x5f, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f,
0x6e, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63,
0x74, 0x4c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e,
0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x16, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c,
0x65, 0x67, 0x61, 0x63, 0x79, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x62,
0x0a, 0x11, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x66,
0x75, 0x6c, 0x6c, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64,
0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x46, 0x75, 0x6c, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x48,
0x00, 0x52, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x46, 0x75,
0x6c, 0x6c, 0x12, 0x52, 0x0a, 0x0b, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x69,
0x64, 0x18, 0x15, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69,
0x74, 0x79, 0x49, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0a, 0x61, 0x63, 0x74, 0x69,
0x76, 0x69, 0x74, 0x79, 0x49, 0x64, 0x12, 0x5e, 0x0a, 0x0f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69,
0x74, 0x79, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x33, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x52, 0x61, 0x74, 0x69, 0x6e, 0x67,
0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0e, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79,
0x52, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x61, 0x0a, 0x10, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69,
0x74, 0x79, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x34, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x43, 0x6f, 0x75, 0x6e, 0x74,
0x72, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69,
0x74, 0x79, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x5b, 0x0a, 0x0e, 0x61, 0x63, 0x74,
0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x19, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x32, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x53, 0x74, 0x61, 0x74,
0x65, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0d, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74,
0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x58, 0x0a, 0x0d, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69,
0x74, 0x79, 0x5f, 0x63, 0x69, 0x74, 0x79, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x41, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x43, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x66, 0x6f,
0x48, 0x00, 0x52, 0x0c, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x43, 0x69, 0x74, 0x79,
0x12, 0x7a, 0x0a, 0x19, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x5f, 0x6c, 0x69, 0x73, 0x74,
0x69, 0x6e, 0x67, 0x5f, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x0e, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x4c, 0x69, 0x73,
0x74, 0x69, 0x6e, 0x67, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66,
0x6f, 0x48, 0x00, 0x52, 0x17, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x4c, 0x69, 0x73, 0x74,
@@ -4893,7 +4893,7 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x63, 0x0a, 0x05,
0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f,
0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x4c, 0x65, 0x76, 0x65,
0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74,
0x65, 0x67, 0x6f, 0x72, 0x79, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65,
@@ -4905,7 +4905,7 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f,
0x12, 0x5b, 0x0a, 0x07, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28,
0x0e, 0x32, 0x41, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65,
0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x68, 0x61,
0x6e, 0x6e, 0x65, 0x6c, 0x52, 0x07, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x22, 0xaa, 0x01,
@@ -4914,7 +4914,7 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x88, 0x01, 0x0a, 0x13, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x65, 0x78, 0x63, 0x6c,
0x75, 0x73, 0x69, 0x76, 0x69, 0x74, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x57, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50,
0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x45, 0x78, 0x63,
0x6c, 0x75, 0x73, 0x69, 0x76, 0x69, 0x74, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f,
0x64, 0x75, 0x63, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x45, 0x78, 0x63, 0x6c, 0x75,
@@ -4923,7 +4923,7 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e,
0x66, 0x6f, 0x12, 0x63, 0x0a, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18,
0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x45, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x6f,
0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f, 0x64,
0x75, 0x63, 0x74, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x63, 0x6f,
@@ -4933,7 +4933,7 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x88, 0x01,
0x01, 0x12, 0x71, 0x0a, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e,
0x32, 0x5b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41,
0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x45, 0x6e, 0x75,
0x6d, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41,
@@ -4948,7 +4948,7 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x61, 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01, 0x12, 0x5b, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c,
0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x45, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54,
0x79, 0x70, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f,
0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x52, 0x05, 0x6c,
0x65, 0x76, 0x65, 0x6c, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x3a,
@@ -4973,7 +4973,7 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x49, 0x6e, 0x66,
0x6f, 0x12, 0x65, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
0x51, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x44, 0x61, 0x74, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x48, 0x6f, 0x74, 0x65,
0x6c, 0x44, 0x61, 0x74, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79,
@@ -5002,7 +5002,7 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x65, 0x6c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x49, 0x6e, 0x44, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f,
0x12, 0x57, 0x0a, 0x0b, 0x64, 0x61, 0x79, 0x5f, 0x6f, 0x66, 0x5f, 0x77, 0x65, 0x65, 0x6b, 0x18,
0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x61, 0x79, 0x4f, 0x66, 0x57, 0x65, 0x65, 0x6b,
0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x61, 0x79, 0x4f, 0x66, 0x57, 0x65, 0x65, 0x6b, 0x52, 0x09,
0x64, 0x61, 0x79, 0x4f, 0x66, 0x57, 0x65, 0x65, 0x6b, 0x22, 0x35, 0x0a, 0x0e, 0x41, 0x63, 0x74,
@@ -5027,20 +5027,20 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x49, 0x6e, 0x66,
0x6f, 0x12, 0x57, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
0x43, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65,
0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x89, 0x03, 0x0a, 0x0e, 0x41,
0x64, 0x53, 0x63, 0x68, 0x65, 0x64, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x60, 0x0a,
0x0c, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x6d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x18, 0x01, 0x20,
0x01, 0x28, 0x0e, 0x32, 0x3d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x4f, 0x66, 0x48, 0x6f, 0x75,
0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x4f, 0x66, 0x48, 0x6f,
0x75, 0x72, 0x52, 0x0b, 0x73, 0x74, 0x61, 0x72, 0x74, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x12,
0x5c, 0x0a, 0x0a, 0x65, 0x6e, 0x64, 0x5f, 0x6d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x18, 0x02, 0x20,
0x01, 0x28, 0x0e, 0x32, 0x3d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x4f, 0x66, 0x48, 0x6f, 0x75,
0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x4f, 0x66, 0x48, 0x6f,
0x75, 0x72, 0x52, 0x09, 0x65, 0x6e, 0x64, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x12, 0x22, 0x0a,
@@ -5051,34 +5051,34 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x01, 0x12, 0x57, 0x0a, 0x0b, 0x64, 0x61, 0x79, 0x5f, 0x6f, 0x66, 0x5f, 0x77, 0x65, 0x65, 0x6b,
0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x61, 0x79, 0x4f, 0x66, 0x57, 0x65, 0x65,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x61, 0x79, 0x4f, 0x66, 0x57, 0x65, 0x65,
0x6b, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x61, 0x79, 0x4f, 0x66, 0x57, 0x65, 0x65, 0x6b, 0x52,
0x09, 0x64, 0x61, 0x79, 0x4f, 0x66, 0x57, 0x65, 0x65, 0x6b, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x73,
0x74, 0x61, 0x72, 0x74, 0x5f, 0x68, 0x6f, 0x75, 0x72, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x65, 0x6e,
0x64, 0x5f, 0x68, 0x6f, 0x75, 0x72, 0x22, 0x61, 0x0a, 0x0c, 0x41, 0x67, 0x65, 0x52, 0x61, 0x6e,
0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x51, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01,
0x20, 0x01, 0x28, 0x0e, 0x32, 0x3d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x54, 0x79,
0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x54,
0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x5b, 0x0a, 0x0a, 0x47, 0x65, 0x6e,
0x64, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x4d, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18,
0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x54, 0x79, 0x70,
0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65,
0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x6a, 0x0a, 0x0f, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65,
0x52, 0x61, 0x6e, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x57, 0x0a, 0x04, 0x74, 0x79, 0x70,
0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x43, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x52,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x52,
0x61, 0x6e, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x49, 0x6e, 0x63,
0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79,
0x70, 0x65, 0x22, 0x73, 0x0a, 0x12, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x53, 0x74,
0x61, 0x74, 0x75, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x5d, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65,
0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x49, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50,
0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x54, 0x79, 0x70,
0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x3f, 0x0a, 0x10, 0x59, 0x6f, 0x75, 0x54, 0x75,
@@ -5098,20 +5098,20 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x6e, 0x66, 0x6f, 0x12, 0x4a, 0x0a, 0x09, 0x67, 0x65, 0x6f, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74,
0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x47, 0x65, 0x6f, 0x50, 0x6f, 0x69, 0x6e,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x47, 0x65, 0x6f, 0x50, 0x6f, 0x69, 0x6e,
0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x67, 0x65, 0x6f, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x12,
0x1b, 0x0a, 0x06, 0x72, 0x61, 0x64, 0x69, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x48,
0x00, 0x52, 0x06, 0x72, 0x61, 0x64, 0x69, 0x75, 0x73, 0x88, 0x01, 0x01, 0x12, 0x70, 0x0a, 0x0c,
0x72, 0x61, 0x64, 0x69, 0x75, 0x73, 0x5f, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01,
0x28, 0x0e, 0x32, 0x4d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x78, 0x69, 0x6d, 0x69, 0x74, 0x79, 0x52, 0x61, 0x64,
0x69, 0x75, 0x73, 0x55, 0x6e, 0x69, 0x74, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f,
0x78, 0x69, 0x6d, 0x69, 0x74, 0x79, 0x52, 0x61, 0x64, 0x69, 0x75, 0x73, 0x55, 0x6e, 0x69, 0x74,
0x73, 0x52, 0x0b, 0x72, 0x61, 0x64, 0x69, 0x75, 0x73, 0x55, 0x6e, 0x69, 0x74, 0x73, 0x12, 0x46,
0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2e, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x61,
0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x72, 0x61, 0x64, 0x69, 0x75,
0x73, 0x22, 0xcd, 0x01, 0x0a, 0x0c, 0x47, 0x65, 0x6f, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x49, 0x6e,
@@ -5175,7 +5175,7 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x73, 0x22, 0x6d, 0x0a, 0x10, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4c, 0x61, 0x62, 0x65,
0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x59, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20,
0x01, 0x28, 0x0e, 0x32, 0x45, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4c, 0x61, 0x62, 0x65,
0x6c, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65,
@@ -5200,7 +5200,7 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x55, 0x0a, 0x0a, 0x63, 0x6f,
0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x2e, 0x57, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f,
0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0a, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e,
0x73, 0x12, 0x2f, 0x0a, 0x13, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x70, 0x65,
@@ -5208,7 +5208,7 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x63, 0x6f, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61,
0x67, 0x65, 0x12, 0x4a, 0x0a, 0x06, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x18, 0x05, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x32, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x53, 0x61, 0x6d, 0x70,
0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x06, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x42, 0x11,
0x0a, 0x0f, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d,
@@ -5216,14 +5216,14 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x6d, 0x0a, 0x07, 0x6f, 0x70,
0x65, 0x72, 0x61, 0x6e, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x53, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x57, 0x65, 0x62,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x57, 0x65, 0x62,
0x70, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65,
0x72, 0x61, 0x6e, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x57, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65,
0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64,
0x52, 0x07, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x12, 0x71, 0x0a, 0x08, 0x6f, 0x70, 0x65,
0x72, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x55, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x57, 0x65, 0x62,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x57, 0x65, 0x62,
0x70, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65,
0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x57, 0x65, 0x62, 0x70, 0x61, 0x67,
0x65, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74,
@@ -5251,7 +5251,7 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x5f, 0x0a, 0x04, 0x74,
0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4b, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x50, 0x61,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x50, 0x61,
0x79, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e,
0x75, 0x6d, 0x2e, 0x41, 0x70, 0x70, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64,
0x65, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x9c, 0x01, 0x0a,
@@ -5286,7 +5286,7 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x01, 0x12, 0x78, 0x0a, 0x0c, 0x72, 0x61, 0x64, 0x69, 0x75, 0x73, 0x5f, 0x75, 0x6e, 0x69, 0x74,
0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x55, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x61, 0x64, 0x69, 0x75, 0x73, 0x55, 0x6e, 0x69, 0x74,
0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x72,
0x6f, 0x75, 0x70, 0x52, 0x61, 0x64, 0x69, 0x75, 0x73, 0x55, 0x6e, 0x69, 0x74, 0x73, 0x52, 0x0b,
@@ -5350,7 +5350,7 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x72, 0x79, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x90, 0x01, 0x0a, 0x10, 0x72, 0x65, 0x6a,
0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x04, 0x20,
0x01, 0x28, 0x0e, 0x32, 0x5b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
0x74, 0x52, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e,
0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
@@ -5359,7 +5359,7 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x6f, 0x6e, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x5b, 0x0a, 0x06, 0x73,
0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x39, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x72, 0x61,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x72, 0x61,
0x6e, 0x64, 0x53, 0x74, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x72, 0x61, 0x6e,
0x64, 0x53, 0x74, 0x61, 0x74, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x04, 0x52, 0x06, 0x73,
0x74, 0x61, 0x74, 0x75, 0x73, 0x88, 0x01, 0x01, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x64, 0x69, 0x73,
@@ -5373,196 +5373,196 @@ var file_google_ads_googleads_v16_common_criteria_proto_rawDesc = []byte{
0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x88, 0x01, 0x01, 0x42, 0x0d, 0x0a, 0x0b,
0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x42, 0xed, 0x01, 0x0a, 0x23,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x42, 0x0d, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_criteria_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_criteria_proto_rawDescData = file_google_ads_googleads_v16_common_criteria_proto_rawDesc
+ file_google_ads_googleads_v17_common_criteria_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_criteria_proto_rawDescData = file_google_ads_googleads_v17_common_criteria_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_criteria_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_criteria_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_criteria_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_criteria_proto_rawDescData)
+func file_google_ads_googleads_v17_common_criteria_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_criteria_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_criteria_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_criteria_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_criteria_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_common_criteria_proto_msgTypes = make([]protoimpl.MessageInfo, 74)
-var file_google_ads_googleads_v16_common_criteria_proto_goTypes = []interface{}{
- (*KeywordInfo)(nil), // 0: google.ads.googleads.v16.common.KeywordInfo
- (*PlacementInfo)(nil), // 1: google.ads.googleads.v16.common.PlacementInfo
- (*NegativeKeywordListInfo)(nil), // 2: google.ads.googleads.v16.common.NegativeKeywordListInfo
- (*MobileAppCategoryInfo)(nil), // 3: google.ads.googleads.v16.common.MobileAppCategoryInfo
- (*MobileApplicationInfo)(nil), // 4: google.ads.googleads.v16.common.MobileApplicationInfo
- (*LocationInfo)(nil), // 5: google.ads.googleads.v16.common.LocationInfo
- (*DeviceInfo)(nil), // 6: google.ads.googleads.v16.common.DeviceInfo
- (*ListingGroupInfo)(nil), // 7: google.ads.googleads.v16.common.ListingGroupInfo
- (*ListingDimensionPath)(nil), // 8: google.ads.googleads.v16.common.ListingDimensionPath
- (*ListingScopeInfo)(nil), // 9: google.ads.googleads.v16.common.ListingScopeInfo
- (*ListingDimensionInfo)(nil), // 10: google.ads.googleads.v16.common.ListingDimensionInfo
- (*HotelIdInfo)(nil), // 11: google.ads.googleads.v16.common.HotelIdInfo
- (*HotelClassInfo)(nil), // 12: google.ads.googleads.v16.common.HotelClassInfo
- (*HotelCountryRegionInfo)(nil), // 13: google.ads.googleads.v16.common.HotelCountryRegionInfo
- (*HotelStateInfo)(nil), // 14: google.ads.googleads.v16.common.HotelStateInfo
- (*HotelCityInfo)(nil), // 15: google.ads.googleads.v16.common.HotelCityInfo
- (*ProductCategoryInfo)(nil), // 16: google.ads.googleads.v16.common.ProductCategoryInfo
- (*ProductBrandInfo)(nil), // 17: google.ads.googleads.v16.common.ProductBrandInfo
- (*ProductChannelInfo)(nil), // 18: google.ads.googleads.v16.common.ProductChannelInfo
- (*ProductChannelExclusivityInfo)(nil), // 19: google.ads.googleads.v16.common.ProductChannelExclusivityInfo
- (*ProductConditionInfo)(nil), // 20: google.ads.googleads.v16.common.ProductConditionInfo
- (*ProductCustomAttributeInfo)(nil), // 21: google.ads.googleads.v16.common.ProductCustomAttributeInfo
- (*ProductItemIdInfo)(nil), // 22: google.ads.googleads.v16.common.ProductItemIdInfo
- (*ProductTypeInfo)(nil), // 23: google.ads.googleads.v16.common.ProductTypeInfo
- (*ProductGroupingInfo)(nil), // 24: google.ads.googleads.v16.common.ProductGroupingInfo
- (*ProductLabelsInfo)(nil), // 25: google.ads.googleads.v16.common.ProductLabelsInfo
- (*ProductLegacyConditionInfo)(nil), // 26: google.ads.googleads.v16.common.ProductLegacyConditionInfo
- (*ProductTypeFullInfo)(nil), // 27: google.ads.googleads.v16.common.ProductTypeFullInfo
- (*UnknownListingDimensionInfo)(nil), // 28: google.ads.googleads.v16.common.UnknownListingDimensionInfo
- (*HotelDateSelectionTypeInfo)(nil), // 29: google.ads.googleads.v16.common.HotelDateSelectionTypeInfo
- (*HotelAdvanceBookingWindowInfo)(nil), // 30: google.ads.googleads.v16.common.HotelAdvanceBookingWindowInfo
- (*HotelLengthOfStayInfo)(nil), // 31: google.ads.googleads.v16.common.HotelLengthOfStayInfo
- (*HotelCheckInDateRangeInfo)(nil), // 32: google.ads.googleads.v16.common.HotelCheckInDateRangeInfo
- (*HotelCheckInDayInfo)(nil), // 33: google.ads.googleads.v16.common.HotelCheckInDayInfo
- (*ActivityIdInfo)(nil), // 34: google.ads.googleads.v16.common.ActivityIdInfo
- (*ActivityRatingInfo)(nil), // 35: google.ads.googleads.v16.common.ActivityRatingInfo
- (*ActivityCountryInfo)(nil), // 36: google.ads.googleads.v16.common.ActivityCountryInfo
- (*ActivityStateInfo)(nil), // 37: google.ads.googleads.v16.common.ActivityStateInfo
- (*ActivityCityInfo)(nil), // 38: google.ads.googleads.v16.common.ActivityCityInfo
- (*InteractionTypeInfo)(nil), // 39: google.ads.googleads.v16.common.InteractionTypeInfo
- (*AdScheduleInfo)(nil), // 40: google.ads.googleads.v16.common.AdScheduleInfo
- (*AgeRangeInfo)(nil), // 41: google.ads.googleads.v16.common.AgeRangeInfo
- (*GenderInfo)(nil), // 42: google.ads.googleads.v16.common.GenderInfo
- (*IncomeRangeInfo)(nil), // 43: google.ads.googleads.v16.common.IncomeRangeInfo
- (*ParentalStatusInfo)(nil), // 44: google.ads.googleads.v16.common.ParentalStatusInfo
- (*YouTubeVideoInfo)(nil), // 45: google.ads.googleads.v16.common.YouTubeVideoInfo
- (*YouTubeChannelInfo)(nil), // 46: google.ads.googleads.v16.common.YouTubeChannelInfo
- (*UserListInfo)(nil), // 47: google.ads.googleads.v16.common.UserListInfo
- (*ProximityInfo)(nil), // 48: google.ads.googleads.v16.common.ProximityInfo
- (*GeoPointInfo)(nil), // 49: google.ads.googleads.v16.common.GeoPointInfo
- (*AddressInfo)(nil), // 50: google.ads.googleads.v16.common.AddressInfo
- (*TopicInfo)(nil), // 51: google.ads.googleads.v16.common.TopicInfo
- (*LanguageInfo)(nil), // 52: google.ads.googleads.v16.common.LanguageInfo
- (*IpBlockInfo)(nil), // 53: google.ads.googleads.v16.common.IpBlockInfo
- (*ContentLabelInfo)(nil), // 54: google.ads.googleads.v16.common.ContentLabelInfo
- (*CarrierInfo)(nil), // 55: google.ads.googleads.v16.common.CarrierInfo
- (*UserInterestInfo)(nil), // 56: google.ads.googleads.v16.common.UserInterestInfo
- (*WebpageInfo)(nil), // 57: google.ads.googleads.v16.common.WebpageInfo
- (*WebpageConditionInfo)(nil), // 58: google.ads.googleads.v16.common.WebpageConditionInfo
- (*WebpageSampleInfo)(nil), // 59: google.ads.googleads.v16.common.WebpageSampleInfo
- (*OperatingSystemVersionInfo)(nil), // 60: google.ads.googleads.v16.common.OperatingSystemVersionInfo
- (*AppPaymentModelInfo)(nil), // 61: google.ads.googleads.v16.common.AppPaymentModelInfo
- (*MobileDeviceInfo)(nil), // 62: google.ads.googleads.v16.common.MobileDeviceInfo
- (*CustomAffinityInfo)(nil), // 63: google.ads.googleads.v16.common.CustomAffinityInfo
- (*CustomIntentInfo)(nil), // 64: google.ads.googleads.v16.common.CustomIntentInfo
- (*LocationGroupInfo)(nil), // 65: google.ads.googleads.v16.common.LocationGroupInfo
- (*CustomAudienceInfo)(nil), // 66: google.ads.googleads.v16.common.CustomAudienceInfo
- (*CombinedAudienceInfo)(nil), // 67: google.ads.googleads.v16.common.CombinedAudienceInfo
- (*AudienceInfo)(nil), // 68: google.ads.googleads.v16.common.AudienceInfo
- (*KeywordThemeInfo)(nil), // 69: google.ads.googleads.v16.common.KeywordThemeInfo
- (*LocalServiceIdInfo)(nil), // 70: google.ads.googleads.v16.common.LocalServiceIdInfo
- (*SearchThemeInfo)(nil), // 71: google.ads.googleads.v16.common.SearchThemeInfo
- (*BrandInfo)(nil), // 72: google.ads.googleads.v16.common.BrandInfo
- (*BrandListInfo)(nil), // 73: google.ads.googleads.v16.common.BrandListInfo
- (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 74: google.ads.googleads.v16.enums.KeywordMatchTypeEnum.KeywordMatchType
- (enums.DeviceEnum_Device)(0), // 75: google.ads.googleads.v16.enums.DeviceEnum.Device
- (enums.ListingGroupTypeEnum_ListingGroupType)(0), // 76: google.ads.googleads.v16.enums.ListingGroupTypeEnum.ListingGroupType
- (enums.ProductCategoryLevelEnum_ProductCategoryLevel)(0), // 77: google.ads.googleads.v16.enums.ProductCategoryLevelEnum.ProductCategoryLevel
- (enums.ProductChannelEnum_ProductChannel)(0), // 78: google.ads.googleads.v16.enums.ProductChannelEnum.ProductChannel
- (enums.ProductChannelExclusivityEnum_ProductChannelExclusivity)(0), // 79: google.ads.googleads.v16.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity
- (enums.ProductConditionEnum_ProductCondition)(0), // 80: google.ads.googleads.v16.enums.ProductConditionEnum.ProductCondition
- (enums.ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex)(0), // 81: google.ads.googleads.v16.enums.ProductCustomAttributeIndexEnum.ProductCustomAttributeIndex
- (enums.ProductTypeLevelEnum_ProductTypeLevel)(0), // 82: google.ads.googleads.v16.enums.ProductTypeLevelEnum.ProductTypeLevel
- (enums.HotelDateSelectionTypeEnum_HotelDateSelectionType)(0), // 83: google.ads.googleads.v16.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType
- (enums.DayOfWeekEnum_DayOfWeek)(0), // 84: google.ads.googleads.v16.enums.DayOfWeekEnum.DayOfWeek
- (enums.InteractionTypeEnum_InteractionType)(0), // 85: google.ads.googleads.v16.enums.InteractionTypeEnum.InteractionType
- (enums.MinuteOfHourEnum_MinuteOfHour)(0), // 86: google.ads.googleads.v16.enums.MinuteOfHourEnum.MinuteOfHour
- (enums.AgeRangeTypeEnum_AgeRangeType)(0), // 87: google.ads.googleads.v16.enums.AgeRangeTypeEnum.AgeRangeType
- (enums.GenderTypeEnum_GenderType)(0), // 88: google.ads.googleads.v16.enums.GenderTypeEnum.GenderType
- (enums.IncomeRangeTypeEnum_IncomeRangeType)(0), // 89: google.ads.googleads.v16.enums.IncomeRangeTypeEnum.IncomeRangeType
- (enums.ParentalStatusTypeEnum_ParentalStatusType)(0), // 90: google.ads.googleads.v16.enums.ParentalStatusTypeEnum.ParentalStatusType
- (enums.ProximityRadiusUnitsEnum_ProximityRadiusUnits)(0), // 91: google.ads.googleads.v16.enums.ProximityRadiusUnitsEnum.ProximityRadiusUnits
- (enums.ContentLabelTypeEnum_ContentLabelType)(0), // 92: google.ads.googleads.v16.enums.ContentLabelTypeEnum.ContentLabelType
- (enums.WebpageConditionOperandEnum_WebpageConditionOperand)(0), // 93: google.ads.googleads.v16.enums.WebpageConditionOperandEnum.WebpageConditionOperand
- (enums.WebpageConditionOperatorEnum_WebpageConditionOperator)(0), // 94: google.ads.googleads.v16.enums.WebpageConditionOperatorEnum.WebpageConditionOperator
- (enums.AppPaymentModelTypeEnum_AppPaymentModelType)(0), // 95: google.ads.googleads.v16.enums.AppPaymentModelTypeEnum.AppPaymentModelType
- (enums.LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits)(0), // 96: google.ads.googleads.v16.enums.LocationGroupRadiusUnitsEnum.LocationGroupRadiusUnits
- (enums.BrandRequestRejectionReasonEnum_BrandRequestRejectionReason)(0), // 97: google.ads.googleads.v16.enums.BrandRequestRejectionReasonEnum.BrandRequestRejectionReason
- (enums.BrandStateEnum_BrandState)(0), // 98: google.ads.googleads.v16.enums.BrandStateEnum.BrandState
-}
-var file_google_ads_googleads_v16_common_criteria_proto_depIdxs = []int32{
- 74, // 0: google.ads.googleads.v16.common.KeywordInfo.match_type:type_name -> google.ads.googleads.v16.enums.KeywordMatchTypeEnum.KeywordMatchType
- 75, // 1: google.ads.googleads.v16.common.DeviceInfo.type:type_name -> google.ads.googleads.v16.enums.DeviceEnum.Device
- 76, // 2: google.ads.googleads.v16.common.ListingGroupInfo.type:type_name -> google.ads.googleads.v16.enums.ListingGroupTypeEnum.ListingGroupType
- 10, // 3: google.ads.googleads.v16.common.ListingGroupInfo.case_value:type_name -> google.ads.googleads.v16.common.ListingDimensionInfo
- 8, // 4: google.ads.googleads.v16.common.ListingGroupInfo.path:type_name -> google.ads.googleads.v16.common.ListingDimensionPath
- 10, // 5: google.ads.googleads.v16.common.ListingDimensionPath.dimensions:type_name -> google.ads.googleads.v16.common.ListingDimensionInfo
- 10, // 6: google.ads.googleads.v16.common.ListingScopeInfo.dimensions:type_name -> google.ads.googleads.v16.common.ListingDimensionInfo
- 11, // 7: google.ads.googleads.v16.common.ListingDimensionInfo.hotel_id:type_name -> google.ads.googleads.v16.common.HotelIdInfo
- 12, // 8: google.ads.googleads.v16.common.ListingDimensionInfo.hotel_class:type_name -> google.ads.googleads.v16.common.HotelClassInfo
- 13, // 9: google.ads.googleads.v16.common.ListingDimensionInfo.hotel_country_region:type_name -> google.ads.googleads.v16.common.HotelCountryRegionInfo
- 14, // 10: google.ads.googleads.v16.common.ListingDimensionInfo.hotel_state:type_name -> google.ads.googleads.v16.common.HotelStateInfo
- 15, // 11: google.ads.googleads.v16.common.ListingDimensionInfo.hotel_city:type_name -> google.ads.googleads.v16.common.HotelCityInfo
- 16, // 12: google.ads.googleads.v16.common.ListingDimensionInfo.product_category:type_name -> google.ads.googleads.v16.common.ProductCategoryInfo
- 17, // 13: google.ads.googleads.v16.common.ListingDimensionInfo.product_brand:type_name -> google.ads.googleads.v16.common.ProductBrandInfo
- 18, // 14: google.ads.googleads.v16.common.ListingDimensionInfo.product_channel:type_name -> google.ads.googleads.v16.common.ProductChannelInfo
- 19, // 15: google.ads.googleads.v16.common.ListingDimensionInfo.product_channel_exclusivity:type_name -> google.ads.googleads.v16.common.ProductChannelExclusivityInfo
- 20, // 16: google.ads.googleads.v16.common.ListingDimensionInfo.product_condition:type_name -> google.ads.googleads.v16.common.ProductConditionInfo
- 21, // 17: google.ads.googleads.v16.common.ListingDimensionInfo.product_custom_attribute:type_name -> google.ads.googleads.v16.common.ProductCustomAttributeInfo
- 22, // 18: google.ads.googleads.v16.common.ListingDimensionInfo.product_item_id:type_name -> google.ads.googleads.v16.common.ProductItemIdInfo
- 23, // 19: google.ads.googleads.v16.common.ListingDimensionInfo.product_type:type_name -> google.ads.googleads.v16.common.ProductTypeInfo
- 24, // 20: google.ads.googleads.v16.common.ListingDimensionInfo.product_grouping:type_name -> google.ads.googleads.v16.common.ProductGroupingInfo
- 25, // 21: google.ads.googleads.v16.common.ListingDimensionInfo.product_labels:type_name -> google.ads.googleads.v16.common.ProductLabelsInfo
- 26, // 22: google.ads.googleads.v16.common.ListingDimensionInfo.product_legacy_condition:type_name -> google.ads.googleads.v16.common.ProductLegacyConditionInfo
- 27, // 23: google.ads.googleads.v16.common.ListingDimensionInfo.product_type_full:type_name -> google.ads.googleads.v16.common.ProductTypeFullInfo
- 34, // 24: google.ads.googleads.v16.common.ListingDimensionInfo.activity_id:type_name -> google.ads.googleads.v16.common.ActivityIdInfo
- 35, // 25: google.ads.googleads.v16.common.ListingDimensionInfo.activity_rating:type_name -> google.ads.googleads.v16.common.ActivityRatingInfo
- 36, // 26: google.ads.googleads.v16.common.ListingDimensionInfo.activity_country:type_name -> google.ads.googleads.v16.common.ActivityCountryInfo
- 37, // 27: google.ads.googleads.v16.common.ListingDimensionInfo.activity_state:type_name -> google.ads.googleads.v16.common.ActivityStateInfo
- 38, // 28: google.ads.googleads.v16.common.ListingDimensionInfo.activity_city:type_name -> google.ads.googleads.v16.common.ActivityCityInfo
- 28, // 29: google.ads.googleads.v16.common.ListingDimensionInfo.unknown_listing_dimension:type_name -> google.ads.googleads.v16.common.UnknownListingDimensionInfo
- 77, // 30: google.ads.googleads.v16.common.ProductCategoryInfo.level:type_name -> google.ads.googleads.v16.enums.ProductCategoryLevelEnum.ProductCategoryLevel
- 78, // 31: google.ads.googleads.v16.common.ProductChannelInfo.channel:type_name -> google.ads.googleads.v16.enums.ProductChannelEnum.ProductChannel
- 79, // 32: google.ads.googleads.v16.common.ProductChannelExclusivityInfo.channel_exclusivity:type_name -> google.ads.googleads.v16.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity
- 80, // 33: google.ads.googleads.v16.common.ProductConditionInfo.condition:type_name -> google.ads.googleads.v16.enums.ProductConditionEnum.ProductCondition
- 81, // 34: google.ads.googleads.v16.common.ProductCustomAttributeInfo.index:type_name -> google.ads.googleads.v16.enums.ProductCustomAttributeIndexEnum.ProductCustomAttributeIndex
- 82, // 35: google.ads.googleads.v16.common.ProductTypeInfo.level:type_name -> google.ads.googleads.v16.enums.ProductTypeLevelEnum.ProductTypeLevel
- 83, // 36: google.ads.googleads.v16.common.HotelDateSelectionTypeInfo.type:type_name -> google.ads.googleads.v16.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType
- 84, // 37: google.ads.googleads.v16.common.HotelCheckInDayInfo.day_of_week:type_name -> google.ads.googleads.v16.enums.DayOfWeekEnum.DayOfWeek
- 85, // 38: google.ads.googleads.v16.common.InteractionTypeInfo.type:type_name -> google.ads.googleads.v16.enums.InteractionTypeEnum.InteractionType
- 86, // 39: google.ads.googleads.v16.common.AdScheduleInfo.start_minute:type_name -> google.ads.googleads.v16.enums.MinuteOfHourEnum.MinuteOfHour
- 86, // 40: google.ads.googleads.v16.common.AdScheduleInfo.end_minute:type_name -> google.ads.googleads.v16.enums.MinuteOfHourEnum.MinuteOfHour
- 84, // 41: google.ads.googleads.v16.common.AdScheduleInfo.day_of_week:type_name -> google.ads.googleads.v16.enums.DayOfWeekEnum.DayOfWeek
- 87, // 42: google.ads.googleads.v16.common.AgeRangeInfo.type:type_name -> google.ads.googleads.v16.enums.AgeRangeTypeEnum.AgeRangeType
- 88, // 43: google.ads.googleads.v16.common.GenderInfo.type:type_name -> google.ads.googleads.v16.enums.GenderTypeEnum.GenderType
- 89, // 44: google.ads.googleads.v16.common.IncomeRangeInfo.type:type_name -> google.ads.googleads.v16.enums.IncomeRangeTypeEnum.IncomeRangeType
- 90, // 45: google.ads.googleads.v16.common.ParentalStatusInfo.type:type_name -> google.ads.googleads.v16.enums.ParentalStatusTypeEnum.ParentalStatusType
- 49, // 46: google.ads.googleads.v16.common.ProximityInfo.geo_point:type_name -> google.ads.googleads.v16.common.GeoPointInfo
- 91, // 47: google.ads.googleads.v16.common.ProximityInfo.radius_units:type_name -> google.ads.googleads.v16.enums.ProximityRadiusUnitsEnum.ProximityRadiusUnits
- 50, // 48: google.ads.googleads.v16.common.ProximityInfo.address:type_name -> google.ads.googleads.v16.common.AddressInfo
- 92, // 49: google.ads.googleads.v16.common.ContentLabelInfo.type:type_name -> google.ads.googleads.v16.enums.ContentLabelTypeEnum.ContentLabelType
- 58, // 50: google.ads.googleads.v16.common.WebpageInfo.conditions:type_name -> google.ads.googleads.v16.common.WebpageConditionInfo
- 59, // 51: google.ads.googleads.v16.common.WebpageInfo.sample:type_name -> google.ads.googleads.v16.common.WebpageSampleInfo
- 93, // 52: google.ads.googleads.v16.common.WebpageConditionInfo.operand:type_name -> google.ads.googleads.v16.enums.WebpageConditionOperandEnum.WebpageConditionOperand
- 94, // 53: google.ads.googleads.v16.common.WebpageConditionInfo.operator:type_name -> google.ads.googleads.v16.enums.WebpageConditionOperatorEnum.WebpageConditionOperator
- 95, // 54: google.ads.googleads.v16.common.AppPaymentModelInfo.type:type_name -> google.ads.googleads.v16.enums.AppPaymentModelTypeEnum.AppPaymentModelType
- 96, // 55: google.ads.googleads.v16.common.LocationGroupInfo.radius_units:type_name -> google.ads.googleads.v16.enums.LocationGroupRadiusUnitsEnum.LocationGroupRadiusUnits
- 97, // 56: google.ads.googleads.v16.common.BrandInfo.rejection_reason:type_name -> google.ads.googleads.v16.enums.BrandRequestRejectionReasonEnum.BrandRequestRejectionReason
- 98, // 57: google.ads.googleads.v16.common.BrandInfo.status:type_name -> google.ads.googleads.v16.enums.BrandStateEnum.BrandState
+ return file_google_ads_googleads_v17_common_criteria_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_common_criteria_proto_msgTypes = make([]protoimpl.MessageInfo, 74)
+var file_google_ads_googleads_v17_common_criteria_proto_goTypes = []interface{}{
+ (*KeywordInfo)(nil), // 0: google.ads.googleads.v17.common.KeywordInfo
+ (*PlacementInfo)(nil), // 1: google.ads.googleads.v17.common.PlacementInfo
+ (*NegativeKeywordListInfo)(nil), // 2: google.ads.googleads.v17.common.NegativeKeywordListInfo
+ (*MobileAppCategoryInfo)(nil), // 3: google.ads.googleads.v17.common.MobileAppCategoryInfo
+ (*MobileApplicationInfo)(nil), // 4: google.ads.googleads.v17.common.MobileApplicationInfo
+ (*LocationInfo)(nil), // 5: google.ads.googleads.v17.common.LocationInfo
+ (*DeviceInfo)(nil), // 6: google.ads.googleads.v17.common.DeviceInfo
+ (*ListingGroupInfo)(nil), // 7: google.ads.googleads.v17.common.ListingGroupInfo
+ (*ListingDimensionPath)(nil), // 8: google.ads.googleads.v17.common.ListingDimensionPath
+ (*ListingScopeInfo)(nil), // 9: google.ads.googleads.v17.common.ListingScopeInfo
+ (*ListingDimensionInfo)(nil), // 10: google.ads.googleads.v17.common.ListingDimensionInfo
+ (*HotelIdInfo)(nil), // 11: google.ads.googleads.v17.common.HotelIdInfo
+ (*HotelClassInfo)(nil), // 12: google.ads.googleads.v17.common.HotelClassInfo
+ (*HotelCountryRegionInfo)(nil), // 13: google.ads.googleads.v17.common.HotelCountryRegionInfo
+ (*HotelStateInfo)(nil), // 14: google.ads.googleads.v17.common.HotelStateInfo
+ (*HotelCityInfo)(nil), // 15: google.ads.googleads.v17.common.HotelCityInfo
+ (*ProductCategoryInfo)(nil), // 16: google.ads.googleads.v17.common.ProductCategoryInfo
+ (*ProductBrandInfo)(nil), // 17: google.ads.googleads.v17.common.ProductBrandInfo
+ (*ProductChannelInfo)(nil), // 18: google.ads.googleads.v17.common.ProductChannelInfo
+ (*ProductChannelExclusivityInfo)(nil), // 19: google.ads.googleads.v17.common.ProductChannelExclusivityInfo
+ (*ProductConditionInfo)(nil), // 20: google.ads.googleads.v17.common.ProductConditionInfo
+ (*ProductCustomAttributeInfo)(nil), // 21: google.ads.googleads.v17.common.ProductCustomAttributeInfo
+ (*ProductItemIdInfo)(nil), // 22: google.ads.googleads.v17.common.ProductItemIdInfo
+ (*ProductTypeInfo)(nil), // 23: google.ads.googleads.v17.common.ProductTypeInfo
+ (*ProductGroupingInfo)(nil), // 24: google.ads.googleads.v17.common.ProductGroupingInfo
+ (*ProductLabelsInfo)(nil), // 25: google.ads.googleads.v17.common.ProductLabelsInfo
+ (*ProductLegacyConditionInfo)(nil), // 26: google.ads.googleads.v17.common.ProductLegacyConditionInfo
+ (*ProductTypeFullInfo)(nil), // 27: google.ads.googleads.v17.common.ProductTypeFullInfo
+ (*UnknownListingDimensionInfo)(nil), // 28: google.ads.googleads.v17.common.UnknownListingDimensionInfo
+ (*HotelDateSelectionTypeInfo)(nil), // 29: google.ads.googleads.v17.common.HotelDateSelectionTypeInfo
+ (*HotelAdvanceBookingWindowInfo)(nil), // 30: google.ads.googleads.v17.common.HotelAdvanceBookingWindowInfo
+ (*HotelLengthOfStayInfo)(nil), // 31: google.ads.googleads.v17.common.HotelLengthOfStayInfo
+ (*HotelCheckInDateRangeInfo)(nil), // 32: google.ads.googleads.v17.common.HotelCheckInDateRangeInfo
+ (*HotelCheckInDayInfo)(nil), // 33: google.ads.googleads.v17.common.HotelCheckInDayInfo
+ (*ActivityIdInfo)(nil), // 34: google.ads.googleads.v17.common.ActivityIdInfo
+ (*ActivityRatingInfo)(nil), // 35: google.ads.googleads.v17.common.ActivityRatingInfo
+ (*ActivityCountryInfo)(nil), // 36: google.ads.googleads.v17.common.ActivityCountryInfo
+ (*ActivityStateInfo)(nil), // 37: google.ads.googleads.v17.common.ActivityStateInfo
+ (*ActivityCityInfo)(nil), // 38: google.ads.googleads.v17.common.ActivityCityInfo
+ (*InteractionTypeInfo)(nil), // 39: google.ads.googleads.v17.common.InteractionTypeInfo
+ (*AdScheduleInfo)(nil), // 40: google.ads.googleads.v17.common.AdScheduleInfo
+ (*AgeRangeInfo)(nil), // 41: google.ads.googleads.v17.common.AgeRangeInfo
+ (*GenderInfo)(nil), // 42: google.ads.googleads.v17.common.GenderInfo
+ (*IncomeRangeInfo)(nil), // 43: google.ads.googleads.v17.common.IncomeRangeInfo
+ (*ParentalStatusInfo)(nil), // 44: google.ads.googleads.v17.common.ParentalStatusInfo
+ (*YouTubeVideoInfo)(nil), // 45: google.ads.googleads.v17.common.YouTubeVideoInfo
+ (*YouTubeChannelInfo)(nil), // 46: google.ads.googleads.v17.common.YouTubeChannelInfo
+ (*UserListInfo)(nil), // 47: google.ads.googleads.v17.common.UserListInfo
+ (*ProximityInfo)(nil), // 48: google.ads.googleads.v17.common.ProximityInfo
+ (*GeoPointInfo)(nil), // 49: google.ads.googleads.v17.common.GeoPointInfo
+ (*AddressInfo)(nil), // 50: google.ads.googleads.v17.common.AddressInfo
+ (*TopicInfo)(nil), // 51: google.ads.googleads.v17.common.TopicInfo
+ (*LanguageInfo)(nil), // 52: google.ads.googleads.v17.common.LanguageInfo
+ (*IpBlockInfo)(nil), // 53: google.ads.googleads.v17.common.IpBlockInfo
+ (*ContentLabelInfo)(nil), // 54: google.ads.googleads.v17.common.ContentLabelInfo
+ (*CarrierInfo)(nil), // 55: google.ads.googleads.v17.common.CarrierInfo
+ (*UserInterestInfo)(nil), // 56: google.ads.googleads.v17.common.UserInterestInfo
+ (*WebpageInfo)(nil), // 57: google.ads.googleads.v17.common.WebpageInfo
+ (*WebpageConditionInfo)(nil), // 58: google.ads.googleads.v17.common.WebpageConditionInfo
+ (*WebpageSampleInfo)(nil), // 59: google.ads.googleads.v17.common.WebpageSampleInfo
+ (*OperatingSystemVersionInfo)(nil), // 60: google.ads.googleads.v17.common.OperatingSystemVersionInfo
+ (*AppPaymentModelInfo)(nil), // 61: google.ads.googleads.v17.common.AppPaymentModelInfo
+ (*MobileDeviceInfo)(nil), // 62: google.ads.googleads.v17.common.MobileDeviceInfo
+ (*CustomAffinityInfo)(nil), // 63: google.ads.googleads.v17.common.CustomAffinityInfo
+ (*CustomIntentInfo)(nil), // 64: google.ads.googleads.v17.common.CustomIntentInfo
+ (*LocationGroupInfo)(nil), // 65: google.ads.googleads.v17.common.LocationGroupInfo
+ (*CustomAudienceInfo)(nil), // 66: google.ads.googleads.v17.common.CustomAudienceInfo
+ (*CombinedAudienceInfo)(nil), // 67: google.ads.googleads.v17.common.CombinedAudienceInfo
+ (*AudienceInfo)(nil), // 68: google.ads.googleads.v17.common.AudienceInfo
+ (*KeywordThemeInfo)(nil), // 69: google.ads.googleads.v17.common.KeywordThemeInfo
+ (*LocalServiceIdInfo)(nil), // 70: google.ads.googleads.v17.common.LocalServiceIdInfo
+ (*SearchThemeInfo)(nil), // 71: google.ads.googleads.v17.common.SearchThemeInfo
+ (*BrandInfo)(nil), // 72: google.ads.googleads.v17.common.BrandInfo
+ (*BrandListInfo)(nil), // 73: google.ads.googleads.v17.common.BrandListInfo
+ (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 74: google.ads.googleads.v17.enums.KeywordMatchTypeEnum.KeywordMatchType
+ (enums.DeviceEnum_Device)(0), // 75: google.ads.googleads.v17.enums.DeviceEnum.Device
+ (enums.ListingGroupTypeEnum_ListingGroupType)(0), // 76: google.ads.googleads.v17.enums.ListingGroupTypeEnum.ListingGroupType
+ (enums.ProductCategoryLevelEnum_ProductCategoryLevel)(0), // 77: google.ads.googleads.v17.enums.ProductCategoryLevelEnum.ProductCategoryLevel
+ (enums.ProductChannelEnum_ProductChannel)(0), // 78: google.ads.googleads.v17.enums.ProductChannelEnum.ProductChannel
+ (enums.ProductChannelExclusivityEnum_ProductChannelExclusivity)(0), // 79: google.ads.googleads.v17.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity
+ (enums.ProductConditionEnum_ProductCondition)(0), // 80: google.ads.googleads.v17.enums.ProductConditionEnum.ProductCondition
+ (enums.ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex)(0), // 81: google.ads.googleads.v17.enums.ProductCustomAttributeIndexEnum.ProductCustomAttributeIndex
+ (enums.ProductTypeLevelEnum_ProductTypeLevel)(0), // 82: google.ads.googleads.v17.enums.ProductTypeLevelEnum.ProductTypeLevel
+ (enums.HotelDateSelectionTypeEnum_HotelDateSelectionType)(0), // 83: google.ads.googleads.v17.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType
+ (enums.DayOfWeekEnum_DayOfWeek)(0), // 84: google.ads.googleads.v17.enums.DayOfWeekEnum.DayOfWeek
+ (enums.InteractionTypeEnum_InteractionType)(0), // 85: google.ads.googleads.v17.enums.InteractionTypeEnum.InteractionType
+ (enums.MinuteOfHourEnum_MinuteOfHour)(0), // 86: google.ads.googleads.v17.enums.MinuteOfHourEnum.MinuteOfHour
+ (enums.AgeRangeTypeEnum_AgeRangeType)(0), // 87: google.ads.googleads.v17.enums.AgeRangeTypeEnum.AgeRangeType
+ (enums.GenderTypeEnum_GenderType)(0), // 88: google.ads.googleads.v17.enums.GenderTypeEnum.GenderType
+ (enums.IncomeRangeTypeEnum_IncomeRangeType)(0), // 89: google.ads.googleads.v17.enums.IncomeRangeTypeEnum.IncomeRangeType
+ (enums.ParentalStatusTypeEnum_ParentalStatusType)(0), // 90: google.ads.googleads.v17.enums.ParentalStatusTypeEnum.ParentalStatusType
+ (enums.ProximityRadiusUnitsEnum_ProximityRadiusUnits)(0), // 91: google.ads.googleads.v17.enums.ProximityRadiusUnitsEnum.ProximityRadiusUnits
+ (enums.ContentLabelTypeEnum_ContentLabelType)(0), // 92: google.ads.googleads.v17.enums.ContentLabelTypeEnum.ContentLabelType
+ (enums.WebpageConditionOperandEnum_WebpageConditionOperand)(0), // 93: google.ads.googleads.v17.enums.WebpageConditionOperandEnum.WebpageConditionOperand
+ (enums.WebpageConditionOperatorEnum_WebpageConditionOperator)(0), // 94: google.ads.googleads.v17.enums.WebpageConditionOperatorEnum.WebpageConditionOperator
+ (enums.AppPaymentModelTypeEnum_AppPaymentModelType)(0), // 95: google.ads.googleads.v17.enums.AppPaymentModelTypeEnum.AppPaymentModelType
+ (enums.LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits)(0), // 96: google.ads.googleads.v17.enums.LocationGroupRadiusUnitsEnum.LocationGroupRadiusUnits
+ (enums.BrandRequestRejectionReasonEnum_BrandRequestRejectionReason)(0), // 97: google.ads.googleads.v17.enums.BrandRequestRejectionReasonEnum.BrandRequestRejectionReason
+ (enums.BrandStateEnum_BrandState)(0), // 98: google.ads.googleads.v17.enums.BrandStateEnum.BrandState
+}
+var file_google_ads_googleads_v17_common_criteria_proto_depIdxs = []int32{
+ 74, // 0: google.ads.googleads.v17.common.KeywordInfo.match_type:type_name -> google.ads.googleads.v17.enums.KeywordMatchTypeEnum.KeywordMatchType
+ 75, // 1: google.ads.googleads.v17.common.DeviceInfo.type:type_name -> google.ads.googleads.v17.enums.DeviceEnum.Device
+ 76, // 2: google.ads.googleads.v17.common.ListingGroupInfo.type:type_name -> google.ads.googleads.v17.enums.ListingGroupTypeEnum.ListingGroupType
+ 10, // 3: google.ads.googleads.v17.common.ListingGroupInfo.case_value:type_name -> google.ads.googleads.v17.common.ListingDimensionInfo
+ 8, // 4: google.ads.googleads.v17.common.ListingGroupInfo.path:type_name -> google.ads.googleads.v17.common.ListingDimensionPath
+ 10, // 5: google.ads.googleads.v17.common.ListingDimensionPath.dimensions:type_name -> google.ads.googleads.v17.common.ListingDimensionInfo
+ 10, // 6: google.ads.googleads.v17.common.ListingScopeInfo.dimensions:type_name -> google.ads.googleads.v17.common.ListingDimensionInfo
+ 11, // 7: google.ads.googleads.v17.common.ListingDimensionInfo.hotel_id:type_name -> google.ads.googleads.v17.common.HotelIdInfo
+ 12, // 8: google.ads.googleads.v17.common.ListingDimensionInfo.hotel_class:type_name -> google.ads.googleads.v17.common.HotelClassInfo
+ 13, // 9: google.ads.googleads.v17.common.ListingDimensionInfo.hotel_country_region:type_name -> google.ads.googleads.v17.common.HotelCountryRegionInfo
+ 14, // 10: google.ads.googleads.v17.common.ListingDimensionInfo.hotel_state:type_name -> google.ads.googleads.v17.common.HotelStateInfo
+ 15, // 11: google.ads.googleads.v17.common.ListingDimensionInfo.hotel_city:type_name -> google.ads.googleads.v17.common.HotelCityInfo
+ 16, // 12: google.ads.googleads.v17.common.ListingDimensionInfo.product_category:type_name -> google.ads.googleads.v17.common.ProductCategoryInfo
+ 17, // 13: google.ads.googleads.v17.common.ListingDimensionInfo.product_brand:type_name -> google.ads.googleads.v17.common.ProductBrandInfo
+ 18, // 14: google.ads.googleads.v17.common.ListingDimensionInfo.product_channel:type_name -> google.ads.googleads.v17.common.ProductChannelInfo
+ 19, // 15: google.ads.googleads.v17.common.ListingDimensionInfo.product_channel_exclusivity:type_name -> google.ads.googleads.v17.common.ProductChannelExclusivityInfo
+ 20, // 16: google.ads.googleads.v17.common.ListingDimensionInfo.product_condition:type_name -> google.ads.googleads.v17.common.ProductConditionInfo
+ 21, // 17: google.ads.googleads.v17.common.ListingDimensionInfo.product_custom_attribute:type_name -> google.ads.googleads.v17.common.ProductCustomAttributeInfo
+ 22, // 18: google.ads.googleads.v17.common.ListingDimensionInfo.product_item_id:type_name -> google.ads.googleads.v17.common.ProductItemIdInfo
+ 23, // 19: google.ads.googleads.v17.common.ListingDimensionInfo.product_type:type_name -> google.ads.googleads.v17.common.ProductTypeInfo
+ 24, // 20: google.ads.googleads.v17.common.ListingDimensionInfo.product_grouping:type_name -> google.ads.googleads.v17.common.ProductGroupingInfo
+ 25, // 21: google.ads.googleads.v17.common.ListingDimensionInfo.product_labels:type_name -> google.ads.googleads.v17.common.ProductLabelsInfo
+ 26, // 22: google.ads.googleads.v17.common.ListingDimensionInfo.product_legacy_condition:type_name -> google.ads.googleads.v17.common.ProductLegacyConditionInfo
+ 27, // 23: google.ads.googleads.v17.common.ListingDimensionInfo.product_type_full:type_name -> google.ads.googleads.v17.common.ProductTypeFullInfo
+ 34, // 24: google.ads.googleads.v17.common.ListingDimensionInfo.activity_id:type_name -> google.ads.googleads.v17.common.ActivityIdInfo
+ 35, // 25: google.ads.googleads.v17.common.ListingDimensionInfo.activity_rating:type_name -> google.ads.googleads.v17.common.ActivityRatingInfo
+ 36, // 26: google.ads.googleads.v17.common.ListingDimensionInfo.activity_country:type_name -> google.ads.googleads.v17.common.ActivityCountryInfo
+ 37, // 27: google.ads.googleads.v17.common.ListingDimensionInfo.activity_state:type_name -> google.ads.googleads.v17.common.ActivityStateInfo
+ 38, // 28: google.ads.googleads.v17.common.ListingDimensionInfo.activity_city:type_name -> google.ads.googleads.v17.common.ActivityCityInfo
+ 28, // 29: google.ads.googleads.v17.common.ListingDimensionInfo.unknown_listing_dimension:type_name -> google.ads.googleads.v17.common.UnknownListingDimensionInfo
+ 77, // 30: google.ads.googleads.v17.common.ProductCategoryInfo.level:type_name -> google.ads.googleads.v17.enums.ProductCategoryLevelEnum.ProductCategoryLevel
+ 78, // 31: google.ads.googleads.v17.common.ProductChannelInfo.channel:type_name -> google.ads.googleads.v17.enums.ProductChannelEnum.ProductChannel
+ 79, // 32: google.ads.googleads.v17.common.ProductChannelExclusivityInfo.channel_exclusivity:type_name -> google.ads.googleads.v17.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity
+ 80, // 33: google.ads.googleads.v17.common.ProductConditionInfo.condition:type_name -> google.ads.googleads.v17.enums.ProductConditionEnum.ProductCondition
+ 81, // 34: google.ads.googleads.v17.common.ProductCustomAttributeInfo.index:type_name -> google.ads.googleads.v17.enums.ProductCustomAttributeIndexEnum.ProductCustomAttributeIndex
+ 82, // 35: google.ads.googleads.v17.common.ProductTypeInfo.level:type_name -> google.ads.googleads.v17.enums.ProductTypeLevelEnum.ProductTypeLevel
+ 83, // 36: google.ads.googleads.v17.common.HotelDateSelectionTypeInfo.type:type_name -> google.ads.googleads.v17.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType
+ 84, // 37: google.ads.googleads.v17.common.HotelCheckInDayInfo.day_of_week:type_name -> google.ads.googleads.v17.enums.DayOfWeekEnum.DayOfWeek
+ 85, // 38: google.ads.googleads.v17.common.InteractionTypeInfo.type:type_name -> google.ads.googleads.v17.enums.InteractionTypeEnum.InteractionType
+ 86, // 39: google.ads.googleads.v17.common.AdScheduleInfo.start_minute:type_name -> google.ads.googleads.v17.enums.MinuteOfHourEnum.MinuteOfHour
+ 86, // 40: google.ads.googleads.v17.common.AdScheduleInfo.end_minute:type_name -> google.ads.googleads.v17.enums.MinuteOfHourEnum.MinuteOfHour
+ 84, // 41: google.ads.googleads.v17.common.AdScheduleInfo.day_of_week:type_name -> google.ads.googleads.v17.enums.DayOfWeekEnum.DayOfWeek
+ 87, // 42: google.ads.googleads.v17.common.AgeRangeInfo.type:type_name -> google.ads.googleads.v17.enums.AgeRangeTypeEnum.AgeRangeType
+ 88, // 43: google.ads.googleads.v17.common.GenderInfo.type:type_name -> google.ads.googleads.v17.enums.GenderTypeEnum.GenderType
+ 89, // 44: google.ads.googleads.v17.common.IncomeRangeInfo.type:type_name -> google.ads.googleads.v17.enums.IncomeRangeTypeEnum.IncomeRangeType
+ 90, // 45: google.ads.googleads.v17.common.ParentalStatusInfo.type:type_name -> google.ads.googleads.v17.enums.ParentalStatusTypeEnum.ParentalStatusType
+ 49, // 46: google.ads.googleads.v17.common.ProximityInfo.geo_point:type_name -> google.ads.googleads.v17.common.GeoPointInfo
+ 91, // 47: google.ads.googleads.v17.common.ProximityInfo.radius_units:type_name -> google.ads.googleads.v17.enums.ProximityRadiusUnitsEnum.ProximityRadiusUnits
+ 50, // 48: google.ads.googleads.v17.common.ProximityInfo.address:type_name -> google.ads.googleads.v17.common.AddressInfo
+ 92, // 49: google.ads.googleads.v17.common.ContentLabelInfo.type:type_name -> google.ads.googleads.v17.enums.ContentLabelTypeEnum.ContentLabelType
+ 58, // 50: google.ads.googleads.v17.common.WebpageInfo.conditions:type_name -> google.ads.googleads.v17.common.WebpageConditionInfo
+ 59, // 51: google.ads.googleads.v17.common.WebpageInfo.sample:type_name -> google.ads.googleads.v17.common.WebpageSampleInfo
+ 93, // 52: google.ads.googleads.v17.common.WebpageConditionInfo.operand:type_name -> google.ads.googleads.v17.enums.WebpageConditionOperandEnum.WebpageConditionOperand
+ 94, // 53: google.ads.googleads.v17.common.WebpageConditionInfo.operator:type_name -> google.ads.googleads.v17.enums.WebpageConditionOperatorEnum.WebpageConditionOperator
+ 95, // 54: google.ads.googleads.v17.common.AppPaymentModelInfo.type:type_name -> google.ads.googleads.v17.enums.AppPaymentModelTypeEnum.AppPaymentModelType
+ 96, // 55: google.ads.googleads.v17.common.LocationGroupInfo.radius_units:type_name -> google.ads.googleads.v17.enums.LocationGroupRadiusUnitsEnum.LocationGroupRadiusUnits
+ 97, // 56: google.ads.googleads.v17.common.BrandInfo.rejection_reason:type_name -> google.ads.googleads.v17.enums.BrandRequestRejectionReasonEnum.BrandRequestRejectionReason
+ 98, // 57: google.ads.googleads.v17.common.BrandInfo.status:type_name -> google.ads.googleads.v17.enums.BrandStateEnum.BrandState
58, // [58:58] is the sub-list for method output_type
58, // [58:58] is the sub-list for method input_type
58, // [58:58] is the sub-list for extension type_name
@@ -5570,13 +5570,13 @@ var file_google_ads_googleads_v16_common_criteria_proto_depIdxs = []int32{
0, // [0:58] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_criteria_proto_init() }
-func file_google_ads_googleads_v16_common_criteria_proto_init() {
- if File_google_ads_googleads_v16_common_criteria_proto != nil {
+func init() { file_google_ads_googleads_v17_common_criteria_proto_init() }
+func file_google_ads_googleads_v17_common_criteria_proto_init() {
+ if File_google_ads_googleads_v17_common_criteria_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordInfo); i {
case 0:
return &v.state
@@ -5588,7 +5588,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PlacementInfo); i {
case 0:
return &v.state
@@ -5600,7 +5600,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*NegativeKeywordListInfo); i {
case 0:
return &v.state
@@ -5612,7 +5612,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MobileAppCategoryInfo); i {
case 0:
return &v.state
@@ -5624,7 +5624,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MobileApplicationInfo); i {
case 0:
return &v.state
@@ -5636,7 +5636,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocationInfo); i {
case 0:
return &v.state
@@ -5648,7 +5648,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DeviceInfo); i {
case 0:
return &v.state
@@ -5660,7 +5660,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListingGroupInfo); i {
case 0:
return &v.state
@@ -5672,7 +5672,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListingDimensionPath); i {
case 0:
return &v.state
@@ -5684,7 +5684,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListingScopeInfo); i {
case 0:
return &v.state
@@ -5696,7 +5696,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListingDimensionInfo); i {
case 0:
return &v.state
@@ -5708,7 +5708,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelIdInfo); i {
case 0:
return &v.state
@@ -5720,7 +5720,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelClassInfo); i {
case 0:
return &v.state
@@ -5732,7 +5732,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelCountryRegionInfo); i {
case 0:
return &v.state
@@ -5744,7 +5744,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelStateInfo); i {
case 0:
return &v.state
@@ -5756,7 +5756,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelCityInfo); i {
case 0:
return &v.state
@@ -5768,7 +5768,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductCategoryInfo); i {
case 0:
return &v.state
@@ -5780,7 +5780,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductBrandInfo); i {
case 0:
return &v.state
@@ -5792,7 +5792,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductChannelInfo); i {
case 0:
return &v.state
@@ -5804,7 +5804,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductChannelExclusivityInfo); i {
case 0:
return &v.state
@@ -5816,7 +5816,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductConditionInfo); i {
case 0:
return &v.state
@@ -5828,7 +5828,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductCustomAttributeInfo); i {
case 0:
return &v.state
@@ -5840,7 +5840,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductItemIdInfo); i {
case 0:
return &v.state
@@ -5852,7 +5852,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductTypeInfo); i {
case 0:
return &v.state
@@ -5864,7 +5864,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductGroupingInfo); i {
case 0:
return &v.state
@@ -5876,7 +5876,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductLabelsInfo); i {
case 0:
return &v.state
@@ -5888,7 +5888,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductLegacyConditionInfo); i {
case 0:
return &v.state
@@ -5900,7 +5900,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductTypeFullInfo); i {
case 0:
return &v.state
@@ -5912,7 +5912,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UnknownListingDimensionInfo); i {
case 0:
return &v.state
@@ -5924,7 +5924,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelDateSelectionTypeInfo); i {
case 0:
return &v.state
@@ -5936,7 +5936,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelAdvanceBookingWindowInfo); i {
case 0:
return &v.state
@@ -5948,7 +5948,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelLengthOfStayInfo); i {
case 0:
return &v.state
@@ -5960,7 +5960,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelCheckInDateRangeInfo); i {
case 0:
return &v.state
@@ -5972,7 +5972,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelCheckInDayInfo); i {
case 0:
return &v.state
@@ -5984,7 +5984,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ActivityIdInfo); i {
case 0:
return &v.state
@@ -5996,7 +5996,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ActivityRatingInfo); i {
case 0:
return &v.state
@@ -6008,7 +6008,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ActivityCountryInfo); i {
case 0:
return &v.state
@@ -6020,7 +6020,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ActivityStateInfo); i {
case 0:
return &v.state
@@ -6032,7 +6032,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ActivityCityInfo); i {
case 0:
return &v.state
@@ -6044,7 +6044,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*InteractionTypeInfo); i {
case 0:
return &v.state
@@ -6056,7 +6056,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdScheduleInfo); i {
case 0:
return &v.state
@@ -6068,7 +6068,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AgeRangeInfo); i {
case 0:
return &v.state
@@ -6080,7 +6080,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GenderInfo); i {
case 0:
return &v.state
@@ -6092,7 +6092,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*IncomeRangeInfo); i {
case 0:
return &v.state
@@ -6104,7 +6104,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ParentalStatusInfo); i {
case 0:
return &v.state
@@ -6116,7 +6116,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*YouTubeVideoInfo); i {
case 0:
return &v.state
@@ -6128,7 +6128,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*YouTubeChannelInfo); i {
case 0:
return &v.state
@@ -6140,7 +6140,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListInfo); i {
case 0:
return &v.state
@@ -6152,7 +6152,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProximityInfo); i {
case 0:
return &v.state
@@ -6164,7 +6164,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GeoPointInfo); i {
case 0:
return &v.state
@@ -6176,7 +6176,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AddressInfo); i {
case 0:
return &v.state
@@ -6188,7 +6188,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TopicInfo); i {
case 0:
return &v.state
@@ -6200,7 +6200,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LanguageInfo); i {
case 0:
return &v.state
@@ -6212,7 +6212,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*IpBlockInfo); i {
case 0:
return &v.state
@@ -6224,7 +6224,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ContentLabelInfo); i {
case 0:
return &v.state
@@ -6236,7 +6236,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CarrierInfo); i {
case 0:
return &v.state
@@ -6248,7 +6248,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserInterestInfo); i {
case 0:
return &v.state
@@ -6260,7 +6260,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*WebpageInfo); i {
case 0:
return &v.state
@@ -6272,7 +6272,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*WebpageConditionInfo); i {
case 0:
return &v.state
@@ -6284,7 +6284,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*WebpageSampleInfo); i {
case 0:
return &v.state
@@ -6296,7 +6296,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*OperatingSystemVersionInfo); i {
case 0:
return &v.state
@@ -6308,7 +6308,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AppPaymentModelInfo); i {
case 0:
return &v.state
@@ -6320,7 +6320,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MobileDeviceInfo); i {
case 0:
return &v.state
@@ -6332,7 +6332,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomAffinityInfo); i {
case 0:
return &v.state
@@ -6344,7 +6344,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomIntentInfo); i {
case 0:
return &v.state
@@ -6356,7 +6356,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocationGroupInfo); i {
case 0:
return &v.state
@@ -6368,7 +6368,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomAudienceInfo); i {
case 0:
return &v.state
@@ -6380,7 +6380,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CombinedAudienceInfo); i {
case 0:
return &v.state
@@ -6392,7 +6392,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[68].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[68].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AudienceInfo); i {
case 0:
return &v.state
@@ -6404,7 +6404,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[69].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[69].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordThemeInfo); i {
case 0:
return &v.state
@@ -6416,7 +6416,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[70].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[70].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocalServiceIdInfo); i {
case 0:
return &v.state
@@ -6428,7 +6428,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[71].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[71].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SearchThemeInfo); i {
case 0:
return &v.state
@@ -6440,7 +6440,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[72].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[72].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BrandInfo); i {
case 0:
return &v.state
@@ -6452,7 +6452,7 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[73].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[73].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BrandListInfo); i {
case 0:
return &v.state
@@ -6465,14 +6465,14 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[0].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[1].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[2].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[3].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[4].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[5].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[7].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[10].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[1].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[2].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[3].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[4].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[5].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[7].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[10].OneofWrappers = []interface{}{
(*ListingDimensionInfo_HotelId)(nil),
(*ListingDimensionInfo_HotelClass)(nil),
(*ListingDimensionInfo_HotelCountryRegion)(nil),
@@ -6497,68 +6497,68 @@ func file_google_ads_googleads_v16_common_criteria_proto_init() {
(*ListingDimensionInfo_ActivityCity)(nil),
(*ListingDimensionInfo_UnknownListingDimension)(nil),
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[11].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[12].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[13].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[14].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[15].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[16].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[17].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[21].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[22].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[23].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[24].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[25].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[26].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[27].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[30].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[31].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[34].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[35].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[36].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[37].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[38].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[40].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[45].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[46].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[47].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[48].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[49].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[50].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[51].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[52].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[53].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[55].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[56].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[57].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[58].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[60].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[62].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[63].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[64].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[65].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[69].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[11].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[12].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[13].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[14].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[15].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[16].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[17].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[21].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[22].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[23].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[24].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[25].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[26].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[27].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[30].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[31].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[34].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[35].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[36].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[37].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[38].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[40].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[45].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[46].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[47].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[48].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[49].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[50].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[51].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[52].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[53].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[55].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[56].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[57].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[58].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[60].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[62].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[63].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[64].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[65].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[69].OneofWrappers = []interface{}{
(*KeywordThemeInfo_KeywordThemeConstant)(nil),
(*KeywordThemeInfo_FreeFormKeywordTheme)(nil),
}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[72].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criteria_proto_msgTypes[73].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[72].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criteria_proto_msgTypes[73].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_criteria_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_criteria_proto_rawDesc,
NumEnums: 0,
NumMessages: 74,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_criteria_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_criteria_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_criteria_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_criteria_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_criteria_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_criteria_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_criteria_proto = out.File
- file_google_ads_googleads_v16_common_criteria_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_criteria_proto_goTypes = nil
- file_google_ads_googleads_v16_common_criteria_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_criteria_proto = out.File
+ file_google_ads_googleads_v17_common_criteria_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_criteria_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_criteria_proto_depIdxs = nil
}
diff --git a/common/criterion_category_availability.pb.go b/common/criterion_category_availability.pb.go
index 0b65d1b1..5a21409f 100644
--- a/common/criterion_category_availability.pb.go
+++ b/common/criterion_category_availability.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/criterion_category_availability.proto
+// source: google/ads/googleads/v17/common/criterion_category_availability.proto
package common
@@ -50,7 +50,7 @@ type CriterionCategoryAvailability struct {
func (x *CriterionCategoryAvailability) Reset() {
*x = CriterionCategoryAvailability{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criterion_category_availability_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_criterion_category_availability_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -63,7 +63,7 @@ func (x *CriterionCategoryAvailability) String() string {
func (*CriterionCategoryAvailability) ProtoMessage() {}
func (x *CriterionCategoryAvailability) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criterion_category_availability_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_criterion_category_availability_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -76,7 +76,7 @@ func (x *CriterionCategoryAvailability) ProtoReflect() protoreflect.Message {
// Deprecated: Use CriterionCategoryAvailability.ProtoReflect.Descriptor instead.
func (*CriterionCategoryAvailability) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criterion_category_availability_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_criterion_category_availability_proto_rawDescGZIP(), []int{0}
}
func (x *CriterionCategoryAvailability) GetChannel() *CriterionCategoryChannelAvailability {
@@ -106,11 +106,11 @@ type CriterionCategoryChannelAvailability struct {
// CHANNEL_TYPE_AND_SUBTYPES (advertising_channel_type,
// advertising_channel_sub_type, and include_default_channel_sub_type will all
// be set).
- AvailabilityMode enums.CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode `protobuf:"varint,1,opt,name=availability_mode,json=availabilityMode,proto3,enum=google.ads.googleads.v16.enums.CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode" json:"availability_mode,omitempty"`
+ AvailabilityMode enums.CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode `protobuf:"varint,1,opt,name=availability_mode,json=availabilityMode,proto3,enum=google.ads.googleads.v17.enums.CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode" json:"availability_mode,omitempty"`
// Channel type the category is available to.
- AdvertisingChannelType enums.AdvertisingChannelTypeEnum_AdvertisingChannelType `protobuf:"varint,2,opt,name=advertising_channel_type,json=advertisingChannelType,proto3,enum=google.ads.googleads.v16.enums.AdvertisingChannelTypeEnum_AdvertisingChannelType" json:"advertising_channel_type,omitempty"`
+ AdvertisingChannelType enums.AdvertisingChannelTypeEnum_AdvertisingChannelType `protobuf:"varint,2,opt,name=advertising_channel_type,json=advertisingChannelType,proto3,enum=google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum_AdvertisingChannelType" json:"advertising_channel_type,omitempty"`
// Channel subtypes under the channel type the category is available to.
- AdvertisingChannelSubType []enums.AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType `protobuf:"varint,3,rep,packed,name=advertising_channel_sub_type,json=advertisingChannelSubType,proto3,enum=google.ads.googleads.v16.enums.AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType" json:"advertising_channel_sub_type,omitempty"`
+ AdvertisingChannelSubType []enums.AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType `protobuf:"varint,3,rep,packed,name=advertising_channel_sub_type,json=advertisingChannelSubType,proto3,enum=google.ads.googleads.v17.enums.AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType" json:"advertising_channel_sub_type,omitempty"`
// Whether default channel sub type is included. For example,
// advertising_channel_type being DISPLAY and include_default_channel_sub_type
// being false means that the default display campaign where channel sub type
@@ -121,7 +121,7 @@ type CriterionCategoryChannelAvailability struct {
func (x *CriterionCategoryChannelAvailability) Reset() {
*x = CriterionCategoryChannelAvailability{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criterion_category_availability_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_criterion_category_availability_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -134,7 +134,7 @@ func (x *CriterionCategoryChannelAvailability) String() string {
func (*CriterionCategoryChannelAvailability) ProtoMessage() {}
func (x *CriterionCategoryChannelAvailability) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criterion_category_availability_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_criterion_category_availability_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -147,7 +147,7 @@ func (x *CriterionCategoryChannelAvailability) ProtoReflect() protoreflect.Messa
// Deprecated: Use CriterionCategoryChannelAvailability.ProtoReflect.Descriptor instead.
func (*CriterionCategoryChannelAvailability) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criterion_category_availability_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_criterion_category_availability_proto_rawDescGZIP(), []int{1}
}
func (x *CriterionCategoryChannelAvailability) GetAvailabilityMode() enums.CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode {
@@ -188,7 +188,7 @@ type CriterionCategoryLocaleAvailability struct {
// language will be empty), COUNTRY (only country will be set), LANGUAGE (only
// language wil be set), COUNTRY_AND_LANGUAGE (both country and language will
// be set).
- AvailabilityMode enums.CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode `protobuf:"varint,1,opt,name=availability_mode,json=availabilityMode,proto3,enum=google.ads.googleads.v16.enums.CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode" json:"availability_mode,omitempty"`
+ AvailabilityMode enums.CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode `protobuf:"varint,1,opt,name=availability_mode,json=availabilityMode,proto3,enum=google.ads.googleads.v17.enums.CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode" json:"availability_mode,omitempty"`
// The ISO-3166-1 alpha-2 country code associated with the category.
CountryCode *string `protobuf:"bytes,4,opt,name=country_code,json=countryCode,proto3,oneof" json:"country_code,omitempty"`
// ISO 639-1 code of the language associated with the category.
@@ -198,7 +198,7 @@ type CriterionCategoryLocaleAvailability struct {
func (x *CriterionCategoryLocaleAvailability) Reset() {
*x = CriterionCategoryLocaleAvailability{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_criterion_category_availability_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_criterion_category_availability_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -211,7 +211,7 @@ func (x *CriterionCategoryLocaleAvailability) String() string {
func (*CriterionCategoryLocaleAvailability) ProtoMessage() {}
func (x *CriterionCategoryLocaleAvailability) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_criterion_category_availability_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_criterion_category_availability_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -224,7 +224,7 @@ func (x *CriterionCategoryLocaleAvailability) ProtoReflect() protoreflect.Messag
// Deprecated: Use CriterionCategoryLocaleAvailability.ProtoReflect.Descriptor instead.
func (*CriterionCategoryLocaleAvailability) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_criterion_category_availability_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_common_criterion_category_availability_proto_rawDescGZIP(), []int{2}
}
func (x *CriterionCategoryLocaleAvailability) GetAvailabilityMode() enums.CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode {
@@ -248,31 +248,31 @@ func (x *CriterionCategoryLocaleAvailability) GetLanguageCode() string {
return ""
}
-var File_google_ads_googleads_v16_common_criterion_category_availability_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_criterion_category_availability_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_criterion_category_availability_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_criterion_category_availability_proto_rawDesc = []byte{
0x0a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x61, 0x74, 0x65,
0x67, 0x6f, 0x72, 0x79, 0x5f, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74,
0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69,
0x73, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x73, 0x75, 0x62,
0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3d, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x76, 0x65,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x76, 0x65,
0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f,
0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x51, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x72, 0x69, 0x74, 0x65,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x72, 0x69, 0x74, 0x65,
0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x63, 0x68,
0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69,
0x74, 0x79, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x50, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x72,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x72,
0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79,
0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x65, 0x5f, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69,
0x6c, 0x69, 0x74, 0x79, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,
@@ -280,13 +280,13 @@ var file_google_ads_googleads_v16_common_criterion_category_availability_proto_r
0x65, 0x67, 0x6f, 0x72, 0x79, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74,
0x79, 0x12, 0x5f, 0x0a, 0x07, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x18, 0x01, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x45, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x43, 0x61,
0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x41, 0x76, 0x61,
0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x52, 0x07, 0x63, 0x68, 0x61, 0x6e, 0x6e,
0x65, 0x6c, 0x12, 0x5c, 0x0a, 0x06, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x03,
0x28, 0x0b, 0x32, 0x44, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x43, 0x61,
0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x65, 0x41, 0x76, 0x61, 0x69,
0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x52, 0x06, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x65,
@@ -295,7 +295,7 @@ var file_google_ads_googleads_v16_common_criterion_category_availability_proto_r
0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0xa2, 0x01, 0x0a, 0x11, 0x61, 0x76,
0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x18,
0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x75, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e,
0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x41,
0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x6f, 0x64, 0x65, 0x45,
@@ -306,7 +306,7 @@ var file_google_ads_googleads_v16_common_criterion_category_availability_proto_r
0x01, 0x0a, 0x18, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x63,
0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
0x0e, 0x32, 0x51, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x2e, 0x41, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x43, 0x68,
0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64,
0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c,
@@ -315,7 +315,7 @@ var file_google_ads_googleads_v16_common_criterion_category_availability_proto_r
0x1c, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x68, 0x61,
0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x73, 0x75, 0x62, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20,
0x03, 0x28, 0x0e, 0x32, 0x57, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67,
0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e,
0x75, 0x6d, 0x2e, 0x41, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x43, 0x68,
@@ -334,7 +334,7 @@ var file_google_ads_googleads_v16_common_criterion_category_availability_proto_r
0x79, 0x12, 0xa0, 0x01, 0x0a, 0x11, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69,
0x74, 0x79, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x73, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43,
0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79,
0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x65, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69,
0x74, 0x79, 0x4d, 0x6f, 0x64, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x72, 0x69, 0x74, 0x65,
@@ -350,53 +350,53 @@ var file_google_ads_googleads_v16_common_criterion_category_availability_proto_r
0x72, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x6c, 0x61, 0x6e, 0x67,
0x75, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, 0x82, 0x02, 0x0a, 0x23, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x42, 0x22, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x43, 0x61, 0x74, 0x65,
0x67, 0x6f, 0x72, 0x79, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_criterion_category_availability_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_criterion_category_availability_proto_rawDescData = file_google_ads_googleads_v16_common_criterion_category_availability_proto_rawDesc
+ file_google_ads_googleads_v17_common_criterion_category_availability_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_criterion_category_availability_proto_rawDescData = file_google_ads_googleads_v17_common_criterion_category_availability_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_criterion_category_availability_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_criterion_category_availability_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_criterion_category_availability_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_criterion_category_availability_proto_rawDescData)
+func file_google_ads_googleads_v17_common_criterion_category_availability_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_criterion_category_availability_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_criterion_category_availability_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_criterion_category_availability_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_criterion_category_availability_proto_rawDescData
+ return file_google_ads_googleads_v17_common_criterion_category_availability_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_criterion_category_availability_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
-var file_google_ads_googleads_v16_common_criterion_category_availability_proto_goTypes = []interface{}{
- (*CriterionCategoryAvailability)(nil), // 0: google.ads.googleads.v16.common.CriterionCategoryAvailability
- (*CriterionCategoryChannelAvailability)(nil), // 1: google.ads.googleads.v16.common.CriterionCategoryChannelAvailability
- (*CriterionCategoryLocaleAvailability)(nil), // 2: google.ads.googleads.v16.common.CriterionCategoryLocaleAvailability
- (enums.CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode)(0), // 3: google.ads.googleads.v16.enums.CriterionCategoryChannelAvailabilityModeEnum.CriterionCategoryChannelAvailabilityMode
- (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 4: google.ads.googleads.v16.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType
- (enums.AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType)(0), // 5: google.ads.googleads.v16.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType
- (enums.CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode)(0), // 6: google.ads.googleads.v16.enums.CriterionCategoryLocaleAvailabilityModeEnum.CriterionCategoryLocaleAvailabilityMode
+var file_google_ads_googleads_v17_common_criterion_category_availability_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
+var file_google_ads_googleads_v17_common_criterion_category_availability_proto_goTypes = []interface{}{
+ (*CriterionCategoryAvailability)(nil), // 0: google.ads.googleads.v17.common.CriterionCategoryAvailability
+ (*CriterionCategoryChannelAvailability)(nil), // 1: google.ads.googleads.v17.common.CriterionCategoryChannelAvailability
+ (*CriterionCategoryLocaleAvailability)(nil), // 2: google.ads.googleads.v17.common.CriterionCategoryLocaleAvailability
+ (enums.CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode)(0), // 3: google.ads.googleads.v17.enums.CriterionCategoryChannelAvailabilityModeEnum.CriterionCategoryChannelAvailabilityMode
+ (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 4: google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType
+ (enums.AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType)(0), // 5: google.ads.googleads.v17.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType
+ (enums.CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode)(0), // 6: google.ads.googleads.v17.enums.CriterionCategoryLocaleAvailabilityModeEnum.CriterionCategoryLocaleAvailabilityMode
}
-var file_google_ads_googleads_v16_common_criterion_category_availability_proto_depIdxs = []int32{
- 1, // 0: google.ads.googleads.v16.common.CriterionCategoryAvailability.channel:type_name -> google.ads.googleads.v16.common.CriterionCategoryChannelAvailability
- 2, // 1: google.ads.googleads.v16.common.CriterionCategoryAvailability.locale:type_name -> google.ads.googleads.v16.common.CriterionCategoryLocaleAvailability
- 3, // 2: google.ads.googleads.v16.common.CriterionCategoryChannelAvailability.availability_mode:type_name -> google.ads.googleads.v16.enums.CriterionCategoryChannelAvailabilityModeEnum.CriterionCategoryChannelAvailabilityMode
- 4, // 3: google.ads.googleads.v16.common.CriterionCategoryChannelAvailability.advertising_channel_type:type_name -> google.ads.googleads.v16.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType
- 5, // 4: google.ads.googleads.v16.common.CriterionCategoryChannelAvailability.advertising_channel_sub_type:type_name -> google.ads.googleads.v16.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType
- 6, // 5: google.ads.googleads.v16.common.CriterionCategoryLocaleAvailability.availability_mode:type_name -> google.ads.googleads.v16.enums.CriterionCategoryLocaleAvailabilityModeEnum.CriterionCategoryLocaleAvailabilityMode
+var file_google_ads_googleads_v17_common_criterion_category_availability_proto_depIdxs = []int32{
+ 1, // 0: google.ads.googleads.v17.common.CriterionCategoryAvailability.channel:type_name -> google.ads.googleads.v17.common.CriterionCategoryChannelAvailability
+ 2, // 1: google.ads.googleads.v17.common.CriterionCategoryAvailability.locale:type_name -> google.ads.googleads.v17.common.CriterionCategoryLocaleAvailability
+ 3, // 2: google.ads.googleads.v17.common.CriterionCategoryChannelAvailability.availability_mode:type_name -> google.ads.googleads.v17.enums.CriterionCategoryChannelAvailabilityModeEnum.CriterionCategoryChannelAvailabilityMode
+ 4, // 3: google.ads.googleads.v17.common.CriterionCategoryChannelAvailability.advertising_channel_type:type_name -> google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType
+ 5, // 4: google.ads.googleads.v17.common.CriterionCategoryChannelAvailability.advertising_channel_sub_type:type_name -> google.ads.googleads.v17.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType
+ 6, // 5: google.ads.googleads.v17.common.CriterionCategoryLocaleAvailability.availability_mode:type_name -> google.ads.googleads.v17.enums.CriterionCategoryLocaleAvailabilityModeEnum.CriterionCategoryLocaleAvailabilityMode
6, // [6:6] is the sub-list for method output_type
6, // [6:6] is the sub-list for method input_type
6, // [6:6] is the sub-list for extension type_name
@@ -404,13 +404,13 @@ var file_google_ads_googleads_v16_common_criterion_category_availability_proto_d
0, // [0:6] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_criterion_category_availability_proto_init() }
-func file_google_ads_googleads_v16_common_criterion_category_availability_proto_init() {
- if File_google_ads_googleads_v16_common_criterion_category_availability_proto != nil {
+func init() { file_google_ads_googleads_v17_common_criterion_category_availability_proto_init() }
+func file_google_ads_googleads_v17_common_criterion_category_availability_proto_init() {
+ if File_google_ads_googleads_v17_common_criterion_category_availability_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_criterion_category_availability_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criterion_category_availability_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CriterionCategoryAvailability); i {
case 0:
return &v.state
@@ -422,7 +422,7 @@ func file_google_ads_googleads_v16_common_criterion_category_availability_proto_
return nil
}
}
- file_google_ads_googleads_v16_common_criterion_category_availability_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criterion_category_availability_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CriterionCategoryChannelAvailability); i {
case 0:
return &v.state
@@ -434,7 +434,7 @@ func file_google_ads_googleads_v16_common_criterion_category_availability_proto_
return nil
}
}
- file_google_ads_googleads_v16_common_criterion_category_availability_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_criterion_category_availability_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CriterionCategoryLocaleAvailability); i {
case 0:
return &v.state
@@ -447,24 +447,24 @@ func file_google_ads_googleads_v16_common_criterion_category_availability_proto_
}
}
}
- file_google_ads_googleads_v16_common_criterion_category_availability_proto_msgTypes[1].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_criterion_category_availability_proto_msgTypes[2].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criterion_category_availability_proto_msgTypes[1].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_criterion_category_availability_proto_msgTypes[2].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_criterion_category_availability_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_criterion_category_availability_proto_rawDesc,
NumEnums: 0,
NumMessages: 3,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_criterion_category_availability_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_criterion_category_availability_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_criterion_category_availability_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_criterion_category_availability_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_criterion_category_availability_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_criterion_category_availability_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_criterion_category_availability_proto = out.File
- file_google_ads_googleads_v16_common_criterion_category_availability_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_criterion_category_availability_proto_goTypes = nil
- file_google_ads_googleads_v16_common_criterion_category_availability_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_criterion_category_availability_proto = out.File
+ file_google_ads_googleads_v17_common_criterion_category_availability_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_criterion_category_availability_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_criterion_category_availability_proto_depIdxs = nil
}
diff --git a/common/custom_parameter.pb.go b/common/custom_parameter.pb.go
index ac95af24..b64dae9b 100644
--- a/common/custom_parameter.pb.go
+++ b/common/custom_parameter.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/custom_parameter.proto
+// source: google/ads/googleads/v17/common/custom_parameter.proto
package common
@@ -50,7 +50,7 @@ type CustomParameter struct {
func (x *CustomParameter) Reset() {
*x = CustomParameter{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_custom_parameter_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_custom_parameter_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -63,7 +63,7 @@ func (x *CustomParameter) String() string {
func (*CustomParameter) ProtoMessage() {}
func (x *CustomParameter) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_custom_parameter_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_custom_parameter_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -76,7 +76,7 @@ func (x *CustomParameter) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomParameter.ProtoReflect.Descriptor instead.
func (*CustomParameter) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_custom_parameter_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_custom_parameter_proto_rawDescGZIP(), []int{0}
}
func (x *CustomParameter) GetKey() string {
@@ -93,15 +93,15 @@ func (x *CustomParameter) GetValue() string {
return ""
}
-var File_google_ads_googleads_v16_common_custom_parameter_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_custom_parameter_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_custom_parameter_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_custom_parameter_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74,
0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x55, 0x0a, 0x0f, 0x43, 0x75, 0x73,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x55, 0x0a, 0x0f, 0x43, 0x75, 0x73,
0x74, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x12, 0x15, 0x0a, 0x03,
0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79,
0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x04, 0x20, 0x01,
@@ -109,39 +109,39 @@ var file_google_ads_googleads_v16_common_custom_parameter_proto_rawDesc = []byte
0x0a, 0x04, 0x5f, 0x6b, 0x65, 0x79, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65,
0x42, 0xf4, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x14, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x14, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_custom_parameter_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_custom_parameter_proto_rawDescData = file_google_ads_googleads_v16_common_custom_parameter_proto_rawDesc
+ file_google_ads_googleads_v17_common_custom_parameter_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_custom_parameter_proto_rawDescData = file_google_ads_googleads_v17_common_custom_parameter_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_custom_parameter_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_custom_parameter_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_custom_parameter_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_custom_parameter_proto_rawDescData)
+func file_google_ads_googleads_v17_common_custom_parameter_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_custom_parameter_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_custom_parameter_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_custom_parameter_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_custom_parameter_proto_rawDescData
+ return file_google_ads_googleads_v17_common_custom_parameter_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_custom_parameter_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_common_custom_parameter_proto_goTypes = []interface{}{
- (*CustomParameter)(nil), // 0: google.ads.googleads.v16.common.CustomParameter
+var file_google_ads_googleads_v17_common_custom_parameter_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_common_custom_parameter_proto_goTypes = []interface{}{
+ (*CustomParameter)(nil), // 0: google.ads.googleads.v17.common.CustomParameter
}
-var file_google_ads_googleads_v16_common_custom_parameter_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_common_custom_parameter_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -149,13 +149,13 @@ var file_google_ads_googleads_v16_common_custom_parameter_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_custom_parameter_proto_init() }
-func file_google_ads_googleads_v16_common_custom_parameter_proto_init() {
- if File_google_ads_googleads_v16_common_custom_parameter_proto != nil {
+func init() { file_google_ads_googleads_v17_common_custom_parameter_proto_init() }
+func file_google_ads_googleads_v17_common_custom_parameter_proto_init() {
+ if File_google_ads_googleads_v17_common_custom_parameter_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_custom_parameter_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_custom_parameter_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomParameter); i {
case 0:
return &v.state
@@ -168,23 +168,23 @@ func file_google_ads_googleads_v16_common_custom_parameter_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_custom_parameter_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_custom_parameter_proto_msgTypes[0].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_custom_parameter_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_custom_parameter_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_custom_parameter_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_custom_parameter_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_custom_parameter_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_custom_parameter_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_custom_parameter_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_custom_parameter_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_custom_parameter_proto = out.File
- file_google_ads_googleads_v16_common_custom_parameter_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_custom_parameter_proto_goTypes = nil
- file_google_ads_googleads_v16_common_custom_parameter_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_custom_parameter_proto = out.File
+ file_google_ads_googleads_v17_common_custom_parameter_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_custom_parameter_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_custom_parameter_proto_depIdxs = nil
}
diff --git a/common/customizer_value.pb.go b/common/customizer_value.pb.go
index 7873e19f..8d429f20 100644
--- a/common/customizer_value.pb.go
+++ b/common/customizer_value.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/customizer_value.proto
+// source: google/ads/googleads/v17/common/customizer_value.proto
package common
@@ -46,7 +46,7 @@ type CustomizerValue struct {
// Required. The data type for the customizer value. It must match the
// attribute type. The string_value content must match the constraints
// associated with the type.
- Type enums.CustomizerAttributeTypeEnum_CustomizerAttributeType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.CustomizerAttributeTypeEnum_CustomizerAttributeType" json:"type,omitempty"`
+ Type enums.CustomizerAttributeTypeEnum_CustomizerAttributeType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.CustomizerAttributeTypeEnum_CustomizerAttributeType" json:"type,omitempty"`
// Required. Value to insert in creative text. Customizer values of all types
// are stored as string to make formatting unambiguous.
StringValue string `protobuf:"bytes,2,opt,name=string_value,json=stringValue,proto3" json:"string_value,omitempty"`
@@ -55,7 +55,7 @@ type CustomizerValue struct {
func (x *CustomizerValue) Reset() {
*x = CustomizerValue{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_customizer_value_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_customizer_value_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -68,7 +68,7 @@ func (x *CustomizerValue) String() string {
func (*CustomizerValue) ProtoMessage() {}
func (x *CustomizerValue) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_customizer_value_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_customizer_value_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -81,7 +81,7 @@ func (x *CustomizerValue) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomizerValue.ProtoReflect.Descriptor instead.
func (*CustomizerValue) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_customizer_value_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_customizer_value_proto_rawDescGZIP(), []int{0}
}
func (x *CustomizerValue) GetType() enums.CustomizerAttributeTypeEnum_CustomizerAttributeType {
@@ -98,17 +98,17 @@ func (x *CustomizerValue) GetStringValue() string {
return ""
}
-var File_google_ads_googleads_v16_common_customizer_value_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_customizer_value_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_customizer_value_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_customizer_value_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x76, 0x61, 0x6c,
0x75, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d,
0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x74,
0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61,
@@ -116,7 +116,7 @@ var file_google_ads_googleads_v16_common_customizer_value_proto_rawDesc = []byte
0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x6c,
0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x53, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x75,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x75,
0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74,
0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x54, 0x79, 0x70,
@@ -125,42 +125,42 @@ var file_google_ads_googleads_v16_common_customizer_value_proto_rawDesc = []byte
0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0b, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56,
0x61, 0x6c, 0x75, 0x65, 0x42, 0xf4, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x14, 0x43, 0x75,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x14, 0x43, 0x75,
0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_customizer_value_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_customizer_value_proto_rawDescData = file_google_ads_googleads_v16_common_customizer_value_proto_rawDesc
+ file_google_ads_googleads_v17_common_customizer_value_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_customizer_value_proto_rawDescData = file_google_ads_googleads_v17_common_customizer_value_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_customizer_value_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_customizer_value_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_customizer_value_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_customizer_value_proto_rawDescData)
+func file_google_ads_googleads_v17_common_customizer_value_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_customizer_value_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_customizer_value_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_customizer_value_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_customizer_value_proto_rawDescData
+ return file_google_ads_googleads_v17_common_customizer_value_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_customizer_value_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_common_customizer_value_proto_goTypes = []interface{}{
- (*CustomizerValue)(nil), // 0: google.ads.googleads.v16.common.CustomizerValue
- (enums.CustomizerAttributeTypeEnum_CustomizerAttributeType)(0), // 1: google.ads.googleads.v16.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType
+var file_google_ads_googleads_v17_common_customizer_value_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_common_customizer_value_proto_goTypes = []interface{}{
+ (*CustomizerValue)(nil), // 0: google.ads.googleads.v17.common.CustomizerValue
+ (enums.CustomizerAttributeTypeEnum_CustomizerAttributeType)(0), // 1: google.ads.googleads.v17.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType
}
-var file_google_ads_googleads_v16_common_customizer_value_proto_depIdxs = []int32{
- 1, // 0: google.ads.googleads.v16.common.CustomizerValue.type:type_name -> google.ads.googleads.v16.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType
+var file_google_ads_googleads_v17_common_customizer_value_proto_depIdxs = []int32{
+ 1, // 0: google.ads.googleads.v17.common.CustomizerValue.type:type_name -> google.ads.googleads.v17.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType
1, // [1:1] is the sub-list for method output_type
1, // [1:1] is the sub-list for method input_type
1, // [1:1] is the sub-list for extension type_name
@@ -168,13 +168,13 @@ var file_google_ads_googleads_v16_common_customizer_value_proto_depIdxs = []int3
0, // [0:1] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_customizer_value_proto_init() }
-func file_google_ads_googleads_v16_common_customizer_value_proto_init() {
- if File_google_ads_googleads_v16_common_customizer_value_proto != nil {
+func init() { file_google_ads_googleads_v17_common_customizer_value_proto_init() }
+func file_google_ads_googleads_v17_common_customizer_value_proto_init() {
+ if File_google_ads_googleads_v17_common_customizer_value_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_customizer_value_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_customizer_value_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomizerValue); i {
case 0:
return &v.state
@@ -191,18 +191,18 @@ func file_google_ads_googleads_v16_common_customizer_value_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_customizer_value_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_customizer_value_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_customizer_value_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_customizer_value_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_customizer_value_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_customizer_value_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_customizer_value_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_customizer_value_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_customizer_value_proto = out.File
- file_google_ads_googleads_v16_common_customizer_value_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_customizer_value_proto_goTypes = nil
- file_google_ads_googleads_v16_common_customizer_value_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_customizer_value_proto = out.File
+ file_google_ads_googleads_v17_common_customizer_value_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_customizer_value_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_customizer_value_proto_depIdxs = nil
}
diff --git a/common/dates.pb.go b/common/dates.pb.go
index d9d0966c..8661b3c9 100644
--- a/common/dates.pb.go
+++ b/common/dates.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/dates.proto
+// source: google/ads/googleads/v17/common/dates.proto
package common
@@ -50,7 +50,7 @@ type DateRange struct {
func (x *DateRange) Reset() {
*x = DateRange{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_dates_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_dates_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -63,7 +63,7 @@ func (x *DateRange) String() string {
func (*DateRange) ProtoMessage() {}
func (x *DateRange) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_dates_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_dates_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -76,7 +76,7 @@ func (x *DateRange) ProtoReflect() protoreflect.Message {
// Deprecated: Use DateRange.ProtoReflect.Descriptor instead.
func (*DateRange) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_dates_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_dates_proto_rawDescGZIP(), []int{0}
}
func (x *DateRange) GetStartDate() string {
@@ -109,7 +109,7 @@ type YearMonthRange struct {
func (x *YearMonthRange) Reset() {
*x = YearMonthRange{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_dates_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_dates_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -122,7 +122,7 @@ func (x *YearMonthRange) String() string {
func (*YearMonthRange) ProtoMessage() {}
func (x *YearMonthRange) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_dates_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_dates_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -135,7 +135,7 @@ func (x *YearMonthRange) ProtoReflect() protoreflect.Message {
// Deprecated: Use YearMonthRange.ProtoReflect.Descriptor instead.
func (*YearMonthRange) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_dates_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_dates_proto_rawDescGZIP(), []int{1}
}
func (x *YearMonthRange) GetStart() *YearMonth {
@@ -161,13 +161,13 @@ type YearMonth struct {
// The year (for example, 2020).
Year int64 `protobuf:"varint,1,opt,name=year,proto3" json:"year,omitempty"`
// The month of the year. (for example, FEBRUARY).
- Month enums.MonthOfYearEnum_MonthOfYear `protobuf:"varint,2,opt,name=month,proto3,enum=google.ads.googleads.v16.enums.MonthOfYearEnum_MonthOfYear" json:"month,omitempty"`
+ Month enums.MonthOfYearEnum_MonthOfYear `protobuf:"varint,2,opt,name=month,proto3,enum=google.ads.googleads.v17.enums.MonthOfYearEnum_MonthOfYear" json:"month,omitempty"`
}
func (x *YearMonth) Reset() {
*x = YearMonth{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_dates_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_dates_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -180,7 +180,7 @@ func (x *YearMonth) String() string {
func (*YearMonth) ProtoMessage() {}
func (x *YearMonth) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_dates_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_dates_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -193,7 +193,7 @@ func (x *YearMonth) ProtoReflect() protoreflect.Message {
// Deprecated: Use YearMonth.ProtoReflect.Descriptor instead.
func (*YearMonth) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_dates_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_common_dates_proto_rawDescGZIP(), []int{2}
}
func (x *YearMonth) GetYear() int64 {
@@ -210,16 +210,16 @@ func (x *YearMonth) GetMonth() enums.MonthOfYearEnum_MonthOfYear {
return enums.MonthOfYearEnum_MonthOfYear(0)
}
-var File_google_ads_googleads_v16_common_dates_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_dates_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_dates_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_dates_proto_rawDesc = []byte{
0x0a, 0x2b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x64, 0x61, 0x74, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x32,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x32,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d,
0x6f, 0x6e, 0x74, 0x68, 0x5f, 0x6f, 0x66, 0x5f, 0x79, 0x65, 0x61, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x22, 0x6b, 0x0a, 0x09, 0x44, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12,
0x22, 0x0a, 0x0a, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20,
@@ -231,60 +231,60 @@ var file_google_ads_googleads_v16_common_dates_proto_rawDesc = []byte{
0x90, 0x01, 0x0a, 0x0e, 0x59, 0x65, 0x61, 0x72, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x52, 0x61, 0x6e,
0x67, 0x65, 0x12, 0x40, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x65, 0x61, 0x72, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x52, 0x05, 0x73,
0x74, 0x61, 0x72, 0x74, 0x12, 0x3c, 0x0a, 0x03, 0x65, 0x6e, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x65, 0x61, 0x72, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x52, 0x03, 0x65,
0x6e, 0x64, 0x22, 0x72, 0x0a, 0x09, 0x59, 0x65, 0x61, 0x72, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x12,
0x12, 0x0a, 0x04, 0x79, 0x65, 0x61, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x79,
0x65, 0x61, 0x72, 0x12, 0x51, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01,
0x28, 0x0e, 0x32, 0x3b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x4f, 0x66, 0x59, 0x65, 0x61, 0x72, 0x45,
0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x4f, 0x66, 0x59, 0x65, 0x61, 0x72, 0x52,
0x05, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x42, 0xea, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0a,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0a,
0x44, 0x61, 0x74, 0x65, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_dates_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_dates_proto_rawDescData = file_google_ads_googleads_v16_common_dates_proto_rawDesc
+ file_google_ads_googleads_v17_common_dates_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_dates_proto_rawDescData = file_google_ads_googleads_v17_common_dates_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_dates_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_dates_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_dates_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_dates_proto_rawDescData)
+func file_google_ads_googleads_v17_common_dates_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_dates_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_dates_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_dates_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_dates_proto_rawDescData
+ return file_google_ads_googleads_v17_common_dates_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_dates_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
-var file_google_ads_googleads_v16_common_dates_proto_goTypes = []interface{}{
- (*DateRange)(nil), // 0: google.ads.googleads.v16.common.DateRange
- (*YearMonthRange)(nil), // 1: google.ads.googleads.v16.common.YearMonthRange
- (*YearMonth)(nil), // 2: google.ads.googleads.v16.common.YearMonth
- (enums.MonthOfYearEnum_MonthOfYear)(0), // 3: google.ads.googleads.v16.enums.MonthOfYearEnum.MonthOfYear
+var file_google_ads_googleads_v17_common_dates_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
+var file_google_ads_googleads_v17_common_dates_proto_goTypes = []interface{}{
+ (*DateRange)(nil), // 0: google.ads.googleads.v17.common.DateRange
+ (*YearMonthRange)(nil), // 1: google.ads.googleads.v17.common.YearMonthRange
+ (*YearMonth)(nil), // 2: google.ads.googleads.v17.common.YearMonth
+ (enums.MonthOfYearEnum_MonthOfYear)(0), // 3: google.ads.googleads.v17.enums.MonthOfYearEnum.MonthOfYear
}
-var file_google_ads_googleads_v16_common_dates_proto_depIdxs = []int32{
- 2, // 0: google.ads.googleads.v16.common.YearMonthRange.start:type_name -> google.ads.googleads.v16.common.YearMonth
- 2, // 1: google.ads.googleads.v16.common.YearMonthRange.end:type_name -> google.ads.googleads.v16.common.YearMonth
- 3, // 2: google.ads.googleads.v16.common.YearMonth.month:type_name -> google.ads.googleads.v16.enums.MonthOfYearEnum.MonthOfYear
+var file_google_ads_googleads_v17_common_dates_proto_depIdxs = []int32{
+ 2, // 0: google.ads.googleads.v17.common.YearMonthRange.start:type_name -> google.ads.googleads.v17.common.YearMonth
+ 2, // 1: google.ads.googleads.v17.common.YearMonthRange.end:type_name -> google.ads.googleads.v17.common.YearMonth
+ 3, // 2: google.ads.googleads.v17.common.YearMonth.month:type_name -> google.ads.googleads.v17.enums.MonthOfYearEnum.MonthOfYear
3, // [3:3] is the sub-list for method output_type
3, // [3:3] is the sub-list for method input_type
3, // [3:3] is the sub-list for extension type_name
@@ -292,13 +292,13 @@ var file_google_ads_googleads_v16_common_dates_proto_depIdxs = []int32{
0, // [0:3] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_dates_proto_init() }
-func file_google_ads_googleads_v16_common_dates_proto_init() {
- if File_google_ads_googleads_v16_common_dates_proto != nil {
+func init() { file_google_ads_googleads_v17_common_dates_proto_init() }
+func file_google_ads_googleads_v17_common_dates_proto_init() {
+ if File_google_ads_googleads_v17_common_dates_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_dates_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_dates_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DateRange); i {
case 0:
return &v.state
@@ -310,7 +310,7 @@ func file_google_ads_googleads_v16_common_dates_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_dates_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_dates_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*YearMonthRange); i {
case 0:
return &v.state
@@ -322,7 +322,7 @@ func file_google_ads_googleads_v16_common_dates_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_dates_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_dates_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*YearMonth); i {
case 0:
return &v.state
@@ -335,23 +335,23 @@ func file_google_ads_googleads_v16_common_dates_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_dates_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_dates_proto_msgTypes[0].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_dates_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_dates_proto_rawDesc,
NumEnums: 0,
NumMessages: 3,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_dates_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_dates_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_dates_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_dates_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_dates_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_dates_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_dates_proto = out.File
- file_google_ads_googleads_v16_common_dates_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_dates_proto_goTypes = nil
- file_google_ads_googleads_v16_common_dates_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_dates_proto = out.File
+ file_google_ads_googleads_v17_common_dates_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_dates_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_dates_proto_depIdxs = nil
}
diff --git a/common/extensions.pb.go b/common/extensions.pb.go
index 7db135d1..b50532b0 100644
--- a/common/extensions.pb.go
+++ b/common/extensions.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/extensions.proto
+// source: google/ads/googleads/v17/common/extensions.proto
package common
@@ -51,7 +51,7 @@ type AppFeedItem struct {
AppId *string `protobuf:"bytes,10,opt,name=app_id,json=appId,proto3,oneof" json:"app_id,omitempty"`
// The application store that the target application belongs to.
// This field is required.
- AppStore enums.AppStoreEnum_AppStore `protobuf:"varint,3,opt,name=app_store,json=appStore,proto3,enum=google.ads.googleads.v16.enums.AppStoreEnum_AppStore" json:"app_store,omitempty"`
+ AppStore enums.AppStoreEnum_AppStore `protobuf:"varint,3,opt,name=app_store,json=appStore,proto3,enum=google.ads.googleads.v17.enums.AppStoreEnum_AppStore" json:"app_store,omitempty"`
// A list of possible final URLs after all cross domain redirects.
// This list must not be empty.
FinalUrls []string `protobuf:"bytes,11,rep,name=final_urls,json=finalUrls,proto3" json:"final_urls,omitempty"`
@@ -70,7 +70,7 @@ type AppFeedItem struct {
func (x *AppFeedItem) Reset() {
*x = AppFeedItem{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -83,7 +83,7 @@ func (x *AppFeedItem) String() string {
func (*AppFeedItem) ProtoMessage() {}
func (x *AppFeedItem) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -96,7 +96,7 @@ func (x *AppFeedItem) ProtoReflect() protoreflect.Message {
// Deprecated: Use AppFeedItem.ProtoReflect.Descriptor instead.
func (*AppFeedItem) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_extensions_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_extensions_proto_rawDescGZIP(), []int{0}
}
func (x *AppFeedItem) GetLinkText() string {
@@ -180,13 +180,13 @@ type CallFeedItem struct {
// Enum value that indicates whether this call extension uses its own call
// conversion setting (or just have call conversion disabled), or following
// the account level setting.
- CallConversionReportingState enums.CallConversionReportingStateEnum_CallConversionReportingState `protobuf:"varint,6,opt,name=call_conversion_reporting_state,json=callConversionReportingState,proto3,enum=google.ads.googleads.v16.enums.CallConversionReportingStateEnum_CallConversionReportingState" json:"call_conversion_reporting_state,omitempty"`
+ CallConversionReportingState enums.CallConversionReportingStateEnum_CallConversionReportingState `protobuf:"varint,6,opt,name=call_conversion_reporting_state,json=callConversionReportingState,proto3,enum=google.ads.googleads.v17.enums.CallConversionReportingStateEnum_CallConversionReportingState" json:"call_conversion_reporting_state,omitempty"`
}
func (x *CallFeedItem) Reset() {
*x = CallFeedItem{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -199,7 +199,7 @@ func (x *CallFeedItem) String() string {
func (*CallFeedItem) ProtoMessage() {}
func (x *CallFeedItem) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -212,7 +212,7 @@ func (x *CallFeedItem) ProtoReflect() protoreflect.Message {
// Deprecated: Use CallFeedItem.ProtoReflect.Descriptor instead.
func (*CallFeedItem) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_extensions_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_extensions_proto_rawDescGZIP(), []int{1}
}
func (x *CallFeedItem) GetPhoneNumber() string {
@@ -271,7 +271,7 @@ type CalloutFeedItem struct {
func (x *CalloutFeedItem) Reset() {
*x = CalloutFeedItem{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -284,7 +284,7 @@ func (x *CalloutFeedItem) String() string {
func (*CalloutFeedItem) ProtoMessage() {}
func (x *CalloutFeedItem) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -297,7 +297,7 @@ func (x *CalloutFeedItem) ProtoReflect() protoreflect.Message {
// Deprecated: Use CalloutFeedItem.ProtoReflect.Descriptor instead.
func (*CalloutFeedItem) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_extensions_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_common_extensions_proto_rawDescGZIP(), []int{2}
}
func (x *CalloutFeedItem) GetCalloutText() string {
@@ -334,7 +334,7 @@ type LocationFeedItem struct {
func (x *LocationFeedItem) Reset() {
*x = LocationFeedItem{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -347,7 +347,7 @@ func (x *LocationFeedItem) String() string {
func (*LocationFeedItem) ProtoMessage() {}
func (x *LocationFeedItem) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -360,7 +360,7 @@ func (x *LocationFeedItem) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocationFeedItem.ProtoReflect.Descriptor instead.
func (*LocationFeedItem) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_extensions_proto_rawDescGZIP(), []int{3}
+ return file_google_ads_googleads_v17_common_extensions_proto_rawDescGZIP(), []int{3}
}
func (x *LocationFeedItem) GetBusinessName() string {
@@ -450,7 +450,7 @@ type AffiliateLocationFeedItem struct {
func (x *AffiliateLocationFeedItem) Reset() {
*x = AffiliateLocationFeedItem{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -463,7 +463,7 @@ func (x *AffiliateLocationFeedItem) String() string {
func (*AffiliateLocationFeedItem) ProtoMessage() {}
func (x *AffiliateLocationFeedItem) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -476,7 +476,7 @@ func (x *AffiliateLocationFeedItem) ProtoReflect() protoreflect.Message {
// Deprecated: Use AffiliateLocationFeedItem.ProtoReflect.Descriptor instead.
func (*AffiliateLocationFeedItem) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_extensions_proto_rawDescGZIP(), []int{4}
+ return file_google_ads_googleads_v17_common_extensions_proto_rawDescGZIP(), []int{4}
}
func (x *AffiliateLocationFeedItem) GetBusinessName() string {
@@ -574,7 +574,7 @@ type TextMessageFeedItem struct {
func (x *TextMessageFeedItem) Reset() {
*x = TextMessageFeedItem{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -587,7 +587,7 @@ func (x *TextMessageFeedItem) String() string {
func (*TextMessageFeedItem) ProtoMessage() {}
func (x *TextMessageFeedItem) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -600,7 +600,7 @@ func (x *TextMessageFeedItem) ProtoReflect() protoreflect.Message {
// Deprecated: Use TextMessageFeedItem.ProtoReflect.Descriptor instead.
func (*TextMessageFeedItem) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_extensions_proto_rawDescGZIP(), []int{5}
+ return file_google_ads_googleads_v17_common_extensions_proto_rawDescGZIP(), []int{5}
}
func (x *TextMessageFeedItem) GetBusinessName() string {
@@ -645,9 +645,9 @@ type PriceFeedItem struct {
unknownFields protoimpl.UnknownFields
// Price extension type of this extension.
- Type enums.PriceExtensionTypeEnum_PriceExtensionType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.PriceExtensionTypeEnum_PriceExtensionType" json:"type,omitempty"`
+ Type enums.PriceExtensionTypeEnum_PriceExtensionType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.PriceExtensionTypeEnum_PriceExtensionType" json:"type,omitempty"`
// Price qualifier for all offers of this price extension.
- PriceQualifier enums.PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier `protobuf:"varint,2,opt,name=price_qualifier,json=priceQualifier,proto3,enum=google.ads.googleads.v16.enums.PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier" json:"price_qualifier,omitempty"`
+ PriceQualifier enums.PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier `protobuf:"varint,2,opt,name=price_qualifier,json=priceQualifier,proto3,enum=google.ads.googleads.v17.enums.PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier" json:"price_qualifier,omitempty"`
// Tracking URL template for all offers of this price extension.
TrackingUrlTemplate *string `protobuf:"bytes,7,opt,name=tracking_url_template,json=trackingUrlTemplate,proto3,oneof" json:"tracking_url_template,omitempty"`
// The code of the language used for this price extension.
@@ -661,7 +661,7 @@ type PriceFeedItem struct {
func (x *PriceFeedItem) Reset() {
*x = PriceFeedItem{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -674,7 +674,7 @@ func (x *PriceFeedItem) String() string {
func (*PriceFeedItem) ProtoMessage() {}
func (x *PriceFeedItem) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -687,7 +687,7 @@ func (x *PriceFeedItem) ProtoReflect() protoreflect.Message {
// Deprecated: Use PriceFeedItem.ProtoReflect.Descriptor instead.
func (*PriceFeedItem) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_extensions_proto_rawDescGZIP(), []int{6}
+ return file_google_ads_googleads_v17_common_extensions_proto_rawDescGZIP(), []int{6}
}
func (x *PriceFeedItem) GetType() enums.PriceExtensionTypeEnum_PriceExtensionType {
@@ -745,7 +745,7 @@ type PriceOffer struct {
// Price value of this offer.
Price *Money `protobuf:"bytes,3,opt,name=price,proto3" json:"price,omitempty"`
// Price unit for this offer.
- Unit enums.PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit `protobuf:"varint,4,opt,name=unit,proto3,enum=google.ads.googleads.v16.enums.PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit" json:"unit,omitempty"`
+ Unit enums.PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit `protobuf:"varint,4,opt,name=unit,proto3,enum=google.ads.googleads.v17.enums.PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit" json:"unit,omitempty"`
// A list of possible final URLs after all cross domain redirects.
FinalUrls []string `protobuf:"bytes,9,rep,name=final_urls,json=finalUrls,proto3" json:"final_urls,omitempty"`
// A list of possible final mobile URLs after all cross domain redirects.
@@ -755,7 +755,7 @@ type PriceOffer struct {
func (x *PriceOffer) Reset() {
*x = PriceOffer{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -768,7 +768,7 @@ func (x *PriceOffer) String() string {
func (*PriceOffer) ProtoMessage() {}
func (x *PriceOffer) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -781,7 +781,7 @@ func (x *PriceOffer) ProtoReflect() protoreflect.Message {
// Deprecated: Use PriceOffer.ProtoReflect.Descriptor instead.
func (*PriceOffer) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_extensions_proto_rawDescGZIP(), []int{7}
+ return file_google_ads_googleads_v17_common_extensions_proto_rawDescGZIP(), []int{7}
}
func (x *PriceOffer) GetHeader() string {
@@ -836,7 +836,7 @@ type PromotionFeedItem struct {
// This field is required.
PromotionTarget *string `protobuf:"bytes,16,opt,name=promotion_target,json=promotionTarget,proto3,oneof" json:"promotion_target,omitempty"`
// Enum that modifies the qualification of the discount.
- DiscountModifier enums.PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier `protobuf:"varint,2,opt,name=discount_modifier,json=discountModifier,proto3,enum=google.ads.googleads.v16.enums.PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier" json:"discount_modifier,omitempty"`
+ DiscountModifier enums.PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier `protobuf:"varint,2,opt,name=discount_modifier,json=discountModifier,proto3,enum=google.ads.googleads.v17.enums.PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier" json:"discount_modifier,omitempty"`
// Start date of when the promotion is eligible to be redeemed.
PromotionStartDate *string `protobuf:"bytes,19,opt,name=promotion_start_date,json=promotionStartDate,proto3,oneof" json:"promotion_start_date,omitempty"`
// Last date when the promotion is eligible to be redeemed.
@@ -844,7 +844,7 @@ type PromotionFeedItem struct {
// The occasion the promotion was intended for.
// If an occasion is set, the redemption window will need to fall within
// the date range associated with the occasion.
- Occasion enums.PromotionExtensionOccasionEnum_PromotionExtensionOccasion `protobuf:"varint,9,opt,name=occasion,proto3,enum=google.ads.googleads.v16.enums.PromotionExtensionOccasionEnum_PromotionExtensionOccasion" json:"occasion,omitempty"`
+ Occasion enums.PromotionExtensionOccasionEnum_PromotionExtensionOccasion `protobuf:"varint,9,opt,name=occasion,proto3,enum=google.ads.googleads.v17.enums.PromotionExtensionOccasionEnum_PromotionExtensionOccasion" json:"occasion,omitempty"`
// A list of possible final URLs after all cross domain redirects.
// This field is required.
FinalUrls []string `protobuf:"bytes,21,rep,name=final_urls,json=finalUrls,proto3" json:"final_urls,omitempty"`
@@ -881,7 +881,7 @@ type PromotionFeedItem struct {
func (x *PromotionFeedItem) Reset() {
*x = PromotionFeedItem{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -894,7 +894,7 @@ func (x *PromotionFeedItem) String() string {
func (*PromotionFeedItem) ProtoMessage() {}
func (x *PromotionFeedItem) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -907,7 +907,7 @@ func (x *PromotionFeedItem) ProtoReflect() protoreflect.Message {
// Deprecated: Use PromotionFeedItem.ProtoReflect.Descriptor instead.
func (*PromotionFeedItem) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_extensions_proto_rawDescGZIP(), []int{8}
+ return file_google_ads_googleads_v17_common_extensions_proto_rawDescGZIP(), []int{8}
}
func (x *PromotionFeedItem) GetPromotionTarget() string {
@@ -1086,7 +1086,7 @@ type StructuredSnippetFeedItem struct {
func (x *StructuredSnippetFeedItem) Reset() {
*x = StructuredSnippetFeedItem{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1099,7 +1099,7 @@ func (x *StructuredSnippetFeedItem) String() string {
func (*StructuredSnippetFeedItem) ProtoMessage() {}
func (x *StructuredSnippetFeedItem) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1112,7 +1112,7 @@ func (x *StructuredSnippetFeedItem) ProtoReflect() protoreflect.Message {
// Deprecated: Use StructuredSnippetFeedItem.ProtoReflect.Descriptor instead.
func (*StructuredSnippetFeedItem) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_extensions_proto_rawDescGZIP(), []int{9}
+ return file_google_ads_googleads_v17_common_extensions_proto_rawDescGZIP(), []int{9}
}
func (x *StructuredSnippetFeedItem) GetHeader() string {
@@ -1163,7 +1163,7 @@ type SitelinkFeedItem struct {
func (x *SitelinkFeedItem) Reset() {
*x = SitelinkFeedItem{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1176,7 +1176,7 @@ func (x *SitelinkFeedItem) String() string {
func (*SitelinkFeedItem) ProtoMessage() {}
func (x *SitelinkFeedItem) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1189,7 +1189,7 @@ func (x *SitelinkFeedItem) ProtoReflect() protoreflect.Message {
// Deprecated: Use SitelinkFeedItem.ProtoReflect.Descriptor instead.
func (*SitelinkFeedItem) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_extensions_proto_rawDescGZIP(), []int{10}
+ return file_google_ads_googleads_v17_common_extensions_proto_rawDescGZIP(), []int{10}
}
func (x *SitelinkFeedItem) GetLinkText() string {
@@ -1265,7 +1265,7 @@ type HotelCalloutFeedItem struct {
func (x *HotelCalloutFeedItem) Reset() {
*x = HotelCalloutFeedItem{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1278,7 +1278,7 @@ func (x *HotelCalloutFeedItem) String() string {
func (*HotelCalloutFeedItem) ProtoMessage() {}
func (x *HotelCalloutFeedItem) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1291,7 +1291,7 @@ func (x *HotelCalloutFeedItem) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelCalloutFeedItem.ProtoReflect.Descriptor instead.
func (*HotelCalloutFeedItem) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_extensions_proto_rawDescGZIP(), []int{11}
+ return file_google_ads_googleads_v17_common_extensions_proto_rawDescGZIP(), []int{11}
}
func (x *HotelCalloutFeedItem) GetText() string {
@@ -1321,7 +1321,7 @@ type ImageFeedItem struct {
func (x *ImageFeedItem) Reset() {
*x = ImageFeedItem{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[12]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1334,7 +1334,7 @@ func (x *ImageFeedItem) String() string {
func (*ImageFeedItem) ProtoMessage() {}
func (x *ImageFeedItem) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_extensions_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_extensions_proto_msgTypes[12]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1347,7 +1347,7 @@ func (x *ImageFeedItem) ProtoReflect() protoreflect.Message {
// Deprecated: Use ImageFeedItem.ProtoReflect.Descriptor instead.
func (*ImageFeedItem) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_extensions_proto_rawDescGZIP(), []int{12}
+ return file_google_ads_googleads_v17_common_extensions_proto_rawDescGZIP(), []int{12}
}
func (x *ImageFeedItem) GetImageAsset() string {
@@ -1357,47 +1357,47 @@ func (x *ImageFeedItem) GetImageAsset() string {
return ""
}
-var File_google_ads_googleads_v16_common_extensions_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_extensions_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_extensions_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_extensions_proto_rawDesc = []byte{
0x0a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x1a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x70, 0x61, 0x72, 0x61,
0x6d, 0x65, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x31, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x66, 0x65, 0x65,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x66, 0x65, 0x65,
0x64, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61,
0x70, 0x70, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x44,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63,
0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72,
0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69,
0x66, 0x69, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x69, 0x63, 0x65,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x69, 0x63, 0x65,
0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65,
0x5f, 0x75, 0x6e, 0x69, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x39, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x69, 0x63,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x69, 0x63,
0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x4a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f,
0x75, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x78, 0x74,
0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x63, 0x63, 0x61, 0x73, 0x69, 0x6f, 0x6e, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70,
@@ -1411,7 +1411,7 @@ var file_google_ads_googleads_v16_common_extensions_proto_rawDesc = []byte{
0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12,
0x52, 0x0a, 0x09, 0x61, 0x70, 0x70, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x18, 0x03, 0x20, 0x01,
0x28, 0x0e, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x45, 0x6e, 0x75, 0x6d,
0x2e, 0x41, 0x70, 0x70, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x52, 0x08, 0x61, 0x70, 0x70, 0x53, 0x74,
0x6f, 0x72, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c,
@@ -1426,7 +1426,7 @@ var file_google_ads_googleads_v16_common_extensions_proto_rawDesc = []byte{
0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73,
0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x50,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x50,
0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x13, 0x75, 0x72, 0x6c, 0x43, 0x75, 0x73,
0x74, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x2d, 0x0a,
0x10, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x73, 0x75, 0x66, 0x66, 0x69,
@@ -1458,7 +1458,7 @@ var file_google_ads_googleads_v16_common_extensions_proto_rawDesc = []byte{
0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65,
0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20,
0x01, 0x28, 0x0e, 0x32, 0x5d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
0x69, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74,
0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72,
@@ -1562,14 +1562,14 @@ var file_google_ads_googleads_v16_common_extensions_proto_rawDesc = []byte{
0x65, 0x78, 0x74, 0x22, 0xa0, 0x04, 0x0a, 0x0d, 0x50, 0x72, 0x69, 0x63, 0x65, 0x46, 0x65, 0x65,
0x64, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x5d, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20,
0x01, 0x28, 0x0e, 0x32, 0x49, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x69, 0x63,
0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04,
0x74, 0x79, 0x70, 0x65, 0x12, 0x86, 0x01, 0x0a, 0x0f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x71,
0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e,
0x50, 0x72, 0x69, 0x63, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x72,
0x69, 0x63, 0x65, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d,
0x2e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x50,
@@ -1584,7 +1584,7 @@ var file_google_ads_googleads_v16_common_extensions_proto_rawDesc = []byte{
0x12, 0x54, 0x0a, 0x0f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x6f, 0x66, 0x66, 0x65, 0x72, 0x69,
0x6e, 0x67, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x69, 0x63,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x69, 0x63,
0x65, 0x4f, 0x66, 0x66, 0x65, 0x72, 0x52, 0x0e, 0x70, 0x72, 0x69, 0x63, 0x65, 0x4f, 0x66, 0x66,
0x65, 0x72, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x2d, 0x0a, 0x10, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f,
0x75, 0x72, 0x6c, 0x5f, 0x73, 0x75, 0x66, 0x66, 0x69, 0x78, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09,
@@ -1601,10 +1601,10 @@ var file_google_ads_googleads_v16_common_extensions_proto_rawDesc = []byte{
0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x3c, 0x0a, 0x05, 0x70, 0x72, 0x69,
0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x6e, 0x65, 0x79,
+ 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x6e, 0x65, 0x79,
0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x67, 0x0a, 0x04, 0x75, 0x6e, 0x69, 0x74, 0x18,
0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x53, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x45, 0x78, 0x74, 0x65,
0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x55, 0x6e, 0x69, 0x74, 0x45, 0x6e,
0x75, 0x6d, 0x2e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
@@ -1623,7 +1623,7 @@ var file_google_ads_googleads_v16_common_extensions_proto_rawDesc = []byte{
0x11, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69,
0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x69, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74,
0x69, 0x6f, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x69, 0x73, 0x63,
0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d,
0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
@@ -1638,7 +1638,7 @@ var file_google_ads_googleads_v16_common_extensions_proto_rawDesc = []byte{
0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12,
0x75, 0x0a, 0x08, 0x6f, 0x63, 0x63, 0x61, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28,
0x0e, 0x32, 0x59, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x78, 0x74, 0x65,
0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x63, 0x63, 0x61, 0x73, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75,
0x6d, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e,
@@ -1655,7 +1655,7 @@ var file_google_ads_googleads_v16_common_extensions_proto_rawDesc = []byte{
0x6c, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74,
0x65, 0x72, 0x73, 0x18, 0x0d, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74,
0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x13, 0x75, 0x72, 0x6c,
0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73,
0x12, 0x2d, 0x0a, 0x10, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x73, 0x75,
@@ -1669,14 +1669,14 @@ var file_google_ads_googleads_v16_common_extensions_proto_rawDesc = []byte{
0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x5f, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6f, 0x66, 0x66,
0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x6e, 0x65, 0x79, 0x48, 0x00,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x6e, 0x65, 0x79, 0x48, 0x00,
0x52, 0x0e, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x4f, 0x66, 0x66,
0x12, 0x27, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f,
0x64, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x6d,
0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x56, 0x0a, 0x12, 0x6f, 0x72, 0x64,
0x65, 0x72, 0x73, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18,
0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x6e, 0x65, 0x79, 0x48, 0x01, 0x52,
0x10, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x73, 0x4f, 0x76, 0x65, 0x72, 0x41, 0x6d, 0x6f, 0x75, 0x6e,
0x74, 0x42, 0x0f, 0x0a, 0x0d, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x74, 0x79,
@@ -1714,7 +1714,7 @@ var file_google_ads_googleads_v16_common_extensions_proto_rawDesc = []byte{
0x72, 0x6c, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65,
0x74, 0x65, 0x72, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73,
0x74, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x13, 0x75, 0x72,
0x6c, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72,
0x73, 0x12, 0x2d, 0x0a, 0x10, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x73,
@@ -1740,74 +1740,74 @@ var file_google_ads_googleads_v16_common_extensions_proto_rawDesc = []byte{
0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0a, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65,
0x74, 0x42, 0xef, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0f, 0x45, 0x78, 0x74, 0x65, 0x6e,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0f, 0x45, 0x78, 0x74, 0x65, 0x6e,
0x73, 0x69, 0x6f, 0x6e, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_extensions_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_extensions_proto_rawDescData = file_google_ads_googleads_v16_common_extensions_proto_rawDesc
+ file_google_ads_googleads_v17_common_extensions_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_extensions_proto_rawDescData = file_google_ads_googleads_v17_common_extensions_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_extensions_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_extensions_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_extensions_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_extensions_proto_rawDescData)
+func file_google_ads_googleads_v17_common_extensions_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_extensions_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_extensions_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_extensions_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_extensions_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_common_extensions_proto_msgTypes = make([]protoimpl.MessageInfo, 13)
-var file_google_ads_googleads_v16_common_extensions_proto_goTypes = []interface{}{
- (*AppFeedItem)(nil), // 0: google.ads.googleads.v16.common.AppFeedItem
- (*CallFeedItem)(nil), // 1: google.ads.googleads.v16.common.CallFeedItem
- (*CalloutFeedItem)(nil), // 2: google.ads.googleads.v16.common.CalloutFeedItem
- (*LocationFeedItem)(nil), // 3: google.ads.googleads.v16.common.LocationFeedItem
- (*AffiliateLocationFeedItem)(nil), // 4: google.ads.googleads.v16.common.AffiliateLocationFeedItem
- (*TextMessageFeedItem)(nil), // 5: google.ads.googleads.v16.common.TextMessageFeedItem
- (*PriceFeedItem)(nil), // 6: google.ads.googleads.v16.common.PriceFeedItem
- (*PriceOffer)(nil), // 7: google.ads.googleads.v16.common.PriceOffer
- (*PromotionFeedItem)(nil), // 8: google.ads.googleads.v16.common.PromotionFeedItem
- (*StructuredSnippetFeedItem)(nil), // 9: google.ads.googleads.v16.common.StructuredSnippetFeedItem
- (*SitelinkFeedItem)(nil), // 10: google.ads.googleads.v16.common.SitelinkFeedItem
- (*HotelCalloutFeedItem)(nil), // 11: google.ads.googleads.v16.common.HotelCalloutFeedItem
- (*ImageFeedItem)(nil), // 12: google.ads.googleads.v16.common.ImageFeedItem
- (enums.AppStoreEnum_AppStore)(0), // 13: google.ads.googleads.v16.enums.AppStoreEnum.AppStore
- (*CustomParameter)(nil), // 14: google.ads.googleads.v16.common.CustomParameter
- (enums.CallConversionReportingStateEnum_CallConversionReportingState)(0), // 15: google.ads.googleads.v16.enums.CallConversionReportingStateEnum.CallConversionReportingState
- (enums.PriceExtensionTypeEnum_PriceExtensionType)(0), // 16: google.ads.googleads.v16.enums.PriceExtensionTypeEnum.PriceExtensionType
- (enums.PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier)(0), // 17: google.ads.googleads.v16.enums.PriceExtensionPriceQualifierEnum.PriceExtensionPriceQualifier
- (*Money)(nil), // 18: google.ads.googleads.v16.common.Money
- (enums.PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit)(0), // 19: google.ads.googleads.v16.enums.PriceExtensionPriceUnitEnum.PriceExtensionPriceUnit
- (enums.PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier)(0), // 20: google.ads.googleads.v16.enums.PromotionExtensionDiscountModifierEnum.PromotionExtensionDiscountModifier
- (enums.PromotionExtensionOccasionEnum_PromotionExtensionOccasion)(0), // 21: google.ads.googleads.v16.enums.PromotionExtensionOccasionEnum.PromotionExtensionOccasion
-}
-var file_google_ads_googleads_v16_common_extensions_proto_depIdxs = []int32{
- 13, // 0: google.ads.googleads.v16.common.AppFeedItem.app_store:type_name -> google.ads.googleads.v16.enums.AppStoreEnum.AppStore
- 14, // 1: google.ads.googleads.v16.common.AppFeedItem.url_custom_parameters:type_name -> google.ads.googleads.v16.common.CustomParameter
- 15, // 2: google.ads.googleads.v16.common.CallFeedItem.call_conversion_reporting_state:type_name -> google.ads.googleads.v16.enums.CallConversionReportingStateEnum.CallConversionReportingState
- 16, // 3: google.ads.googleads.v16.common.PriceFeedItem.type:type_name -> google.ads.googleads.v16.enums.PriceExtensionTypeEnum.PriceExtensionType
- 17, // 4: google.ads.googleads.v16.common.PriceFeedItem.price_qualifier:type_name -> google.ads.googleads.v16.enums.PriceExtensionPriceQualifierEnum.PriceExtensionPriceQualifier
- 7, // 5: google.ads.googleads.v16.common.PriceFeedItem.price_offerings:type_name -> google.ads.googleads.v16.common.PriceOffer
- 18, // 6: google.ads.googleads.v16.common.PriceOffer.price:type_name -> google.ads.googleads.v16.common.Money
- 19, // 7: google.ads.googleads.v16.common.PriceOffer.unit:type_name -> google.ads.googleads.v16.enums.PriceExtensionPriceUnitEnum.PriceExtensionPriceUnit
- 20, // 8: google.ads.googleads.v16.common.PromotionFeedItem.discount_modifier:type_name -> google.ads.googleads.v16.enums.PromotionExtensionDiscountModifierEnum.PromotionExtensionDiscountModifier
- 21, // 9: google.ads.googleads.v16.common.PromotionFeedItem.occasion:type_name -> google.ads.googleads.v16.enums.PromotionExtensionOccasionEnum.PromotionExtensionOccasion
- 14, // 10: google.ads.googleads.v16.common.PromotionFeedItem.url_custom_parameters:type_name -> google.ads.googleads.v16.common.CustomParameter
- 18, // 11: google.ads.googleads.v16.common.PromotionFeedItem.money_amount_off:type_name -> google.ads.googleads.v16.common.Money
- 18, // 12: google.ads.googleads.v16.common.PromotionFeedItem.orders_over_amount:type_name -> google.ads.googleads.v16.common.Money
- 14, // 13: google.ads.googleads.v16.common.SitelinkFeedItem.url_custom_parameters:type_name -> google.ads.googleads.v16.common.CustomParameter
+ return file_google_ads_googleads_v17_common_extensions_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_common_extensions_proto_msgTypes = make([]protoimpl.MessageInfo, 13)
+var file_google_ads_googleads_v17_common_extensions_proto_goTypes = []interface{}{
+ (*AppFeedItem)(nil), // 0: google.ads.googleads.v17.common.AppFeedItem
+ (*CallFeedItem)(nil), // 1: google.ads.googleads.v17.common.CallFeedItem
+ (*CalloutFeedItem)(nil), // 2: google.ads.googleads.v17.common.CalloutFeedItem
+ (*LocationFeedItem)(nil), // 3: google.ads.googleads.v17.common.LocationFeedItem
+ (*AffiliateLocationFeedItem)(nil), // 4: google.ads.googleads.v17.common.AffiliateLocationFeedItem
+ (*TextMessageFeedItem)(nil), // 5: google.ads.googleads.v17.common.TextMessageFeedItem
+ (*PriceFeedItem)(nil), // 6: google.ads.googleads.v17.common.PriceFeedItem
+ (*PriceOffer)(nil), // 7: google.ads.googleads.v17.common.PriceOffer
+ (*PromotionFeedItem)(nil), // 8: google.ads.googleads.v17.common.PromotionFeedItem
+ (*StructuredSnippetFeedItem)(nil), // 9: google.ads.googleads.v17.common.StructuredSnippetFeedItem
+ (*SitelinkFeedItem)(nil), // 10: google.ads.googleads.v17.common.SitelinkFeedItem
+ (*HotelCalloutFeedItem)(nil), // 11: google.ads.googleads.v17.common.HotelCalloutFeedItem
+ (*ImageFeedItem)(nil), // 12: google.ads.googleads.v17.common.ImageFeedItem
+ (enums.AppStoreEnum_AppStore)(0), // 13: google.ads.googleads.v17.enums.AppStoreEnum.AppStore
+ (*CustomParameter)(nil), // 14: google.ads.googleads.v17.common.CustomParameter
+ (enums.CallConversionReportingStateEnum_CallConversionReportingState)(0), // 15: google.ads.googleads.v17.enums.CallConversionReportingStateEnum.CallConversionReportingState
+ (enums.PriceExtensionTypeEnum_PriceExtensionType)(0), // 16: google.ads.googleads.v17.enums.PriceExtensionTypeEnum.PriceExtensionType
+ (enums.PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier)(0), // 17: google.ads.googleads.v17.enums.PriceExtensionPriceQualifierEnum.PriceExtensionPriceQualifier
+ (*Money)(nil), // 18: google.ads.googleads.v17.common.Money
+ (enums.PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit)(0), // 19: google.ads.googleads.v17.enums.PriceExtensionPriceUnitEnum.PriceExtensionPriceUnit
+ (enums.PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier)(0), // 20: google.ads.googleads.v17.enums.PromotionExtensionDiscountModifierEnum.PromotionExtensionDiscountModifier
+ (enums.PromotionExtensionOccasionEnum_PromotionExtensionOccasion)(0), // 21: google.ads.googleads.v17.enums.PromotionExtensionOccasionEnum.PromotionExtensionOccasion
+}
+var file_google_ads_googleads_v17_common_extensions_proto_depIdxs = []int32{
+ 13, // 0: google.ads.googleads.v17.common.AppFeedItem.app_store:type_name -> google.ads.googleads.v17.enums.AppStoreEnum.AppStore
+ 14, // 1: google.ads.googleads.v17.common.AppFeedItem.url_custom_parameters:type_name -> google.ads.googleads.v17.common.CustomParameter
+ 15, // 2: google.ads.googleads.v17.common.CallFeedItem.call_conversion_reporting_state:type_name -> google.ads.googleads.v17.enums.CallConversionReportingStateEnum.CallConversionReportingState
+ 16, // 3: google.ads.googleads.v17.common.PriceFeedItem.type:type_name -> google.ads.googleads.v17.enums.PriceExtensionTypeEnum.PriceExtensionType
+ 17, // 4: google.ads.googleads.v17.common.PriceFeedItem.price_qualifier:type_name -> google.ads.googleads.v17.enums.PriceExtensionPriceQualifierEnum.PriceExtensionPriceQualifier
+ 7, // 5: google.ads.googleads.v17.common.PriceFeedItem.price_offerings:type_name -> google.ads.googleads.v17.common.PriceOffer
+ 18, // 6: google.ads.googleads.v17.common.PriceOffer.price:type_name -> google.ads.googleads.v17.common.Money
+ 19, // 7: google.ads.googleads.v17.common.PriceOffer.unit:type_name -> google.ads.googleads.v17.enums.PriceExtensionPriceUnitEnum.PriceExtensionPriceUnit
+ 20, // 8: google.ads.googleads.v17.common.PromotionFeedItem.discount_modifier:type_name -> google.ads.googleads.v17.enums.PromotionExtensionDiscountModifierEnum.PromotionExtensionDiscountModifier
+ 21, // 9: google.ads.googleads.v17.common.PromotionFeedItem.occasion:type_name -> google.ads.googleads.v17.enums.PromotionExtensionOccasionEnum.PromotionExtensionOccasion
+ 14, // 10: google.ads.googleads.v17.common.PromotionFeedItem.url_custom_parameters:type_name -> google.ads.googleads.v17.common.CustomParameter
+ 18, // 11: google.ads.googleads.v17.common.PromotionFeedItem.money_amount_off:type_name -> google.ads.googleads.v17.common.Money
+ 18, // 12: google.ads.googleads.v17.common.PromotionFeedItem.orders_over_amount:type_name -> google.ads.googleads.v17.common.Money
+ 14, // 13: google.ads.googleads.v17.common.SitelinkFeedItem.url_custom_parameters:type_name -> google.ads.googleads.v17.common.CustomParameter
14, // [14:14] is the sub-list for method output_type
14, // [14:14] is the sub-list for method input_type
14, // [14:14] is the sub-list for extension type_name
@@ -1815,15 +1815,15 @@ var file_google_ads_googleads_v16_common_extensions_proto_depIdxs = []int32{
0, // [0:14] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_extensions_proto_init() }
-func file_google_ads_googleads_v16_common_extensions_proto_init() {
- if File_google_ads_googleads_v16_common_extensions_proto != nil {
+func init() { file_google_ads_googleads_v17_common_extensions_proto_init() }
+func file_google_ads_googleads_v17_common_extensions_proto_init() {
+ if File_google_ads_googleads_v17_common_extensions_proto != nil {
return
}
- file_google_ads_googleads_v16_common_custom_parameter_proto_init()
- file_google_ads_googleads_v16_common_feed_common_proto_init()
+ file_google_ads_googleads_v17_common_custom_parameter_proto_init()
+ file_google_ads_googleads_v17_common_feed_common_proto_init()
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AppFeedItem); i {
case 0:
return &v.state
@@ -1835,7 +1835,7 @@ func file_google_ads_googleads_v16_common_extensions_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CallFeedItem); i {
case 0:
return &v.state
@@ -1847,7 +1847,7 @@ func file_google_ads_googleads_v16_common_extensions_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CalloutFeedItem); i {
case 0:
return &v.state
@@ -1859,7 +1859,7 @@ func file_google_ads_googleads_v16_common_extensions_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocationFeedItem); i {
case 0:
return &v.state
@@ -1871,7 +1871,7 @@ func file_google_ads_googleads_v16_common_extensions_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AffiliateLocationFeedItem); i {
case 0:
return &v.state
@@ -1883,7 +1883,7 @@ func file_google_ads_googleads_v16_common_extensions_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TextMessageFeedItem); i {
case 0:
return &v.state
@@ -1895,7 +1895,7 @@ func file_google_ads_googleads_v16_common_extensions_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PriceFeedItem); i {
case 0:
return &v.state
@@ -1907,7 +1907,7 @@ func file_google_ads_googleads_v16_common_extensions_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PriceOffer); i {
case 0:
return &v.state
@@ -1919,7 +1919,7 @@ func file_google_ads_googleads_v16_common_extensions_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PromotionFeedItem); i {
case 0:
return &v.state
@@ -1931,7 +1931,7 @@ func file_google_ads_googleads_v16_common_extensions_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*StructuredSnippetFeedItem); i {
case 0:
return &v.state
@@ -1943,7 +1943,7 @@ func file_google_ads_googleads_v16_common_extensions_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SitelinkFeedItem); i {
case 0:
return &v.state
@@ -1955,7 +1955,7 @@ func file_google_ads_googleads_v16_common_extensions_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelCalloutFeedItem); i {
case 0:
return &v.state
@@ -1967,7 +1967,7 @@ func file_google_ads_googleads_v16_common_extensions_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ImageFeedItem); i {
case 0:
return &v.state
@@ -1980,39 +1980,39 @@ func file_google_ads_googleads_v16_common_extensions_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[0].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[1].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[2].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[3].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[4].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[5].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[6].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[7].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[8].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[1].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[2].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[3].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[4].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[5].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[6].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[7].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[8].OneofWrappers = []interface{}{
(*PromotionFeedItem_PercentOff)(nil),
(*PromotionFeedItem_MoneyAmountOff)(nil),
(*PromotionFeedItem_PromotionCode)(nil),
(*PromotionFeedItem_OrdersOverAmount)(nil),
}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[9].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[10].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_extensions_proto_msgTypes[11].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[9].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[10].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_extensions_proto_msgTypes[11].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_extensions_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_extensions_proto_rawDesc,
NumEnums: 0,
NumMessages: 13,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_extensions_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_extensions_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_extensions_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_extensions_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_extensions_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_extensions_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_extensions_proto = out.File
- file_google_ads_googleads_v16_common_extensions_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_extensions_proto_goTypes = nil
- file_google_ads_googleads_v16_common_extensions_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_extensions_proto = out.File
+ file_google_ads_googleads_v17_common_extensions_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_extensions_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_extensions_proto_depIdxs = nil
}
diff --git a/common/feed_common.pb.go b/common/feed_common.pb.go
index a3c031b8..ee72ea08 100644
--- a/common/feed_common.pb.go
+++ b/common/feed_common.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/feed_common.proto
+// source: google/ads/googleads/v17/common/feed_common.proto
package common
@@ -49,7 +49,7 @@ type Money struct {
func (x *Money) Reset() {
*x = Money{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_feed_common_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_feed_common_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -62,7 +62,7 @@ func (x *Money) String() string {
func (*Money) ProtoMessage() {}
func (x *Money) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_feed_common_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_feed_common_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -75,7 +75,7 @@ func (x *Money) ProtoReflect() protoreflect.Message {
// Deprecated: Use Money.ProtoReflect.Descriptor instead.
func (*Money) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_feed_common_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_feed_common_proto_rawDescGZIP(), []int{0}
}
func (x *Money) GetCurrencyCode() string {
@@ -92,14 +92,14 @@ func (x *Money) GetAmountMicros() int64 {
return 0
}
-var File_google_ads_googleads_v16_common_feed_common_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_feed_common_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_feed_common_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_feed_common_proto_rawDesc = []byte{
0x0a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x7f, 0x0a, 0x05, 0x4d, 0x6f, 0x6e, 0x65, 0x79, 0x12, 0x28, 0x0a,
0x0d, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03,
0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0c, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79,
@@ -110,39 +110,39 @@ var file_google_ads_googleads_v16_common_feed_common_proto_rawDesc = []byte{
0x6f, 0x64, 0x65, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6d,
0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0xef, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0f, 0x46,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0f, 0x46,
0x65, 0x65, 0x64, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_feed_common_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_feed_common_proto_rawDescData = file_google_ads_googleads_v16_common_feed_common_proto_rawDesc
+ file_google_ads_googleads_v17_common_feed_common_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_feed_common_proto_rawDescData = file_google_ads_googleads_v17_common_feed_common_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_feed_common_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_feed_common_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_feed_common_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_feed_common_proto_rawDescData)
+func file_google_ads_googleads_v17_common_feed_common_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_feed_common_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_feed_common_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_feed_common_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_feed_common_proto_rawDescData
+ return file_google_ads_googleads_v17_common_feed_common_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_feed_common_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_common_feed_common_proto_goTypes = []interface{}{
- (*Money)(nil), // 0: google.ads.googleads.v16.common.Money
+var file_google_ads_googleads_v17_common_feed_common_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_common_feed_common_proto_goTypes = []interface{}{
+ (*Money)(nil), // 0: google.ads.googleads.v17.common.Money
}
-var file_google_ads_googleads_v16_common_feed_common_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_common_feed_common_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -150,13 +150,13 @@ var file_google_ads_googleads_v16_common_feed_common_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_feed_common_proto_init() }
-func file_google_ads_googleads_v16_common_feed_common_proto_init() {
- if File_google_ads_googleads_v16_common_feed_common_proto != nil {
+func init() { file_google_ads_googleads_v17_common_feed_common_proto_init() }
+func file_google_ads_googleads_v17_common_feed_common_proto_init() {
+ if File_google_ads_googleads_v17_common_feed_common_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_feed_common_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_feed_common_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Money); i {
case 0:
return &v.state
@@ -169,23 +169,23 @@ func file_google_ads_googleads_v16_common_feed_common_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_feed_common_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_feed_common_proto_msgTypes[0].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_feed_common_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_feed_common_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_feed_common_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_feed_common_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_feed_common_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_feed_common_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_feed_common_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_feed_common_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_feed_common_proto = out.File
- file_google_ads_googleads_v16_common_feed_common_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_feed_common_proto_goTypes = nil
- file_google_ads_googleads_v16_common_feed_common_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_feed_common_proto = out.File
+ file_google_ads_googleads_v17_common_feed_common_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_feed_common_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_feed_common_proto_depIdxs = nil
}
diff --git a/common/feed_item_set_filter_type_infos.pb.go b/common/feed_item_set_filter_type_infos.pb.go
index 261a0e47..dd9bd18f 100644
--- a/common/feed_item_set_filter_type_infos.pb.go
+++ b/common/feed_item_set_filter_type_infos.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/feed_item_set_filter_type_infos.proto
+// source: google/ads/googleads/v17/common/feed_item_set_filter_type_infos.proto
package common
@@ -52,7 +52,7 @@ type DynamicLocationSetFilter struct {
func (x *DynamicLocationSetFilter) Reset() {
*x = DynamicLocationSetFilter{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -65,7 +65,7 @@ func (x *DynamicLocationSetFilter) String() string {
func (*DynamicLocationSetFilter) ProtoMessage() {}
func (x *DynamicLocationSetFilter) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -78,7 +78,7 @@ func (x *DynamicLocationSetFilter) ProtoReflect() protoreflect.Message {
// Deprecated: Use DynamicLocationSetFilter.ProtoReflect.Descriptor instead.
func (*DynamicLocationSetFilter) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_rawDescGZIP(), []int{0}
}
func (x *DynamicLocationSetFilter) GetLabels() []string {
@@ -104,13 +104,13 @@ type BusinessNameFilter struct {
// Business name string to use for filtering.
BusinessName string `protobuf:"bytes,1,opt,name=business_name,json=businessName,proto3" json:"business_name,omitempty"`
// The type of string matching to use when filtering with business_name.
- FilterType enums.FeedItemSetStringFilterTypeEnum_FeedItemSetStringFilterType `protobuf:"varint,2,opt,name=filter_type,json=filterType,proto3,enum=google.ads.googleads.v16.enums.FeedItemSetStringFilterTypeEnum_FeedItemSetStringFilterType" json:"filter_type,omitempty"`
+ FilterType enums.FeedItemSetStringFilterTypeEnum_FeedItemSetStringFilterType `protobuf:"varint,2,opt,name=filter_type,json=filterType,proto3,enum=google.ads.googleads.v17.enums.FeedItemSetStringFilterTypeEnum_FeedItemSetStringFilterType" json:"filter_type,omitempty"`
}
func (x *BusinessNameFilter) Reset() {
*x = BusinessNameFilter{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -123,7 +123,7 @@ func (x *BusinessNameFilter) String() string {
func (*BusinessNameFilter) ProtoMessage() {}
func (x *BusinessNameFilter) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -136,7 +136,7 @@ func (x *BusinessNameFilter) ProtoReflect() protoreflect.Message {
// Deprecated: Use BusinessNameFilter.ProtoReflect.Descriptor instead.
func (*BusinessNameFilter) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_rawDescGZIP(), []int{1}
}
func (x *BusinessNameFilter) GetBusinessName() string {
@@ -169,7 +169,7 @@ type DynamicAffiliateLocationSetFilter struct {
func (x *DynamicAffiliateLocationSetFilter) Reset() {
*x = DynamicAffiliateLocationSetFilter{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -182,7 +182,7 @@ func (x *DynamicAffiliateLocationSetFilter) String() string {
func (*DynamicAffiliateLocationSetFilter) ProtoMessage() {}
func (x *DynamicAffiliateLocationSetFilter) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -195,7 +195,7 @@ func (x *DynamicAffiliateLocationSetFilter) ProtoReflect() protoreflect.Message
// Deprecated: Use DynamicAffiliateLocationSetFilter.ProtoReflect.Descriptor instead.
func (*DynamicAffiliateLocationSetFilter) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_rawDescGZIP(), []int{2}
}
func (x *DynamicAffiliateLocationSetFilter) GetChainIds() []int64 {
@@ -205,18 +205,18 @@ func (x *DynamicAffiliateLocationSetFilter) GetChainIds() []int64 {
return nil
}
-var File_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_rawDesc = []byte{
0x0a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f,
0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74,
0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x66, 0x69,
0x6c, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22,
0x99, 0x01, 0x0a, 0x18, 0x44, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x4c, 0x6f, 0x63, 0x61, 0x74,
@@ -225,7 +225,7 @@ var file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_r
0x62, 0x65, 0x6c, 0x73, 0x12, 0x65, 0x0a, 0x14, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73,
0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4e, 0x61, 0x6d,
0x65, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x52, 0x12, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73,
0x73, 0x4e, 0x61, 0x6d, 0x65, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x22, 0xb7, 0x01, 0x0a, 0x12,
@@ -235,7 +235,7 @@ var file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_r
0x65, 0x73, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x7c, 0x0a, 0x0b, 0x66, 0x69, 0x6c, 0x74, 0x65,
0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5b, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x65,
0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x46,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65,
0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x46,
@@ -246,46 +246,46 @@ var file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_r
0x61, 0x69, 0x6e, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x08, 0x63,
0x68, 0x61, 0x69, 0x6e, 0x49, 0x64, 0x73, 0x42, 0xff, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42,
0x1f, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x46, 0x69, 0x6c, 0x74,
0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_rawDescData = file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_rawDesc
+ file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_rawDescData = file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_rawDescData)
+func file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_rawDescData
+ return file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
-var file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_goTypes = []interface{}{
- (*DynamicLocationSetFilter)(nil), // 0: google.ads.googleads.v16.common.DynamicLocationSetFilter
- (*BusinessNameFilter)(nil), // 1: google.ads.googleads.v16.common.BusinessNameFilter
- (*DynamicAffiliateLocationSetFilter)(nil), // 2: google.ads.googleads.v16.common.DynamicAffiliateLocationSetFilter
- (enums.FeedItemSetStringFilterTypeEnum_FeedItemSetStringFilterType)(0), // 3: google.ads.googleads.v16.enums.FeedItemSetStringFilterTypeEnum.FeedItemSetStringFilterType
+var file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
+var file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_goTypes = []interface{}{
+ (*DynamicLocationSetFilter)(nil), // 0: google.ads.googleads.v17.common.DynamicLocationSetFilter
+ (*BusinessNameFilter)(nil), // 1: google.ads.googleads.v17.common.BusinessNameFilter
+ (*DynamicAffiliateLocationSetFilter)(nil), // 2: google.ads.googleads.v17.common.DynamicAffiliateLocationSetFilter
+ (enums.FeedItemSetStringFilterTypeEnum_FeedItemSetStringFilterType)(0), // 3: google.ads.googleads.v17.enums.FeedItemSetStringFilterTypeEnum.FeedItemSetStringFilterType
}
-var file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_depIdxs = []int32{
- 1, // 0: google.ads.googleads.v16.common.DynamicLocationSetFilter.business_name_filter:type_name -> google.ads.googleads.v16.common.BusinessNameFilter
- 3, // 1: google.ads.googleads.v16.common.BusinessNameFilter.filter_type:type_name -> google.ads.googleads.v16.enums.FeedItemSetStringFilterTypeEnum.FeedItemSetStringFilterType
+var file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_depIdxs = []int32{
+ 1, // 0: google.ads.googleads.v17.common.DynamicLocationSetFilter.business_name_filter:type_name -> google.ads.googleads.v17.common.BusinessNameFilter
+ 3, // 1: google.ads.googleads.v17.common.BusinessNameFilter.filter_type:type_name -> google.ads.googleads.v17.enums.FeedItemSetStringFilterTypeEnum.FeedItemSetStringFilterType
2, // [2:2] is the sub-list for method output_type
2, // [2:2] is the sub-list for method input_type
2, // [2:2] is the sub-list for extension type_name
@@ -293,13 +293,13 @@ var file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_d
0, // [0:2] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_init() }
-func file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_init() {
- if File_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto != nil {
+func init() { file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_init() }
+func file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_init() {
+ if File_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DynamicLocationSetFilter); i {
case 0:
return &v.state
@@ -311,7 +311,7 @@ func file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_
return nil
}
}
- file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BusinessNameFilter); i {
case 0:
return &v.state
@@ -323,7 +323,7 @@ func file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_
return nil
}
}
- file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DynamicAffiliateLocationSetFilter); i {
case 0:
return &v.state
@@ -340,18 +340,18 @@ func file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_rawDesc,
NumEnums: 0,
NumMessages: 3,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto = out.File
- file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_goTypes = nil
- file_google_ads_googleads_v16_common_feed_item_set_filter_type_infos_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto = out.File
+ file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_feed_item_set_filter_type_infos_proto_depIdxs = nil
}
diff --git a/common/final_app_url.pb.go b/common/final_app_url.pb.go
index d89e4519..03f33d12 100644
--- a/common/final_app_url.pb.go
+++ b/common/final_app_url.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/final_app_url.proto
+// source: google/ads/googleads/v17/common/final_app_url.proto
package common
@@ -42,7 +42,7 @@ type FinalAppUrl struct {
unknownFields protoimpl.UnknownFields
// The operating system targeted by this URL. Required.
- OsType enums.AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType `protobuf:"varint,1,opt,name=os_type,json=osType,proto3,enum=google.ads.googleads.v16.enums.AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType" json:"os_type,omitempty"`
+ OsType enums.AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType `protobuf:"varint,1,opt,name=os_type,json=osType,proto3,enum=google.ads.googleads.v17.enums.AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType" json:"os_type,omitempty"`
// The app deep link URL. Deep links specify a location in an app that
// corresponds to the content you'd like to show, and should be of the form
// {scheme}://{host_path}
@@ -56,7 +56,7 @@ type FinalAppUrl struct {
func (x *FinalAppUrl) Reset() {
*x = FinalAppUrl{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_final_app_url_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_final_app_url_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -69,7 +69,7 @@ func (x *FinalAppUrl) String() string {
func (*FinalAppUrl) ProtoMessage() {}
func (x *FinalAppUrl) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_final_app_url_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_final_app_url_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -82,7 +82,7 @@ func (x *FinalAppUrl) ProtoReflect() protoreflect.Message {
// Deprecated: Use FinalAppUrl.ProtoReflect.Descriptor instead.
func (*FinalAppUrl) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_final_app_url_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_final_app_url_proto_rawDescGZIP(), []int{0}
}
func (x *FinalAppUrl) GetOsType() enums.AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType {
@@ -99,23 +99,23 @@ func (x *FinalAppUrl) GetUrl() string {
return ""
}
-var File_google_ads_googleads_v16_common_final_app_url_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_final_app_url_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_final_app_url_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_final_app_url_proto_rawDesc = []byte{
0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x75, 0x72, 0x6c, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x42, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x70, 0x70, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x6f,
0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x5f,
0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x9e, 0x01, 0x0a, 0x0b, 0x46,
0x69, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x55, 0x72, 0x6c, 0x12, 0x70, 0x0a, 0x07, 0x6f, 0x73,
0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x57, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x70, 0x70,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x70, 0x70,
0x55, 0x72, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74,
0x65, 0x6d, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x70, 0x70, 0x55, 0x72,
0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d,
@@ -123,42 +123,42 @@ var file_google_ads_googleads_v16_common_final_app_url_proto_rawDesc = []byte{
0x75, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x03, 0x75, 0x72, 0x6c,
0x88, 0x01, 0x01, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0xf0, 0x01, 0x0a, 0x23,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x42, 0x10, 0x46, 0x69, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x55, 0x72, 0x6c,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_final_app_url_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_final_app_url_proto_rawDescData = file_google_ads_googleads_v16_common_final_app_url_proto_rawDesc
+ file_google_ads_googleads_v17_common_final_app_url_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_final_app_url_proto_rawDescData = file_google_ads_googleads_v17_common_final_app_url_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_final_app_url_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_final_app_url_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_final_app_url_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_final_app_url_proto_rawDescData)
+func file_google_ads_googleads_v17_common_final_app_url_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_final_app_url_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_final_app_url_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_final_app_url_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_final_app_url_proto_rawDescData
+ return file_google_ads_googleads_v17_common_final_app_url_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_final_app_url_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_common_final_app_url_proto_goTypes = []interface{}{
- (*FinalAppUrl)(nil), // 0: google.ads.googleads.v16.common.FinalAppUrl
- (enums.AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType)(0), // 1: google.ads.googleads.v16.enums.AppUrlOperatingSystemTypeEnum.AppUrlOperatingSystemType
+var file_google_ads_googleads_v17_common_final_app_url_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_common_final_app_url_proto_goTypes = []interface{}{
+ (*FinalAppUrl)(nil), // 0: google.ads.googleads.v17.common.FinalAppUrl
+ (enums.AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType)(0), // 1: google.ads.googleads.v17.enums.AppUrlOperatingSystemTypeEnum.AppUrlOperatingSystemType
}
-var file_google_ads_googleads_v16_common_final_app_url_proto_depIdxs = []int32{
- 1, // 0: google.ads.googleads.v16.common.FinalAppUrl.os_type:type_name -> google.ads.googleads.v16.enums.AppUrlOperatingSystemTypeEnum.AppUrlOperatingSystemType
+var file_google_ads_googleads_v17_common_final_app_url_proto_depIdxs = []int32{
+ 1, // 0: google.ads.googleads.v17.common.FinalAppUrl.os_type:type_name -> google.ads.googleads.v17.enums.AppUrlOperatingSystemTypeEnum.AppUrlOperatingSystemType
1, // [1:1] is the sub-list for method output_type
1, // [1:1] is the sub-list for method input_type
1, // [1:1] is the sub-list for extension type_name
@@ -166,13 +166,13 @@ var file_google_ads_googleads_v16_common_final_app_url_proto_depIdxs = []int32{
0, // [0:1] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_final_app_url_proto_init() }
-func file_google_ads_googleads_v16_common_final_app_url_proto_init() {
- if File_google_ads_googleads_v16_common_final_app_url_proto != nil {
+func init() { file_google_ads_googleads_v17_common_final_app_url_proto_init() }
+func file_google_ads_googleads_v17_common_final_app_url_proto_init() {
+ if File_google_ads_googleads_v17_common_final_app_url_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_final_app_url_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_final_app_url_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FinalAppUrl); i {
case 0:
return &v.state
@@ -185,23 +185,23 @@ func file_google_ads_googleads_v16_common_final_app_url_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_final_app_url_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_final_app_url_proto_msgTypes[0].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_final_app_url_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_final_app_url_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_final_app_url_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_final_app_url_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_final_app_url_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_final_app_url_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_final_app_url_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_final_app_url_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_final_app_url_proto = out.File
- file_google_ads_googleads_v16_common_final_app_url_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_final_app_url_proto_goTypes = nil
- file_google_ads_googleads_v16_common_final_app_url_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_final_app_url_proto = out.File
+ file_google_ads_googleads_v17_common_final_app_url_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_final_app_url_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_final_app_url_proto_depIdxs = nil
}
diff --git a/common/frequency_cap.pb.go b/common/frequency_cap.pb.go
index d3dc4c36..7581849f 100644
--- a/common/frequency_cap.pb.go
+++ b/common/frequency_cap.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/frequency_cap.proto
+// source: google/ads/googleads/v17/common/frequency_cap.proto
package common
@@ -52,7 +52,7 @@ type FrequencyCapEntry struct {
func (x *FrequencyCapEntry) Reset() {
*x = FrequencyCapEntry{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_frequency_cap_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_frequency_cap_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -65,7 +65,7 @@ func (x *FrequencyCapEntry) String() string {
func (*FrequencyCapEntry) ProtoMessage() {}
func (x *FrequencyCapEntry) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_frequency_cap_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_frequency_cap_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -78,7 +78,7 @@ func (x *FrequencyCapEntry) ProtoReflect() protoreflect.Message {
// Deprecated: Use FrequencyCapEntry.ProtoReflect.Descriptor instead.
func (*FrequencyCapEntry) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_frequency_cap_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_frequency_cap_proto_rawDescGZIP(), []int{0}
}
func (x *FrequencyCapEntry) GetKey() *FrequencyCapKey {
@@ -104,11 +104,11 @@ type FrequencyCapKey struct {
// The level on which the cap is to be applied (for example, ad group ad, ad
// group). The cap is applied to all the entities of this level.
- Level enums.FrequencyCapLevelEnum_FrequencyCapLevel `protobuf:"varint,1,opt,name=level,proto3,enum=google.ads.googleads.v16.enums.FrequencyCapLevelEnum_FrequencyCapLevel" json:"level,omitempty"`
+ Level enums.FrequencyCapLevelEnum_FrequencyCapLevel `protobuf:"varint,1,opt,name=level,proto3,enum=google.ads.googleads.v17.enums.FrequencyCapLevelEnum_FrequencyCapLevel" json:"level,omitempty"`
// The type of event that the cap applies to (for example, impression).
- EventType enums.FrequencyCapEventTypeEnum_FrequencyCapEventType `protobuf:"varint,3,opt,name=event_type,json=eventType,proto3,enum=google.ads.googleads.v16.enums.FrequencyCapEventTypeEnum_FrequencyCapEventType" json:"event_type,omitempty"`
+ EventType enums.FrequencyCapEventTypeEnum_FrequencyCapEventType `protobuf:"varint,3,opt,name=event_type,json=eventType,proto3,enum=google.ads.googleads.v17.enums.FrequencyCapEventTypeEnum_FrequencyCapEventType" json:"event_type,omitempty"`
// Unit of time the cap is defined at (for example, day, week).
- TimeUnit enums.FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit `protobuf:"varint,2,opt,name=time_unit,json=timeUnit,proto3,enum=google.ads.googleads.v16.enums.FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit" json:"time_unit,omitempty"`
+ TimeUnit enums.FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit `protobuf:"varint,2,opt,name=time_unit,json=timeUnit,proto3,enum=google.ads.googleads.v17.enums.FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit" json:"time_unit,omitempty"`
// Number of time units the cap lasts.
TimeLength *int32 `protobuf:"varint,5,opt,name=time_length,json=timeLength,proto3,oneof" json:"time_length,omitempty"`
}
@@ -116,7 +116,7 @@ type FrequencyCapKey struct {
func (x *FrequencyCapKey) Reset() {
*x = FrequencyCapKey{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_frequency_cap_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_frequency_cap_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -129,7 +129,7 @@ func (x *FrequencyCapKey) String() string {
func (*FrequencyCapKey) ProtoMessage() {}
func (x *FrequencyCapKey) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_frequency_cap_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_frequency_cap_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -142,7 +142,7 @@ func (x *FrequencyCapKey) ProtoReflect() protoreflect.Message {
// Deprecated: Use FrequencyCapKey.ProtoReflect.Descriptor instead.
func (*FrequencyCapKey) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_frequency_cap_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_frequency_cap_proto_rawDescGZIP(), []int{1}
}
func (x *FrequencyCapKey) GetLevel() enums.FrequencyCapLevelEnum_FrequencyCapLevel {
@@ -173,30 +173,30 @@ func (x *FrequencyCapKey) GetTimeLength() int32 {
return 0
}
-var File_google_ads_googleads_v16_common_frequency_cap_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_frequency_cap_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_frequency_cap_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_frequency_cap_proto_rawDesc = []byte{
0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x61, 0x70, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79,
0x5f, 0x63, 0x61, 0x70, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f,
0x63, 0x61, 0x70, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f,
0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x61, 0x70, 0x5f, 0x74, 0x69,
0x6d, 0x65, 0x5f, 0x75, 0x6e, 0x69, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x76, 0x0a,
0x11, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x45, 0x6e, 0x74,
0x72, 0x79, 0x12, 0x42, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x30, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2e, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x4b, 0x65,
0x79, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x15, 0x0a, 0x03, 0x63, 0x61, 0x70, 0x18, 0x03, 0x20,
0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x03, 0x63, 0x61, 0x70, 0x88, 0x01, 0x01, 0x42, 0x06, 0x0a,
@@ -204,20 +204,20 @@ var file_google_ads_googleads_v16_common_frequency_cap_proto_rawDesc = []byte{
0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x4b, 0x65, 0x79, 0x12, 0x5d, 0x0a, 0x05, 0x6c, 0x65, 0x76,
0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x47, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65,
0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x4c, 0x65, 0x76, 0x65,
0x6c, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x6e, 0x0a, 0x0a, 0x65, 0x76, 0x65, 0x6e,
0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4f, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x72,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x72,
0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x54,
0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63,
0x79, 0x43, 0x61, 0x70, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x09, 0x65,
0x76, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x6a, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65,
0x5f, 0x75, 0x6e, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x72, 0x65,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x72, 0x65,
0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x54, 0x69, 0x6d, 0x65, 0x55, 0x6e, 0x69,
0x74, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43,
0x61, 0x70, 0x54, 0x69, 0x6d, 0x65, 0x55, 0x6e, 0x69, 0x74, 0x52, 0x08, 0x74, 0x69, 0x6d, 0x65,
@@ -226,48 +226,48 @@ var file_google_ads_googleads_v16_common_frequency_cap_proto_rawDesc = []byte{
0x65, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x88, 0x01, 0x01, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x74,
0x69, 0x6d, 0x65, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x42, 0xf1, 0x01, 0x0a, 0x23, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x42, 0x11, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_frequency_cap_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_frequency_cap_proto_rawDescData = file_google_ads_googleads_v16_common_frequency_cap_proto_rawDesc
+ file_google_ads_googleads_v17_common_frequency_cap_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_frequency_cap_proto_rawDescData = file_google_ads_googleads_v17_common_frequency_cap_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_frequency_cap_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_frequency_cap_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_frequency_cap_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_frequency_cap_proto_rawDescData)
+func file_google_ads_googleads_v17_common_frequency_cap_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_frequency_cap_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_frequency_cap_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_frequency_cap_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_frequency_cap_proto_rawDescData
+ return file_google_ads_googleads_v17_common_frequency_cap_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_frequency_cap_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
-var file_google_ads_googleads_v16_common_frequency_cap_proto_goTypes = []interface{}{
- (*FrequencyCapEntry)(nil), // 0: google.ads.googleads.v16.common.FrequencyCapEntry
- (*FrequencyCapKey)(nil), // 1: google.ads.googleads.v16.common.FrequencyCapKey
- (enums.FrequencyCapLevelEnum_FrequencyCapLevel)(0), // 2: google.ads.googleads.v16.enums.FrequencyCapLevelEnum.FrequencyCapLevel
- (enums.FrequencyCapEventTypeEnum_FrequencyCapEventType)(0), // 3: google.ads.googleads.v16.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType
- (enums.FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit)(0), // 4: google.ads.googleads.v16.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit
+var file_google_ads_googleads_v17_common_frequency_cap_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
+var file_google_ads_googleads_v17_common_frequency_cap_proto_goTypes = []interface{}{
+ (*FrequencyCapEntry)(nil), // 0: google.ads.googleads.v17.common.FrequencyCapEntry
+ (*FrequencyCapKey)(nil), // 1: google.ads.googleads.v17.common.FrequencyCapKey
+ (enums.FrequencyCapLevelEnum_FrequencyCapLevel)(0), // 2: google.ads.googleads.v17.enums.FrequencyCapLevelEnum.FrequencyCapLevel
+ (enums.FrequencyCapEventTypeEnum_FrequencyCapEventType)(0), // 3: google.ads.googleads.v17.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType
+ (enums.FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit)(0), // 4: google.ads.googleads.v17.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit
}
-var file_google_ads_googleads_v16_common_frequency_cap_proto_depIdxs = []int32{
- 1, // 0: google.ads.googleads.v16.common.FrequencyCapEntry.key:type_name -> google.ads.googleads.v16.common.FrequencyCapKey
- 2, // 1: google.ads.googleads.v16.common.FrequencyCapKey.level:type_name -> google.ads.googleads.v16.enums.FrequencyCapLevelEnum.FrequencyCapLevel
- 3, // 2: google.ads.googleads.v16.common.FrequencyCapKey.event_type:type_name -> google.ads.googleads.v16.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType
- 4, // 3: google.ads.googleads.v16.common.FrequencyCapKey.time_unit:type_name -> google.ads.googleads.v16.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit
+var file_google_ads_googleads_v17_common_frequency_cap_proto_depIdxs = []int32{
+ 1, // 0: google.ads.googleads.v17.common.FrequencyCapEntry.key:type_name -> google.ads.googleads.v17.common.FrequencyCapKey
+ 2, // 1: google.ads.googleads.v17.common.FrequencyCapKey.level:type_name -> google.ads.googleads.v17.enums.FrequencyCapLevelEnum.FrequencyCapLevel
+ 3, // 2: google.ads.googleads.v17.common.FrequencyCapKey.event_type:type_name -> google.ads.googleads.v17.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType
+ 4, // 3: google.ads.googleads.v17.common.FrequencyCapKey.time_unit:type_name -> google.ads.googleads.v17.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit
4, // [4:4] is the sub-list for method output_type
4, // [4:4] is the sub-list for method input_type
4, // [4:4] is the sub-list for extension type_name
@@ -275,13 +275,13 @@ var file_google_ads_googleads_v16_common_frequency_cap_proto_depIdxs = []int32{
0, // [0:4] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_frequency_cap_proto_init() }
-func file_google_ads_googleads_v16_common_frequency_cap_proto_init() {
- if File_google_ads_googleads_v16_common_frequency_cap_proto != nil {
+func init() { file_google_ads_googleads_v17_common_frequency_cap_proto_init() }
+func file_google_ads_googleads_v17_common_frequency_cap_proto_init() {
+ if File_google_ads_googleads_v17_common_frequency_cap_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_frequency_cap_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_frequency_cap_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FrequencyCapEntry); i {
case 0:
return &v.state
@@ -293,7 +293,7 @@ func file_google_ads_googleads_v16_common_frequency_cap_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_frequency_cap_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_frequency_cap_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FrequencyCapKey); i {
case 0:
return &v.state
@@ -306,24 +306,24 @@ func file_google_ads_googleads_v16_common_frequency_cap_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_frequency_cap_proto_msgTypes[0].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_frequency_cap_proto_msgTypes[1].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_frequency_cap_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_frequency_cap_proto_msgTypes[1].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_frequency_cap_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_frequency_cap_proto_rawDesc,
NumEnums: 0,
NumMessages: 2,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_frequency_cap_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_frequency_cap_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_frequency_cap_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_frequency_cap_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_frequency_cap_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_frequency_cap_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_frequency_cap_proto = out.File
- file_google_ads_googleads_v16_common_frequency_cap_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_frequency_cap_proto_goTypes = nil
- file_google_ads_googleads_v16_common_frequency_cap_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_frequency_cap_proto = out.File
+ file_google_ads_googleads_v17_common_frequency_cap_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_frequency_cap_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_frequency_cap_proto_depIdxs = nil
}
diff --git a/common/keyword_plan_common.pb.go b/common/keyword_plan_common.pb.go
index e188712e..eb2cd27c 100644
--- a/common/keyword_plan_common.pb.go
+++ b/common/keyword_plan_common.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/keyword_plan_common.proto
+// source: google/ads/googleads/v17/common/keyword_plan_common.proto
package common
@@ -50,7 +50,7 @@ type KeywordPlanHistoricalMetrics struct {
// Approximate number of searches on this query for the past twelve months.
MonthlySearchVolumes []*MonthlySearchVolume `protobuf:"bytes,6,rep,name=monthly_search_volumes,json=monthlySearchVolumes,proto3" json:"monthly_search_volumes,omitempty"`
// The competition level for the query.
- Competition enums.KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel `protobuf:"varint,2,opt,name=competition,proto3,enum=google.ads.googleads.v16.enums.KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel" json:"competition,omitempty"`
+ Competition enums.KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel `protobuf:"varint,2,opt,name=competition,proto3,enum=google.ads.googleads.v17.enums.KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel" json:"competition,omitempty"`
// The competition index for the query in the range [0, 100].
// Shows how competitive ad placement is for a keyword.
// The level of competition from 0-100 is determined by the number of ad slots
@@ -68,7 +68,7 @@ type KeywordPlanHistoricalMetrics struct {
func (x *KeywordPlanHistoricalMetrics) Reset() {
*x = KeywordPlanHistoricalMetrics{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -81,7 +81,7 @@ func (x *KeywordPlanHistoricalMetrics) String() string {
func (*KeywordPlanHistoricalMetrics) ProtoMessage() {}
func (x *KeywordPlanHistoricalMetrics) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -94,7 +94,7 @@ func (x *KeywordPlanHistoricalMetrics) ProtoReflect() protoreflect.Message {
// Deprecated: Use KeywordPlanHistoricalMetrics.ProtoReflect.Descriptor instead.
func (*KeywordPlanHistoricalMetrics) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDescGZIP(), []int{0}
}
func (x *KeywordPlanHistoricalMetrics) GetAvgMonthlySearches() int64 {
@@ -166,7 +166,7 @@ type HistoricalMetricsOptions struct {
func (x *HistoricalMetricsOptions) Reset() {
*x = HistoricalMetricsOptions{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -179,7 +179,7 @@ func (x *HistoricalMetricsOptions) String() string {
func (*HistoricalMetricsOptions) ProtoMessage() {}
func (x *HistoricalMetricsOptions) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -192,7 +192,7 @@ func (x *HistoricalMetricsOptions) ProtoReflect() protoreflect.Message {
// Deprecated: Use HistoricalMetricsOptions.ProtoReflect.Descriptor instead.
func (*HistoricalMetricsOptions) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDescGZIP(), []int{1}
}
func (x *HistoricalMetricsOptions) GetYearMonthRange() *YearMonthRange {
@@ -218,7 +218,7 @@ type MonthlySearchVolume struct {
// The year of the search volume (for example, 2020).
Year *int64 `protobuf:"varint,4,opt,name=year,proto3,oneof" json:"year,omitempty"`
// The month of the search volume.
- Month enums.MonthOfYearEnum_MonthOfYear `protobuf:"varint,2,opt,name=month,proto3,enum=google.ads.googleads.v16.enums.MonthOfYearEnum_MonthOfYear" json:"month,omitempty"`
+ Month enums.MonthOfYearEnum_MonthOfYear `protobuf:"varint,2,opt,name=month,proto3,enum=google.ads.googleads.v17.enums.MonthOfYearEnum_MonthOfYear" json:"month,omitempty"`
// Approximate number of searches for the month.
// A null value indicates the search volume is unavailable for
// that month.
@@ -228,7 +228,7 @@ type MonthlySearchVolume struct {
func (x *MonthlySearchVolume) Reset() {
*x = MonthlySearchVolume{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -241,7 +241,7 @@ func (x *MonthlySearchVolume) String() string {
func (*MonthlySearchVolume) ProtoMessage() {}
func (x *MonthlySearchVolume) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -254,7 +254,7 @@ func (x *MonthlySearchVolume) ProtoReflect() protoreflect.Message {
// Deprecated: Use MonthlySearchVolume.ProtoReflect.Descriptor instead.
func (*MonthlySearchVolume) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDescGZIP(), []int{2}
}
func (x *MonthlySearchVolume) GetYear() int64 {
@@ -285,13 +285,13 @@ type KeywordPlanAggregateMetrics struct {
unknownFields protoimpl.UnknownFields
// The list of aggregate metrics to fetch data.
- AggregateMetricTypes []enums.KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType `protobuf:"varint,1,rep,packed,name=aggregate_metric_types,json=aggregateMetricTypes,proto3,enum=google.ads.googleads.v16.enums.KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType" json:"aggregate_metric_types,omitempty"`
+ AggregateMetricTypes []enums.KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType `protobuf:"varint,1,rep,packed,name=aggregate_metric_types,json=aggregateMetricTypes,proto3,enum=google.ads.googleads.v17.enums.KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType" json:"aggregate_metric_types,omitempty"`
}
func (x *KeywordPlanAggregateMetrics) Reset() {
*x = KeywordPlanAggregateMetrics{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -304,7 +304,7 @@ func (x *KeywordPlanAggregateMetrics) String() string {
func (*KeywordPlanAggregateMetrics) ProtoMessage() {}
func (x *KeywordPlanAggregateMetrics) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -317,7 +317,7 @@ func (x *KeywordPlanAggregateMetrics) ProtoReflect() protoreflect.Message {
// Deprecated: Use KeywordPlanAggregateMetrics.ProtoReflect.Descriptor instead.
func (*KeywordPlanAggregateMetrics) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDescGZIP(), []int{3}
+ return file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDescGZIP(), []int{3}
}
func (x *KeywordPlanAggregateMetrics) GetAggregateMetricTypes() []enums.KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType {
@@ -345,7 +345,7 @@ type KeywordPlanAggregateMetricResults struct {
func (x *KeywordPlanAggregateMetricResults) Reset() {
*x = KeywordPlanAggregateMetricResults{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -358,7 +358,7 @@ func (x *KeywordPlanAggregateMetricResults) String() string {
func (*KeywordPlanAggregateMetricResults) ProtoMessage() {}
func (x *KeywordPlanAggregateMetricResults) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -371,7 +371,7 @@ func (x *KeywordPlanAggregateMetricResults) ProtoReflect() protoreflect.Message
// Deprecated: Use KeywordPlanAggregateMetricResults.ProtoReflect.Descriptor instead.
func (*KeywordPlanAggregateMetricResults) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDescGZIP(), []int{4}
+ return file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDescGZIP(), []int{4}
}
func (x *KeywordPlanAggregateMetricResults) GetDeviceSearches() []*KeywordPlanDeviceSearches {
@@ -388,7 +388,7 @@ type KeywordPlanDeviceSearches struct {
unknownFields protoimpl.UnknownFields
// The device type.
- Device enums.DeviceEnum_Device `protobuf:"varint,1,opt,name=device,proto3,enum=google.ads.googleads.v16.enums.DeviceEnum_Device" json:"device,omitempty"`
+ Device enums.DeviceEnum_Device `protobuf:"varint,1,opt,name=device,proto3,enum=google.ads.googleads.v17.enums.DeviceEnum_Device" json:"device,omitempty"`
// The total searches for the device.
SearchCount *int64 `protobuf:"varint,2,opt,name=search_count,json=searchCount,proto3,oneof" json:"search_count,omitempty"`
}
@@ -396,7 +396,7 @@ type KeywordPlanDeviceSearches struct {
func (x *KeywordPlanDeviceSearches) Reset() {
*x = KeywordPlanDeviceSearches{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -409,7 +409,7 @@ func (x *KeywordPlanDeviceSearches) String() string {
func (*KeywordPlanDeviceSearches) ProtoMessage() {}
func (x *KeywordPlanDeviceSearches) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -422,7 +422,7 @@ func (x *KeywordPlanDeviceSearches) ProtoReflect() protoreflect.Message {
// Deprecated: Use KeywordPlanDeviceSearches.ProtoReflect.Descriptor instead.
func (*KeywordPlanDeviceSearches) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDescGZIP(), []int{5}
+ return file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDescGZIP(), []int{5}
}
func (x *KeywordPlanDeviceSearches) GetDevice() enums.DeviceEnum_Device {
@@ -452,7 +452,7 @@ type KeywordAnnotations struct {
func (x *KeywordAnnotations) Reset() {
*x = KeywordAnnotations{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -465,7 +465,7 @@ func (x *KeywordAnnotations) String() string {
func (*KeywordAnnotations) ProtoMessage() {}
func (x *KeywordAnnotations) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -478,7 +478,7 @@ func (x *KeywordAnnotations) ProtoReflect() protoreflect.Message {
// Deprecated: Use KeywordAnnotations.ProtoReflect.Descriptor instead.
func (*KeywordAnnotations) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDescGZIP(), []int{6}
+ return file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDescGZIP(), []int{6}
}
func (x *KeywordAnnotations) GetConcepts() []*KeywordConcept {
@@ -503,7 +503,7 @@ type KeywordConcept struct {
func (x *KeywordConcept) Reset() {
*x = KeywordConcept{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -516,7 +516,7 @@ func (x *KeywordConcept) String() string {
func (*KeywordConcept) ProtoMessage() {}
func (x *KeywordConcept) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -529,7 +529,7 @@ func (x *KeywordConcept) ProtoReflect() protoreflect.Message {
// Deprecated: Use KeywordConcept.ProtoReflect.Descriptor instead.
func (*KeywordConcept) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDescGZIP(), []int{7}
+ return file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDescGZIP(), []int{7}
}
func (x *KeywordConcept) GetName() string {
@@ -555,13 +555,13 @@ type ConceptGroup struct {
// The concept group name.
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
// The concept group type.
- Type enums.KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType `protobuf:"varint,2,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType" json:"type,omitempty"`
+ Type enums.KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType `protobuf:"varint,2,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType" json:"type,omitempty"`
}
func (x *ConceptGroup) Reset() {
*x = ConceptGroup{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -574,7 +574,7 @@ func (x *ConceptGroup) String() string {
func (*ConceptGroup) ProtoMessage() {}
func (x *ConceptGroup) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -587,7 +587,7 @@ func (x *ConceptGroup) ProtoReflect() protoreflect.Message {
// Deprecated: Use ConceptGroup.ProtoReflect.Descriptor instead.
func (*ConceptGroup) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDescGZIP(), []int{8}
+ return file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDescGZIP(), []int{8}
}
func (x *ConceptGroup) GetName() string {
@@ -604,36 +604,36 @@ func (x *ConceptGroup) GetType() enums.KeywordPlanConceptGroupTypeEnum_KeywordPl
return enums.KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType(0)
}
-var File_google_ads_googleads_v16_common_keyword_plan_common_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_keyword_plan_common_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x2b, 0x67, 0x6f,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x2b, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x64, 0x61,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x64, 0x61,
0x74, 0x65, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2b, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x47, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70,
0x6c, 0x61, 0x6e, 0x5f, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x65,
0x74, 0x72, 0x69, 0x63, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f,
0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x6f, 0x6d,
0x70, 0x65, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61,
0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x63, 0x65, 0x70, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f,
0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x32, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d, 0x6f, 0x6e, 0x74, 0x68,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d, 0x6f, 0x6e, 0x74, 0x68,
0x5f, 0x6f, 0x66, 0x5f, 0x79, 0x65, 0x61, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xac,
0x05, 0x0a, 0x1c, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x48, 0x69,
0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12,
@@ -644,13 +644,13 @@ var file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDesc = []b
0x79, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x73,
0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x6c, 0x79,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x6c, 0x79,
0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x14, 0x6d, 0x6f,
0x6e, 0x74, 0x68, 0x6c, 0x79, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x56, 0x6f, 0x6c, 0x75, 0x6d,
0x65, 0x73, 0x12, 0x7d, 0x0a, 0x0b, 0x63, 0x6f, 0x6d, 0x70, 0x65, 0x74, 0x69, 0x74, 0x69, 0x6f,
0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64,
0x50, 0x6c, 0x61, 0x6e, 0x43, 0x6f, 0x6d, 0x70, 0x65, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x4c,
0x65, 0x76, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64,
0x50, 0x6c, 0x61, 0x6e, 0x43, 0x6f, 0x6d, 0x70, 0x65, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x4c,
@@ -682,7 +682,7 @@ var file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDesc = []b
0x69, 0x63, 0x73, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x5e, 0x0a, 0x10, 0x79, 0x65,
0x61, 0x72, 0x5f, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0x01,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x65, 0x61, 0x72, 0x4d, 0x6f, 0x6e, 0x74, 0x68,
0x52, 0x61, 0x6e, 0x67, 0x65, 0x48, 0x00, 0x52, 0x0e, 0x79, 0x65, 0x61, 0x72, 0x4d, 0x6f, 0x6e,
0x74, 0x68, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2e, 0x0a, 0x13, 0x69, 0x6e,
@@ -695,7 +695,7 @@ var file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDesc = []b
0x04, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x04, 0x79, 0x65, 0x61, 0x72, 0x88, 0x01, 0x01,
0x12, 0x51, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32,
0x3b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2e, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x4f, 0x66, 0x59, 0x65, 0x61, 0x72, 0x45, 0x6e, 0x75, 0x6d,
0x2e, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x4f, 0x66, 0x59, 0x65, 0x61, 0x72, 0x52, 0x05, 0x6d, 0x6f,
0x6e, 0x74, 0x68, 0x12, 0x2e, 0x0a, 0x10, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x6c, 0x79, 0x5f, 0x73,
@@ -708,7 +708,7 @@ var file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDesc = []b
0x73, 0x12, 0x97, 0x01, 0x0a, 0x16, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x5f,
0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03,
0x28, 0x0e, 0x32, 0x61, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41,
0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x54, 0x79,
0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c,
@@ -720,14 +720,14 @@ var file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDesc = []b
0x73, 0x12, 0x63, 0x0a, 0x0f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x73, 0x65, 0x61, 0x72,
0x63, 0x68, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79,
0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x53, 0x65,
0x61, 0x72, 0x63, 0x68, 0x65, 0x73, 0x52, 0x0e, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x53, 0x65,
0x61, 0x72, 0x63, 0x68, 0x65, 0x73, 0x22, 0x9f, 0x01, 0x0a, 0x19, 0x4b, 0x65, 0x79, 0x77, 0x6f,
0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x53, 0x65, 0x61, 0x72,
0x63, 0x68, 0x65, 0x73, 0x12, 0x49, 0x0a, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x18, 0x01,
0x20, 0x01, 0x28, 0x0e, 0x32, 0x31, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d,
0x2e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x52, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x12,
0x26, 0x0a, 0x0c, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18,
@@ -737,7 +737,7 @@ var file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDesc = []b
0x6f, 0x72, 0x64, 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x4b,
0x0a, 0x08, 0x63, 0x6f, 0x6e, 0x63, 0x65, 0x70, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6e, 0x63, 0x65, 0x70,
0x74, 0x52, 0x08, 0x63, 0x6f, 0x6e, 0x63, 0x65, 0x70, 0x74, 0x73, 0x22, 0x78, 0x0a, 0x0e, 0x4b,
0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6e, 0x63, 0x65, 0x70, 0x74, 0x12, 0x12, 0x0a,
@@ -745,77 +745,77 @@ var file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDesc = []b
0x65, 0x12, 0x52, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x63, 0x65, 0x70, 0x74, 0x5f, 0x67, 0x72, 0x6f,
0x75, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6e, 0x63, 0x65,
+ 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6e, 0x63, 0x65,
0x70, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0c, 0x63, 0x6f, 0x6e, 0x63, 0x65, 0x70, 0x74,
0x47, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x93, 0x01, 0x0a, 0x0c, 0x43, 0x6f, 0x6e, 0x63, 0x65, 0x70,
0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x6f, 0x0a, 0x04, 0x74, 0x79,
0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72,
0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x6f, 0x6e, 0x63, 0x65, 0x70, 0x74, 0x47, 0x72, 0x6f, 0x75,
0x70, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72,
0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x6f, 0x6e, 0x63, 0x65, 0x70, 0x74, 0x47, 0x72, 0x6f, 0x75,
0x70, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x42, 0xf6, 0x01, 0x0a, 0x23,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x42, 0x16, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e,
0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02,
0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDescData = file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDesc
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDescData = file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDescData)
+func file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes = make([]protoimpl.MessageInfo, 9)
-var file_google_ads_googleads_v16_common_keyword_plan_common_proto_goTypes = []interface{}{
- (*KeywordPlanHistoricalMetrics)(nil), // 0: google.ads.googleads.v16.common.KeywordPlanHistoricalMetrics
- (*HistoricalMetricsOptions)(nil), // 1: google.ads.googleads.v16.common.HistoricalMetricsOptions
- (*MonthlySearchVolume)(nil), // 2: google.ads.googleads.v16.common.MonthlySearchVolume
- (*KeywordPlanAggregateMetrics)(nil), // 3: google.ads.googleads.v16.common.KeywordPlanAggregateMetrics
- (*KeywordPlanAggregateMetricResults)(nil), // 4: google.ads.googleads.v16.common.KeywordPlanAggregateMetricResults
- (*KeywordPlanDeviceSearches)(nil), // 5: google.ads.googleads.v16.common.KeywordPlanDeviceSearches
- (*KeywordAnnotations)(nil), // 6: google.ads.googleads.v16.common.KeywordAnnotations
- (*KeywordConcept)(nil), // 7: google.ads.googleads.v16.common.KeywordConcept
- (*ConceptGroup)(nil), // 8: google.ads.googleads.v16.common.ConceptGroup
- (enums.KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel)(0), // 9: google.ads.googleads.v16.enums.KeywordPlanCompetitionLevelEnum.KeywordPlanCompetitionLevel
- (*YearMonthRange)(nil), // 10: google.ads.googleads.v16.common.YearMonthRange
- (enums.MonthOfYearEnum_MonthOfYear)(0), // 11: google.ads.googleads.v16.enums.MonthOfYearEnum.MonthOfYear
- (enums.KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType)(0), // 12: google.ads.googleads.v16.enums.KeywordPlanAggregateMetricTypeEnum.KeywordPlanAggregateMetricType
- (enums.DeviceEnum_Device)(0), // 13: google.ads.googleads.v16.enums.DeviceEnum.Device
- (enums.KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType)(0), // 14: google.ads.googleads.v16.enums.KeywordPlanConceptGroupTypeEnum.KeywordPlanConceptGroupType
-}
-var file_google_ads_googleads_v16_common_keyword_plan_common_proto_depIdxs = []int32{
- 2, // 0: google.ads.googleads.v16.common.KeywordPlanHistoricalMetrics.monthly_search_volumes:type_name -> google.ads.googleads.v16.common.MonthlySearchVolume
- 9, // 1: google.ads.googleads.v16.common.KeywordPlanHistoricalMetrics.competition:type_name -> google.ads.googleads.v16.enums.KeywordPlanCompetitionLevelEnum.KeywordPlanCompetitionLevel
- 10, // 2: google.ads.googleads.v16.common.HistoricalMetricsOptions.year_month_range:type_name -> google.ads.googleads.v16.common.YearMonthRange
- 11, // 3: google.ads.googleads.v16.common.MonthlySearchVolume.month:type_name -> google.ads.googleads.v16.enums.MonthOfYearEnum.MonthOfYear
- 12, // 4: google.ads.googleads.v16.common.KeywordPlanAggregateMetrics.aggregate_metric_types:type_name -> google.ads.googleads.v16.enums.KeywordPlanAggregateMetricTypeEnum.KeywordPlanAggregateMetricType
- 5, // 5: google.ads.googleads.v16.common.KeywordPlanAggregateMetricResults.device_searches:type_name -> google.ads.googleads.v16.common.KeywordPlanDeviceSearches
- 13, // 6: google.ads.googleads.v16.common.KeywordPlanDeviceSearches.device:type_name -> google.ads.googleads.v16.enums.DeviceEnum.Device
- 7, // 7: google.ads.googleads.v16.common.KeywordAnnotations.concepts:type_name -> google.ads.googleads.v16.common.KeywordConcept
- 8, // 8: google.ads.googleads.v16.common.KeywordConcept.concept_group:type_name -> google.ads.googleads.v16.common.ConceptGroup
- 14, // 9: google.ads.googleads.v16.common.ConceptGroup.type:type_name -> google.ads.googleads.v16.enums.KeywordPlanConceptGroupTypeEnum.KeywordPlanConceptGroupType
+ return file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes = make([]protoimpl.MessageInfo, 9)
+var file_google_ads_googleads_v17_common_keyword_plan_common_proto_goTypes = []interface{}{
+ (*KeywordPlanHistoricalMetrics)(nil), // 0: google.ads.googleads.v17.common.KeywordPlanHistoricalMetrics
+ (*HistoricalMetricsOptions)(nil), // 1: google.ads.googleads.v17.common.HistoricalMetricsOptions
+ (*MonthlySearchVolume)(nil), // 2: google.ads.googleads.v17.common.MonthlySearchVolume
+ (*KeywordPlanAggregateMetrics)(nil), // 3: google.ads.googleads.v17.common.KeywordPlanAggregateMetrics
+ (*KeywordPlanAggregateMetricResults)(nil), // 4: google.ads.googleads.v17.common.KeywordPlanAggregateMetricResults
+ (*KeywordPlanDeviceSearches)(nil), // 5: google.ads.googleads.v17.common.KeywordPlanDeviceSearches
+ (*KeywordAnnotations)(nil), // 6: google.ads.googleads.v17.common.KeywordAnnotations
+ (*KeywordConcept)(nil), // 7: google.ads.googleads.v17.common.KeywordConcept
+ (*ConceptGroup)(nil), // 8: google.ads.googleads.v17.common.ConceptGroup
+ (enums.KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel)(0), // 9: google.ads.googleads.v17.enums.KeywordPlanCompetitionLevelEnum.KeywordPlanCompetitionLevel
+ (*YearMonthRange)(nil), // 10: google.ads.googleads.v17.common.YearMonthRange
+ (enums.MonthOfYearEnum_MonthOfYear)(0), // 11: google.ads.googleads.v17.enums.MonthOfYearEnum.MonthOfYear
+ (enums.KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType)(0), // 12: google.ads.googleads.v17.enums.KeywordPlanAggregateMetricTypeEnum.KeywordPlanAggregateMetricType
+ (enums.DeviceEnum_Device)(0), // 13: google.ads.googleads.v17.enums.DeviceEnum.Device
+ (enums.KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType)(0), // 14: google.ads.googleads.v17.enums.KeywordPlanConceptGroupTypeEnum.KeywordPlanConceptGroupType
+}
+var file_google_ads_googleads_v17_common_keyword_plan_common_proto_depIdxs = []int32{
+ 2, // 0: google.ads.googleads.v17.common.KeywordPlanHistoricalMetrics.monthly_search_volumes:type_name -> google.ads.googleads.v17.common.MonthlySearchVolume
+ 9, // 1: google.ads.googleads.v17.common.KeywordPlanHistoricalMetrics.competition:type_name -> google.ads.googleads.v17.enums.KeywordPlanCompetitionLevelEnum.KeywordPlanCompetitionLevel
+ 10, // 2: google.ads.googleads.v17.common.HistoricalMetricsOptions.year_month_range:type_name -> google.ads.googleads.v17.common.YearMonthRange
+ 11, // 3: google.ads.googleads.v17.common.MonthlySearchVolume.month:type_name -> google.ads.googleads.v17.enums.MonthOfYearEnum.MonthOfYear
+ 12, // 4: google.ads.googleads.v17.common.KeywordPlanAggregateMetrics.aggregate_metric_types:type_name -> google.ads.googleads.v17.enums.KeywordPlanAggregateMetricTypeEnum.KeywordPlanAggregateMetricType
+ 5, // 5: google.ads.googleads.v17.common.KeywordPlanAggregateMetricResults.device_searches:type_name -> google.ads.googleads.v17.common.KeywordPlanDeviceSearches
+ 13, // 6: google.ads.googleads.v17.common.KeywordPlanDeviceSearches.device:type_name -> google.ads.googleads.v17.enums.DeviceEnum.Device
+ 7, // 7: google.ads.googleads.v17.common.KeywordAnnotations.concepts:type_name -> google.ads.googleads.v17.common.KeywordConcept
+ 8, // 8: google.ads.googleads.v17.common.KeywordConcept.concept_group:type_name -> google.ads.googleads.v17.common.ConceptGroup
+ 14, // 9: google.ads.googleads.v17.common.ConceptGroup.type:type_name -> google.ads.googleads.v17.enums.KeywordPlanConceptGroupTypeEnum.KeywordPlanConceptGroupType
10, // [10:10] is the sub-list for method output_type
10, // [10:10] is the sub-list for method input_type
10, // [10:10] is the sub-list for extension type_name
@@ -823,14 +823,14 @@ var file_google_ads_googleads_v16_common_keyword_plan_common_proto_depIdxs = []i
0, // [0:10] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_keyword_plan_common_proto_init() }
-func file_google_ads_googleads_v16_common_keyword_plan_common_proto_init() {
- if File_google_ads_googleads_v16_common_keyword_plan_common_proto != nil {
+func init() { file_google_ads_googleads_v17_common_keyword_plan_common_proto_init() }
+func file_google_ads_googleads_v17_common_keyword_plan_common_proto_init() {
+ if File_google_ads_googleads_v17_common_keyword_plan_common_proto != nil {
return
}
- file_google_ads_googleads_v16_common_dates_proto_init()
+ file_google_ads_googleads_v17_common_dates_proto_init()
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordPlanHistoricalMetrics); i {
case 0:
return &v.state
@@ -842,7 +842,7 @@ func file_google_ads_googleads_v16_common_keyword_plan_common_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HistoricalMetricsOptions); i {
case 0:
return &v.state
@@ -854,7 +854,7 @@ func file_google_ads_googleads_v16_common_keyword_plan_common_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MonthlySearchVolume); i {
case 0:
return &v.state
@@ -866,7 +866,7 @@ func file_google_ads_googleads_v16_common_keyword_plan_common_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordPlanAggregateMetrics); i {
case 0:
return &v.state
@@ -878,7 +878,7 @@ func file_google_ads_googleads_v16_common_keyword_plan_common_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordPlanAggregateMetricResults); i {
case 0:
return &v.state
@@ -890,7 +890,7 @@ func file_google_ads_googleads_v16_common_keyword_plan_common_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordPlanDeviceSearches); i {
case 0:
return &v.state
@@ -902,7 +902,7 @@ func file_google_ads_googleads_v16_common_keyword_plan_common_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordAnnotations); i {
case 0:
return &v.state
@@ -914,7 +914,7 @@ func file_google_ads_googleads_v16_common_keyword_plan_common_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordConcept); i {
case 0:
return &v.state
@@ -926,7 +926,7 @@ func file_google_ads_googleads_v16_common_keyword_plan_common_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConceptGroup); i {
case 0:
return &v.state
@@ -939,26 +939,26 @@ func file_google_ads_googleads_v16_common_keyword_plan_common_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[0].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[1].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[2].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes[5].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[1].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[2].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes[5].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDesc,
NumEnums: 0,
NumMessages: 9,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_keyword_plan_common_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_keyword_plan_common_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_keyword_plan_common_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_keyword_plan_common_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_keyword_plan_common_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_keyword_plan_common_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_keyword_plan_common_proto = out.File
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_goTypes = nil
- file_google_ads_googleads_v16_common_keyword_plan_common_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_keyword_plan_common_proto = out.File
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_keyword_plan_common_proto_depIdxs = nil
}
diff --git a/common/lifecycle_goals.pb.go b/common/lifecycle_goals.pb.go
index f02abb23..344d8184 100644
--- a/common/lifecycle_goals.pb.go
+++ b/common/lifecycle_goals.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/lifecycle_goals.proto
+// source: google/ads/googleads/v17/common/lifecycle_goals.proto
package common
@@ -56,7 +56,7 @@ type LifecycleGoalValueSettings struct {
func (x *LifecycleGoalValueSettings) Reset() {
*x = LifecycleGoalValueSettings{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_lifecycle_goals_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_lifecycle_goals_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -69,7 +69,7 @@ func (x *LifecycleGoalValueSettings) String() string {
func (*LifecycleGoalValueSettings) ProtoMessage() {}
func (x *LifecycleGoalValueSettings) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_lifecycle_goals_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_lifecycle_goals_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -82,7 +82,7 @@ func (x *LifecycleGoalValueSettings) ProtoReflect() protoreflect.Message {
// Deprecated: Use LifecycleGoalValueSettings.ProtoReflect.Descriptor instead.
func (*LifecycleGoalValueSettings) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_lifecycle_goals_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_lifecycle_goals_proto_rawDescGZIP(), []int{0}
}
func (x *LifecycleGoalValueSettings) GetValue() float64 {
@@ -99,15 +99,15 @@ func (x *LifecycleGoalValueSettings) GetHighLifetimeValue() float64 {
return 0
}
-var File_google_ads_googleads_v16_common_lifecycle_goals_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_lifecycle_goals_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_lifecycle_goals_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_lifecycle_goals_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x5f, 0x67, 0x6f, 0x61, 0x6c,
0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x8e, 0x01, 0x0a, 0x1a, 0x4c, 0x69, 0x66,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x8e, 0x01, 0x0a, 0x1a, 0x4c, 0x69, 0x66,
0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x53,
0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x19, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x00, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x88,
@@ -118,40 +118,40 @@ var file_google_ads_googleads_v16_common_lifecycle_goals_proto_rawDesc = []byte{
0x65, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x68, 0x69, 0x67, 0x68, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x74,
0x69, 0x6d, 0x65, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0xf3, 0x01, 0x0a, 0x23, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x42, 0x13, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c,
0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2,
+ 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_lifecycle_goals_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_lifecycle_goals_proto_rawDescData = file_google_ads_googleads_v16_common_lifecycle_goals_proto_rawDesc
+ file_google_ads_googleads_v17_common_lifecycle_goals_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_lifecycle_goals_proto_rawDescData = file_google_ads_googleads_v17_common_lifecycle_goals_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_lifecycle_goals_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_lifecycle_goals_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_lifecycle_goals_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_lifecycle_goals_proto_rawDescData)
+func file_google_ads_googleads_v17_common_lifecycle_goals_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_lifecycle_goals_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_lifecycle_goals_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_lifecycle_goals_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_lifecycle_goals_proto_rawDescData
+ return file_google_ads_googleads_v17_common_lifecycle_goals_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_lifecycle_goals_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_common_lifecycle_goals_proto_goTypes = []interface{}{
- (*LifecycleGoalValueSettings)(nil), // 0: google.ads.googleads.v16.common.LifecycleGoalValueSettings
+var file_google_ads_googleads_v17_common_lifecycle_goals_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_common_lifecycle_goals_proto_goTypes = []interface{}{
+ (*LifecycleGoalValueSettings)(nil), // 0: google.ads.googleads.v17.common.LifecycleGoalValueSettings
}
-var file_google_ads_googleads_v16_common_lifecycle_goals_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_common_lifecycle_goals_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -159,13 +159,13 @@ var file_google_ads_googleads_v16_common_lifecycle_goals_proto_depIdxs = []int32
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_lifecycle_goals_proto_init() }
-func file_google_ads_googleads_v16_common_lifecycle_goals_proto_init() {
- if File_google_ads_googleads_v16_common_lifecycle_goals_proto != nil {
+func init() { file_google_ads_googleads_v17_common_lifecycle_goals_proto_init() }
+func file_google_ads_googleads_v17_common_lifecycle_goals_proto_init() {
+ if File_google_ads_googleads_v17_common_lifecycle_goals_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_lifecycle_goals_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_lifecycle_goals_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LifecycleGoalValueSettings); i {
case 0:
return &v.state
@@ -178,23 +178,23 @@ func file_google_ads_googleads_v16_common_lifecycle_goals_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_lifecycle_goals_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_lifecycle_goals_proto_msgTypes[0].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_lifecycle_goals_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_lifecycle_goals_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_lifecycle_goals_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_lifecycle_goals_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_lifecycle_goals_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_lifecycle_goals_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_lifecycle_goals_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_lifecycle_goals_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_lifecycle_goals_proto = out.File
- file_google_ads_googleads_v16_common_lifecycle_goals_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_lifecycle_goals_proto_goTypes = nil
- file_google_ads_googleads_v16_common_lifecycle_goals_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_lifecycle_goals_proto = out.File
+ file_google_ads_googleads_v17_common_lifecycle_goals_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_lifecycle_goals_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_lifecycle_goals_proto_depIdxs = nil
}
diff --git a/common/local_services.pb.go b/common/local_services.pb.go
index 64d50939..61b85297 100644
--- a/common/local_services.pb.go
+++ b/common/local_services.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/local_services.proto
+// source: google/ads/googleads/v17/common/local_services.proto
package common
@@ -47,7 +47,7 @@ type LocalServicesDocumentReadOnly struct {
func (x *LocalServicesDocumentReadOnly) Reset() {
*x = LocalServicesDocumentReadOnly{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_local_services_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_local_services_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -60,7 +60,7 @@ func (x *LocalServicesDocumentReadOnly) String() string {
func (*LocalServicesDocumentReadOnly) ProtoMessage() {}
func (x *LocalServicesDocumentReadOnly) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_local_services_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_local_services_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -73,7 +73,7 @@ func (x *LocalServicesDocumentReadOnly) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocalServicesDocumentReadOnly.ProtoReflect.Descriptor instead.
func (*LocalServicesDocumentReadOnly) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_local_services_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_local_services_proto_rawDescGZIP(), []int{0}
}
func (x *LocalServicesDocumentReadOnly) GetDocumentUrl() string {
@@ -83,14 +83,14 @@ func (x *LocalServicesDocumentReadOnly) GetDocumentUrl() string {
return ""
}
-var File_google_ads_googleads_v16_common_local_services_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_local_services_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_local_services_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_local_services_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x58, 0x0a, 0x1d, 0x4c, 0x6f, 0x63, 0x61, 0x6c,
0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74,
0x52, 0x65, 0x61, 0x64, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x26, 0x0a, 0x0c, 0x64, 0x6f, 0x63, 0x75,
@@ -99,39 +99,39 @@ var file_google_ads_googleads_v16_common_local_services_proto_rawDesc = []byte{
0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x75, 0x72,
0x6c, 0x42, 0xf2, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x12, 0x4c, 0x6f, 0x63, 0x61, 0x6c,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x12, 0x4c, 0x6f, 0x63, 0x61, 0x6c,
0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_local_services_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_local_services_proto_rawDescData = file_google_ads_googleads_v16_common_local_services_proto_rawDesc
+ file_google_ads_googleads_v17_common_local_services_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_local_services_proto_rawDescData = file_google_ads_googleads_v17_common_local_services_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_local_services_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_local_services_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_local_services_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_local_services_proto_rawDescData)
+func file_google_ads_googleads_v17_common_local_services_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_local_services_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_local_services_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_local_services_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_local_services_proto_rawDescData
+ return file_google_ads_googleads_v17_common_local_services_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_local_services_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_common_local_services_proto_goTypes = []interface{}{
- (*LocalServicesDocumentReadOnly)(nil), // 0: google.ads.googleads.v16.common.LocalServicesDocumentReadOnly
+var file_google_ads_googleads_v17_common_local_services_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_common_local_services_proto_goTypes = []interface{}{
+ (*LocalServicesDocumentReadOnly)(nil), // 0: google.ads.googleads.v17.common.LocalServicesDocumentReadOnly
}
-var file_google_ads_googleads_v16_common_local_services_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_common_local_services_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -139,13 +139,13 @@ var file_google_ads_googleads_v16_common_local_services_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_local_services_proto_init() }
-func file_google_ads_googleads_v16_common_local_services_proto_init() {
- if File_google_ads_googleads_v16_common_local_services_proto != nil {
+func init() { file_google_ads_googleads_v17_common_local_services_proto_init() }
+func file_google_ads_googleads_v17_common_local_services_proto_init() {
+ if File_google_ads_googleads_v17_common_local_services_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_local_services_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_local_services_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocalServicesDocumentReadOnly); i {
case 0:
return &v.state
@@ -158,23 +158,23 @@ func file_google_ads_googleads_v16_common_local_services_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_local_services_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_local_services_proto_msgTypes[0].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_local_services_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_local_services_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_local_services_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_local_services_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_local_services_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_local_services_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_local_services_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_local_services_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_local_services_proto = out.File
- file_google_ads_googleads_v16_common_local_services_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_local_services_proto_goTypes = nil
- file_google_ads_googleads_v16_common_local_services_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_local_services_proto = out.File
+ file_google_ads_googleads_v17_common_local_services_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_local_services_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_local_services_proto_depIdxs = nil
}
diff --git a/common/matching_function.pb.go b/common/matching_function.pb.go
index 1fb7a0ae..b8e66183 100644
--- a/common/matching_function.pb.go
+++ b/common/matching_function.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/matching_function.proto
+// source: google/ads/googleads/v17/common/matching_function.proto
package common
@@ -62,7 +62,7 @@ type MatchingFunction struct {
// mutate request.
FunctionString *string `protobuf:"bytes,5,opt,name=function_string,json=functionString,proto3,oneof" json:"function_string,omitempty"`
// Operator for a function.
- Operator enums.MatchingFunctionOperatorEnum_MatchingFunctionOperator `protobuf:"varint,4,opt,name=operator,proto3,enum=google.ads.googleads.v16.enums.MatchingFunctionOperatorEnum_MatchingFunctionOperator" json:"operator,omitempty"`
+ Operator enums.MatchingFunctionOperatorEnum_MatchingFunctionOperator `protobuf:"varint,4,opt,name=operator,proto3,enum=google.ads.googleads.v17.enums.MatchingFunctionOperatorEnum_MatchingFunctionOperator" json:"operator,omitempty"`
// The operands on the left hand side of the equation. This is also the
// operand to be used for single operand expressions such as NOT.
LeftOperands []*Operand `protobuf:"bytes,2,rep,name=left_operands,json=leftOperands,proto3" json:"left_operands,omitempty"`
@@ -73,7 +73,7 @@ type MatchingFunction struct {
func (x *MatchingFunction) Reset() {
*x = MatchingFunction{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -86,7 +86,7 @@ func (x *MatchingFunction) String() string {
func (*MatchingFunction) ProtoMessage() {}
func (x *MatchingFunction) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -99,7 +99,7 @@ func (x *MatchingFunction) ProtoReflect() protoreflect.Message {
// Deprecated: Use MatchingFunction.ProtoReflect.Descriptor instead.
func (*MatchingFunction) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_matching_function_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_matching_function_proto_rawDescGZIP(), []int{0}
}
func (x *MatchingFunction) GetFunctionString() string {
@@ -150,7 +150,7 @@ type Operand struct {
func (x *Operand) Reset() {
*x = Operand{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -163,7 +163,7 @@ func (x *Operand) String() string {
func (*Operand) ProtoMessage() {}
func (x *Operand) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -176,7 +176,7 @@ func (x *Operand) ProtoReflect() protoreflect.Message {
// Deprecated: Use Operand.ProtoReflect.Descriptor instead.
func (*Operand) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_matching_function_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_matching_function_proto_rawDescGZIP(), []int{1}
}
func (m *Operand) GetFunctionArgumentOperand() isOperand_FunctionArgumentOperand {
@@ -267,7 +267,7 @@ type Operand_ConstantOperand struct {
func (x *Operand_ConstantOperand) Reset() {
*x = Operand_ConstantOperand{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -280,7 +280,7 @@ func (x *Operand_ConstantOperand) String() string {
func (*Operand_ConstantOperand) ProtoMessage() {}
func (x *Operand_ConstantOperand) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -293,7 +293,7 @@ func (x *Operand_ConstantOperand) ProtoReflect() protoreflect.Message {
// Deprecated: Use Operand_ConstantOperand.ProtoReflect.Descriptor instead.
func (*Operand_ConstantOperand) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_matching_function_proto_rawDescGZIP(), []int{1, 0}
+ return file_google_ads_googleads_v17_common_matching_function_proto_rawDescGZIP(), []int{1, 0}
}
func (m *Operand_ConstantOperand) GetConstantOperandValue() isOperand_ConstantOperand_ConstantOperandValue {
@@ -379,7 +379,7 @@ type Operand_FeedAttributeOperand struct {
func (x *Operand_FeedAttributeOperand) Reset() {
*x = Operand_FeedAttributeOperand{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -392,7 +392,7 @@ func (x *Operand_FeedAttributeOperand) String() string {
func (*Operand_FeedAttributeOperand) ProtoMessage() {}
func (x *Operand_FeedAttributeOperand) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -405,7 +405,7 @@ func (x *Operand_FeedAttributeOperand) ProtoReflect() protoreflect.Message {
// Deprecated: Use Operand_FeedAttributeOperand.ProtoReflect.Descriptor instead.
func (*Operand_FeedAttributeOperand) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_matching_function_proto_rawDescGZIP(), []int{1, 1}
+ return file_google_ads_googleads_v17_common_matching_function_proto_rawDescGZIP(), []int{1, 1}
}
func (x *Operand_FeedAttributeOperand) GetFeedId() int64 {
@@ -436,7 +436,7 @@ type Operand_FunctionOperand struct {
func (x *Operand_FunctionOperand) Reset() {
*x = Operand_FunctionOperand{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -449,7 +449,7 @@ func (x *Operand_FunctionOperand) String() string {
func (*Operand_FunctionOperand) ProtoMessage() {}
func (x *Operand_FunctionOperand) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -462,7 +462,7 @@ func (x *Operand_FunctionOperand) ProtoReflect() protoreflect.Message {
// Deprecated: Use Operand_FunctionOperand.ProtoReflect.Descriptor instead.
func (*Operand_FunctionOperand) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_matching_function_proto_rawDescGZIP(), []int{1, 2}
+ return file_google_ads_googleads_v17_common_matching_function_proto_rawDescGZIP(), []int{1, 2}
}
func (x *Operand_FunctionOperand) GetMatchingFunction() *MatchingFunction {
@@ -479,13 +479,13 @@ type Operand_RequestContextOperand struct {
unknownFields protoimpl.UnknownFields
// Type of value to be referred in the request context.
- ContextType enums.MatchingFunctionContextTypeEnum_MatchingFunctionContextType `protobuf:"varint,1,opt,name=context_type,json=contextType,proto3,enum=google.ads.googleads.v16.enums.MatchingFunctionContextTypeEnum_MatchingFunctionContextType" json:"context_type,omitempty"`
+ ContextType enums.MatchingFunctionContextTypeEnum_MatchingFunctionContextType `protobuf:"varint,1,opt,name=context_type,json=contextType,proto3,enum=google.ads.googleads.v17.enums.MatchingFunctionContextTypeEnum_MatchingFunctionContextType" json:"context_type,omitempty"`
}
func (x *Operand_RequestContextOperand) Reset() {
*x = Operand_RequestContextOperand{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -498,7 +498,7 @@ func (x *Operand_RequestContextOperand) String() string {
func (*Operand_RequestContextOperand) ProtoMessage() {}
func (x *Operand_RequestContextOperand) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -511,7 +511,7 @@ func (x *Operand_RequestContextOperand) ProtoReflect() protoreflect.Message {
// Deprecated: Use Operand_RequestContextOperand.ProtoReflect.Descriptor instead.
func (*Operand_RequestContextOperand) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_matching_function_proto_rawDescGZIP(), []int{1, 3}
+ return file_google_ads_googleads_v17_common_matching_function_proto_rawDescGZIP(), []int{1, 3}
}
func (x *Operand_RequestContextOperand) GetContextType() enums.MatchingFunctionContextTypeEnum_MatchingFunctionContextType {
@@ -521,21 +521,21 @@ func (x *Operand_RequestContextOperand) GetContextType() enums.MatchingFunctionC
return enums.MatchingFunctionContextTypeEnum_MatchingFunctionContextType(0)
}
-var File_google_ads_googleads_v16_common_matching_function_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_matching_function_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_matching_function_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_matching_function_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x5f, 0x66, 0x75, 0x6e, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
+ 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68,
0x69, 0x6e, 0x67, 0x5f, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x6e,
0x74, 0x65, 0x78, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f,
0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x5f, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x22, 0xe7, 0x02, 0x0a, 0x10, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x46, 0x75, 0x6e,
@@ -544,7 +544,7 @@ var file_google_ads_googleads_v16_common_matching_function_proto_rawDesc = []byt
0x52, 0x0e, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x88, 0x01, 0x01, 0x12, 0x71, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x18,
0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x55, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x46,
0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x45,
0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x46, 0x75, 0x6e, 0x63,
@@ -552,40 +552,40 @@ var file_google_ads_googleads_v16_common_matching_function_proto_rawDesc = []byt
0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x12, 0x4d, 0x0a, 0x0d, 0x6c, 0x65, 0x66, 0x74, 0x5f, 0x6f,
0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x4f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x52, 0x0c, 0x6c, 0x65, 0x66, 0x74, 0x4f, 0x70, 0x65,
0x72, 0x61, 0x6e, 0x64, 0x73, 0x12, 0x4f, 0x0a, 0x0e, 0x72, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x6f,
0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x4f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x52, 0x0d, 0x72, 0x69, 0x67, 0x68, 0x74, 0x4f, 0x70,
0x65, 0x72, 0x61, 0x6e, 0x64, 0x73, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x66, 0x75, 0x6e, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x22, 0xbc, 0x08, 0x0a, 0x07, 0x4f,
0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x12, 0x65, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61,
0x6e, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x38, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x2e, 0x43, 0x6f, 0x6e, 0x73, 0x74,
0x61, 0x6e, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x48, 0x00, 0x52, 0x0f, 0x63, 0x6f,
0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x12, 0x75, 0x0a,
0x16, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f,
0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x4f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x41, 0x74, 0x74, 0x72,
0x69, 0x62, 0x75, 0x74, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x48, 0x00, 0x52, 0x14,
0x66, 0x65, 0x65, 0x64, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4f, 0x70, 0x65,
0x72, 0x61, 0x6e, 0x64, 0x12, 0x65, 0x0a, 0x10, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x38,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x2e, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x48, 0x00, 0x52, 0x0f, 0x66, 0x75, 0x6e, 0x63,
0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x12, 0x78, 0x0a, 0x17, 0x72,
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x6f,
0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3e, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4f,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4f,
0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6f,
0x6e, 0x74, 0x65, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x48, 0x00, 0x52, 0x15,
0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x4f, 0x70,
@@ -614,14 +614,14 @@ var file_google_ads_googleads_v16_common_matching_function_proto_rawDesc = []byt
0x6e, 0x64, 0x12, 0x5e, 0x0a, 0x11, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x5f, 0x66,
0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
0x52, 0x10, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69,
0x6f, 0x6e, 0x1a, 0x97, 0x01, 0x0a, 0x15, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x43, 0x6f,
0x6e, 0x74, 0x65, 0x78, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x12, 0x7e, 0x0a, 0x0c,
0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01,
0x28, 0x0e, 0x32, 0x5b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x46, 0x75, 0x6e, 0x63,
0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45,
0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x46, 0x75, 0x6e, 0x63,
@@ -630,56 +630,56 @@ var file_google_ads_googleads_v16_common_matching_function_proto_rawDesc = []byt
0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x67, 0x75, 0x6d, 0x65, 0x6e,
0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x42, 0xf5, 0x01, 0x0a, 0x23, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x42, 0x15, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x46, 0x75, 0x6e, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_matching_function_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_matching_function_proto_rawDescData = file_google_ads_googleads_v16_common_matching_function_proto_rawDesc
+ file_google_ads_googleads_v17_common_matching_function_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_matching_function_proto_rawDescData = file_google_ads_googleads_v17_common_matching_function_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_matching_function_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_matching_function_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_matching_function_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_matching_function_proto_rawDescData)
+func file_google_ads_googleads_v17_common_matching_function_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_matching_function_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_matching_function_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_matching_function_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_matching_function_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_common_matching_function_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
-var file_google_ads_googleads_v16_common_matching_function_proto_goTypes = []interface{}{
- (*MatchingFunction)(nil), // 0: google.ads.googleads.v16.common.MatchingFunction
- (*Operand)(nil), // 1: google.ads.googleads.v16.common.Operand
- (*Operand_ConstantOperand)(nil), // 2: google.ads.googleads.v16.common.Operand.ConstantOperand
- (*Operand_FeedAttributeOperand)(nil), // 3: google.ads.googleads.v16.common.Operand.FeedAttributeOperand
- (*Operand_FunctionOperand)(nil), // 4: google.ads.googleads.v16.common.Operand.FunctionOperand
- (*Operand_RequestContextOperand)(nil), // 5: google.ads.googleads.v16.common.Operand.RequestContextOperand
- (enums.MatchingFunctionOperatorEnum_MatchingFunctionOperator)(0), // 6: google.ads.googleads.v16.enums.MatchingFunctionOperatorEnum.MatchingFunctionOperator
- (enums.MatchingFunctionContextTypeEnum_MatchingFunctionContextType)(0), // 7: google.ads.googleads.v16.enums.MatchingFunctionContextTypeEnum.MatchingFunctionContextType
-}
-var file_google_ads_googleads_v16_common_matching_function_proto_depIdxs = []int32{
- 6, // 0: google.ads.googleads.v16.common.MatchingFunction.operator:type_name -> google.ads.googleads.v16.enums.MatchingFunctionOperatorEnum.MatchingFunctionOperator
- 1, // 1: google.ads.googleads.v16.common.MatchingFunction.left_operands:type_name -> google.ads.googleads.v16.common.Operand
- 1, // 2: google.ads.googleads.v16.common.MatchingFunction.right_operands:type_name -> google.ads.googleads.v16.common.Operand
- 2, // 3: google.ads.googleads.v16.common.Operand.constant_operand:type_name -> google.ads.googleads.v16.common.Operand.ConstantOperand
- 3, // 4: google.ads.googleads.v16.common.Operand.feed_attribute_operand:type_name -> google.ads.googleads.v16.common.Operand.FeedAttributeOperand
- 4, // 5: google.ads.googleads.v16.common.Operand.function_operand:type_name -> google.ads.googleads.v16.common.Operand.FunctionOperand
- 5, // 6: google.ads.googleads.v16.common.Operand.request_context_operand:type_name -> google.ads.googleads.v16.common.Operand.RequestContextOperand
- 0, // 7: google.ads.googleads.v16.common.Operand.FunctionOperand.matching_function:type_name -> google.ads.googleads.v16.common.MatchingFunction
- 7, // 8: google.ads.googleads.v16.common.Operand.RequestContextOperand.context_type:type_name -> google.ads.googleads.v16.enums.MatchingFunctionContextTypeEnum.MatchingFunctionContextType
+ return file_google_ads_googleads_v17_common_matching_function_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_common_matching_function_proto_msgTypes = make([]protoimpl.MessageInfo, 6)
+var file_google_ads_googleads_v17_common_matching_function_proto_goTypes = []interface{}{
+ (*MatchingFunction)(nil), // 0: google.ads.googleads.v17.common.MatchingFunction
+ (*Operand)(nil), // 1: google.ads.googleads.v17.common.Operand
+ (*Operand_ConstantOperand)(nil), // 2: google.ads.googleads.v17.common.Operand.ConstantOperand
+ (*Operand_FeedAttributeOperand)(nil), // 3: google.ads.googleads.v17.common.Operand.FeedAttributeOperand
+ (*Operand_FunctionOperand)(nil), // 4: google.ads.googleads.v17.common.Operand.FunctionOperand
+ (*Operand_RequestContextOperand)(nil), // 5: google.ads.googleads.v17.common.Operand.RequestContextOperand
+ (enums.MatchingFunctionOperatorEnum_MatchingFunctionOperator)(0), // 6: google.ads.googleads.v17.enums.MatchingFunctionOperatorEnum.MatchingFunctionOperator
+ (enums.MatchingFunctionContextTypeEnum_MatchingFunctionContextType)(0), // 7: google.ads.googleads.v17.enums.MatchingFunctionContextTypeEnum.MatchingFunctionContextType
+}
+var file_google_ads_googleads_v17_common_matching_function_proto_depIdxs = []int32{
+ 6, // 0: google.ads.googleads.v17.common.MatchingFunction.operator:type_name -> google.ads.googleads.v17.enums.MatchingFunctionOperatorEnum.MatchingFunctionOperator
+ 1, // 1: google.ads.googleads.v17.common.MatchingFunction.left_operands:type_name -> google.ads.googleads.v17.common.Operand
+ 1, // 2: google.ads.googleads.v17.common.MatchingFunction.right_operands:type_name -> google.ads.googleads.v17.common.Operand
+ 2, // 3: google.ads.googleads.v17.common.Operand.constant_operand:type_name -> google.ads.googleads.v17.common.Operand.ConstantOperand
+ 3, // 4: google.ads.googleads.v17.common.Operand.feed_attribute_operand:type_name -> google.ads.googleads.v17.common.Operand.FeedAttributeOperand
+ 4, // 5: google.ads.googleads.v17.common.Operand.function_operand:type_name -> google.ads.googleads.v17.common.Operand.FunctionOperand
+ 5, // 6: google.ads.googleads.v17.common.Operand.request_context_operand:type_name -> google.ads.googleads.v17.common.Operand.RequestContextOperand
+ 0, // 7: google.ads.googleads.v17.common.Operand.FunctionOperand.matching_function:type_name -> google.ads.googleads.v17.common.MatchingFunction
+ 7, // 8: google.ads.googleads.v17.common.Operand.RequestContextOperand.context_type:type_name -> google.ads.googleads.v17.enums.MatchingFunctionContextTypeEnum.MatchingFunctionContextType
9, // [9:9] is the sub-list for method output_type
9, // [9:9] is the sub-list for method input_type
9, // [9:9] is the sub-list for extension type_name
@@ -687,13 +687,13 @@ var file_google_ads_googleads_v16_common_matching_function_proto_depIdxs = []int
0, // [0:9] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_matching_function_proto_init() }
-func file_google_ads_googleads_v16_common_matching_function_proto_init() {
- if File_google_ads_googleads_v16_common_matching_function_proto != nil {
+func init() { file_google_ads_googleads_v17_common_matching_function_proto_init() }
+func file_google_ads_googleads_v17_common_matching_function_proto_init() {
+ if File_google_ads_googleads_v17_common_matching_function_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MatchingFunction); i {
case 0:
return &v.state
@@ -705,7 +705,7 @@ func file_google_ads_googleads_v16_common_matching_function_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Operand); i {
case 0:
return &v.state
@@ -717,7 +717,7 @@ func file_google_ads_googleads_v16_common_matching_function_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Operand_ConstantOperand); i {
case 0:
return &v.state
@@ -729,7 +729,7 @@ func file_google_ads_googleads_v16_common_matching_function_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Operand_FeedAttributeOperand); i {
case 0:
return &v.state
@@ -741,7 +741,7 @@ func file_google_ads_googleads_v16_common_matching_function_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Operand_FunctionOperand); i {
case 0:
return &v.state
@@ -753,7 +753,7 @@ func file_google_ads_googleads_v16_common_matching_function_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Operand_RequestContextOperand); i {
case 0:
return &v.state
@@ -766,36 +766,36 @@ func file_google_ads_googleads_v16_common_matching_function_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[0].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[1].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[1].OneofWrappers = []interface{}{
(*Operand_ConstantOperand_)(nil),
(*Operand_FeedAttributeOperand_)(nil),
(*Operand_FunctionOperand_)(nil),
(*Operand_RequestContextOperand_)(nil),
}
- file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[2].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[2].OneofWrappers = []interface{}{
(*Operand_ConstantOperand_StringValue)(nil),
(*Operand_ConstantOperand_LongValue)(nil),
(*Operand_ConstantOperand_BooleanValue)(nil),
(*Operand_ConstantOperand_DoubleValue)(nil),
}
- file_google_ads_googleads_v16_common_matching_function_proto_msgTypes[3].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_matching_function_proto_msgTypes[3].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_matching_function_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_matching_function_proto_rawDesc,
NumEnums: 0,
NumMessages: 6,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_matching_function_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_matching_function_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_matching_function_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_matching_function_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_matching_function_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_matching_function_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_matching_function_proto = out.File
- file_google_ads_googleads_v16_common_matching_function_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_matching_function_proto_goTypes = nil
- file_google_ads_googleads_v16_common_matching_function_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_matching_function_proto = out.File
+ file_google_ads_googleads_v17_common_matching_function_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_matching_function_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_matching_function_proto_depIdxs = nil
}
diff --git a/common/metric_goal.pb.go b/common/metric_goal.pb.go
index 7310bd1d..fbe7dbd9 100644
--- a/common/metric_goal.pb.go
+++ b/common/metric_goal.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/metric_goal.proto
+// source: google/ads/googleads/v17/common/metric_goal.proto
package common
@@ -43,16 +43,16 @@ type MetricGoal struct {
// The metric of the goal. For example, clicks, impressions, cost,
// conversions, etc.
- Metric enums.ExperimentMetricEnum_ExperimentMetric `protobuf:"varint,1,opt,name=metric,proto3,enum=google.ads.googleads.v16.enums.ExperimentMetricEnum_ExperimentMetric" json:"metric,omitempty"`
+ Metric enums.ExperimentMetricEnum_ExperimentMetric `protobuf:"varint,1,opt,name=metric,proto3,enum=google.ads.googleads.v17.enums.ExperimentMetricEnum_ExperimentMetric" json:"metric,omitempty"`
// The metric direction of the goal. For example, increase, decrease, no
// change.
- Direction enums.ExperimentMetricDirectionEnum_ExperimentMetricDirection `protobuf:"varint,2,opt,name=direction,proto3,enum=google.ads.googleads.v16.enums.ExperimentMetricDirectionEnum_ExperimentMetricDirection" json:"direction,omitempty"`
+ Direction enums.ExperimentMetricDirectionEnum_ExperimentMetricDirection `protobuf:"varint,2,opt,name=direction,proto3,enum=google.ads.googleads.v17.enums.ExperimentMetricDirectionEnum_ExperimentMetricDirection" json:"direction,omitempty"`
}
func (x *MetricGoal) Reset() {
*x = MetricGoal{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_metric_goal_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_metric_goal_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -65,7 +65,7 @@ func (x *MetricGoal) String() string {
func (*MetricGoal) ProtoMessage() {}
func (x *MetricGoal) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_metric_goal_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_metric_goal_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -78,7 +78,7 @@ func (x *MetricGoal) ProtoReflect() protoreflect.Message {
// Deprecated: Use MetricGoal.ProtoReflect.Descriptor instead.
func (*MetricGoal) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_metric_goal_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_metric_goal_proto_rawDescGZIP(), []int{0}
}
func (x *MetricGoal) GetMetric() enums.ExperimentMetricEnum_ExperimentMetric {
@@ -95,75 +95,75 @@ func (x *MetricGoal) GetDirection() enums.ExperimentMetricDirectionEnum_Experime
return enums.ExperimentMetricDirectionEnum_ExperimentMetricDirection(0)
}
-var File_google_ads_googleads_v16_common_metric_goal_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_metric_goal_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_metric_goal_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_metric_goal_proto_rawDesc = []byte{
0x0a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f,
0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x40, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x65, 0x78, 0x70,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x65, 0x78, 0x70,
0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x64,
0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xe2,
0x01, 0x0a, 0x0a, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x47, 0x6f, 0x61, 0x6c, 0x12, 0x5d, 0x0a,
0x06, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x45, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x45,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x45,
0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x45,
0x6e, 0x75, 0x6d, 0x2e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x65,
0x74, 0x72, 0x69, 0x63, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x12, 0x75, 0x0a, 0x09,
0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32,
0x57, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69,
0x63, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x45,
0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x44,
0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x42, 0xef, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0f, 0x4d, 0x65, 0x74,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0f, 0x4d, 0x65, 0x74,
0x72, 0x69, 0x63, 0x47, 0x6f, 0x61, 0x6c, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea,
0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_metric_goal_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_metric_goal_proto_rawDescData = file_google_ads_googleads_v16_common_metric_goal_proto_rawDesc
+ file_google_ads_googleads_v17_common_metric_goal_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_metric_goal_proto_rawDescData = file_google_ads_googleads_v17_common_metric_goal_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_metric_goal_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_metric_goal_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_metric_goal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_metric_goal_proto_rawDescData)
+func file_google_ads_googleads_v17_common_metric_goal_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_metric_goal_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_metric_goal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_metric_goal_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_metric_goal_proto_rawDescData
+ return file_google_ads_googleads_v17_common_metric_goal_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_metric_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_common_metric_goal_proto_goTypes = []interface{}{
- (*MetricGoal)(nil), // 0: google.ads.googleads.v16.common.MetricGoal
- (enums.ExperimentMetricEnum_ExperimentMetric)(0), // 1: google.ads.googleads.v16.enums.ExperimentMetricEnum.ExperimentMetric
- (enums.ExperimentMetricDirectionEnum_ExperimentMetricDirection)(0), // 2: google.ads.googleads.v16.enums.ExperimentMetricDirectionEnum.ExperimentMetricDirection
+var file_google_ads_googleads_v17_common_metric_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_common_metric_goal_proto_goTypes = []interface{}{
+ (*MetricGoal)(nil), // 0: google.ads.googleads.v17.common.MetricGoal
+ (enums.ExperimentMetricEnum_ExperimentMetric)(0), // 1: google.ads.googleads.v17.enums.ExperimentMetricEnum.ExperimentMetric
+ (enums.ExperimentMetricDirectionEnum_ExperimentMetricDirection)(0), // 2: google.ads.googleads.v17.enums.ExperimentMetricDirectionEnum.ExperimentMetricDirection
}
-var file_google_ads_googleads_v16_common_metric_goal_proto_depIdxs = []int32{
- 1, // 0: google.ads.googleads.v16.common.MetricGoal.metric:type_name -> google.ads.googleads.v16.enums.ExperimentMetricEnum.ExperimentMetric
- 2, // 1: google.ads.googleads.v16.common.MetricGoal.direction:type_name -> google.ads.googleads.v16.enums.ExperimentMetricDirectionEnum.ExperimentMetricDirection
+var file_google_ads_googleads_v17_common_metric_goal_proto_depIdxs = []int32{
+ 1, // 0: google.ads.googleads.v17.common.MetricGoal.metric:type_name -> google.ads.googleads.v17.enums.ExperimentMetricEnum.ExperimentMetric
+ 2, // 1: google.ads.googleads.v17.common.MetricGoal.direction:type_name -> google.ads.googleads.v17.enums.ExperimentMetricDirectionEnum.ExperimentMetricDirection
2, // [2:2] is the sub-list for method output_type
2, // [2:2] is the sub-list for method input_type
2, // [2:2] is the sub-list for extension type_name
@@ -171,13 +171,13 @@ var file_google_ads_googleads_v16_common_metric_goal_proto_depIdxs = []int32{
0, // [0:2] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_metric_goal_proto_init() }
-func file_google_ads_googleads_v16_common_metric_goal_proto_init() {
- if File_google_ads_googleads_v16_common_metric_goal_proto != nil {
+func init() { file_google_ads_googleads_v17_common_metric_goal_proto_init() }
+func file_google_ads_googleads_v17_common_metric_goal_proto_init() {
+ if File_google_ads_googleads_v17_common_metric_goal_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_metric_goal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_metric_goal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MetricGoal); i {
case 0:
return &v.state
@@ -194,18 +194,18 @@ func file_google_ads_googleads_v16_common_metric_goal_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_metric_goal_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_metric_goal_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_metric_goal_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_metric_goal_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_metric_goal_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_metric_goal_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_metric_goal_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_metric_goal_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_metric_goal_proto = out.File
- file_google_ads_googleads_v16_common_metric_goal_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_metric_goal_proto_goTypes = nil
- file_google_ads_googleads_v16_common_metric_goal_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_metric_goal_proto = out.File
+ file_google_ads_googleads_v17_common_metric_goal_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_metric_goal_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_metric_goal_proto_depIdxs = nil
}
diff --git a/common/metrics.pb.go b/common/metrics.pb.go
index f7a31fd8..2002bf80 100644
--- a/common/metrics.pb.go
+++ b/common/metrics.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/metrics.proto
+// source: google/ads/googleads/v17/common/metrics.proto
package common
@@ -74,7 +74,7 @@ type Metrics struct {
// values in date column means the conversion date. Details for the
// by_conversion_date columns are available at
// https://support.google.com/google-ads/answer/9549009.
- AllConversionsValueByConversionDate float64 `protobuf:"fixed64,240,opt,name=all_conversions_value_by_conversion_date,json=allConversionsValueByConversionDate,proto3" json:"all_conversions_value_by_conversion_date,omitempty"`
+ AllConversionsValueByConversionDate *float64 `protobuf:"fixed64,240,opt,name=all_conversions_value_by_conversion_date,json=allConversionsValueByConversionDate,proto3,oneof" json:"all_conversions_value_by_conversion_date,omitempty"`
// All of new customers' lifetime conversion value. If you have set up
// customer acquisition goal at either account level or campaign level, this
// will include the additional conversion value from new customers for both
@@ -91,7 +91,7 @@ type Metrics struct {
// with date, the values in date column means the conversion date. Details for
// the by_conversion_date columns are available at
// https://support.google.com/google-ads/answer/9549009.
- AllConversionsByConversionDate float64 `protobuf:"fixed64,241,opt,name=all_conversions_by_conversion_date,json=allConversionsByConversionDate,proto3" json:"all_conversions_by_conversion_date,omitempty"`
+ AllConversionsByConversionDate *float64 `protobuf:"fixed64,241,opt,name=all_conversions_by_conversion_date,json=allConversionsByConversionDate,proto3,oneof" json:"all_conversions_by_conversion_date,omitempty"`
// The value of all conversions divided by the total cost of ad interactions
// (such as clicks for text ads or views for video ads).
AllConversionsValuePerCost *float64 `protobuf:"fixed64,194,opt,name=all_conversions_value_per_cost,json=allConversionsValuePerCost,proto3,oneof" json:"all_conversions_value_per_cost,omitempty"`
@@ -264,7 +264,7 @@ type Metrics struct {
// column means the conversion date. Details for the by_conversion_date
// columns are available at
// https://support.google.com/google-ads/answer/9549009.
- ConversionsValueByConversionDate float64 `protobuf:"fixed64,242,opt,name=conversions_value_by_conversion_date,json=conversionsValueByConversionDate,proto3" json:"conversions_value_by_conversion_date,omitempty"`
+ ConversionsValueByConversionDate *float64 `protobuf:"fixed64,242,opt,name=conversions_value_by_conversion_date,json=conversionsValueByConversionDate,proto3,oneof" json:"conversions_value_by_conversion_date,omitempty"`
// New customers' lifetime conversion value. If you have set up
// customer acquisition goal at either account level or campaign level, this
// will include the additional conversion value from new customers for
@@ -296,7 +296,7 @@ type Metrics struct {
// column means the conversion date. Details for the by_conversion_date
// columns are available at
// https://support.google.com/google-ads/answer/9549009.
- ConversionsByConversionDate float64 `protobuf:"fixed64,243,opt,name=conversions_by_conversion_date,json=conversionsByConversionDate,proto3" json:"conversions_by_conversion_date,omitempty"`
+ ConversionsByConversionDate *float64 `protobuf:"fixed64,243,opt,name=conversions_by_conversion_date,json=conversionsByConversionDate,proto3,oneof" json:"conversions_by_conversion_date,omitempty"`
// The sum of your cost-per-click (CPC) and cost-per-thousand impressions
// (CPM) costs during this period.
CostMicros *int64 `protobuf:"varint,169,opt,name=cost_micros,json=costMicros,proto3,oneof" json:"cost_micros,omitempty"`
@@ -374,13 +374,13 @@ type Metrics struct {
// feed performance.
HotelEligibleImpressions *int64 `protobuf:"varint,215,opt,name=hotel_eligible_impressions,json=hotelEligibleImpressions,proto3,oneof" json:"hotel_eligible_impressions,omitempty"`
// The creative historical quality score.
- HistoricalCreativeQualityScore enums.QualityScoreBucketEnum_QualityScoreBucket `protobuf:"varint,80,opt,name=historical_creative_quality_score,json=historicalCreativeQualityScore,proto3,enum=google.ads.googleads.v16.enums.QualityScoreBucketEnum_QualityScoreBucket" json:"historical_creative_quality_score,omitempty"`
+ HistoricalCreativeQualityScore enums.QualityScoreBucketEnum_QualityScoreBucket `protobuf:"varint,80,opt,name=historical_creative_quality_score,json=historicalCreativeQualityScore,proto3,enum=google.ads.googleads.v17.enums.QualityScoreBucketEnum_QualityScoreBucket" json:"historical_creative_quality_score,omitempty"`
// The quality of historical landing page experience.
- HistoricalLandingPageQualityScore enums.QualityScoreBucketEnum_QualityScoreBucket `protobuf:"varint,81,opt,name=historical_landing_page_quality_score,json=historicalLandingPageQualityScore,proto3,enum=google.ads.googleads.v16.enums.QualityScoreBucketEnum_QualityScoreBucket" json:"historical_landing_page_quality_score,omitempty"`
+ HistoricalLandingPageQualityScore enums.QualityScoreBucketEnum_QualityScoreBucket `protobuf:"varint,81,opt,name=historical_landing_page_quality_score,json=historicalLandingPageQualityScore,proto3,enum=google.ads.googleads.v17.enums.QualityScoreBucketEnum_QualityScoreBucket" json:"historical_landing_page_quality_score,omitempty"`
// The historical quality score.
HistoricalQualityScore *int64 `protobuf:"varint,216,opt,name=historical_quality_score,json=historicalQualityScore,proto3,oneof" json:"historical_quality_score,omitempty"`
// The historical search predicted click through rate (CTR).
- HistoricalSearchPredictedCtr enums.QualityScoreBucketEnum_QualityScoreBucket `protobuf:"varint,83,opt,name=historical_search_predicted_ctr,json=historicalSearchPredictedCtr,proto3,enum=google.ads.googleads.v16.enums.QualityScoreBucketEnum_QualityScoreBucket" json:"historical_search_predicted_ctr,omitempty"`
+ HistoricalSearchPredictedCtr enums.QualityScoreBucketEnum_QualityScoreBucket `protobuf:"varint,83,opt,name=historical_search_predicted_ctr,json=historicalSearchPredictedCtr,proto3,enum=google.ads.googleads.v17.enums.QualityScoreBucketEnum_QualityScoreBucket" json:"historical_search_predicted_ctr,omitempty"`
// The number of times the ad was forwarded to someone else as a message.
GmailForwards *int64 `protobuf:"varint,217,opt,name=gmail_forwards,json=gmailForwards,proto3,oneof" json:"gmail_forwards,omitempty"`
// The number of times someone has saved your Gmail ad to their inbox as a
@@ -405,7 +405,7 @@ type Metrics struct {
// for text and shopping ads, views for video ads, and so on.
Interactions *int64 `protobuf:"varint,223,opt,name=interactions,proto3,oneof" json:"interactions,omitempty"`
// The types of payable and free interactions.
- InteractionEventTypes []enums.InteractionEventTypeEnum_InteractionEventType `protobuf:"varint,100,rep,packed,name=interaction_event_types,json=interactionEventTypes,proto3,enum=google.ads.googleads.v16.enums.InteractionEventTypeEnum_InteractionEventType" json:"interaction_event_types,omitempty"`
+ InteractionEventTypes []enums.InteractionEventTypeEnum_InteractionEventType `protobuf:"varint,100,rep,packed,name=interaction_event_types,json=interactionEventTypes,proto3,enum=google.ads.googleads.v17.enums.InteractionEventTypeEnum_InteractionEventType" json:"interaction_event_types,omitempty"`
// The percentage of clicks filtered out of your total number of clicks
// (filtered + non-filtered clicks) during the reporting period.
InvalidClickRate *float64 `protobuf:"fixed64,224,opt,name=invalid_click_rate,json=invalidClickRate,proto3,oneof" json:"invalid_click_rate,omitempty"`
@@ -863,12 +863,137 @@ type Metrics struct {
// for date ranges of 92 days or less. This metric is available for following
// campaign types - Display, Video, Discovery and App.
AverageImpressionFrequencyPerUser *float64 `protobuf:"fixed64,320,opt,name=average_impression_frequency_per_user,json=averageImpressionFrequencyPerUser,proto3,oneof" json:"average_impression_frequency_per_user,omitempty"`
+ // Number of linked resources in which the asset is used.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ LinkedEntitiesCount *int64 `protobuf:"varint,341,opt,name=linked_entities_count,json=linkedEntitiesCount,proto3,oneof" json:"linked_entities_count,omitempty"`
+ // A list of up to 20 sample linked resources in which the asset is used.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ LinkedSampleEntities []string `protobuf:"bytes,342,rep,name=linked_sample_entities,json=linkedSampleEntities,proto3" json:"linked_sample_entities,omitempty"`
+ // A list of up to 20 sample linked resources with impressions in the last 30
+ // days where the asset had the AssetPerformanceLabel.BEST performance label.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ SampleBestPerformanceEntities []string `protobuf:"bytes,343,rep,name=sample_best_performance_entities,json=sampleBestPerformanceEntities,proto3" json:"sample_best_performance_entities,omitempty"`
+ // A list of up to 20 sample linked resources with impressions in the last 30
+ // days where the asset had the AssetPerformanceLabel.GOOD performance label.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ SampleGoodPerformanceEntities []string `protobuf:"bytes,344,rep,name=sample_good_performance_entities,json=sampleGoodPerformanceEntities,proto3" json:"sample_good_performance_entities,omitempty"`
+ // A list of up to 20 sample linked resources with impressions in the last 30
+ // days where the asset had the AssetPerformanceLabel.LOW performance label.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ SampleLowPerformanceEntities []string `protobuf:"bytes,345,rep,name=sample_low_performance_entities,json=sampleLowPerformanceEntities,proto3" json:"sample_low_performance_entities,omitempty"`
+ // A list of up to 20 sample linked resources with impressions in the last 30
+ // days where the asset had the AssetPerformanceLabel.LEARNING performance
+ // label.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ SampleLearningPerformanceEntities []string `protobuf:"bytes,346,rep,name=sample_learning_performance_entities,json=sampleLearningPerformanceEntities,proto3" json:"sample_learning_performance_entities,omitempty"`
+ // A list of up to 20 sample linked resources with impressions in the last 30
+ // days where the assets had AssetPerformanceLabel performance label other
+ // than BEST, GOOD, LOW, and LEARNING.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ SampleUnratedPerformanceEntities []string `protobuf:"bytes,347,rep,name=sample_unrated_performance_entities,json=sampleUnratedPerformanceEntities,proto3" json:"sample_unrated_performance_entities,omitempty"`
+ // Number of total usages in which the asset is pinned.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ // This metric is only supported in Search channel.
+ AssetPinnedTotalCount *int64 `protobuf:"varint,348,opt,name=asset_pinned_total_count,json=assetPinnedTotalCount,proto3,oneof" json:"asset_pinned_total_count,omitempty"`
+ // Number of entities in which the asset is pinned to headline 1.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ // This metric is only supported in Search channel.
+ AssetPinnedAsHeadlinePositionOneCount *int64 `protobuf:"varint,349,opt,name=asset_pinned_as_headline_position_one_count,json=assetPinnedAsHeadlinePositionOneCount,proto3,oneof" json:"asset_pinned_as_headline_position_one_count,omitempty"`
+ // Number of entities in which the asset is pinned to headline 2.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ // This metric is only supported in Search channel.
+ AssetPinnedAsHeadlinePositionTwoCount *int64 `protobuf:"varint,350,opt,name=asset_pinned_as_headline_position_two_count,json=assetPinnedAsHeadlinePositionTwoCount,proto3,oneof" json:"asset_pinned_as_headline_position_two_count,omitempty"`
+ // Number of entities in which the asset is pinned to headline 3.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ // This metric is only supported in Search channel.
+ AssetPinnedAsHeadlinePositionThreeCount *int64 `protobuf:"varint,351,opt,name=asset_pinned_as_headline_position_three_count,json=assetPinnedAsHeadlinePositionThreeCount,proto3,oneof" json:"asset_pinned_as_headline_position_three_count,omitempty"`
+ // Number of entities in which the asset is pinned to description 1.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ // This metric is only supported in Search channel.
+ AssetPinnedAsDescriptionPositionOneCount *int64 `protobuf:"varint,352,opt,name=asset_pinned_as_description_position_one_count,json=assetPinnedAsDescriptionPositionOneCount,proto3,oneof" json:"asset_pinned_as_description_position_one_count,omitempty"`
+ // Number of entities in which the asset is pinned to description 2.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ // This metric is only supported in Search channel.
+ AssetPinnedAsDescriptionPositionTwoCount *int64 `protobuf:"varint,353,opt,name=asset_pinned_as_description_position_two_count,json=assetPinnedAsDescriptionPositionTwoCount,proto3,oneof" json:"asset_pinned_as_description_position_two_count,omitempty"`
+ // Percentage of impressions the asset received in ads with
+ // AssetPerformanceLabel.BEST.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ // This metric is only supported in Search channel.
+ AssetBestPerformanceImpressionPercentage *float64 `protobuf:"fixed64,354,opt,name=asset_best_performance_impression_percentage,json=assetBestPerformanceImpressionPercentage,proto3,oneof" json:"asset_best_performance_impression_percentage,omitempty"`
+ // Percentage of impressions the asset received in ads with
+ // AssetPerformanceLabel.GOOD.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ // This metric is only supported in Search channel.
+ AssetGoodPerformanceImpressionPercentage *float64 `protobuf:"fixed64,355,opt,name=asset_good_performance_impression_percentage,json=assetGoodPerformanceImpressionPercentage,proto3,oneof" json:"asset_good_performance_impression_percentage,omitempty"`
+ // Percentage of impressions the asset received in ads with
+ // AssetPerformanceLabel.LOW.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ // This metric is only supported in Search channel.
+ AssetLowPerformanceImpressionPercentage *float64 `protobuf:"fixed64,356,opt,name=asset_low_performance_impression_percentage,json=assetLowPerformanceImpressionPercentage,proto3,oneof" json:"asset_low_performance_impression_percentage,omitempty"`
+ // Percentage of impressions the asset received in ads with
+ // AssetPerformanceLabel.LEARNING.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ // This metric is only supported in Search channel.
+ AssetLearningPerformanceImpressionPercentage *float64 `protobuf:"fixed64,357,opt,name=asset_learning_performance_impression_percentage,json=assetLearningPerformanceImpressionPercentage,proto3,oneof" json:"asset_learning_performance_impression_percentage,omitempty"`
+ // Percentage of impressions the asset received in ads with
+ // AssetPerformanceLabel other than BEST, GOOD, LOW, and LEARNING.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ // This metric is only supported in Search channel.
+ AssetUnratedPerformanceImpressionPercentage *float64 `protobuf:"fixed64,358,opt,name=asset_unrated_performance_impression_percentage,json=assetUnratedPerformanceImpressionPercentage,proto3,oneof" json:"asset_unrated_performance_impression_percentage,omitempty"`
+ // Percentage of cost the asset received in ads with
+ // AssetPerformanceLabel.BEST.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ // This metric is only supported in Performance Max channel.
+ AssetBestPerformanceCostPercentage *float64 `protobuf:"fixed64,359,opt,name=asset_best_performance_cost_percentage,json=assetBestPerformanceCostPercentage,proto3,oneof" json:"asset_best_performance_cost_percentage,omitempty"`
+ // Percentage of cost the asset received in ads with
+ // AssetPerformanceLabel.GOOD.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ // This metric is only supported in Performance Max channel.
+ AssetGoodPerformanceCostPercentage *float64 `protobuf:"fixed64,360,opt,name=asset_good_performance_cost_percentage,json=assetGoodPerformanceCostPercentage,proto3,oneof" json:"asset_good_performance_cost_percentage,omitempty"`
+ // Percentage of cost the asset received in ads with
+ // AssetPerformanceLabel.LOW.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ // This metric is only supported in Performance Max channel.
+ AssetLowPerformanceCostPercentage *float64 `protobuf:"fixed64,361,opt,name=asset_low_performance_cost_percentage,json=assetLowPerformanceCostPercentage,proto3,oneof" json:"asset_low_performance_cost_percentage,omitempty"`
+ // Percentage of cost the asset received in ads with
+ // AssetPerformanceLabel.LEARNING.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ // This metric is only supported in Performance Max channel.
+ AssetLearningPerformanceCostPercentage *float64 `protobuf:"fixed64,362,opt,name=asset_learning_performance_cost_percentage,json=assetLearningPerformanceCostPercentage,proto3,oneof" json:"asset_learning_performance_cost_percentage,omitempty"`
+ // Percentage of cost the asset received in ads with AssetPerformanceLabel
+ // other than BEST, GOOD, LOW, and LEARNING.
+ // This metric can only be selected with ChannelAggregateAssetView and
+ // CampaignAggregateAssetView.
+ // This metric is only supported in Performance Max channel.
+ AssetUnratedPerformanceCostPercentage *float64 `protobuf:"fixed64,363,opt,name=asset_unrated_performance_cost_percentage,json=assetUnratedPerformanceCostPercentage,proto3,oneof" json:"asset_unrated_performance_cost_percentage,omitempty"`
}
func (x *Metrics) Reset() {
*x = Metrics{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_metrics_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_metrics_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -881,7 +1006,7 @@ func (x *Metrics) String() string {
func (*Metrics) ProtoMessage() {}
func (x *Metrics) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_metrics_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_metrics_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -894,7 +1019,7 @@ func (x *Metrics) ProtoReflect() protoreflect.Message {
// Deprecated: Use Metrics.ProtoReflect.Descriptor instead.
func (*Metrics) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_metrics_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_metrics_proto_rawDescGZIP(), []int{0}
}
func (x *Metrics) GetAbsoluteTopImpressionPercentage() float64 {
@@ -968,8 +1093,8 @@ func (x *Metrics) GetAllConversionsValue() float64 {
}
func (x *Metrics) GetAllConversionsValueByConversionDate() float64 {
- if x != nil {
- return x.AllConversionsValueByConversionDate
+ if x != nil && x.AllConversionsValueByConversionDate != nil {
+ return *x.AllConversionsValueByConversionDate
}
return 0
}
@@ -989,8 +1114,8 @@ func (x *Metrics) GetAllConversions() float64 {
}
func (x *Metrics) GetAllConversionsByConversionDate() float64 {
- if x != nil {
- return x.AllConversionsByConversionDate
+ if x != nil && x.AllConversionsByConversionDate != nil {
+ return *x.AllConversionsByConversionDate
}
return 0
}
@@ -1262,8 +1387,8 @@ func (x *Metrics) GetConversionsValue() float64 {
}
func (x *Metrics) GetConversionsValueByConversionDate() float64 {
- if x != nil {
- return x.ConversionsValueByConversionDate
+ if x != nil && x.ConversionsValueByConversionDate != nil {
+ return *x.ConversionsValueByConversionDate
}
return 0
}
@@ -1297,8 +1422,8 @@ func (x *Metrics) GetConversions() float64 {
}
func (x *Metrics) GetConversionsByConversionDate() float64 {
- if x != nil {
- return x.ConversionsByConversionDate
+ if x != nil && x.ConversionsByConversionDate != nil {
+ return *x.ConversionsByConversionDate
}
return 0
}
@@ -2115,6 +2240,167 @@ func (x *Metrics) GetAverageImpressionFrequencyPerUser() float64 {
return 0
}
+func (x *Metrics) GetLinkedEntitiesCount() int64 {
+ if x != nil && x.LinkedEntitiesCount != nil {
+ return *x.LinkedEntitiesCount
+ }
+ return 0
+}
+
+func (x *Metrics) GetLinkedSampleEntities() []string {
+ if x != nil {
+ return x.LinkedSampleEntities
+ }
+ return nil
+}
+
+func (x *Metrics) GetSampleBestPerformanceEntities() []string {
+ if x != nil {
+ return x.SampleBestPerformanceEntities
+ }
+ return nil
+}
+
+func (x *Metrics) GetSampleGoodPerformanceEntities() []string {
+ if x != nil {
+ return x.SampleGoodPerformanceEntities
+ }
+ return nil
+}
+
+func (x *Metrics) GetSampleLowPerformanceEntities() []string {
+ if x != nil {
+ return x.SampleLowPerformanceEntities
+ }
+ return nil
+}
+
+func (x *Metrics) GetSampleLearningPerformanceEntities() []string {
+ if x != nil {
+ return x.SampleLearningPerformanceEntities
+ }
+ return nil
+}
+
+func (x *Metrics) GetSampleUnratedPerformanceEntities() []string {
+ if x != nil {
+ return x.SampleUnratedPerformanceEntities
+ }
+ return nil
+}
+
+func (x *Metrics) GetAssetPinnedTotalCount() int64 {
+ if x != nil && x.AssetPinnedTotalCount != nil {
+ return *x.AssetPinnedTotalCount
+ }
+ return 0
+}
+
+func (x *Metrics) GetAssetPinnedAsHeadlinePositionOneCount() int64 {
+ if x != nil && x.AssetPinnedAsHeadlinePositionOneCount != nil {
+ return *x.AssetPinnedAsHeadlinePositionOneCount
+ }
+ return 0
+}
+
+func (x *Metrics) GetAssetPinnedAsHeadlinePositionTwoCount() int64 {
+ if x != nil && x.AssetPinnedAsHeadlinePositionTwoCount != nil {
+ return *x.AssetPinnedAsHeadlinePositionTwoCount
+ }
+ return 0
+}
+
+func (x *Metrics) GetAssetPinnedAsHeadlinePositionThreeCount() int64 {
+ if x != nil && x.AssetPinnedAsHeadlinePositionThreeCount != nil {
+ return *x.AssetPinnedAsHeadlinePositionThreeCount
+ }
+ return 0
+}
+
+func (x *Metrics) GetAssetPinnedAsDescriptionPositionOneCount() int64 {
+ if x != nil && x.AssetPinnedAsDescriptionPositionOneCount != nil {
+ return *x.AssetPinnedAsDescriptionPositionOneCount
+ }
+ return 0
+}
+
+func (x *Metrics) GetAssetPinnedAsDescriptionPositionTwoCount() int64 {
+ if x != nil && x.AssetPinnedAsDescriptionPositionTwoCount != nil {
+ return *x.AssetPinnedAsDescriptionPositionTwoCount
+ }
+ return 0
+}
+
+func (x *Metrics) GetAssetBestPerformanceImpressionPercentage() float64 {
+ if x != nil && x.AssetBestPerformanceImpressionPercentage != nil {
+ return *x.AssetBestPerformanceImpressionPercentage
+ }
+ return 0
+}
+
+func (x *Metrics) GetAssetGoodPerformanceImpressionPercentage() float64 {
+ if x != nil && x.AssetGoodPerformanceImpressionPercentage != nil {
+ return *x.AssetGoodPerformanceImpressionPercentage
+ }
+ return 0
+}
+
+func (x *Metrics) GetAssetLowPerformanceImpressionPercentage() float64 {
+ if x != nil && x.AssetLowPerformanceImpressionPercentage != nil {
+ return *x.AssetLowPerformanceImpressionPercentage
+ }
+ return 0
+}
+
+func (x *Metrics) GetAssetLearningPerformanceImpressionPercentage() float64 {
+ if x != nil && x.AssetLearningPerformanceImpressionPercentage != nil {
+ return *x.AssetLearningPerformanceImpressionPercentage
+ }
+ return 0
+}
+
+func (x *Metrics) GetAssetUnratedPerformanceImpressionPercentage() float64 {
+ if x != nil && x.AssetUnratedPerformanceImpressionPercentage != nil {
+ return *x.AssetUnratedPerformanceImpressionPercentage
+ }
+ return 0
+}
+
+func (x *Metrics) GetAssetBestPerformanceCostPercentage() float64 {
+ if x != nil && x.AssetBestPerformanceCostPercentage != nil {
+ return *x.AssetBestPerformanceCostPercentage
+ }
+ return 0
+}
+
+func (x *Metrics) GetAssetGoodPerformanceCostPercentage() float64 {
+ if x != nil && x.AssetGoodPerformanceCostPercentage != nil {
+ return *x.AssetGoodPerformanceCostPercentage
+ }
+ return 0
+}
+
+func (x *Metrics) GetAssetLowPerformanceCostPercentage() float64 {
+ if x != nil && x.AssetLowPerformanceCostPercentage != nil {
+ return *x.AssetLowPerformanceCostPercentage
+ }
+ return 0
+}
+
+func (x *Metrics) GetAssetLearningPerformanceCostPercentage() float64 {
+ if x != nil && x.AssetLearningPerformanceCostPercentage != nil {
+ return *x.AssetLearningPerformanceCostPercentage
+ }
+ return 0
+}
+
+func (x *Metrics) GetAssetUnratedPerformanceCostPercentage() float64 {
+ if x != nil && x.AssetUnratedPerformanceCostPercentage != nil {
+ return *x.AssetUnratedPerformanceCostPercentage
+ }
+ return 0
+}
+
// Search volume range.
// Actual search volume falls within this range.
type SearchVolumeRange struct {
@@ -2131,7 +2417,7 @@ type SearchVolumeRange struct {
func (x *SearchVolumeRange) Reset() {
*x = SearchVolumeRange{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_metrics_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_metrics_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2144,7 +2430,7 @@ func (x *SearchVolumeRange) String() string {
func (*SearchVolumeRange) ProtoMessage() {}
func (x *SearchVolumeRange) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_metrics_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_metrics_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2157,7 +2443,7 @@ func (x *SearchVolumeRange) ProtoReflect() protoreflect.Message {
// Deprecated: Use SearchVolumeRange.ProtoReflect.Descriptor instead.
func (*SearchVolumeRange) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_metrics_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_metrics_proto_rawDescGZIP(), []int{1}
}
func (x *SearchVolumeRange) GetMin() int64 {
@@ -2174,22 +2460,22 @@ func (x *SearchVolumeRange) GetMax() int64 {
return 0
}
-var File_google_ads_googleads_v16_common_metrics_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_metrics_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_metrics_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_metrics_proto_rawDesc = []byte{
0x0a, 0x2d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x1a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x76, 0x65,
0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x39, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x71, 0x75,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x71, 0x75,
0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x5f, 0x62, 0x75, 0x63, 0x6b,
- 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xc1, 0x8d, 0x01, 0x0a, 0x07, 0x4d, 0x65,
+ 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x91, 0xa5, 0x01, 0x0a, 0x07, 0x4d, 0x65,
0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x51, 0x0a, 0x22, 0x61, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74,
0x65, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0xb7, 0x01, 0x20, 0x01,
@@ -2232,1096 +2518,1285 @@ var file_google_ads_googleads_v16_common_metrics_proto_rawDesc = []byte{
0x01, 0x12, 0x38, 0x0a, 0x15, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0xc0, 0x01, 0x20, 0x01, 0x28,
0x01, 0x48, 0x09, 0x52, 0x13, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
- 0x6f, 0x6e, 0x73, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01, 0x12, 0x56, 0x0a, 0x28, 0x61,
+ 0x6f, 0x6e, 0x73, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01, 0x12, 0x5b, 0x0a, 0x28, 0x61,
0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76,
0x61, 0x6c, 0x75, 0x65, 0x5f, 0x62, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
- 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0xf0, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x23,
- 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x61,
- 0x6c, 0x75, 0x65, 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x44,
- 0x61, 0x74, 0x65, 0x12, 0x4a, 0x0a, 0x1f, 0x61, 0x6c, 0x6c, 0x5f, 0x6e, 0x65, 0x77, 0x5f, 0x63,
- 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x74, 0x69, 0x6d, 0x65,
- 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0xa6, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x0a, 0x52,
- 0x1b, 0x61, 0x6c, 0x6c, 0x4e, 0x65, 0x77, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c,
- 0x69, 0x66, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01, 0x12,
- 0x2d, 0x0a, 0x0f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x18, 0xc1, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x0b, 0x52, 0x0e, 0x61, 0x6c, 0x6c,
- 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x4b,
- 0x0a, 0x22, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
- 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f,
- 0x64, 0x61, 0x74, 0x65, 0x18, 0xf1, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x1e, 0x61, 0x6c, 0x6c,
- 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x48, 0x0a, 0x1e, 0x61,
- 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x18, 0xc2, 0x01,
- 0x20, 0x01, 0x28, 0x01, 0x48, 0x0c, 0x52, 0x1a, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, 0x43, 0x6f,
- 0x73, 0x74, 0x88, 0x01, 0x01, 0x12, 0x4f, 0x0a, 0x22, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x63, 0x6c,
- 0x69, 0x63, 0x6b, 0x5f, 0x74, 0x6f, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x18, 0xc3, 0x01, 0x20, 0x01,
- 0x28, 0x01, 0x48, 0x0d, 0x52, 0x1d, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x54, 0x6f, 0x43,
- 0x61, 0x6c, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x4b, 0x0a, 0x1f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f,
- 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x64,
- 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xc4, 0x01, 0x20, 0x01, 0x28, 0x01,
- 0x48, 0x0e, 0x52, 0x1c, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73,
- 0x88, 0x01, 0x01, 0x12, 0x78, 0x0a, 0x37, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65,
- 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70,
- 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0xc5,
- 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x0f, 0x52, 0x31, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76,
- 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72,
- 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, 0x49,
- 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x3f, 0x0a,
- 0x19, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
- 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x18, 0xc6, 0x01, 0x20, 0x01, 0x28,
- 0x01, 0x48, 0x10, 0x52, 0x16, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
- 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4d, 0x65, 0x6e, 0x75, 0x88, 0x01, 0x01, 0x12, 0x41,
- 0x0a, 0x1a, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
- 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0xc7, 0x01, 0x20,
- 0x01, 0x28, 0x01, 0x48, 0x11, 0x52, 0x17, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72,
- 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x88, 0x01,
- 0x01, 0x12, 0x56, 0x0a, 0x25, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x5f,
- 0x65, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0xc8, 0x01, 0x20, 0x01, 0x28,
- 0x01, 0x48, 0x12, 0x52, 0x21, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
- 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x45, 0x6e, 0x67, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x4c, 0x0a, 0x20, 0x61, 0x6c, 0x6c,
- 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f,
- 0x6d, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x74, 0x18, 0xc9, 0x01,
- 0x20, 0x01, 0x28, 0x01, 0x48, 0x13, 0x52, 0x1c, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x56,
- 0x69, 0x73, 0x69, 0x74, 0x88, 0x01, 0x01, 0x12, 0x50, 0x0a, 0x22, 0x61, 0x6c, 0x6c, 0x5f, 0x63,
+ 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0xf0, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x0a,
+ 0x52, 0x23, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
+ 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
+ 0x6e, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x4a, 0x0a, 0x1f, 0x61, 0x6c, 0x6c, 0x5f,
+ 0x6e, 0x65, 0x77, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x66,
+ 0x65, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0xa6, 0x02, 0x20, 0x01,
+ 0x28, 0x01, 0x48, 0x0b, 0x52, 0x1b, 0x61, 0x6c, 0x6c, 0x4e, 0x65, 0x77, 0x43, 0x75, 0x73, 0x74,
+ 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x56, 0x61, 0x6c, 0x75,
+ 0x65, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x0f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76,
+ 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xc1, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x0c,
+ 0x52, 0x0e, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
+ 0x88, 0x01, 0x01, 0x12, 0x50, 0x0a, 0x22, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
+ 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72,
+ 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0xf1, 0x01, 0x20, 0x01, 0x28, 0x01,
+ 0x48, 0x0d, 0x52, 0x1e, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x61,
+ 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x48, 0x0a, 0x1e, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e,
+ 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70,
+ 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x18, 0xc2, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x0e,
+ 0x52, 0x1a, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
+ 0x56, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, 0x43, 0x6f, 0x73, 0x74, 0x88, 0x01, 0x01, 0x12,
+ 0x4f, 0x0a, 0x22, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x74, 0x6f,
+ 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x18, 0xc3, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x0f, 0x52, 0x1d,
+ 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72,
+ 0x6f, 0x6d, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x54, 0x6f, 0x43, 0x61, 0x6c, 0x6c, 0x88, 0x01, 0x01,
+ 0x12, 0x4b, 0x0a, 0x1f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
+ 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x73, 0x18, 0xc4, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x10, 0x52, 0x1c, 0x61, 0x6c,
+ 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d,
+ 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x78, 0x0a,
+ 0x37, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
+ 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74,
+ 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0xc5, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48,
+ 0x11, 0x52, 0x31, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
+ 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x73, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x3f, 0x0a, 0x19, 0x61, 0x6c, 0x6c, 0x5f, 0x63,
0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f,
- 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x18, 0xca, 0x01,
- 0x20, 0x01, 0x28, 0x01, 0x48, 0x14, 0x52, 0x1e, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x57,
- 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x7c, 0x0a, 0x39, 0x61, 0x75, 0x63,
+ 0x6d, 0x65, 0x6e, 0x75, 0x18, 0xc6, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x12, 0x52, 0x16, 0x61,
+ 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f,
+ 0x6d, 0x4d, 0x65, 0x6e, 0x75, 0x88, 0x01, 0x01, 0x12, 0x41, 0x0a, 0x1a, 0x61, 0x6c, 0x6c, 0x5f,
+ 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d,
+ 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0xc7, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x13, 0x52,
+ 0x17, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46,
+ 0x72, 0x6f, 0x6d, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x56, 0x0a, 0x25, 0x61,
+ 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66,
+ 0x72, 0x6f, 0x6d, 0x5f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x5f, 0x65, 0x6e, 0x67, 0x61, 0x67, 0x65,
+ 0x6d, 0x65, 0x6e, 0x74, 0x18, 0xc8, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x14, 0x52, 0x21, 0x61,
+ 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f,
+ 0x6d, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x45, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
+ 0x88, 0x01, 0x01, 0x12, 0x4c, 0x0a, 0x20, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
+ 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x73, 0x74, 0x6f, 0x72,
+ 0x65, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x74, 0x18, 0xc9, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x15,
+ 0x52, 0x1c, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
+ 0x46, 0x72, 0x6f, 0x6d, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x56, 0x69, 0x73, 0x69, 0x74, 0x88, 0x01,
+ 0x01, 0x12, 0x50, 0x0a, 0x22, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
+ 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f,
+ 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x18, 0xca, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x16,
+ 0x52, 0x1e, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
+ 0x46, 0x72, 0x6f, 0x6d, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x57, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65,
+ 0x88, 0x01, 0x01, 0x12, 0x7c, 0x0a, 0x39, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69,
+ 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x61, 0x62,
+ 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65,
+ 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65,
+ 0x18, 0x82, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x17, 0x52, 0x33, 0x61, 0x75, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41,
+ 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x54, 0x6f, 0x70, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73,
+ 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01,
+ 0x01, 0x12, 0x5a, 0x0a, 0x27, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73,
+ 0x69, 0x67, 0x68, 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x69, 0x6d, 0x70, 0x72,
+ 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x83, 0x02, 0x20,
+ 0x01, 0x28, 0x01, 0x48, 0x18, 0x52, 0x23, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e,
+ 0x73, 0x69, 0x67, 0x68, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x49, 0x6d, 0x70, 0x72, 0x65,
+ 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x5a, 0x0a,
+ 0x27, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74,
+ 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x6f, 0x75, 0x74, 0x72, 0x61, 0x6e, 0x6b, 0x69,
+ 0x6e, 0x67, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x84, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48,
+ 0x19, 0x52, 0x23, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68,
+ 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4f, 0x75, 0x74, 0x72, 0x61, 0x6e, 0x6b, 0x69, 0x6e,
+ 0x67, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x52, 0x0a, 0x23, 0x61, 0x75, 0x63,
0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x73, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x5f, 0x61, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x5f, 0x74, 0x6f, 0x70,
- 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x65, 0x72, 0x63,
- 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0x82, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x15, 0x52,
- 0x33, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x54, 0x6f, 0x70,
- 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e,
- 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x5a, 0x0a, 0x27, 0x61, 0x75, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61,
- 0x72, 0x65, 0x18, 0x83, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x16, 0x52, 0x23, 0x61, 0x75, 0x63,
+ 0x72, 0x63, 0x68, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x5f, 0x72, 0x61, 0x74, 0x65,
+ 0x18, 0x85, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x1a, 0x52, 0x1f, 0x61, 0x75, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4f,
+ 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x5f, 0x0a,
+ 0x2a, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74,
+ 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e,
+ 0x5f, 0x61, 0x62, 0x6f, 0x76, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0x86, 0x02, 0x20, 0x01,
+ 0x28, 0x01, 0x48, 0x1b, 0x52, 0x25, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x73,
+ 0x69, 0x67, 0x68, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69,
+ 0x6f, 0x6e, 0x41, 0x62, 0x6f, 0x76, 0x65, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x6b,
+ 0x0a, 0x30, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68,
+ 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70,
+ 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61,
+ 0x67, 0x65, 0x18, 0x87, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x1c, 0x52, 0x2b, 0x61, 0x75, 0x63,
0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65,
- 0x88, 0x01, 0x01, 0x12, 0x5a, 0x0a, 0x27, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69,
- 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x6f, 0x75,
- 0x74, 0x72, 0x61, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x84,
- 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x17, 0x52, 0x23, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4f, 0x75, 0x74,
- 0x72, 0x61, 0x6e, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12,
- 0x52, 0x0a, 0x23, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67,
- 0x68, 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61,
- 0x70, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0x85, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x18, 0x52,
- 0x1f, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x52, 0x61, 0x74, 0x65,
- 0x88, 0x01, 0x01, 0x12, 0x5f, 0x0a, 0x2a, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69,
- 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x70, 0x6f,
- 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x62, 0x6f, 0x76, 0x65, 0x5f, 0x72, 0x61, 0x74,
- 0x65, 0x18, 0x86, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x19, 0x52, 0x25, 0x61, 0x75, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x62, 0x6f, 0x76, 0x65, 0x52, 0x61, 0x74,
- 0x65, 0x88, 0x01, 0x01, 0x12, 0x6b, 0x0a, 0x30, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
- 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74,
- 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x65,
- 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0x87, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48,
- 0x1a, 0x52, 0x2b, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68,
- 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x6f, 0x70, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73,
- 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01,
- 0x01, 0x12, 0x27, 0x0a, 0x0c, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x73,
- 0x74, 0x18, 0xcb, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x1b, 0x52, 0x0b, 0x61, 0x76, 0x65, 0x72,
- 0x61, 0x67, 0x65, 0x43, 0x6f, 0x73, 0x74, 0x88, 0x01, 0x01, 0x12, 0x25, 0x0a, 0x0b, 0x61, 0x76,
- 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x70, 0x63, 0x18, 0xcc, 0x01, 0x20, 0x01, 0x28, 0x01,
- 0x48, 0x1c, 0x52, 0x0a, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x43, 0x70, 0x63, 0x88, 0x01,
- 0x01, 0x12, 0x25, 0x0a, 0x0b, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x70, 0x65,
- 0x18, 0xcd, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x1d, 0x52, 0x0a, 0x61, 0x76, 0x65, 0x72, 0x61,
- 0x67, 0x65, 0x43, 0x70, 0x65, 0x88, 0x01, 0x01, 0x12, 0x25, 0x0a, 0x0b, 0x61, 0x76, 0x65, 0x72,
- 0x61, 0x67, 0x65, 0x5f, 0x63, 0x70, 0x6d, 0x18, 0xce, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x1e,
- 0x52, 0x0a, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x43, 0x70, 0x6d, 0x88, 0x01, 0x01, 0x12,
- 0x25, 0x0a, 0x0b, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x70, 0x76, 0x18, 0xcf,
- 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x1f, 0x52, 0x0a, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65,
- 0x43, 0x70, 0x76, 0x88, 0x01, 0x01, 0x12, 0x32, 0x0a, 0x12, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67,
- 0x65, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x73, 0x18, 0xd0, 0x01, 0x20,
- 0x01, 0x28, 0x01, 0x48, 0x20, 0x52, 0x10, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x50, 0x61,
- 0x67, 0x65, 0x56, 0x69, 0x65, 0x77, 0x73, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a, 0x14, 0x61, 0x76,
- 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6f, 0x6e, 0x5f, 0x73, 0x69,
- 0x74, 0x65, 0x18, 0xd1, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x21, 0x52, 0x11, 0x61, 0x76, 0x65,
- 0x72, 0x61, 0x67, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x4f, 0x6e, 0x53, 0x69, 0x74, 0x65, 0x88, 0x01,
- 0x01, 0x12, 0x3f, 0x0a, 0x19, 0x62, 0x65, 0x6e, 0x63, 0x68, 0x6d, 0x61, 0x72, 0x6b, 0x5f, 0x61,
- 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x63, 0x70, 0x63, 0x18, 0xd2,
- 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x22, 0x52, 0x16, 0x62, 0x65, 0x6e, 0x63, 0x68, 0x6d, 0x61,
- 0x72, 0x6b, 0x41, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x4d, 0x61, 0x78, 0x43, 0x70, 0x63, 0x88,
- 0x01, 0x01, 0x12, 0x4d, 0x0a, 0x20, 0x62, 0x69, 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x61,
- 0x70, 0x70, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xfe, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x23, 0x52,
- 0x1d, 0x62, 0x69, 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x73, 0x74,
- 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01,
- 0x01, 0x12, 0x56, 0x0a, 0x25, 0x62, 0x69, 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x61, 0x70,
- 0x70, 0x5f, 0x70, 0x6f, 0x73, 0x74, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x63,
- 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xff, 0x01, 0x20, 0x01, 0x28,
- 0x01, 0x48, 0x24, 0x52, 0x21, 0x62, 0x69, 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x70, 0x70,
- 0x50, 0x6f, 0x73, 0x74, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0d, 0x62, 0x65, 0x6e,
- 0x63, 0x68, 0x6d, 0x61, 0x72, 0x6b, 0x5f, 0x63, 0x74, 0x72, 0x18, 0xd3, 0x01, 0x20, 0x01, 0x28,
- 0x01, 0x48, 0x25, 0x52, 0x0c, 0x62, 0x65, 0x6e, 0x63, 0x68, 0x6d, 0x61, 0x72, 0x6b, 0x43, 0x74,
- 0x72, 0x88, 0x01, 0x01, 0x12, 0x25, 0x0a, 0x0b, 0x62, 0x6f, 0x75, 0x6e, 0x63, 0x65, 0x5f, 0x72,
- 0x61, 0x74, 0x65, 0x18, 0xd4, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x26, 0x52, 0x0a, 0x62, 0x6f,
- 0x75, 0x6e, 0x63, 0x65, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x06, 0x63,
- 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x18, 0x83, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x27, 0x52, 0x06,
- 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x0f, 0x63, 0x6f, 0x6d,
- 0x62, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x18, 0x9c, 0x01, 0x20,
- 0x01, 0x28, 0x03, 0x48, 0x28, 0x52, 0x0e, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x43,
- 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x88, 0x01, 0x01, 0x12, 0x3f, 0x0a, 0x19, 0x63, 0x6f, 0x6d, 0x62,
- 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x5f,
- 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x9d, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x29, 0x52, 0x16,
- 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x50, 0x65,
- 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x88, 0x01, 0x01, 0x12, 0x2f, 0x0a, 0x10, 0x63, 0x6f, 0x6d,
- 0x62, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x9e, 0x01,
- 0x20, 0x01, 0x28, 0x03, 0x48, 0x2a, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64,
- 0x51, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x88, 0x01, 0x01, 0x12, 0x54, 0x0a, 0x24, 0x63, 0x6f,
- 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x6c, 0x6f, 0x73,
- 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61,
- 0x72, 0x65, 0x18, 0x9f, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x2b, 0x52, 0x20, 0x63, 0x6f, 0x6e,
- 0x74, 0x65, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x4c, 0x6f, 0x73, 0x74, 0x49, 0x6d,
- 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01,
- 0x12, 0x3e, 0x0a, 0x18, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x72,
- 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0xa0, 0x01, 0x20,
- 0x01, 0x28, 0x01, 0x48, 0x2c, 0x52, 0x16, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x49, 0x6d,
- 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01,
- 0x12, 0x5f, 0x0a, 0x2a, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6c,
- 0x61, 0x73, 0x74, 0x5f, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0xa1,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x2d, 0x52, 0x25, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01,
- 0x01, 0x12, 0x4b, 0x0a, 0x1f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f,
- 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f,
- 0x64, 0x61, 0x74, 0x65, 0x18, 0xa2, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x2e, 0x52, 0x1c, 0x63,
- 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x50,
- 0x0a, 0x22, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x5f, 0x6c,
- 0x6f, 0x73, 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73,
- 0x68, 0x61, 0x72, 0x65, 0x18, 0xa3, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x2f, 0x52, 0x1e, 0x63,
- 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x52, 0x61, 0x6e, 0x6b, 0x4c, 0x6f, 0x73, 0x74, 0x49, 0x6d,
- 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01,
- 0x12, 0x51, 0x0a, 0x22, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f,
- 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x73, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0xa4, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x30, 0x52,
- 0x1f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d,
- 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x61, 0x74, 0x65,
- 0x88, 0x01, 0x01, 0x12, 0x31, 0x0a, 0x11, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0xa5, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48,
- 0x31, 0x52, 0x10, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x61,
- 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01, 0x12, 0x4f, 0x0a, 0x24, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72,
- 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x62, 0x79, 0x5f, 0x63,
- 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0xf2,
- 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x20, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x43, 0x0a, 0x1b, 0x6e, 0x65, 0x77, 0x5f, 0x63,
- 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x74, 0x69, 0x6d, 0x65,
- 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0xa5, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x32, 0x52,
- 0x18, 0x6e, 0x65, 0x77, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65,
- 0x74, 0x69, 0x6d, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01, 0x12, 0x41, 0x0a, 0x1a,
- 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75,
- 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x18, 0xa6, 0x01, 0x20, 0x01, 0x28,
- 0x01, 0x48, 0x33, 0x52, 0x17, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
- 0x56, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, 0x43, 0x6f, 0x73, 0x74, 0x88, 0x01, 0x01, 0x12,
- 0x71, 0x0a, 0x33, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66,
- 0x72, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73,
- 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72,
- 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0xa7, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x34, 0x52,
- 0x2e, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d,
- 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x61, 0x6c, 0x75,
- 0x65, 0x50, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x88,
- 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
- 0x73, 0x18, 0xa8, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x35, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x76,
- 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x44, 0x0a, 0x1e, 0x63, 0x6f,
- 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x63, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0xf3, 0x01, 0x20,
- 0x01, 0x28, 0x01, 0x52, 0x1b, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
- 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65,
- 0x12, 0x25, 0x0a, 0x0b, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18,
- 0xa9, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x36, 0x52, 0x0a, 0x63, 0x6f, 0x73, 0x74, 0x4d, 0x69,
- 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x3d, 0x0a, 0x18, 0x63, 0x6f, 0x73, 0x74, 0x5f,
- 0x70, 0x65, 0x72, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
- 0x6f, 0x6e, 0x73, 0x18, 0xaa, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x37, 0x52, 0x15, 0x63, 0x6f,
- 0x73, 0x74, 0x50, 0x65, 0x72, 0x41, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
- 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x34, 0x0a, 0x13, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x70,
- 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0xab, 0x01,
- 0x20, 0x01, 0x28, 0x01, 0x48, 0x38, 0x52, 0x11, 0x63, 0x6f, 0x73, 0x74, 0x50, 0x65, 0x72, 0x43,
- 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x63, 0x0a, 0x2c,
- 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74,
- 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
- 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0xac, 0x01, 0x20,
- 0x01, 0x28, 0x01, 0x48, 0x39, 0x52, 0x27, 0x63, 0x6f, 0x73, 0x74, 0x50, 0x65, 0x72, 0x43, 0x75,
- 0x72, 0x72, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62,
- 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01,
- 0x01, 0x12, 0x3e, 0x0a, 0x18, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63,
- 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xad, 0x01,
- 0x20, 0x01, 0x28, 0x01, 0x48, 0x3a, 0x52, 0x16, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x44, 0x65, 0x76,
- 0x69, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01,
- 0x01, 0x12, 0x56, 0x0a, 0x25, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63,
- 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0xb8, 0x02, 0x20, 0x01, 0x28,
- 0x03, 0x48, 0x3b, 0x52, 0x21, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65,
- 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x61, 0x6c, 0x75, 0x65,
- 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x16, 0x0a, 0x03, 0x63, 0x74, 0x72,
- 0x18, 0xae, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x3c, 0x52, 0x03, 0x63, 0x74, 0x72, 0x88, 0x01,
- 0x01, 0x12, 0x55, 0x0a, 0x24, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64,
- 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f,
- 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xaf, 0x01, 0x20, 0x01, 0x28, 0x01,
- 0x48, 0x3d, 0x52, 0x21, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c,
- 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72,
- 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x80, 0x01, 0x0a, 0x3b, 0x63, 0x75, 0x72,
+ 0x68, 0x54, 0x6f, 0x70, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x65,
+ 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x27, 0x0a, 0x0c, 0x61,
+ 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x18, 0xcb, 0x01, 0x20, 0x01,
+ 0x28, 0x01, 0x48, 0x1d, 0x52, 0x0b, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x73,
+ 0x74, 0x88, 0x01, 0x01, 0x12, 0x25, 0x0a, 0x0b, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f,
+ 0x63, 0x70, 0x63, 0x18, 0xcc, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x1e, 0x52, 0x0a, 0x61, 0x76,
+ 0x65, 0x72, 0x61, 0x67, 0x65, 0x43, 0x70, 0x63, 0x88, 0x01, 0x01, 0x12, 0x25, 0x0a, 0x0b, 0x61,
+ 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x70, 0x65, 0x18, 0xcd, 0x01, 0x20, 0x01, 0x28,
+ 0x01, 0x48, 0x1f, 0x52, 0x0a, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x43, 0x70, 0x65, 0x88,
+ 0x01, 0x01, 0x12, 0x25, 0x0a, 0x0b, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x70,
+ 0x6d, 0x18, 0xce, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x20, 0x52, 0x0a, 0x61, 0x76, 0x65, 0x72,
+ 0x61, 0x67, 0x65, 0x43, 0x70, 0x6d, 0x88, 0x01, 0x01, 0x12, 0x25, 0x0a, 0x0b, 0x61, 0x76, 0x65,
+ 0x72, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x70, 0x76, 0x18, 0xcf, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48,
+ 0x21, 0x52, 0x0a, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x43, 0x70, 0x76, 0x88, 0x01, 0x01,
+ 0x12, 0x32, 0x0a, 0x12, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x70, 0x61, 0x67, 0x65,
+ 0x5f, 0x76, 0x69, 0x65, 0x77, 0x73, 0x18, 0xd0, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x22, 0x52,
+ 0x10, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x50, 0x61, 0x67, 0x65, 0x56, 0x69, 0x65, 0x77,
+ 0x73, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a, 0x14, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f,
+ 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6f, 0x6e, 0x5f, 0x73, 0x69, 0x74, 0x65, 0x18, 0xd1, 0x01, 0x20,
+ 0x01, 0x28, 0x01, 0x48, 0x23, 0x52, 0x11, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x54, 0x69,
+ 0x6d, 0x65, 0x4f, 0x6e, 0x53, 0x69, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3f, 0x0a, 0x19, 0x62,
+ 0x65, 0x6e, 0x63, 0x68, 0x6d, 0x61, 0x72, 0x6b, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65,
+ 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x63, 0x70, 0x63, 0x18, 0xd2, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48,
+ 0x24, 0x52, 0x16, 0x62, 0x65, 0x6e, 0x63, 0x68, 0x6d, 0x61, 0x72, 0x6b, 0x41, 0x76, 0x65, 0x72,
+ 0x61, 0x67, 0x65, 0x4d, 0x61, 0x78, 0x43, 0x70, 0x63, 0x88, 0x01, 0x01, 0x12, 0x4d, 0x0a, 0x20,
+ 0x62, 0x69, 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x69, 0x6e, 0x73,
+ 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
+ 0x18, 0xfe, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x25, 0x52, 0x1d, 0x62, 0x69, 0x64, 0x64, 0x61,
+ 0x62, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e,
+ 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x56, 0x0a, 0x25, 0x62,
+ 0x69, 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x70, 0x6f, 0x73, 0x74,
+ 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
+ 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xff, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x26, 0x52, 0x21, 0x62,
+ 0x69, 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x50, 0x6f, 0x73, 0x74, 0x49, 0x6e,
+ 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
+ 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0d, 0x62, 0x65, 0x6e, 0x63, 0x68, 0x6d, 0x61, 0x72, 0x6b,
+ 0x5f, 0x63, 0x74, 0x72, 0x18, 0xd3, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x27, 0x52, 0x0c, 0x62,
+ 0x65, 0x6e, 0x63, 0x68, 0x6d, 0x61, 0x72, 0x6b, 0x43, 0x74, 0x72, 0x88, 0x01, 0x01, 0x12, 0x25,
+ 0x0a, 0x0b, 0x62, 0x6f, 0x75, 0x6e, 0x63, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0xd4, 0x01,
+ 0x20, 0x01, 0x28, 0x01, 0x48, 0x28, 0x52, 0x0a, 0x62, 0x6f, 0x75, 0x6e, 0x63, 0x65, 0x52, 0x61,
+ 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1c, 0x0a, 0x06, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x18,
+ 0x83, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x29, 0x52, 0x06, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73,
+ 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x0f, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x5f,
+ 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x18, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x2a, 0x52,
+ 0x0e, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x88,
+ 0x01, 0x01, 0x12, 0x3f, 0x0a, 0x19, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x63,
+ 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18,
+ 0x9d, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x2b, 0x52, 0x16, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e,
+ 0x65, 0x64, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x50, 0x65, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79,
+ 0x88, 0x01, 0x01, 0x12, 0x2f, 0x0a, 0x10, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x5f,
+ 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x9e, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x2c,
+ 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x51, 0x75, 0x65, 0x72, 0x69, 0x65,
+ 0x73, 0x88, 0x01, 0x01, 0x12, 0x54, 0x0a, 0x24, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f,
+ 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x6c, 0x6f, 0x73, 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x72,
+ 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x9f, 0x01, 0x20,
+ 0x01, 0x28, 0x01, 0x48, 0x2d, 0x52, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x42, 0x75,
+ 0x64, 0x67, 0x65, 0x74, 0x4c, 0x6f, 0x73, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
+ 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3e, 0x0a, 0x18, 0x63, 0x6f,
+ 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
+ 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0xa0, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x2e, 0x52,
+ 0x16, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
+ 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x5f, 0x0a, 0x2a, 0x63, 0x6f,
+ 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x72, 0x65,
+ 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x64,
+ 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0xa1, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48,
+ 0x2f, 0x52, 0x25, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x73,
+ 0x74, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
+ 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x4b, 0x0a, 0x1f, 0x63,
+ 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x63,
+ 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0xa2,
+ 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x30, 0x52, 0x1c, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
+ 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
+ 0x6e, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x50, 0x0a, 0x22, 0x63, 0x6f, 0x6e, 0x74,
+ 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x5f, 0x6c, 0x6f, 0x73, 0x74, 0x5f, 0x69, 0x6d,
+ 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0xa3,
+ 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x31, 0x52, 0x1e, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
+ 0x52, 0x61, 0x6e, 0x6b, 0x4c, 0x6f, 0x73, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
+ 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x51, 0x0a, 0x22, 0x63, 0x6f,
+ 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x69,
+ 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x72, 0x61, 0x74, 0x65,
+ 0x18, 0xa4, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x32, 0x52, 0x1f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
+ 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x31, 0x0a,
+ 0x11, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c,
+ 0x75, 0x65, 0x18, 0xa5, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x33, 0x52, 0x10, 0x63, 0x6f, 0x6e,
+ 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01,
+ 0x12, 0x54, 0x0a, 0x24, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f,
+ 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x62, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0xf2, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48,
+ 0x34, 0x52, 0x20, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x61,
+ 0x6c, 0x75, 0x65, 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x44,
+ 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x43, 0x0a, 0x1b, 0x6e, 0x65, 0x77, 0x5f, 0x63, 0x75,
+ 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x5f,
+ 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0xa5, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x35, 0x52, 0x18,
+ 0x6e, 0x65, 0x77, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x74,
+ 0x69, 0x6d, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01, 0x12, 0x41, 0x0a, 0x1a, 0x63,
+ 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65,
+ 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x18, 0xa6, 0x01, 0x20, 0x01, 0x28, 0x01,
+ 0x48, 0x36, 0x52, 0x17, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x56,
+ 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, 0x43, 0x6f, 0x73, 0x74, 0x88, 0x01, 0x01, 0x12, 0x71,
+ 0x0a, 0x33, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72,
+ 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f,
+ 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0xa7, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x37, 0x52, 0x2e,
+ 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x49,
+ 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x61, 0x6c, 0x75, 0x65,
+ 0x50, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01,
+ 0x01, 0x12, 0x26, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
+ 0x18, 0xa8, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x38, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x76, 0x65,
+ 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x49, 0x0a, 0x1e, 0x63, 0x6f, 0x6e,
+ 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x76,
+ 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0xf3, 0x01, 0x20, 0x01,
+ 0x28, 0x01, 0x48, 0x39, 0x52, 0x1b, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
+ 0x73, 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74,
+ 0x65, 0x88, 0x01, 0x01, 0x12, 0x25, 0x0a, 0x0b, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x6d, 0x69, 0x63,
+ 0x72, 0x6f, 0x73, 0x18, 0xa9, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x3a, 0x52, 0x0a, 0x63, 0x6f,
+ 0x73, 0x74, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x3d, 0x0a, 0x18, 0x63,
+ 0x6f, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76,
+ 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xaa, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x3b,
+ 0x52, 0x15, 0x63, 0x6f, 0x73, 0x74, 0x50, 0x65, 0x72, 0x41, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76,
+ 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x34, 0x0a, 0x13, 0x63, 0x6f,
+ 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
+ 0x6e, 0x18, 0xab, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x3c, 0x52, 0x11, 0x63, 0x6f, 0x73, 0x74,
+ 0x50, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01,
+ 0x12, 0x63, 0x0a, 0x2c, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x72,
0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69,
0x62, 0x75, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
- 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x73, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0xb0, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48,
- 0x3e, 0x52, 0x35, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x41,
- 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0xa0, 0x01, 0x0a, 0x4c,
- 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x74,
- 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61,
- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72,
- 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0xb1, 0x01, 0x20,
- 0x01, 0x28, 0x01, 0x48, 0x3f, 0x52, 0x44, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x4d, 0x6f,
+ 0x18, 0xac, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x3d, 0x52, 0x27, 0x63, 0x6f, 0x73, 0x74, 0x50,
+ 0x65, 0x72, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x41, 0x74,
+ 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
+ 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x3e, 0x0a, 0x18, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x64,
+ 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
+ 0x73, 0x18, 0xad, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x3e, 0x52, 0x16, 0x63, 0x72, 0x6f, 0x73,
+ 0x73, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x56, 0x0a, 0x25, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x64,
+ 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
+ 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0xb8,
+ 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x3f, 0x52, 0x21, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x44, 0x65,
+ 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x56,
+ 0x61, 0x6c, 0x75, 0x65, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x16, 0x0a,
+ 0x03, 0x63, 0x74, 0x72, 0x18, 0xae, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x40, 0x52, 0x03, 0x63,
+ 0x74, 0x72, 0x88, 0x01, 0x01, 0x12, 0x55, 0x0a, 0x24, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74,
+ 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
+ 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xaf, 0x01,
+ 0x20, 0x01, 0x28, 0x01, 0x48, 0x41, 0x52, 0x21, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x4d,
+ 0x6f, 0x64, 0x65, 0x6c, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f,
+ 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x80, 0x01, 0x0a,
+ 0x3b, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61,
+ 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72,
+ 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72,
+ 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0xb0, 0x01, 0x20,
+ 0x01, 0x28, 0x01, 0x48, 0x42, 0x52, 0x35, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x4d, 0x6f,
0x64, 0x65, 0x6c, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e,
0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65,
- 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72,
- 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x60,
- 0x0a, 0x2a, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f,
- 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0xb2, 0x01, 0x20,
- 0x01, 0x28, 0x01, 0x48, 0x40, 0x52, 0x26, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x4d, 0x6f,
- 0x64, 0x65, 0x6c, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01,
- 0x12, 0x70, 0x0a, 0x33, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65,
+ 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12,
+ 0xa0, 0x01, 0x0a, 0x4c, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65,
0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70,
- 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x18, 0xb3, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x41,
- 0x52, 0x2d, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x41, 0x74,
- 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
- 0x6f, 0x6e, 0x73, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, 0x43, 0x6f, 0x73, 0x74, 0x88,
- 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x0f, 0x65, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0xb4, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x42, 0x52, 0x0e,
- 0x65, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01,
- 0x01, 0x12, 0x26, 0x0a, 0x0b, 0x65, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73,
- 0x18, 0xb5, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x43, 0x52, 0x0b, 0x65, 0x6e, 0x67, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x88, 0x01, 0x01, 0x12, 0x4a, 0x0a, 0x1f, 0x68, 0x6f, 0x74,
- 0x65, 0x6c, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x5f,
- 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0xd5, 0x01, 0x20,
- 0x01, 0x28, 0x01, 0x48, 0x44, 0x52, 0x1b, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x41, 0x76, 0x65, 0x72,
- 0x61, 0x67, 0x65, 0x4c, 0x65, 0x61, 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x4d, 0x69, 0x63, 0x72,
- 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x45, 0x0a, 0x1c, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x63,
- 0x6f, 0x6d, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x6d,
- 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x80, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x45, 0x52, 0x19,
- 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52,
- 0x61, 0x74, 0x65, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x49, 0x0a, 0x1e,
- 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x65, 0x64, 0x5f, 0x63,
- 0x6f, 0x6d, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x18, 0x81,
- 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x46, 0x52, 0x1b, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x45, 0x78,
- 0x70, 0x65, 0x63, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e,
- 0x43, 0x6f, 0x73, 0x74, 0x88, 0x01, 0x01, 0x12, 0x4f, 0x0a, 0x21, 0x68, 0x6f, 0x74, 0x65, 0x6c,
- 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x64, 0x69, 0x66, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63,
- 0x65, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0xd6, 0x01, 0x20,
- 0x01, 0x28, 0x01, 0x48, 0x47, 0x52, 0x1e, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x72, 0x69, 0x63,
- 0x65, 0x44, 0x69, 0x66, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x50, 0x65, 0x72, 0x63, 0x65,
- 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x42, 0x0a, 0x1a, 0x68, 0x6f, 0x74, 0x65,
- 0x6c, 0x5f, 0x65, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65,
- 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xd7, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x48, 0x52,
- 0x18, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x45, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x49, 0x6d,
- 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x94, 0x01, 0x0a,
- 0x21, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x63, 0x72, 0x65, 0x61,
- 0x74, 0x69, 0x76, 0x65, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x63, 0x6f,
- 0x72, 0x65, 0x18, 0x50, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x49, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74,
- 0x79, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x45, 0x6e, 0x75, 0x6d,
+ 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x69, 0x6e,
+ 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65,
+ 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x18, 0xb1, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x43, 0x52, 0x44, 0x63, 0x75, 0x72, 0x72, 0x65,
+ 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
+ 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d,
+ 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x61, 0x6c, 0x75,
+ 0x65, 0x50, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x88,
+ 0x01, 0x01, 0x12, 0x60, 0x0a, 0x2a, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f,
+ 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f, 0x63,
+ 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65,
+ 0x18, 0xb2, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x44, 0x52, 0x26, 0x63, 0x75, 0x72, 0x72, 0x65,
+ 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
+ 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x61, 0x6c, 0x75,
+ 0x65, 0x88, 0x01, 0x01, 0x12, 0x70, 0x0a, 0x33, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f,
+ 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64,
+ 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c,
+ 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x18, 0xb3, 0x01, 0x20, 0x01,
+ 0x28, 0x01, 0x48, 0x45, 0x52, 0x2d, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64,
+ 0x65, 0x6c, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x76,
+ 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, 0x43,
+ 0x6f, 0x73, 0x74, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x0f, 0x65, 0x6e, 0x67, 0x61, 0x67, 0x65,
+ 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0xb4, 0x01, 0x20, 0x01, 0x28, 0x01,
+ 0x48, 0x46, 0x52, 0x0e, 0x65, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x61,
+ 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0b, 0x65, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d,
+ 0x65, 0x6e, 0x74, 0x73, 0x18, 0xb5, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x47, 0x52, 0x0b, 0x65,
+ 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x88, 0x01, 0x01, 0x12, 0x4a, 0x0a,
+ 0x1f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x6c,
+ 0x65, 0x61, 0x64, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73,
+ 0x18, 0xd5, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x48, 0x52, 0x1b, 0x68, 0x6f, 0x74, 0x65, 0x6c,
+ 0x41, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x4c, 0x65, 0x61, 0x64, 0x56, 0x61, 0x6c, 0x75, 0x65,
+ 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x45, 0x0a, 0x1c, 0x68, 0x6f, 0x74,
+ 0x65, 0x6c, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x61,
+ 0x74, 0x65, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x80, 0x02, 0x20, 0x01, 0x28, 0x03,
+ 0x48, 0x49, 0x52, 0x19, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x73, 0x73,
+ 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01,
+ 0x12, 0x49, 0x0a, 0x1e, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74,
+ 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f,
+ 0x73, 0x74, 0x18, 0x81, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x4a, 0x52, 0x1b, 0x68, 0x6f, 0x74,
+ 0x65, 0x6c, 0x45, 0x78, 0x70, 0x65, 0x63, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6d, 0x6d, 0x69, 0x73,
+ 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x73, 0x74, 0x88, 0x01, 0x01, 0x12, 0x4f, 0x0a, 0x21, 0x68,
+ 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x64, 0x69, 0x66, 0x66, 0x65,
+ 0x72, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65,
+ 0x18, 0xd6, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x4b, 0x52, 0x1e, 0x68, 0x6f, 0x74, 0x65, 0x6c,
+ 0x50, 0x72, 0x69, 0x63, 0x65, 0x44, 0x69, 0x66, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x50,
+ 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x42, 0x0a, 0x1a,
+ 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x65, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x5f, 0x69,
+ 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xd7, 0x01, 0x20, 0x01, 0x28,
+ 0x03, 0x48, 0x4c, 0x52, 0x18, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x45, 0x6c, 0x69, 0x67, 0x69, 0x62,
+ 0x6c, 0x65, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01,
+ 0x12, 0x94, 0x01, 0x0a, 0x21, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x5f,
+ 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79,
+ 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x50, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x49, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x51, 0x75,
+ 0x61, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74,
+ 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x6f, 0x72,
+ 0x65, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x1e, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69,
+ 0x63, 0x61, 0x6c, 0x43, 0x72, 0x65, 0x61, 0x74, 0x69, 0x76, 0x65, 0x51, 0x75, 0x61, 0x6c, 0x69,
+ 0x74, 0x79, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x12, 0x9b, 0x01, 0x0a, 0x25, 0x68, 0x69, 0x73, 0x74,
+ 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x6c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x70,
+ 0x61, 0x67, 0x65, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x63, 0x6f, 0x72,
+ 0x65, 0x18, 0x51, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x49, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79,
+ 0x53, 0x63, 0x6f, 0x72, 0x65, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
+ 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x42, 0x75, 0x63, 0x6b,
+ 0x65, 0x74, 0x52, 0x21, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x4c, 0x61,
+ 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x67, 0x65, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79,
+ 0x53, 0x63, 0x6f, 0x72, 0x65, 0x12, 0x3e, 0x0a, 0x18, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69,
+ 0x63, 0x61, 0x6c, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x63, 0x6f, 0x72,
+ 0x65, 0x18, 0xd8, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x4d, 0x52, 0x16, 0x68, 0x69, 0x73, 0x74,
+ 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x6f,
+ 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x90, 0x01, 0x0a, 0x1f, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72,
+ 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x70, 0x72, 0x65, 0x64,
+ 0x69, 0x63, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x74, 0x72, 0x18, 0x53, 0x20, 0x01, 0x28, 0x0e, 0x32,
+ 0x49, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2e, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x42, 0x75, 0x63,
- 0x6b, 0x65, 0x74, 0x52, 0x1e, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x43,
- 0x72, 0x65, 0x61, 0x74, 0x69, 0x76, 0x65, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63,
- 0x6f, 0x72, 0x65, 0x12, 0x9b, 0x01, 0x0a, 0x25, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63,
- 0x61, 0x6c, 0x5f, 0x6c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f,
- 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x51, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x49, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
- 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x6f, 0x72,
- 0x65, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x51, 0x75, 0x61, 0x6c,
- 0x69, 0x74, 0x79, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x21,
- 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x4c, 0x61, 0x6e, 0x64, 0x69, 0x6e,
- 0x67, 0x50, 0x61, 0x67, 0x65, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x6f, 0x72,
- 0x65, 0x12, 0x3e, 0x0a, 0x18, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x5f,
- 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0xd8, 0x01,
- 0x20, 0x01, 0x28, 0x03, 0x48, 0x49, 0x52, 0x16, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63,
- 0x61, 0x6c, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x88, 0x01,
- 0x01, 0x12, 0x90, 0x01, 0x0a, 0x1f, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c,
- 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x70, 0x72, 0x65, 0x64, 0x69, 0x63, 0x74, 0x65,
- 0x64, 0x5f, 0x63, 0x74, 0x72, 0x18, 0x53, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x49, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x51, 0x75, 0x61,
- 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x45,
- 0x6e, 0x75, 0x6d, 0x2e, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x6f, 0x72, 0x65,
- 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x1c, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63,
- 0x61, 0x6c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x64, 0x69, 0x63, 0x74, 0x65,
- 0x64, 0x43, 0x74, 0x72, 0x12, 0x2b, 0x0a, 0x0e, 0x67, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x66, 0x6f,
- 0x72, 0x77, 0x61, 0x72, 0x64, 0x73, 0x18, 0xd9, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x4a, 0x52,
- 0x0d, 0x67, 0x6d, 0x61, 0x69, 0x6c, 0x46, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x73, 0x88, 0x01,
- 0x01, 0x12, 0x25, 0x0a, 0x0b, 0x67, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x73, 0x61, 0x76, 0x65, 0x73,
- 0x18, 0xda, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x4b, 0x52, 0x0a, 0x67, 0x6d, 0x61, 0x69, 0x6c,
- 0x53, 0x61, 0x76, 0x65, 0x73, 0x88, 0x01, 0x01, 0x12, 0x3a, 0x0a, 0x16, 0x67, 0x6d, 0x61, 0x69,
- 0x6c, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x5f, 0x63, 0x6c, 0x69, 0x63,
- 0x6b, 0x73, 0x18, 0xdb, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x4c, 0x52, 0x14, 0x67, 0x6d, 0x61,
- 0x69, 0x6c, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x43, 0x6c, 0x69, 0x63, 0x6b,
- 0x73, 0x88, 0x01, 0x01, 0x12, 0x45, 0x0a, 0x1c, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
- 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x72,
- 0x65, 0x61, 0x63, 0x68, 0x18, 0xdc, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x4d, 0x52, 0x19, 0x69,
- 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x53, 0x74,
- 0x6f, 0x72, 0x65, 0x52, 0x65, 0x61, 0x63, 0x68, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0b, 0x69,
- 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xdd, 0x01, 0x20, 0x01, 0x28,
- 0x03, 0x48, 0x4e, 0x52, 0x0b, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73,
- 0x88, 0x01, 0x01, 0x12, 0x2f, 0x0a, 0x10, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0xde, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x4f,
- 0x52, 0x0f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74,
- 0x65, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0c, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xdf, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x50, 0x52, 0x0c, 0x69,
- 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x85,
- 0x01, 0x0a, 0x17, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65,
- 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x64, 0x20, 0x03, 0x28, 0x0e,
- 0x32, 0x4d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
- 0x73, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65,
- 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72,
- 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52,
- 0x15, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e,
- 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x32, 0x0a, 0x12, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69,
- 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0xe0, 0x01, 0x20,
- 0x01, 0x28, 0x01, 0x48, 0x51, 0x52, 0x10, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x43, 0x6c,
- 0x69, 0x63, 0x6b, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2b, 0x0a, 0x0e, 0x69, 0x6e,
- 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x18, 0xe1, 0x01, 0x20,
- 0x01, 0x28, 0x03, 0x48, 0x52, 0x52, 0x0d, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x43, 0x6c,
- 0x69, 0x63, 0x6b, 0x73, 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0d, 0x6d, 0x65, 0x73, 0x73, 0x61,
- 0x67, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x74, 0x73, 0x18, 0xe2, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48,
- 0x53, 0x52, 0x0c, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x43, 0x68, 0x61, 0x74, 0x73, 0x88,
- 0x01, 0x01, 0x12, 0x35, 0x0a, 0x13, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x6d,
- 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xe3, 0x01, 0x20, 0x01, 0x28, 0x03,
- 0x48, 0x54, 0x52, 0x12, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x6d, 0x70, 0x72, 0x65,
- 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a, 0x11, 0x6d, 0x65, 0x73,
- 0x73, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0xe4,
- 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x55, 0x52, 0x0f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
- 0x43, 0x68, 0x61, 0x74, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x4f, 0x0a, 0x21, 0x6d,
- 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x6c, 0x79, 0x5f, 0x63,
- 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65,
- 0x18, 0xe5, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x56, 0x52, 0x1e, 0x6d, 0x6f, 0x62, 0x69, 0x6c,
- 0x65, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x6c, 0x79, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x50,
- 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x40, 0x0a, 0x19,
- 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x63, 0x6f,
- 0x72, 0x65, 0x5f, 0x75, 0x70, 0x6c, 0x69, 0x66, 0x74, 0x18, 0xf7, 0x01, 0x20, 0x01, 0x28, 0x01,
- 0x48, 0x57, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x53, 0x63, 0x6f, 0x72, 0x65, 0x55, 0x70, 0x6c, 0x69, 0x66, 0x74, 0x88, 0x01, 0x01, 0x12, 0x3a,
- 0x0a, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73,
- 0x63, 0x6f, 0x72, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0xf8, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48,
- 0x58, 0x52, 0x14, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53,
- 0x63, 0x6f, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x2b, 0x0a, 0x0e, 0x6f, 0x72,
- 0x67, 0x61, 0x6e, 0x69, 0x63, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x18, 0xe6, 0x01, 0x20,
- 0x01, 0x28, 0x03, 0x48, 0x59, 0x52, 0x0d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x43, 0x6c,
- 0x69, 0x63, 0x6b, 0x73, 0x88, 0x01, 0x01, 0x12, 0x3d, 0x0a, 0x18, 0x6f, 0x72, 0x67, 0x61, 0x6e,
- 0x69, 0x63, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x71, 0x75,
- 0x65, 0x72, 0x79, 0x18, 0xe7, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x5a, 0x52, 0x15, 0x6f, 0x72,
- 0x67, 0x61, 0x6e, 0x69, 0x63, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x50, 0x65, 0x72, 0x51, 0x75,
- 0x65, 0x72, 0x79, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a, 0x13, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69,
- 0x63, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xe8, 0x01,
- 0x20, 0x01, 0x28, 0x03, 0x48, 0x5b, 0x52, 0x12, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x49,
- 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x47, 0x0a,
- 0x1d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
- 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0xe9,
- 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x5c, 0x52, 0x1a, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63,
- 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x50, 0x65, 0x72, 0x51, 0x75,
- 0x65, 0x72, 0x79, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69,
- 0x63, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0xea, 0x01, 0x20, 0x01, 0x28, 0x03,
- 0x48, 0x5d, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x51, 0x75, 0x65, 0x72, 0x69,
- 0x65, 0x73, 0x88, 0x01, 0x01, 0x12, 0x36, 0x0a, 0x14, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74,
- 0x5f, 0x6e, 0x65, 0x77, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x73, 0x18, 0xeb, 0x01,
- 0x20, 0x01, 0x28, 0x01, 0x48, 0x5e, 0x52, 0x12, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x4e,
- 0x65, 0x77, 0x56, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x73, 0x88, 0x01, 0x01, 0x12, 0x25, 0x0a,
- 0x0b, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x73, 0x18, 0xec, 0x01, 0x20,
- 0x01, 0x28, 0x03, 0x48, 0x5f, 0x52, 0x0a, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x61, 0x6c, 0x6c,
- 0x73, 0x88, 0x01, 0x01, 0x12, 0x31, 0x0a, 0x11, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x69, 0x6d,
- 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xed, 0x01, 0x20, 0x01, 0x28, 0x03,
- 0x48, 0x60, 0x52, 0x10, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
- 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x32, 0x0a, 0x12, 0x70, 0x68, 0x6f, 0x6e, 0x65,
- 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0xee, 0x01,
- 0x20, 0x01, 0x28, 0x01, 0x48, 0x61, 0x52, 0x10, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x54, 0x68, 0x72,
- 0x6f, 0x75, 0x67, 0x68, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x27, 0x0a, 0x0c, 0x72,
- 0x65, 0x6c, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x74, 0x72, 0x18, 0xef, 0x01, 0x20, 0x01,
- 0x28, 0x01, 0x48, 0x62, 0x52, 0x0b, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x76, 0x65, 0x43, 0x74,
- 0x72, 0x88, 0x01, 0x01, 0x12, 0x54, 0x0a, 0x24, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x61,
- 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72,
- 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x88, 0x01, 0x20,
- 0x01, 0x28, 0x01, 0x48, 0x63, 0x52, 0x20, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x62, 0x73,
+ 0x6b, 0x65, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x53,
+ 0x63, 0x6f, 0x72, 0x65, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x1c, 0x68, 0x69, 0x73, 0x74,
+ 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x65, 0x64,
+ 0x69, 0x63, 0x74, 0x65, 0x64, 0x43, 0x74, 0x72, 0x12, 0x2b, 0x0a, 0x0e, 0x67, 0x6d, 0x61, 0x69,
+ 0x6c, 0x5f, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x73, 0x18, 0xd9, 0x01, 0x20, 0x01, 0x28,
+ 0x03, 0x48, 0x4e, 0x52, 0x0d, 0x67, 0x6d, 0x61, 0x69, 0x6c, 0x46, 0x6f, 0x72, 0x77, 0x61, 0x72,
+ 0x64, 0x73, 0x88, 0x01, 0x01, 0x12, 0x25, 0x0a, 0x0b, 0x67, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x73,
+ 0x61, 0x76, 0x65, 0x73, 0x18, 0xda, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x4f, 0x52, 0x0a, 0x67,
+ 0x6d, 0x61, 0x69, 0x6c, 0x53, 0x61, 0x76, 0x65, 0x73, 0x88, 0x01, 0x01, 0x12, 0x3a, 0x0a, 0x16,
+ 0x67, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x5f,
+ 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x18, 0xdb, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x50, 0x52,
+ 0x14, 0x67, 0x6d, 0x61, 0x69, 0x6c, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x43,
+ 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x88, 0x01, 0x01, 0x12, 0x45, 0x0a, 0x1c, 0x69, 0x6d, 0x70, 0x72,
+ 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x73, 0x74, 0x6f,
+ 0x72, 0x65, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, 0xdc, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48,
+ 0x51, 0x52, 0x19, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72,
+ 0x6f, 0x6d, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x52, 0x65, 0x61, 0x63, 0x68, 0x88, 0x01, 0x01, 0x12,
+ 0x26, 0x0a, 0x0b, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xdd,
+ 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x52, 0x52, 0x0b, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
+ 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x2f, 0x0a, 0x10, 0x69, 0x6e, 0x74, 0x65, 0x72,
+ 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0xde, 0x01, 0x20, 0x01,
+ 0x28, 0x01, 0x48, 0x53, 0x52, 0x0f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0c, 0x69, 0x6e, 0x74, 0x65,
+ 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xdf, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48,
+ 0x54, 0x52, 0x0c, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x88,
+ 0x01, 0x01, 0x12, 0x85, 0x01, 0x0a, 0x17, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x64,
+ 0x20, 0x03, 0x28, 0x0e, 0x32, 0x4d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
+ 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x49,
+ 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x54,
+ 0x79, 0x70, 0x65, 0x52, 0x15, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x45, 0x76, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x32, 0x0a, 0x12, 0x69, 0x6e,
+ 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x72, 0x61, 0x74, 0x65,
+ 0x18, 0xe0, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x55, 0x52, 0x10, 0x69, 0x6e, 0x76, 0x61, 0x6c,
+ 0x69, 0x64, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2b,
+ 0x0a, 0x0e, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73,
+ 0x18, 0xe1, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x56, 0x52, 0x0d, 0x69, 0x6e, 0x76, 0x61, 0x6c,
+ 0x69, 0x64, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x88, 0x01, 0x01, 0x12, 0x29, 0x0a, 0x0d, 0x6d,
+ 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x74, 0x73, 0x18, 0xe2, 0x01, 0x20,
+ 0x01, 0x28, 0x03, 0x48, 0x57, 0x52, 0x0c, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x43, 0x68,
+ 0x61, 0x74, 0x73, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a, 0x13, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
+ 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xe3, 0x01,
+ 0x20, 0x01, 0x28, 0x03, 0x48, 0x58, 0x52, 0x12, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49,
+ 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a,
+ 0x11, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x74, 0x5f, 0x72, 0x61,
+ 0x74, 0x65, 0x18, 0xe4, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x59, 0x52, 0x0f, 0x6d, 0x65, 0x73,
+ 0x73, 0x61, 0x67, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12,
+ 0x4f, 0x0a, 0x21, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64,
+ 0x6c, 0x79, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e,
+ 0x74, 0x61, 0x67, 0x65, 0x18, 0xe5, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x5a, 0x52, 0x1e, 0x6d,
+ 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x6c, 0x79, 0x43, 0x6c, 0x69,
+ 0x63, 0x6b, 0x73, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01,
+ 0x12, 0x40, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x5f, 0x75, 0x70, 0x6c, 0x69, 0x66, 0x74, 0x18, 0xf7, 0x01,
+ 0x20, 0x01, 0x28, 0x01, 0x48, 0x5b, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61,
+ 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x55, 0x70, 0x6c, 0x69, 0x66, 0x74, 0x88,
+ 0x01, 0x01, 0x12, 0x3a, 0x0a, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0xf8, 0x01, 0x20,
+ 0x01, 0x28, 0x09, 0x48, 0x5c, 0x52, 0x14, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x2b,
+ 0x0a, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73,
+ 0x18, 0xe6, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x5d, 0x52, 0x0d, 0x6f, 0x72, 0x67, 0x61, 0x6e,
+ 0x69, 0x63, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x88, 0x01, 0x01, 0x12, 0x3d, 0x0a, 0x18, 0x6f,
+ 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x70, 0x65,
+ 0x72, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0xe7, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x5e,
+ 0x52, 0x15, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x50,
+ 0x65, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a, 0x13, 0x6f, 0x72,
+ 0x67, 0x61, 0x6e, 0x69, 0x63, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
+ 0x73, 0x18, 0xe8, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x5f, 0x52, 0x12, 0x6f, 0x72, 0x67, 0x61,
+ 0x6e, 0x69, 0x63, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01,
+ 0x01, 0x12, 0x47, 0x0a, 0x1d, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x5f, 0x69, 0x6d, 0x70,
+ 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x71, 0x75, 0x65,
+ 0x72, 0x79, 0x18, 0xe9, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x60, 0x52, 0x1a, 0x6f, 0x72, 0x67,
+ 0x61, 0x6e, 0x69, 0x63, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x50,
+ 0x65, 0x72, 0x51, 0x75, 0x65, 0x72, 0x79, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x0f, 0x6f, 0x72,
+ 0x67, 0x61, 0x6e, 0x69, 0x63, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0xea, 0x01,
+ 0x20, 0x01, 0x28, 0x03, 0x48, 0x61, 0x52, 0x0e, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x51,
+ 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x88, 0x01, 0x01, 0x12, 0x36, 0x0a, 0x14, 0x70, 0x65, 0x72,
+ 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x65, 0x77, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x72,
+ 0x73, 0x18, 0xeb, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x62, 0x52, 0x12, 0x70, 0x65, 0x72, 0x63,
+ 0x65, 0x6e, 0x74, 0x4e, 0x65, 0x77, 0x56, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x73, 0x88, 0x01,
+ 0x01, 0x12, 0x25, 0x0a, 0x0b, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x73,
+ 0x18, 0xec, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x63, 0x52, 0x0a, 0x70, 0x68, 0x6f, 0x6e, 0x65,
+ 0x43, 0x61, 0x6c, 0x6c, 0x73, 0x88, 0x01, 0x01, 0x12, 0x31, 0x0a, 0x11, 0x70, 0x68, 0x6f, 0x6e,
+ 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xed, 0x01,
+ 0x20, 0x01, 0x28, 0x03, 0x48, 0x64, 0x52, 0x10, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x49, 0x6d, 0x70,
+ 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x32, 0x0a, 0x12, 0x70,
+ 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x72, 0x61, 0x74,
+ 0x65, 0x18, 0xee, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x65, 0x52, 0x10, 0x70, 0x68, 0x6f, 0x6e,
+ 0x65, 0x54, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12,
+ 0x27, 0x0a, 0x0c, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x74, 0x72, 0x18,
+ 0xef, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x66, 0x52, 0x0b, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69,
+ 0x76, 0x65, 0x43, 0x74, 0x72, 0x88, 0x01, 0x01, 0x12, 0x54, 0x0a, 0x24, 0x73, 0x65, 0x61, 0x72,
+ 0x63, 0x68, 0x5f, 0x61, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x5f, 0x74, 0x6f, 0x70, 0x5f,
+ 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65,
+ 0x18, 0x88, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x67, 0x52, 0x20, 0x73, 0x65, 0x61, 0x72, 0x63,
+ 0x68, 0x41, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x54, 0x6f, 0x70, 0x49, 0x6d, 0x70, 0x72,
+ 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x6a,
+ 0x0a, 0x30, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f,
+ 0x6c, 0x6f, 0x73, 0x74, 0x5f, 0x61, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x5f, 0x74, 0x6f,
+ 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61,
+ 0x72, 0x65, 0x18, 0x89, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x68, 0x52, 0x2a, 0x73, 0x65, 0x61,
+ 0x72, 0x63, 0x68, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x4c, 0x6f, 0x73, 0x74, 0x41, 0x62, 0x73,
0x6f, 0x6c, 0x75, 0x74, 0x65, 0x54, 0x6f, 0x70, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
- 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x6a, 0x0a, 0x30, 0x73, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x6c, 0x6f, 0x73, 0x74,
- 0x5f, 0x61, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d,
- 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x89,
- 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x64, 0x52, 0x2a, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x42,
- 0x75, 0x64, 0x67, 0x65, 0x74, 0x4c, 0x6f, 0x73, 0x74, 0x41, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74,
- 0x65, 0x54, 0x6f, 0x70, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68,
- 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x52, 0x0a, 0x23, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x6c, 0x6f, 0x73, 0x74, 0x5f, 0x69, 0x6d, 0x70,
- 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x8a, 0x01,
- 0x20, 0x01, 0x28, 0x01, 0x48, 0x65, 0x52, 0x1f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x42, 0x75,
- 0x64, 0x67, 0x65, 0x74, 0x4c, 0x6f, 0x73, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
- 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x59, 0x0a, 0x27, 0x73, 0x65,
+ 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x52, 0x0a, 0x23, 0x73, 0x65,
0x61, 0x72, 0x63, 0x68, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x6c, 0x6f, 0x73, 0x74,
- 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f,
- 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x8b, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x66, 0x52, 0x22,
- 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x4c, 0x6f, 0x73, 0x74,
- 0x54, 0x6f, 0x70, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61,
- 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x32, 0x0a, 0x12, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f,
- 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x8c, 0x01, 0x20, 0x01,
- 0x28, 0x01, 0x48, 0x67, 0x52, 0x10, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x43, 0x6c, 0x69, 0x63,
- 0x6b, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x52, 0x0a, 0x23, 0x73, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x5f, 0x65, 0x78, 0x61, 0x63, 0x74, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f,
+ 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72,
+ 0x65, 0x18, 0x8a, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x69, 0x52, 0x1f, 0x73, 0x65, 0x61, 0x72,
+ 0x63, 0x68, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x4c, 0x6f, 0x73, 0x74, 0x49, 0x6d, 0x70, 0x72,
+ 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x59,
+ 0x0a, 0x27, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f,
+ 0x6c, 0x6f, 0x73, 0x74, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x8b, 0x01, 0x20, 0x01, 0x28, 0x01,
+ 0x48, 0x6a, 0x52, 0x22, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74,
+ 0x4c, 0x6f, 0x73, 0x74, 0x54, 0x6f, 0x70, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x32, 0x0a, 0x12, 0x73, 0x65, 0x61,
+ 0x72, 0x63, 0x68, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18,
+ 0x8c, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x6b, 0x52, 0x10, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68,
+ 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x52, 0x0a,
+ 0x23, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x65, 0x78, 0x61, 0x63, 0x74, 0x5f, 0x6d, 0x61,
+ 0x74, 0x63, 0x68, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73,
+ 0x68, 0x61, 0x72, 0x65, 0x18, 0x8d, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x6c, 0x52, 0x1f, 0x73,
+ 0x65, 0x61, 0x72, 0x63, 0x68, 0x45, 0x78, 0x61, 0x63, 0x74, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x49,
+ 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01,
+ 0x01, 0x12, 0x3c, 0x0a, 0x17, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x69, 0x6d, 0x70, 0x72,
+ 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x8e, 0x01, 0x20,
+ 0x01, 0x28, 0x01, 0x48, 0x6d, 0x52, 0x15, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x49, 0x6d, 0x70,
+ 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12,
+ 0x66, 0x0a, 0x2e, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x5f, 0x6c,
+ 0x6f, 0x73, 0x74, 0x5f, 0x61, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x5f, 0x74, 0x6f, 0x70,
+ 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72,
+ 0x65, 0x18, 0x8f, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x6e, 0x52, 0x28, 0x73, 0x65, 0x61, 0x72,
+ 0x63, 0x68, 0x52, 0x61, 0x6e, 0x6b, 0x4c, 0x6f, 0x73, 0x74, 0x41, 0x62, 0x73, 0x6f, 0x6c, 0x75,
+ 0x74, 0x65, 0x54, 0x6f, 0x70, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53,
+ 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x4e, 0x0a, 0x21, 0x73, 0x65, 0x61, 0x72, 0x63,
+ 0x68, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x5f, 0x6c, 0x6f, 0x73, 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x72,
+ 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x90, 0x01, 0x20,
+ 0x01, 0x28, 0x01, 0x48, 0x6f, 0x52, 0x1d, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x61, 0x6e,
+ 0x6b, 0x4c, 0x6f, 0x73, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53,
+ 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x55, 0x0a, 0x25, 0x73, 0x65, 0x61, 0x72, 0x63,
+ 0x68, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x5f, 0x6c, 0x6f, 0x73, 0x74, 0x5f, 0x74, 0x6f, 0x70, 0x5f,
0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65,
- 0x18, 0x8d, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x68, 0x52, 0x1f, 0x73, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x45, 0x78, 0x61, 0x63, 0x74, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x49, 0x6d, 0x70, 0x72, 0x65,
- 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3c, 0x0a,
- 0x17, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
- 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x8e, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48,
- 0x69, 0x52, 0x15, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
- 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x66, 0x0a, 0x2e, 0x73,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x5f, 0x6c, 0x6f, 0x73, 0x74, 0x5f,
- 0x61, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70,
- 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x8f, 0x01,
- 0x20, 0x01, 0x28, 0x01, 0x48, 0x6a, 0x52, 0x28, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x61,
- 0x6e, 0x6b, 0x4c, 0x6f, 0x73, 0x74, 0x41, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x54, 0x6f,
+ 0x18, 0x91, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x70, 0x52, 0x20, 0x73, 0x65, 0x61, 0x72, 0x63,
+ 0x68, 0x52, 0x61, 0x6e, 0x6b, 0x4c, 0x6f, 0x73, 0x74, 0x54, 0x6f, 0x70, 0x49, 0x6d, 0x70, 0x72,
+ 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x43,
+ 0x0a, 0x1b, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70,
+ 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x92, 0x01,
+ 0x20, 0x01, 0x28, 0x01, 0x48, 0x71, 0x52, 0x18, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x6f,
0x70, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65,
- 0x88, 0x01, 0x01, 0x12, 0x4e, 0x0a, 0x21, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x72, 0x61,
- 0x6e, 0x6b, 0x5f, 0x6c, 0x6f, 0x73, 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
- 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x90, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48,
- 0x6b, 0x52, 0x1d, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x61, 0x6e, 0x6b, 0x4c, 0x6f, 0x73,
- 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65,
- 0x88, 0x01, 0x01, 0x12, 0x55, 0x0a, 0x25, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x72, 0x61,
- 0x6e, 0x6b, 0x5f, 0x6c, 0x6f, 0x73, 0x74, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72,
- 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x91, 0x01, 0x20,
- 0x01, 0x28, 0x01, 0x48, 0x6c, 0x52, 0x20, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x61, 0x6e,
- 0x6b, 0x4c, 0x6f, 0x73, 0x74, 0x54, 0x6f, 0x70, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
- 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x43, 0x0a, 0x1b, 0x73, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
- 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x92, 0x01, 0x20, 0x01, 0x28, 0x01,
- 0x48, 0x6d, 0x52, 0x18, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x6f, 0x70, 0x49, 0x6d, 0x70,
- 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12,
- 0x5d, 0x0a, 0x0d, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65,
- 0x18, 0xa7, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x48, 0x6e, 0x52, 0x0c, 0x73,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x25,
- 0x0a, 0x0b, 0x73, 0x70, 0x65, 0x65, 0x64, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x93, 0x01,
- 0x20, 0x01, 0x28, 0x03, 0x48, 0x6f, 0x52, 0x0a, 0x73, 0x70, 0x65, 0x65, 0x64, 0x53, 0x63, 0x6f,
- 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3f, 0x0a, 0x19, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65,
- 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, 0x5f, 0x6d, 0x69, 0x63, 0x72,
- 0x6f, 0x73, 0x18, 0xa2, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x70, 0x52, 0x16, 0x61, 0x76, 0x65,
- 0x72, 0x61, 0x67, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x4d, 0x69, 0x63,
- 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x34, 0x0a, 0x13, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67,
- 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61, 0x73, 0x18, 0xfa, 0x01,
- 0x20, 0x01, 0x28, 0x01, 0x48, 0x71, 0x52, 0x11, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x54,
- 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, 0x88, 0x01, 0x01, 0x12, 0x40, 0x0a, 0x19,
- 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70,
- 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0x94, 0x01, 0x20, 0x01, 0x28, 0x01,
- 0x48, 0x72, 0x52, 0x17, 0x74, 0x6f, 0x70, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x6b,
- 0x0a, 0x30, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x6c, 0x65, 0x72, 0x61,
- 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x73,
- 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61,
- 0x67, 0x65, 0x18, 0x95, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x73, 0x52, 0x2b, 0x76, 0x61, 0x6c,
- 0x69, 0x64, 0x41, 0x63, 0x63, 0x65, 0x6c, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x6f, 0x62,
- 0x69, 0x6c, 0x65, 0x50, 0x61, 0x67, 0x65, 0x73, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x50, 0x65,
- 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3f, 0x0a, 0x19, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x96, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48,
- 0x74, 0x52, 0x16, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, 0x41, 0x6c, 0x6c, 0x43, 0x6f,
- 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x62, 0x0a, 0x2c,
- 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f,
- 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x63, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0xf4, 0x01, 0x20,
- 0x01, 0x28, 0x01, 0x48, 0x75, 0x52, 0x26, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, 0x41,
- 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x43,
- 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01,
- 0x12, 0x36, 0x0a, 0x14, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x6f,
- 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x97, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48,
- 0x76, 0x52, 0x12, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x5b, 0x0a, 0x28, 0x76, 0x61, 0x6c, 0x75,
- 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
- 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f,
- 0x64, 0x61, 0x74, 0x65, 0x18, 0xf5, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x77, 0x52, 0x23, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x61,
- 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x65, 0x0a, 0x2d, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70,
- 0x65, 0x72, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c,
- 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x76,
- 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x98, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x78, 0x52,
- 0x28, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74,
- 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x43,
- 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x3d, 0x0a, 0x18,
+ 0x88, 0x01, 0x01, 0x12, 0x5d, 0x0a, 0x0d, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x76, 0x6f,
+ 0x6c, 0x75, 0x6d, 0x65, 0x18, 0xa7, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65,
+ 0x61, 0x72, 0x63, 0x68, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x48,
+ 0x72, 0x52, 0x0c, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x88,
+ 0x01, 0x01, 0x12, 0x25, 0x0a, 0x0b, 0x73, 0x70, 0x65, 0x65, 0x64, 0x5f, 0x73, 0x63, 0x6f, 0x72,
+ 0x65, 0x18, 0x93, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x73, 0x52, 0x0a, 0x73, 0x70, 0x65, 0x65,
+ 0x64, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3f, 0x0a, 0x19, 0x61, 0x76, 0x65,
+ 0x72, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, 0x5f,
+ 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0xa2, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x74, 0x52,
+ 0x16, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70,
+ 0x61, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x34, 0x0a, 0x13, 0x61, 0x76,
+ 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61,
+ 0x73, 0x18, 0xfa, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x75, 0x52, 0x11, 0x61, 0x76, 0x65, 0x72,
+ 0x61, 0x67, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, 0x88, 0x01, 0x01,
+ 0x12, 0x40, 0x0a, 0x19, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
+ 0x6f, 0x6e, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0x94, 0x01,
+ 0x20, 0x01, 0x28, 0x01, 0x48, 0x76, 0x52, 0x17, 0x74, 0x6f, 0x70, 0x49, 0x6d, 0x70, 0x72, 0x65,
+ 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88,
+ 0x01, 0x01, 0x12, 0x6b, 0x0a, 0x30, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, 0x61, 0x63, 0x63, 0x65,
+ 0x6c, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x70,
+ 0x61, 0x67, 0x65, 0x73, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x63,
+ 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0x95, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x77, 0x52,
+ 0x2b, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x41, 0x63, 0x63, 0x65, 0x6c, 0x65, 0x72, 0x61, 0x74, 0x65,
+ 0x64, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x50, 0x61, 0x67, 0x65, 0x73, 0x43, 0x6c, 0x69, 0x63,
+ 0x6b, 0x73, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12,
+ 0x3f, 0x0a, 0x19, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x61, 0x6c, 0x6c,
+ 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x96, 0x01, 0x20,
+ 0x01, 0x28, 0x01, 0x48, 0x78, 0x52, 0x16, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, 0x41,
+ 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01,
+ 0x12, 0x62, 0x0a, 0x2c, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x61, 0x6c,
+ 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x62, 0x79,
+ 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65,
+ 0x18, 0xf4, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x79, 0x52, 0x26, 0x76, 0x61, 0x6c, 0x75, 0x65,
+ 0x50, 0x65, 0x72, 0x41, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
+ 0x73, 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74,
+ 0x65, 0x88, 0x01, 0x01, 0x12, 0x36, 0x0a, 0x14, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65,
+ 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x97, 0x01, 0x20,
+ 0x01, 0x28, 0x01, 0x48, 0x7a, 0x52, 0x12, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, 0x43,
+ 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x5b, 0x0a, 0x28,
+ 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72,
+ 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0xf5, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48,
+ 0x7b, 0x52, 0x23, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65,
+ 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x79, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
+ 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x65, 0x0a, 0x2d, 0x76, 0x61, 0x6c,
+ 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d,
+ 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f,
+ 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x98, 0x01, 0x20, 0x01, 0x28,
+ 0x01, 0x48, 0x7c, 0x52, 0x28, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, 0x43, 0x75, 0x72,
+ 0x72, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75,
+ 0x74, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01,
+ 0x12, 0x3d, 0x0a, 0x18, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x71, 0x75, 0x61, 0x72, 0x74, 0x69,
+ 0x6c, 0x65, 0x5f, 0x70, 0x31, 0x30, 0x30, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0x84, 0x01, 0x20,
+ 0x01, 0x28, 0x01, 0x48, 0x7d, 0x52, 0x15, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x51, 0x75, 0x61, 0x72,
+ 0x74, 0x69, 0x6c, 0x65, 0x50, 0x31, 0x30, 0x30, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12,
+ 0x3b, 0x0a, 0x17, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x71, 0x75, 0x61, 0x72, 0x74, 0x69, 0x6c,
+ 0x65, 0x5f, 0x70, 0x32, 0x35, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0x85, 0x01, 0x20, 0x01, 0x28,
+ 0x01, 0x48, 0x7e, 0x52, 0x14, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x51, 0x75, 0x61, 0x72, 0x74, 0x69,
+ 0x6c, 0x65, 0x50, 0x32, 0x35, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3b, 0x0a, 0x17,
0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x71, 0x75, 0x61, 0x72, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x70,
- 0x31, 0x30, 0x30, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0x84, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48,
- 0x79, 0x52, 0x15, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x51, 0x75, 0x61, 0x72, 0x74, 0x69, 0x6c, 0x65,
- 0x50, 0x31, 0x30, 0x30, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3b, 0x0a, 0x17, 0x76,
- 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x71, 0x75, 0x61, 0x72, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x70, 0x32,
- 0x35, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0x85, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x7a, 0x52,
- 0x14, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x51, 0x75, 0x61, 0x72, 0x74, 0x69, 0x6c, 0x65, 0x50, 0x32,
- 0x35, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3b, 0x0a, 0x17, 0x76, 0x69, 0x64, 0x65,
- 0x6f, 0x5f, 0x71, 0x75, 0x61, 0x72, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x70, 0x35, 0x30, 0x5f, 0x72,
- 0x61, 0x74, 0x65, 0x18, 0x86, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x7b, 0x52, 0x14, 0x76, 0x69,
- 0x64, 0x65, 0x6f, 0x51, 0x75, 0x61, 0x72, 0x74, 0x69, 0x6c, 0x65, 0x50, 0x35, 0x30, 0x52, 0x61,
- 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3b, 0x0a, 0x17, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x71,
- 0x75, 0x61, 0x72, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x70, 0x37, 0x35, 0x5f, 0x72, 0x61, 0x74, 0x65,
- 0x18, 0x87, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x7c, 0x52, 0x14, 0x76, 0x69, 0x64, 0x65, 0x6f,
- 0x51, 0x75, 0x61, 0x72, 0x74, 0x69, 0x6c, 0x65, 0x50, 0x37, 0x35, 0x52, 0x61, 0x74, 0x65, 0x88,
- 0x01, 0x01, 0x12, 0x2c, 0x0a, 0x0f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x76, 0x69, 0x65, 0x77,
- 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0x99, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x7d, 0x52, 0x0d,
- 0x76, 0x69, 0x64, 0x65, 0x6f, 0x56, 0x69, 0x65, 0x77, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01,
- 0x12, 0x25, 0x0a, 0x0b, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x73, 0x18,
- 0x9a, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x7e, 0x52, 0x0a, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x56,
- 0x69, 0x65, 0x77, 0x73, 0x88, 0x01, 0x01, 0x12, 0x3e, 0x0a, 0x18, 0x76, 0x69, 0x65, 0x77, 0x5f,
- 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
- 0x6f, 0x6e, 0x73, 0x18, 0x9b, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x7f, 0x52, 0x16, 0x76, 0x69,
- 0x65, 0x77, 0x54, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x34, 0x0a, 0x16, 0x73, 0x6b, 0x5f, 0x61, 0x64,
- 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c,
- 0x73, 0x18, 0xf6, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x13, 0x73, 0x6b, 0x41, 0x64, 0x4e, 0x65,
- 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x12, 0x45, 0x0a,
- 0x1f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x74,
- 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
- 0x18, 0xa4, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x1b, 0x73, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74,
- 0x77, 0x6f, 0x72, 0x6b, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x3d, 0x0a, 0x1a, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65,
- 0x72, 0x5f, 0x70, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63,
- 0x6b, 0x73, 0x18, 0x88, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x18, 0x70, 0x75, 0x62, 0x6c, 0x69,
- 0x73, 0x68, 0x65, 0x72, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x64, 0x43, 0x6c, 0x69,
- 0x63, 0x6b, 0x73, 0x12, 0x39, 0x0a, 0x18, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x72,
- 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x18,
- 0x89, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x16, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65,
- 0x72, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x12, 0x39,
- 0x0a, 0x18, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x72, 0x5f, 0x75, 0x6e, 0x6b, 0x6e,
- 0x6f, 0x77, 0x6e, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x18, 0x8a, 0x02, 0x20, 0x01, 0x28,
- 0x03, 0x52, 0x16, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x72, 0x55, 0x6e, 0x6b, 0x6e,
- 0x6f, 0x77, 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x12, 0x6c, 0x0a, 0x31, 0x61, 0x6c, 0x6c,
- 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f,
- 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74,
- 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x74, 0x6f, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x18, 0x8b,
- 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x80, 0x01, 0x52, 0x2a, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x54, 0x6f,
- 0x43, 0x61, 0x6c, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x68, 0x0a, 0x2e, 0x61, 0x6c, 0x6c, 0x5f, 0x63,
- 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f,
- 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x64,
- 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x8c, 0x02, 0x20, 0x01, 0x28, 0x01,
- 0x48, 0x81, 0x01, 0x52, 0x29, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
- 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41,
- 0x73, 0x73, 0x65, 0x74, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01,
- 0x01, 0x12, 0x5c, 0x0a, 0x28, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
+ 0x35, 0x30, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0x86, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x7f,
+ 0x52, 0x14, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x51, 0x75, 0x61, 0x72, 0x74, 0x69, 0x6c, 0x65, 0x50,
+ 0x35, 0x30, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3c, 0x0a, 0x17, 0x76, 0x69, 0x64,
+ 0x65, 0x6f, 0x5f, 0x71, 0x75, 0x61, 0x72, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x70, 0x37, 0x35, 0x5f,
+ 0x72, 0x61, 0x74, 0x65, 0x18, 0x87, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x80, 0x01, 0x52, 0x14,
+ 0x76, 0x69, 0x64, 0x65, 0x6f, 0x51, 0x75, 0x61, 0x72, 0x74, 0x69, 0x6c, 0x65, 0x50, 0x37, 0x35,
+ 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x0f, 0x76, 0x69, 0x64, 0x65, 0x6f,
+ 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0x99, 0x01, 0x20, 0x01, 0x28,
+ 0x01, 0x48, 0x81, 0x01, 0x52, 0x0d, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x56, 0x69, 0x65, 0x77, 0x52,
+ 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0b, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f,
+ 0x76, 0x69, 0x65, 0x77, 0x73, 0x18, 0x9a, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x82, 0x01, 0x52,
+ 0x0a, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x56, 0x69, 0x65, 0x77, 0x73, 0x88, 0x01, 0x01, 0x12, 0x3f,
+ 0x0a, 0x18, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63,
+ 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x9b, 0x01, 0x20, 0x01, 0x28,
+ 0x03, 0x48, 0x83, 0x01, 0x52, 0x16, 0x76, 0x69, 0x65, 0x77, 0x54, 0x68, 0x72, 0x6f, 0x75, 0x67,
+ 0x68, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12,
+ 0x34, 0x0a, 0x16, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b,
+ 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x18, 0xf6, 0x01, 0x20, 0x01, 0x28, 0x03,
+ 0x52, 0x13, 0x73, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x49, 0x6e, 0x73,
+ 0x74, 0x61, 0x6c, 0x6c, 0x73, 0x12, 0x45, 0x0a, 0x1f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e,
+ 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x6e,
+ 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xa4, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52,
+ 0x1b, 0x73, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x54, 0x6f, 0x74, 0x61,
+ 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x3d, 0x0a, 0x1a,
+ 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x72, 0x5f, 0x70, 0x75, 0x72, 0x63, 0x68, 0x61,
+ 0x73, 0x65, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x18, 0x88, 0x02, 0x20, 0x01, 0x28,
+ 0x03, 0x52, 0x18, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x72, 0x50, 0x75, 0x72, 0x63,
+ 0x68, 0x61, 0x73, 0x65, 0x64, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x12, 0x39, 0x0a, 0x18, 0x70,
+ 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x72, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63,
+ 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x18, 0x89, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x16,
+ 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x72, 0x4f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63,
+ 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x12, 0x39, 0x0a, 0x18, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73,
+ 0x68, 0x65, 0x72, 0x5f, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x5f, 0x63, 0x6c, 0x69, 0x63,
+ 0x6b, 0x73, 0x18, 0x8a, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x16, 0x70, 0x75, 0x62, 0x6c, 0x69,
+ 0x73, 0x68, 0x65, 0x72, 0x55, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b,
+ 0x73, 0x12, 0x6c, 0x0a, 0x31, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x18, 0x8d, 0x02,
- 0x20, 0x01, 0x28, 0x01, 0x48, 0x82, 0x01, 0x52, 0x23, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76,
- 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4d, 0x65, 0x6e, 0x75, 0x88, 0x01, 0x01, 0x12,
- 0x5e, 0x0a, 0x29, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
+ 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x74,
+ 0x6f, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x18, 0x8b, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x84, 0x01,
+ 0x52, 0x2a, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
+ 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65,
+ 0x74, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x54, 0x6f, 0x43, 0x61, 0x6c, 0x6c, 0x88, 0x01, 0x01, 0x12,
+ 0x68, 0x0a, 0x2e, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x8e, 0x02, 0x20,
- 0x01, 0x28, 0x01, 0x48, 0x83, 0x01, 0x52, 0x24, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12,
- 0x73, 0x0a, 0x34, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x5f, 0x65, 0x6e, 0x67,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x8f, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x84,
- 0x01, 0x52, 0x2e, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
- 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73,
- 0x65, 0x74, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x45, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x88, 0x01, 0x01, 0x12, 0x6b, 0x0a, 0x30, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76,
- 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x74, 0x6f, 0x72,
- 0x65, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x74, 0x73, 0x18, 0x90, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48,
- 0x85, 0x01, 0x52, 0x2a, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73,
- 0x73, 0x65, 0x74, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x56, 0x69, 0x73, 0x69, 0x74, 0x73, 0x88, 0x01,
- 0x01, 0x12, 0x62, 0x0a, 0x2b, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65,
- 0x18, 0x91, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x86, 0x01, 0x52, 0x26, 0x61, 0x6c, 0x6c, 0x43,
- 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x57, 0x65, 0x62, 0x73, 0x69,
- 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x73, 0x0a, 0x34, 0x65, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c,
- 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72,
- 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65,
- 0x74, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, 0x92, 0x02,
- 0x20, 0x01, 0x28, 0x03, 0x48, 0x87, 0x01, 0x52, 0x2e, 0x65, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c,
- 0x65, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d,
- 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x74, 0x6f,
- 0x72, 0x65, 0x52, 0x65, 0x61, 0x63, 0x68, 0x88, 0x01, 0x01, 0x12, 0x7d, 0x0a, 0x3a, 0x76, 0x69,
- 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b,
- 0x5f, 0x74, 0x6f, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x18, 0x93, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48,
- 0x88, 0x01, 0x52, 0x32, 0x76, 0x69, 0x65, 0x77, 0x54, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x43,
- 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x43, 0x6c, 0x69, 0x63, 0x6b,
- 0x54, 0x6f, 0x43, 0x61, 0x6c, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x79, 0x0a, 0x37, 0x76, 0x69, 0x65,
- 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72,
- 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x94, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x89, 0x01, 0x52, 0x31,
- 0x76, 0x69, 0x65, 0x77, 0x54, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x43, 0x6f, 0x6e, 0x76, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x73, 0x88, 0x01, 0x01, 0x12, 0x6d, 0x0a, 0x31, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72,
- 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
- 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61,
- 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x18, 0x95, 0x02, 0x20, 0x01, 0x28, 0x01,
- 0x48, 0x8a, 0x01, 0x52, 0x2b, 0x76, 0x69, 0x65, 0x77, 0x54, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68,
+ 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x73, 0x18, 0x8c, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x85, 0x01, 0x52, 0x29, 0x61, 0x6c, 0x6c,
0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c,
- 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4d, 0x65, 0x6e, 0x75,
- 0x88, 0x01, 0x01, 0x12, 0x6f, 0x0a, 0x32, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f,
- 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f,
+ 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x44, 0x69, 0x72, 0x65,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x5c, 0x0a, 0x28, 0x61, 0x6c, 0x6c,
+ 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f,
+ 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74,
+ 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x18, 0x8d, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x86, 0x01, 0x52,
+ 0x23, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46,
+ 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74,
+ 0x4d, 0x65, 0x6e, 0x75, 0x88, 0x01, 0x01, 0x12, 0x5e, 0x0a, 0x29, 0x61, 0x6c, 0x6c, 0x5f, 0x63,
+ 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f,
+ 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f,
+ 0x72, 0x64, 0x65, 0x72, 0x18, 0x8e, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x87, 0x01, 0x52, 0x24,
+ 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72,
+ 0x6f, 0x6d, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f,
+ 0x72, 0x64, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x73, 0x0a, 0x34, 0x61, 0x6c, 0x6c, 0x5f, 0x63,
+ 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f,
+ 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f,
+ 0x74, 0x68, 0x65, 0x72, 0x5f, 0x65, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x18,
+ 0x8f, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x88, 0x01, 0x52, 0x2e, 0x61, 0x6c, 0x6c, 0x43, 0x6f,
+ 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x63,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x45,
+ 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x6b, 0x0a, 0x30,
+ 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f,
0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73,
- 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x96, 0x02, 0x20, 0x01, 0x28, 0x01,
- 0x48, 0x8b, 0x01, 0x52, 0x2c, 0x76, 0x69, 0x65, 0x77, 0x54, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68,
- 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c,
- 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x72, 0x64, 0x65,
- 0x72, 0x88, 0x01, 0x01, 0x12, 0x84, 0x01, 0x0a, 0x3d, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68,
- 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
- 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
- 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x5f, 0x65, 0x6e, 0x67, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x97, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x8c, 0x01,
- 0x52, 0x36, 0x76, 0x69, 0x65, 0x77, 0x54, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x43, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x45, 0x6e,
- 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x7c, 0x0a, 0x39, 0x76,
- 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76,
- 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x74, 0x6f, 0x72,
- 0x65, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x74, 0x73, 0x18, 0x98, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48,
- 0x8d, 0x01, 0x52, 0x32, 0x76, 0x69, 0x65, 0x77, 0x54, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x43,
+ 0x73, 0x65, 0x74, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x74, 0x73,
+ 0x18, 0x90, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x89, 0x01, 0x52, 0x2a, 0x61, 0x6c, 0x6c, 0x43,
0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f,
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x74, 0x6f, 0x72, 0x65,
- 0x56, 0x69, 0x73, 0x69, 0x74, 0x73, 0x88, 0x01, 0x01, 0x12, 0x73, 0x0a, 0x34, 0x76, 0x69, 0x65,
- 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72,
+ 0x56, 0x69, 0x73, 0x69, 0x74, 0x73, 0x88, 0x01, 0x01, 0x12, 0x62, 0x0a, 0x2b, 0x61, 0x6c, 0x6c,
+ 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f,
+ 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74,
+ 0x5f, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x18, 0x91, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48,
+ 0x8a, 0x01, 0x52, 0x26, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73,
+ 0x73, 0x65, 0x74, 0x57, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x73, 0x0a,
+ 0x34, 0x65, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73,
0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74,
- 0x65, 0x18, 0x99, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x8e, 0x01, 0x52, 0x2e, 0x76, 0x69, 0x65,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f,
+ 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, 0x92, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x8b, 0x01, 0x52,
+ 0x2e, 0x65, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
+ 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x52, 0x65, 0x61, 0x63, 0x68, 0x88,
+ 0x01, 0x01, 0x12, 0x7d, 0x0a, 0x3a, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75,
+ 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66,
+ 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73,
+ 0x65, 0x74, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x74, 0x6f, 0x5f, 0x63, 0x61, 0x6c, 0x6c,
+ 0x18, 0x93, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x8c, 0x01, 0x52, 0x32, 0x76, 0x69, 0x65, 0x77,
+ 0x54, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73,
+ 0x73, 0x65, 0x74, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x54, 0x6f, 0x43, 0x61, 0x6c, 0x6c, 0x88, 0x01,
+ 0x01, 0x12, 0x79, 0x0a, 0x37, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67,
+ 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72,
+ 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65,
+ 0x74, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x94, 0x02, 0x20,
+ 0x01, 0x28, 0x01, 0x48, 0x8d, 0x01, 0x52, 0x31, 0x76, 0x69, 0x65, 0x77, 0x54, 0x68, 0x72, 0x6f,
+ 0x75, 0x67, 0x68, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72,
+ 0x6f, 0x6d, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x44,
+ 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x6d, 0x0a, 0x31,
+ 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e,
+ 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6d, 0x65, 0x6e,
+ 0x75, 0x18, 0x95, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x8e, 0x01, 0x52, 0x2b, 0x76, 0x69, 0x65,
0x77, 0x54, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41,
- 0x73, 0x73, 0x65, 0x74, 0x57, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1d,
- 0x0a, 0x06, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x73, 0x18, 0xa8, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48,
- 0x8f, 0x01, 0x52, 0x06, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x73, 0x88, 0x01, 0x01, 0x12, 0x42, 0x0a,
- 0x1a, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0xa9, 0x02, 0x20, 0x01,
- 0x28, 0x03, 0x48, 0x90, 0x01, 0x52, 0x17, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x4f, 0x72,
- 0x64, 0x65, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01,
- 0x01, 0x12, 0x31, 0x0a, 0x11, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x61, 0x72,
- 0x74, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0xaa, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x91, 0x01,
- 0x52, 0x0f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x43, 0x61, 0x72, 0x74, 0x53, 0x69, 0x7a,
- 0x65, 0x88, 0x01, 0x01, 0x12, 0x3f, 0x0a, 0x19, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x6f, 0x66, 0x5f,
- 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x5f, 0x73, 0x6f, 0x6c, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f,
- 0x73, 0x18, 0xab, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x92, 0x01, 0x52, 0x15, 0x63, 0x6f, 0x73,
+ 0x73, 0x73, 0x65, 0x74, 0x4d, 0x65, 0x6e, 0x75, 0x88, 0x01, 0x01, 0x12, 0x6f, 0x0a, 0x32, 0x76,
+ 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76,
+ 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x72, 0x64, 0x65,
+ 0x72, 0x18, 0x96, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x8f, 0x01, 0x52, 0x2c, 0x76, 0x69, 0x65,
+ 0x77, 0x54, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
+ 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41,
+ 0x73, 0x73, 0x65, 0x74, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x84, 0x01, 0x0a,
+ 0x3d, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f,
+ 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c,
+ 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x74,
+ 0x68, 0x65, 0x72, 0x5f, 0x65, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x97,
+ 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x90, 0x01, 0x52, 0x36, 0x76, 0x69, 0x65, 0x77, 0x54, 0x68,
+ 0x72, 0x6f, 0x75, 0x67, 0x68, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
+ 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65,
+ 0x74, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x45, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
+ 0x88, 0x01, 0x01, 0x12, 0x7c, 0x0a, 0x39, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f,
+ 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f,
+ 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73,
+ 0x73, 0x65, 0x74, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x74, 0x73,
+ 0x18, 0x98, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x91, 0x01, 0x52, 0x32, 0x76, 0x69, 0x65, 0x77,
+ 0x54, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73,
+ 0x73, 0x65, 0x74, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x56, 0x69, 0x73, 0x69, 0x74, 0x73, 0x88, 0x01,
+ 0x01, 0x12, 0x73, 0x0a, 0x34, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67,
+ 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72,
+ 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65,
+ 0x74, 0x5f, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x18, 0x99, 0x02, 0x20, 0x01, 0x28, 0x01,
+ 0x48, 0x92, 0x01, 0x52, 0x2e, 0x76, 0x69, 0x65, 0x77, 0x54, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68,
+ 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x72, 0x6f, 0x6d, 0x4c,
+ 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x57, 0x65, 0x62, 0x73,
+ 0x69, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x1d, 0x0a, 0x06, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x73,
+ 0x18, 0xa8, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x93, 0x01, 0x52, 0x06, 0x6f, 0x72, 0x64, 0x65,
+ 0x72, 0x73, 0x88, 0x01, 0x01, 0x12, 0x42, 0x0a, 0x1a, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65,
+ 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x6d, 0x69, 0x63,
+ 0x72, 0x6f, 0x73, 0x18, 0xa9, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x94, 0x01, 0x52, 0x17, 0x61,
+ 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65,
+ 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x31, 0x0a, 0x11, 0x61, 0x76, 0x65,
+ 0x72, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x61, 0x72, 0x74, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0xaa,
+ 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x95, 0x01, 0x52, 0x0f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67,
+ 0x65, 0x43, 0x61, 0x72, 0x74, 0x53, 0x69, 0x7a, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3f, 0x0a, 0x19,
+ 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x6f, 0x66, 0x5f, 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x5f, 0x73, 0x6f,
+ 0x6c, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0xab, 0x02, 0x20, 0x01, 0x28, 0x03,
+ 0x48, 0x96, 0x01, 0x52, 0x15, 0x63, 0x6f, 0x73, 0x74, 0x4f, 0x66, 0x47, 0x6f, 0x6f, 0x64, 0x73,
+ 0x53, 0x6f, 0x6c, 0x64, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a,
+ 0x13, 0x67, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x5f, 0x6d, 0x69,
+ 0x63, 0x72, 0x6f, 0x73, 0x18, 0xac, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x97, 0x01, 0x52, 0x11,
+ 0x67, 0x72, 0x6f, 0x73, 0x73, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x4d, 0x69, 0x63, 0x72, 0x6f,
+ 0x73, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a, 0x13, 0x67, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x70, 0x72,
+ 0x6f, 0x66, 0x69, 0x74, 0x5f, 0x6d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x18, 0xad, 0x02, 0x20, 0x01,
+ 0x28, 0x01, 0x48, 0x98, 0x01, 0x52, 0x11, 0x67, 0x72, 0x6f, 0x73, 0x73, 0x50, 0x72, 0x6f, 0x66,
+ 0x69, 0x74, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x2c, 0x0a, 0x0e, 0x72,
+ 0x65, 0x76, 0x65, 0x6e, 0x75, 0x65, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0xae, 0x02,
+ 0x20, 0x01, 0x28, 0x03, 0x48, 0x99, 0x01, 0x52, 0x0d, 0x72, 0x65, 0x76, 0x65, 0x6e, 0x75, 0x65,
+ 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0a, 0x75, 0x6e, 0x69,
+ 0x74, 0x73, 0x5f, 0x73, 0x6f, 0x6c, 0x64, 0x18, 0xaf, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x9a,
+ 0x01, 0x52, 0x09, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x53, 0x6f, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12,
+ 0x53, 0x0a, 0x24, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x73, 0x65, 0x6c, 0x6c, 0x5f, 0x63, 0x6f,
+ 0x73, 0x74, 0x5f, 0x6f, 0x66, 0x5f, 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x5f, 0x73, 0x6f, 0x6c, 0x64,
+ 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0xb0, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x9b,
+ 0x01, 0x52, 0x1e, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x53, 0x65, 0x6c, 0x6c, 0x43, 0x6f, 0x73, 0x74,
+ 0x4f, 0x66, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x53, 0x6f, 0x6c, 0x64, 0x4d, 0x69, 0x63, 0x72, 0x6f,
+ 0x73, 0x88, 0x01, 0x01, 0x12, 0x49, 0x0a, 0x1e, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x73, 0x65,
+ 0x6c, 0x6c, 0x5f, 0x67, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x5f,
+ 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0xb1, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x9c, 0x01,
+ 0x52, 0x1a, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x53, 0x65, 0x6c, 0x6c, 0x47, 0x72, 0x6f, 0x73, 0x73,
+ 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12,
+ 0x40, 0x0a, 0x19, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x73, 0x65, 0x6c, 0x6c, 0x5f, 0x72, 0x65,
+ 0x76, 0x65, 0x6e, 0x75, 0x65, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0xb2, 0x02, 0x20,
+ 0x01, 0x28, 0x03, 0x48, 0x9d, 0x01, 0x52, 0x16, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x53, 0x65, 0x6c,
+ 0x6c, 0x52, 0x65, 0x76, 0x65, 0x6e, 0x75, 0x65, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01,
+ 0x01, 0x12, 0x38, 0x0a, 0x15, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x73, 0x65, 0x6c, 0x6c, 0x5f,
+ 0x75, 0x6e, 0x69, 0x74, 0x73, 0x5f, 0x73, 0x6f, 0x6c, 0x64, 0x18, 0xb3, 0x02, 0x20, 0x01, 0x28,
+ 0x01, 0x48, 0x9e, 0x01, 0x52, 0x12, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x53, 0x65, 0x6c, 0x6c, 0x55,
+ 0x6e, 0x69, 0x74, 0x73, 0x53, 0x6f, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12, 0x48, 0x0a, 0x1e, 0x6c,
+ 0x65, 0x61, 0x64, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x6f, 0x66, 0x5f, 0x67, 0x6f, 0x6f, 0x64,
+ 0x73, 0x5f, 0x73, 0x6f, 0x6c, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0xb4, 0x02,
+ 0x20, 0x01, 0x28, 0x03, 0x48, 0x9f, 0x01, 0x52, 0x19, 0x6c, 0x65, 0x61, 0x64, 0x43, 0x6f, 0x73,
0x74, 0x4f, 0x66, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x53, 0x6f, 0x6c, 0x64, 0x4d, 0x69, 0x63, 0x72,
- 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a, 0x13, 0x67, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x70,
- 0x72, 0x6f, 0x66, 0x69, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0xac, 0x02, 0x20,
- 0x01, 0x28, 0x03, 0x48, 0x93, 0x01, 0x52, 0x11, 0x67, 0x72, 0x6f, 0x73, 0x73, 0x50, 0x72, 0x6f,
- 0x66, 0x69, 0x74, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a, 0x13,
- 0x67, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x5f, 0x6d, 0x61, 0x72,
- 0x67, 0x69, 0x6e, 0x18, 0xad, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x94, 0x01, 0x52, 0x11, 0x67,
- 0x72, 0x6f, 0x73, 0x73, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x4d, 0x61, 0x72, 0x67, 0x69, 0x6e,
- 0x88, 0x01, 0x01, 0x12, 0x2c, 0x0a, 0x0e, 0x72, 0x65, 0x76, 0x65, 0x6e, 0x75, 0x65, 0x5f, 0x6d,
- 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0xae, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x95, 0x01, 0x52,
- 0x0d, 0x72, 0x65, 0x76, 0x65, 0x6e, 0x75, 0x65, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01,
- 0x01, 0x12, 0x24, 0x0a, 0x0a, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x5f, 0x73, 0x6f, 0x6c, 0x64, 0x18,
- 0xaf, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x96, 0x01, 0x52, 0x09, 0x75, 0x6e, 0x69, 0x74, 0x73,
- 0x53, 0x6f, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12, 0x53, 0x0a, 0x24, 0x63, 0x72, 0x6f, 0x73, 0x73,
- 0x5f, 0x73, 0x65, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x6f, 0x66, 0x5f, 0x67, 0x6f,
- 0x6f, 0x64, 0x73, 0x5f, 0x73, 0x6f, 0x6c, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18,
- 0xb0, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x97, 0x01, 0x52, 0x1e, 0x63, 0x72, 0x6f, 0x73, 0x73,
- 0x53, 0x65, 0x6c, 0x6c, 0x43, 0x6f, 0x73, 0x74, 0x4f, 0x66, 0x47, 0x6f, 0x6f, 0x64, 0x73, 0x53,
- 0x6f, 0x6c, 0x64, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x49, 0x0a, 0x1e,
- 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x73, 0x65, 0x6c, 0x6c, 0x5f, 0x67, 0x72, 0x6f, 0x73, 0x73,
- 0x5f, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0xb1,
- 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x98, 0x01, 0x52, 0x1a, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x53,
- 0x65, 0x6c, 0x6c, 0x47, 0x72, 0x6f, 0x73, 0x73, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x4d, 0x69,
- 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x40, 0x0a, 0x19, 0x63, 0x72, 0x6f, 0x73, 0x73,
- 0x5f, 0x73, 0x65, 0x6c, 0x6c, 0x5f, 0x72, 0x65, 0x76, 0x65, 0x6e, 0x75, 0x65, 0x5f, 0x6d, 0x69,
- 0x63, 0x72, 0x6f, 0x73, 0x18, 0xb2, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x99, 0x01, 0x52, 0x16,
- 0x63, 0x72, 0x6f, 0x73, 0x73, 0x53, 0x65, 0x6c, 0x6c, 0x52, 0x65, 0x76, 0x65, 0x6e, 0x75, 0x65,
- 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x38, 0x0a, 0x15, 0x63, 0x72, 0x6f,
- 0x73, 0x73, 0x5f, 0x73, 0x65, 0x6c, 0x6c, 0x5f, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x5f, 0x73, 0x6f,
- 0x6c, 0x64, 0x18, 0xb3, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x9a, 0x01, 0x52, 0x12, 0x63, 0x72,
- 0x6f, 0x73, 0x73, 0x53, 0x65, 0x6c, 0x6c, 0x55, 0x6e, 0x69, 0x74, 0x73, 0x53, 0x6f, 0x6c, 0x64,
- 0x88, 0x01, 0x01, 0x12, 0x48, 0x0a, 0x1e, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x63, 0x6f, 0x73, 0x74,
- 0x5f, 0x6f, 0x66, 0x5f, 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x5f, 0x73, 0x6f, 0x6c, 0x64, 0x5f, 0x6d,
- 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0xb4, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x9b, 0x01, 0x52,
- 0x19, 0x6c, 0x65, 0x61, 0x64, 0x43, 0x6f, 0x73, 0x74, 0x4f, 0x66, 0x47, 0x6f, 0x6f, 0x64, 0x73,
- 0x53, 0x6f, 0x6c, 0x64, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x3e, 0x0a,
- 0x18, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x70, 0x72, 0x6f, 0x66,
- 0x69, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0xb5, 0x02, 0x20, 0x01, 0x28, 0x03,
- 0x48, 0x9c, 0x01, 0x52, 0x15, 0x6c, 0x65, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x73, 0x73, 0x50, 0x72,
- 0x6f, 0x66, 0x69, 0x74, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a,
- 0x13, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x72, 0x65, 0x76, 0x65, 0x6e, 0x75, 0x65, 0x5f, 0x6d, 0x69,
- 0x63, 0x72, 0x6f, 0x73, 0x18, 0xb6, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x9d, 0x01, 0x52, 0x11,
- 0x6c, 0x65, 0x61, 0x64, 0x52, 0x65, 0x76, 0x65, 0x6e, 0x75, 0x65, 0x4d, 0x69, 0x63, 0x72, 0x6f,
- 0x73, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x0f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x75, 0x6e, 0x69,
- 0x74, 0x73, 0x5f, 0x73, 0x6f, 0x6c, 0x64, 0x18, 0xb7, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x9e,
- 0x01, 0x52, 0x0d, 0x6c, 0x65, 0x61, 0x64, 0x55, 0x6e, 0x69, 0x74, 0x73, 0x53, 0x6f, 0x6c, 0x64,
- 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0c, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x5f, 0x75, 0x73,
- 0x65, 0x72, 0x73, 0x18, 0xbf, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x9f, 0x01, 0x52, 0x0b, 0x75,
- 0x6e, 0x69, 0x71, 0x75, 0x65, 0x55, 0x73, 0x65, 0x72, 0x73, 0x88, 0x01, 0x01, 0x12, 0x57, 0x0a,
- 0x25, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
- 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x70, 0x65,
- 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0xc0, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0xa0, 0x01,
- 0x52, 0x21, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
- 0x69, 0x6f, 0x6e, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x50, 0x65, 0x72, 0x55,
- 0x73, 0x65, 0x72, 0x88, 0x01, 0x01, 0x42, 0x25, 0x0a, 0x23, 0x5f, 0x61, 0x62, 0x73, 0x6f, 0x6c,
- 0x75, 0x74, 0x65, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
- 0x6f, 0x6e, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x42, 0x12, 0x0a,
- 0x10, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x63, 0x70,
- 0x6d, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x76, 0x69, 0x65,
- 0x77, 0x5f, 0x63, 0x74, 0x72, 0x42, 0x1a, 0x0a, 0x18, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65,
- 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
- 0x73, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x76, 0x69, 0x65,
- 0x77, 0x5f, 0x6d, 0x65, 0x61, 0x73, 0x75, 0x72, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x42,
+ 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x3e, 0x0a, 0x18, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x67, 0x72,
+ 0x6f, 0x73, 0x73, 0x5f, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f,
+ 0x73, 0x18, 0xb5, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0xa0, 0x01, 0x52, 0x15, 0x6c, 0x65, 0x61,
+ 0x64, 0x47, 0x72, 0x6f, 0x73, 0x73, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x4d, 0x69, 0x63, 0x72,
+ 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a, 0x13, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x72, 0x65,
+ 0x76, 0x65, 0x6e, 0x75, 0x65, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0xb6, 0x02, 0x20,
+ 0x01, 0x28, 0x03, 0x48, 0xa1, 0x01, 0x52, 0x11, 0x6c, 0x65, 0x61, 0x64, 0x52, 0x65, 0x76, 0x65,
+ 0x6e, 0x75, 0x65, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, 0x0f,
+ 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x5f, 0x73, 0x6f, 0x6c, 0x64, 0x18,
+ 0xb7, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0xa2, 0x01, 0x52, 0x0d, 0x6c, 0x65, 0x61, 0x64, 0x55,
+ 0x6e, 0x69, 0x74, 0x73, 0x53, 0x6f, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0c, 0x75,
+ 0x6e, 0x69, 0x71, 0x75, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x18, 0xbf, 0x02, 0x20, 0x01,
+ 0x28, 0x03, 0x48, 0xa3, 0x01, 0x52, 0x0b, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x55, 0x73, 0x65,
+ 0x72, 0x73, 0x88, 0x01, 0x01, 0x12, 0x57, 0x0a, 0x25, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65,
+ 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x72, 0x65, 0x71,
+ 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0xc0,
+ 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0xa4, 0x01, 0x52, 0x21, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67,
+ 0x65, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x72, 0x65, 0x71, 0x75,
+ 0x65, 0x6e, 0x63, 0x79, 0x50, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, 0x39,
+ 0x0a, 0x15, 0x6c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65,
+ 0x73, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0xd5, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0xa5,
+ 0x01, 0x52, 0x13, 0x6c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65,
+ 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a, 0x16, 0x6c, 0x69, 0x6e,
+ 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x65, 0x6e, 0x74, 0x69, 0x74,
+ 0x69, 0x65, 0x73, 0x18, 0xd6, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x14, 0x6c, 0x69, 0x6e, 0x6b,
+ 0x65, 0x64, 0x53, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73,
+ 0x12, 0x48, 0x0a, 0x20, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x62, 0x65, 0x73, 0x74, 0x5f,
+ 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x65, 0x6e, 0x74, 0x69,
+ 0x74, 0x69, 0x65, 0x73, 0x18, 0xd7, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x1d, 0x73, 0x61, 0x6d,
+ 0x70, 0x6c, 0x65, 0x42, 0x65, 0x73, 0x74, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e,
+ 0x63, 0x65, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x12, 0x48, 0x0a, 0x20, 0x73, 0x61,
+ 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x67, 0x6f, 0x6f, 0x64, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72,
+ 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x18, 0xd8,
+ 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x1d, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x47, 0x6f, 0x6f,
+ 0x64, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x6e, 0x74, 0x69,
+ 0x74, 0x69, 0x65, 0x73, 0x12, 0x46, 0x0a, 0x1f, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x6c,
+ 0x6f, 0x77, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x65,
+ 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x18, 0xd9, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x1c,
+ 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x4c, 0x6f, 0x77, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d,
+ 0x61, 0x6e, 0x63, 0x65, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x12, 0x50, 0x0a, 0x24,
+ 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x6c, 0x65, 0x61, 0x72, 0x6e, 0x69, 0x6e, 0x67, 0x5f,
+ 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x65, 0x6e, 0x74, 0x69,
+ 0x74, 0x69, 0x65, 0x73, 0x18, 0xda, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x21, 0x73, 0x61, 0x6d,
+ 0x70, 0x6c, 0x65, 0x4c, 0x65, 0x61, 0x72, 0x6e, 0x69, 0x6e, 0x67, 0x50, 0x65, 0x72, 0x66, 0x6f,
+ 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x12, 0x4e,
+ 0x0a, 0x23, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x75, 0x6e, 0x72, 0x61, 0x74, 0x65, 0x64,
+ 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x65, 0x6e, 0x74,
+ 0x69, 0x74, 0x69, 0x65, 0x73, 0x18, 0xdb, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x20, 0x73, 0x61,
+ 0x6d, 0x70, 0x6c, 0x65, 0x55, 0x6e, 0x72, 0x61, 0x74, 0x65, 0x64, 0x50, 0x65, 0x72, 0x66, 0x6f,
+ 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x12, 0x3e,
+ 0x0a, 0x18, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x5f, 0x74,
+ 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0xdc, 0x02, 0x20, 0x01, 0x28,
+ 0x03, 0x48, 0xa6, 0x01, 0x52, 0x15, 0x61, 0x73, 0x73, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x6e, 0x65,
+ 0x64, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x61,
+ 0x0a, 0x2b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x5f, 0x61,
+ 0x73, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x6e, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0xdd, 0x02,
+ 0x20, 0x01, 0x28, 0x03, 0x48, 0xa7, 0x01, 0x52, 0x25, 0x61, 0x73, 0x73, 0x65, 0x74, 0x50, 0x69,
+ 0x6e, 0x6e, 0x65, 0x64, 0x41, 0x73, 0x48, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x6f,
+ 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x6e, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01,
+ 0x01, 0x12, 0x61, 0x0a, 0x2b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x70, 0x69, 0x6e, 0x6e, 0x65,
+ 0x64, 0x5f, 0x61, 0x73, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x70, 0x6f,
+ 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x77, 0x6f, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74,
+ 0x18, 0xde, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0xa8, 0x01, 0x52, 0x25, 0x61, 0x73, 0x73, 0x65,
+ 0x74, 0x50, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x41, 0x73, 0x48, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e,
+ 0x65, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x77, 0x6f, 0x43, 0x6f, 0x75, 0x6e,
+ 0x74, 0x88, 0x01, 0x01, 0x12, 0x65, 0x0a, 0x2d, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x70, 0x69,
+ 0x6e, 0x6e, 0x65, 0x64, 0x5f, 0x61, 0x73, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65,
+ 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x68, 0x72, 0x65, 0x65, 0x5f,
+ 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0xdf, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0xa9, 0x01, 0x52,
+ 0x27, 0x61, 0x73, 0x73, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x41, 0x73, 0x48, 0x65,
+ 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x68,
+ 0x72, 0x65, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x67, 0x0a, 0x2e, 0x61,
+ 0x73, 0x73, 0x65, 0x74, 0x5f, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x5f, 0x61, 0x73, 0x5f, 0x64,
+ 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x6e, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0xe0, 0x02,
+ 0x20, 0x01, 0x28, 0x03, 0x48, 0xaa, 0x01, 0x52, 0x28, 0x61, 0x73, 0x73, 0x65, 0x74, 0x50, 0x69,
+ 0x6e, 0x6e, 0x65, 0x64, 0x41, 0x73, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
+ 0x6e, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x6e, 0x65, 0x43, 0x6f, 0x75, 0x6e,
+ 0x74, 0x88, 0x01, 0x01, 0x12, 0x67, 0x0a, 0x2e, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x70, 0x69,
+ 0x6e, 0x6e, 0x65, 0x64, 0x5f, 0x61, 0x73, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x77, 0x6f,
+ 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0xe1, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0xab, 0x01,
+ 0x52, 0x28, 0x61, 0x73, 0x73, 0x65, 0x74, 0x50, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x41, 0x73, 0x44,
+ 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69,
+ 0x6f, 0x6e, 0x54, 0x77, 0x6f, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x65, 0x0a,
+ 0x2c, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x62, 0x65, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x66,
+ 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
+ 0x6f, 0x6e, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0xe2, 0x02,
+ 0x20, 0x01, 0x28, 0x01, 0x48, 0xac, 0x01, 0x52, 0x28, 0x61, 0x73, 0x73, 0x65, 0x74, 0x42, 0x65,
+ 0x73, 0x74, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x49, 0x6d, 0x70,
+ 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67,
+ 0x65, 0x88, 0x01, 0x01, 0x12, 0x65, 0x0a, 0x2c, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x6f,
+ 0x6f, 0x64, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x69,
+ 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e,
+ 0x74, 0x61, 0x67, 0x65, 0x18, 0xe3, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0xad, 0x01, 0x52, 0x28,
+ 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x6f, 0x6f, 0x64, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d,
+ 0x61, 0x6e, 0x63, 0x65, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x65,
+ 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x63, 0x0a, 0x2b, 0x61,
+ 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x6f, 0x77, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d,
+ 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f,
+ 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0xe4, 0x02, 0x20, 0x01, 0x28,
+ 0x01, 0x48, 0xae, 0x01, 0x52, 0x27, 0x61, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x6f, 0x77, 0x50, 0x65,
+ 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
+ 0x69, 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01,
+ 0x12, 0x6d, 0x0a, 0x30, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x65, 0x61, 0x72, 0x6e, 0x69,
+ 0x6e, 0x67, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x69,
+ 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e,
+ 0x74, 0x61, 0x67, 0x65, 0x18, 0xe5, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0xaf, 0x01, 0x52, 0x2c,
+ 0x61, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x65, 0x61, 0x72, 0x6e, 0x69, 0x6e, 0x67, 0x50, 0x65, 0x72,
+ 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
+ 0x6f, 0x6e, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12,
+ 0x6b, 0x0a, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x75, 0x6e, 0x72, 0x61, 0x74, 0x65, 0x64,
+ 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6d, 0x70,
+ 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61,
+ 0x67, 0x65, 0x18, 0xe6, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0xb0, 0x01, 0x52, 0x2b, 0x61, 0x73,
+ 0x73, 0x65, 0x74, 0x55, 0x6e, 0x72, 0x61, 0x74, 0x65, 0x64, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72,
+ 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x50,
+ 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x59, 0x0a, 0x26,
+ 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x62, 0x65, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f,
+ 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x63,
+ 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0xe7, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0xb1, 0x01,
+ 0x52, 0x22, 0x61, 0x73, 0x73, 0x65, 0x74, 0x42, 0x65, 0x73, 0x74, 0x50, 0x65, 0x72, 0x66, 0x6f,
+ 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x43, 0x6f, 0x73, 0x74, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e,
+ 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x59, 0x0a, 0x26, 0x61, 0x73, 0x73, 0x65, 0x74,
+ 0x5f, 0x67, 0x6f, 0x6f, 0x64, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63,
+ 0x65, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67,
+ 0x65, 0x18, 0xe8, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0xb2, 0x01, 0x52, 0x22, 0x61, 0x73, 0x73,
+ 0x65, 0x74, 0x47, 0x6f, 0x6f, 0x64, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63,
+ 0x65, 0x43, 0x6f, 0x73, 0x74, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88,
+ 0x01, 0x01, 0x12, 0x57, 0x0a, 0x25, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x6f, 0x77, 0x5f,
+ 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x73, 0x74,
+ 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0xe9, 0x02, 0x20, 0x01,
+ 0x28, 0x01, 0x48, 0xb3, 0x01, 0x52, 0x21, 0x61, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x6f, 0x77, 0x50,
+ 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x43, 0x6f, 0x73, 0x74, 0x50, 0x65,
+ 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x61, 0x0a, 0x2a, 0x61,
+ 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x65, 0x61, 0x72, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x65,
+ 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x70,
+ 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0xea, 0x02, 0x20, 0x01, 0x28, 0x01,
+ 0x48, 0xb4, 0x01, 0x52, 0x26, 0x61, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x65, 0x61, 0x72, 0x6e, 0x69,
+ 0x6e, 0x67, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x43, 0x6f, 0x73,
+ 0x74, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x5f,
+ 0x0a, 0x29, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x75, 0x6e, 0x72, 0x61, 0x74, 0x65, 0x64, 0x5f,
+ 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x73, 0x74,
+ 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0xeb, 0x02, 0x20, 0x01,
+ 0x28, 0x01, 0x48, 0xb5, 0x01, 0x52, 0x25, 0x61, 0x73, 0x73, 0x65, 0x74, 0x55, 0x6e, 0x72, 0x61,
+ 0x74, 0x65, 0x64, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x43, 0x6f,
+ 0x73, 0x74, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x42,
+ 0x25, 0x0a, 0x23, 0x5f, 0x61, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x5f, 0x74, 0x6f, 0x70,
+ 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x65, 0x72, 0x63,
+ 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76,
+ 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x63, 0x70, 0x6d, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x61,
+ 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x63, 0x74, 0x72, 0x42, 0x1a,
+ 0x0a, 0x18, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69,
+ 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x61,
+ 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x6d, 0x65, 0x61, 0x73, 0x75,
+ 0x72, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x42, 0x25, 0x0a, 0x23, 0x5f, 0x61, 0x63, 0x74,
+ 0x69, 0x76, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x6d, 0x65, 0x61, 0x73, 0x75, 0x72, 0x61,
+ 0x62, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42,
0x25, 0x0a, 0x23, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f,
- 0x6d, 0x65, 0x61, 0x73, 0x75, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f,
- 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x25, 0x0a, 0x23, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76,
- 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x6d, 0x65, 0x61, 0x73, 0x75, 0x72, 0x61, 0x62, 0x6c,
- 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x1a, 0x0a,
- 0x18, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x76, 0x69,
- 0x65, 0x77, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x42, 0x29, 0x0a, 0x27, 0x5f, 0x61, 0x6c,
+ 0x6d, 0x65, 0x61, 0x73, 0x75, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65,
+ 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x1a, 0x0a, 0x18, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76,
+ 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x61, 0x62, 0x69, 0x6c, 0x69,
+ 0x74, 0x79, 0x42, 0x29, 0x0a, 0x27, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
+ 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65,
+ 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x18, 0x0a,
+ 0x16, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
+ 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x2b, 0x0a, 0x29, 0x5f, 0x61, 0x6c, 0x6c, 0x5f,
+ 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75,
+ 0x65, 0x5f, 0x62, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f,
+ 0x64, 0x61, 0x74, 0x65, 0x42, 0x22, 0x0a, 0x20, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x6e, 0x65, 0x77,
+ 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x74, 0x69,
+ 0x6d, 0x65, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x61, 0x6c, 0x6c,
+ 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x25, 0x0a, 0x23,
+ 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
+ 0x5f, 0x62, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64,
+ 0x61, 0x74, 0x65, 0x42, 0x21, 0x0a, 0x1f, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76,
+ 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65,
+ 0x72, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x42, 0x25, 0x0a, 0x23, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63,
+ 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f,
+ 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x74, 0x6f, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x22, 0x0a,
+ 0x20, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
+ 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x73, 0x42, 0x3a, 0x0a, 0x38, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72,
+ 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72,
+ 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65,
+ 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x1c, 0x0a,
+ 0x1a, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
+ 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x42, 0x1d, 0x0a, 0x1b, 0x5f,
+ 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f,
+ 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x28, 0x0a, 0x26, 0x5f, 0x61,
+ 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66,
+ 0x72, 0x6f, 0x6d, 0x5f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x5f, 0x65, 0x6e, 0x67, 0x61, 0x67, 0x65,
+ 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x23, 0x0a, 0x21, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e,
+ 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x73, 0x74,
+ 0x6f, 0x72, 0x65, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x74, 0x42, 0x25, 0x0a, 0x23, 0x5f, 0x61, 0x6c,
0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72,
- 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f,
- 0x72, 0x61, 0x74, 0x65, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x22,
- 0x0a, 0x20, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x6e, 0x65, 0x77, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f,
- 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x76, 0x61, 0x6c,
- 0x75, 0x65, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x21, 0x0a, 0x1f, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63,
+ 0x6f, 0x6d, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65,
+ 0x42, 0x3c, 0x0a, 0x3a, 0x5f, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73,
+ 0x69, 0x67, 0x68, 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x61, 0x62, 0x73, 0x6f,
+ 0x6c, 0x75, 0x74, 0x65, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x42, 0x2a,
+ 0x0a, 0x28, 0x5f, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67,
+ 0x68, 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73,
+ 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42, 0x2a, 0x0a, 0x28, 0x5f, 0x61,
+ 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x73,
+ 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x6f, 0x75, 0x74, 0x72, 0x61, 0x6e, 0x6b, 0x69, 0x6e, 0x67,
+ 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42, 0x26, 0x0a, 0x24, 0x5f, 0x61, 0x75, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63,
+ 0x68, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x2d,
+ 0x0a, 0x2b, 0x5f, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67,
+ 0x68, 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69,
+ 0x6f, 0x6e, 0x5f, 0x61, 0x62, 0x6f, 0x76, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x33, 0x0a,
+ 0x31, 0x5f, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68,
+ 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70,
+ 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61,
+ 0x67, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x63,
+ 0x6f, 0x73, 0x74, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f,
+ 0x63, 0x70, 0x63, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f,
+ 0x63, 0x70, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f,
+ 0x63, 0x70, 0x6d, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f,
+ 0x63, 0x70, 0x76, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f,
+ 0x70, 0x61, 0x67, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x73, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x61,
+ 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6f, 0x6e, 0x5f, 0x73,
+ 0x69, 0x74, 0x65, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x62, 0x65, 0x6e, 0x63, 0x68, 0x6d, 0x61, 0x72,
+ 0x6b, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x63, 0x70,
+ 0x63, 0x42, 0x23, 0x0a, 0x21, 0x5f, 0x62, 0x69, 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x61,
+ 0x70, 0x70, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
+ 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x28, 0x0a, 0x26, 0x5f, 0x62, 0x69, 0x64, 0x64, 0x61,
+ 0x62, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x70, 0x6f, 0x73, 0x74, 0x5f, 0x69, 0x6e, 0x73,
+ 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
+ 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x62, 0x65, 0x6e, 0x63, 0x68, 0x6d, 0x61, 0x72, 0x6b, 0x5f, 0x63,
+ 0x74, 0x72, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x62, 0x6f, 0x75, 0x6e, 0x63, 0x65, 0x5f, 0x72, 0x61,
+ 0x74, 0x65, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x42, 0x12, 0x0a,
+ 0x10, 0x5f, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b,
+ 0x73, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x63,
+ 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x42,
+ 0x13, 0x0a, 0x11, 0x5f, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x71, 0x75, 0x65,
+ 0x72, 0x69, 0x65, 0x73, 0x42, 0x27, 0x0a, 0x25, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
+ 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x6c, 0x6f, 0x73, 0x74, 0x5f, 0x69, 0x6d, 0x70,
+ 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42, 0x1b, 0x0a,
+ 0x19, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73,
+ 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42, 0x2d, 0x0a, 0x2b, 0x5f, 0x63,
+ 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x72,
+ 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f,
+ 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x42, 0x22, 0x0a, 0x20, 0x5f, 0x63, 0x6f,
+ 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x63, 0x6f,
+ 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x25, 0x0a,
+ 0x23, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x5f, 0x6c,
+ 0x6f, 0x73, 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73,
+ 0x68, 0x61, 0x72, 0x65, 0x42, 0x25, 0x0a, 0x23, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
+ 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x14, 0x0a, 0x12, 0x5f,
+ 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75,
+ 0x65, 0x42, 0x27, 0x0a, 0x25, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
+ 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x62, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
+ 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x1e, 0x0a, 0x1c, 0x5f, 0x6e,
+ 0x65, 0x77, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x66, 0x65,
+ 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x1d, 0x0a, 0x1b, 0x5f, 0x63,
0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65,
- 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x42, 0x25, 0x0a, 0x23, 0x5f, 0x61, 0x6c,
- 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72,
- 0x6f, 0x6d, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x74, 0x6f, 0x5f, 0x63, 0x61, 0x6c, 0x6c,
- 0x42, 0x22, 0x0a, 0x20, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x3a, 0x0a, 0x38, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x69, 0x6e,
- 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65,
- 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x42, 0x1d,
- 0x0a, 0x1b, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x28, 0x0a,
- 0x26, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
- 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x5f, 0x65, 0x6e, 0x67,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x23, 0x0a, 0x21, 0x5f, 0x61, 0x6c, 0x6c, 0x5f,
- 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d,
- 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x74, 0x42, 0x25, 0x0a, 0x23,
- 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
- 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x77, 0x65, 0x62, 0x73,
- 0x69, 0x74, 0x65, 0x42, 0x3c, 0x0a, 0x3a, 0x5f, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
- 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x61,
- 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72,
- 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67,
- 0x65, 0x42, 0x2a, 0x0a, 0x28, 0x5f, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e,
- 0x73, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x69, 0x6d, 0x70,
- 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42, 0x2a, 0x0a,
- 0x28, 0x5f, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68,
- 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x6f, 0x75, 0x74, 0x72, 0x61, 0x6e, 0x6b,
- 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42, 0x26, 0x0a, 0x24, 0x5f, 0x61, 0x75,
- 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x73, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x5f, 0x72, 0x61, 0x74,
- 0x65, 0x42, 0x2d, 0x0a, 0x2b, 0x5f, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e,
- 0x73, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x70, 0x6f, 0x73,
- 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x62, 0x6f, 0x76, 0x65, 0x5f, 0x72, 0x61, 0x74, 0x65,
- 0x42, 0x33, 0x0a, 0x31, 0x5f, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73,
- 0x69, 0x67, 0x68, 0x74, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x6f, 0x70, 0x5f,
- 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65,
- 0x6e, 0x74, 0x61, 0x67, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67,
- 0x65, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61,
- 0x67, 0x65, 0x5f, 0x63, 0x70, 0x63, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61,
- 0x67, 0x65, 0x5f, 0x63, 0x70, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61,
- 0x67, 0x65, 0x5f, 0x63, 0x70, 0x6d, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61,
- 0x67, 0x65, 0x5f, 0x63, 0x70, 0x76, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61,
- 0x67, 0x65, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x73, 0x42, 0x17, 0x0a,
- 0x15, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x6f,
- 0x6e, 0x5f, 0x73, 0x69, 0x74, 0x65, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x62, 0x65, 0x6e, 0x63, 0x68,
- 0x6d, 0x61, 0x72, 0x6b, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x6d, 0x61, 0x78,
- 0x5f, 0x63, 0x70, 0x63, 0x42, 0x23, 0x0a, 0x21, 0x5f, 0x62, 0x69, 0x64, 0x64, 0x61, 0x62, 0x6c,
- 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f,
- 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x28, 0x0a, 0x26, 0x5f, 0x62, 0x69,
- 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x70, 0x6f, 0x73, 0x74, 0x5f,
- 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
- 0x6f, 0x6e, 0x73, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x62, 0x65, 0x6e, 0x63, 0x68, 0x6d, 0x61, 0x72,
- 0x6b, 0x5f, 0x63, 0x74, 0x72, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x62, 0x6f, 0x75, 0x6e, 0x63, 0x65,
- 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73,
- 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x63, 0x6c,
- 0x69, 0x63, 0x6b, 0x73, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65,
- 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x71, 0x75, 0x65,
- 0x72, 0x79, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x5f,
- 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x42, 0x27, 0x0a, 0x25, 0x5f, 0x63, 0x6f, 0x6e, 0x74,
- 0x65, 0x6e, 0x74, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x6c, 0x6f, 0x73, 0x74, 0x5f,
- 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65,
- 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x6d, 0x70,
- 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42, 0x2d, 0x0a,
- 0x2b, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x73,
- 0x74, 0x5f, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x42, 0x22, 0x0a, 0x20,
- 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x73, 0x74,
- 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65,
- 0x42, 0x25, 0x0a, 0x23, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x61, 0x6e,
- 0x6b, 0x5f, 0x6c, 0x6f, 0x73, 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42, 0x25, 0x0a, 0x23, 0x5f, 0x63, 0x6f, 0x6e, 0x76,
- 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74,
- 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x14,
- 0x0a, 0x12, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x42, 0x1e, 0x0a, 0x1c, 0x5f, 0x6e, 0x65, 0x77, 0x5f, 0x63, 0x75, 0x73,
- 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x76,
- 0x61, 0x6c, 0x75, 0x65, 0x42, 0x1d, 0x0a, 0x1b, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63,
- 0x6f, 0x73, 0x74, 0x42, 0x36, 0x0a, 0x34, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
- 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f,
- 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x0e, 0x0a, 0x0c, 0x5f,
- 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x0e, 0x0a, 0x0c, 0x5f,
- 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x1b, 0x0a, 0x19, 0x5f,
- 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x63, 0x6f, 0x73,
- 0x74, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
- 0x42, 0x2f, 0x0a, 0x2d, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x75,
+ 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x42, 0x36, 0x0a, 0x34, 0x5f, 0x63, 0x6f,
+ 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x69,
+ 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75,
+ 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
+ 0x73, 0x42, 0x21, 0x0a, 0x1f, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
+ 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f,
+ 0x64, 0x61, 0x74, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x6d, 0x69,
+ 0x63, 0x72, 0x6f, 0x73, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x70, 0x65,
+ 0x72, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
+ 0x73, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63,
+ 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x2f, 0x0a, 0x2d, 0x5f, 0x63, 0x6f,
+ 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d,
+ 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f,
+ 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x63,
+ 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76,
+ 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x28, 0x0a, 0x26, 0x5f, 0x63, 0x72, 0x6f, 0x73,
+ 0x73, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
+ 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f,
+ 0x73, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x63, 0x74, 0x72, 0x42, 0x27, 0x0a, 0x25, 0x5f, 0x63, 0x75,
0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72,
0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
- 0x6e, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x64, 0x65, 0x76, 0x69,
- 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x28,
- 0x0a, 0x26, 0x5f, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f,
+ 0x6e, 0x73, 0x42, 0x3e, 0x0a, 0x3c, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d,
+ 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f,
+ 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d,
+ 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x72, 0x61,
+ 0x74, 0x65, 0x42, 0x4f, 0x0a, 0x4d, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d,
+ 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f,
+ 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d,
+ 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61,
+ 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74,
+ 0x69, 0x6f, 0x6e, 0x42, 0x2d, 0x0a, 0x2b, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f,
+ 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64,
+ 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c,
+ 0x75, 0x65, 0x42, 0x36, 0x0a, 0x34, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d,
+ 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f,
0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75,
- 0x65, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x63, 0x74, 0x72,
- 0x42, 0x27, 0x0a, 0x25, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64,
- 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f,
- 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x3e, 0x0a, 0x3c, 0x5f, 0x63, 0x75,
- 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72,
- 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x4f, 0x0a, 0x4d, 0x5f, 0x63, 0x75,
- 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72,
- 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x69,
- 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x2d, 0x0a, 0x2b, 0x5f, 0x63,
- 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74,
- 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
- 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x36, 0x0a, 0x34, 0x5f, 0x63, 0x75,
- 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72,
- 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x73,
- 0x74, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x65, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x65, 0x6e, 0x67, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x42, 0x22, 0x0a, 0x20, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f,
- 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x76, 0x61, 0x6c,
- 0x75, 0x65, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x1f, 0x0a, 0x1d, 0x5f, 0x68, 0x6f,
- 0x74, 0x65, 0x6c, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72,
- 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x21, 0x0a, 0x1f, 0x5f, 0x68,
- 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f,
- 0x6d, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x42, 0x24, 0x0a,
- 0x22, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x64, 0x69,
- 0x66, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74,
- 0x61, 0x67, 0x65, 0x42, 0x1d, 0x0a, 0x1b, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x65, 0x6c,
- 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
- 0x6e, 0x73, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61,
- 0x6c, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x42,
- 0x11, 0x0a, 0x0f, 0x5f, 0x67, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72,
- 0x64, 0x73, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x67, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x73, 0x61, 0x76,
- 0x65, 0x73, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x67, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x73, 0x65, 0x63,
- 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x42, 0x1f, 0x0a,
- 0x1d, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72,
- 0x6f, 0x6d, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x42, 0x0e,
- 0x0a, 0x0c, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x13,
- 0x0a, 0x11, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72,
- 0x61, 0x74, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64,
- 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x11, 0x0a, 0x0f, 0x5f,
- 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x42, 0x10,
- 0x0a, 0x0e, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x74, 0x73,
- 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x6d, 0x70,
- 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x6d, 0x65, 0x73,
- 0x73, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x24,
- 0x0a, 0x22, 0x5f, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64,
- 0x6c, 0x79, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e,
- 0x74, 0x61, 0x67, 0x65, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x5f, 0x75, 0x70, 0x6c, 0x69,
- 0x66, 0x74, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x11, 0x0a,
- 0x0f, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73,
- 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x5f, 0x63, 0x6c, 0x69,
- 0x63, 0x6b, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x42, 0x16, 0x0a,
- 0x14, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73,
- 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x20, 0x0a, 0x1e, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69,
- 0x63, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x70, 0x65,
- 0x72, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x6f, 0x72, 0x67, 0x61,
- 0x6e, 0x69, 0x63, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x42, 0x17, 0x0a, 0x15, 0x5f,
- 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x6e, 0x65, 0x77, 0x5f, 0x76, 0x69, 0x73, 0x69,
- 0x74, 0x6f, 0x72, 0x73, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x63,
- 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x69,
- 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x70,
- 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x72, 0x61, 0x74,
- 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63,
- 0x74, 0x72, 0x42, 0x27, 0x0a, 0x25, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x61, 0x62,
- 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65,
- 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42, 0x33, 0x0a, 0x31, 0x5f,
- 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x6c, 0x6f,
- 0x73, 0x74, 0x5f, 0x61, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x5f, 0x74, 0x6f, 0x70, 0x5f,
- 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65,
- 0x42, 0x26, 0x0a, 0x24, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x62, 0x75, 0x64, 0x67,
- 0x65, 0x74, 0x5f, 0x6c, 0x6f, 0x73, 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
- 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42, 0x2a, 0x0a, 0x28, 0x5f, 0x73, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x6c, 0x6f, 0x73, 0x74, 0x5f,
- 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73,
- 0x68, 0x61, 0x72, 0x65, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f,
- 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42, 0x26, 0x0a, 0x24, 0x5f,
- 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x65, 0x78, 0x61, 0x63, 0x74, 0x5f, 0x6d, 0x61, 0x74,
- 0x63, 0x68, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68,
- 0x61, 0x72, 0x65, 0x42, 0x1a, 0x0a, 0x18, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x69,
- 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42,
- 0x31, 0x0a, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x5f,
- 0x6c, 0x6f, 0x73, 0x74, 0x5f, 0x61, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x5f, 0x74, 0x6f,
- 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61,
- 0x72, 0x65, 0x42, 0x24, 0x0a, 0x22, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x72, 0x61,
- 0x6e, 0x6b, 0x5f, 0x6c, 0x6f, 0x73, 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
- 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42, 0x28, 0x0a, 0x26, 0x5f, 0x73, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x5f, 0x6c, 0x6f, 0x73, 0x74, 0x5f, 0x74, 0x6f,
- 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61,
- 0x72, 0x65, 0x42, 0x1e, 0x0a, 0x1c, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x6f,
- 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61,
- 0x72, 0x65, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x76, 0x6f,
- 0x6c, 0x75, 0x6d, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x73, 0x70, 0x65, 0x65, 0x64, 0x5f, 0x73,
- 0x63, 0x6f, 0x72, 0x65, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65,
- 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, 0x5f, 0x6d, 0x69, 0x63, 0x72,
- 0x6f, 0x73, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x74,
- 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61, 0x73, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x74,
- 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x65,
- 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x42, 0x33, 0x0a, 0x31, 0x5f, 0x76, 0x61, 0x6c,
- 0x69, 0x64, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x6c, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6d,
- 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x73, 0x5f, 0x63, 0x6c, 0x69, 0x63,
+ 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x65,
+ 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x0e,
+ 0x0a, 0x0c, 0x5f, 0x65, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x42, 0x22,
+ 0x0a, 0x20, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65,
+ 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x6d, 0x69, 0x63, 0x72,
+ 0x6f, 0x73, 0x42, 0x1f, 0x0a, 0x1d, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x63, 0x6f, 0x6d,
+ 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x69, 0x63,
+ 0x72, 0x6f, 0x73, 0x42, 0x21, 0x0a, 0x1f, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x65, 0x78,
+ 0x70, 0x65, 0x63, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x42, 0x24, 0x0a, 0x22, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c,
+ 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x64, 0x69, 0x66, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63,
+ 0x65, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x42, 0x1d, 0x0a, 0x1b,
+ 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x65, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x5f,
+ 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x1b, 0x0a, 0x19, 0x5f,
+ 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69,
+ 0x74, 0x79, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x67, 0x6d, 0x61,
+ 0x69, 0x6c, 0x5f, 0x66, 0x6f, 0x72, 0x77, 0x61, 0x72, 0x64, 0x73, 0x42, 0x0e, 0x0a, 0x0c, 0x5f,
+ 0x67, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x73, 0x61, 0x76, 0x65, 0x73, 0x42, 0x19, 0x0a, 0x17, 0x5f,
+ 0x67, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x61, 0x72, 0x79, 0x5f,
+ 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x42, 0x1f, 0x0a, 0x1d, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65,
+ 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x73, 0x74, 0x6f, 0x72,
+ 0x65, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x69, 0x6d, 0x70, 0x72,
+ 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x69, 0x6e, 0x74, 0x65,
+ 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x0f, 0x0a, 0x0d,
+ 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x15, 0x0a,
+ 0x13, 0x5f, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f,
+ 0x72, 0x61, 0x74, 0x65, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64,
+ 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x6d, 0x65, 0x73, 0x73,
+ 0x61, 0x67, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x74, 0x73, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x6d, 0x65,
+ 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
+ 0x73, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x68,
+ 0x61, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x24, 0x0a, 0x22, 0x5f, 0x6d, 0x6f, 0x62, 0x69,
+ 0x6c, 0x65, 0x5f, 0x66, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x6c, 0x79, 0x5f, 0x63, 0x6c, 0x69, 0x63,
0x6b, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x42, 0x1c, 0x0a,
- 0x1a, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x61, 0x6c, 0x6c, 0x5f,
- 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x2f, 0x0a, 0x2d, 0x5f,
- 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f,
- 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x63, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x17, 0x0a, 0x15,
- 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x2b, 0x0a, 0x29, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f,
- 0x70, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f,
- 0x62, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61,
- 0x74, 0x65, 0x42, 0x30, 0x0a, 0x2e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72,
- 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61,
- 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72,
- 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x71,
- 0x75, 0x61, 0x72, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x70, 0x31, 0x30, 0x30, 0x5f, 0x72, 0x61, 0x74,
- 0x65, 0x42, 0x1a, 0x0a, 0x18, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x71, 0x75, 0x61, 0x72,
- 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x70, 0x32, 0x35, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x1a, 0x0a,
- 0x18, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x71, 0x75, 0x61, 0x72, 0x74, 0x69, 0x6c, 0x65,
- 0x5f, 0x70, 0x35, 0x30, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x1a, 0x0a, 0x18, 0x5f, 0x76, 0x69,
- 0x64, 0x65, 0x6f, 0x5f, 0x71, 0x75, 0x61, 0x72, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x70, 0x37, 0x35,
- 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f,
- 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x76, 0x69,
- 0x64, 0x65, 0x6f, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x73, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x76, 0x69,
- 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x34, 0x0a, 0x32, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63,
- 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f,
- 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x63,
- 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x74, 0x6f, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x31, 0x0a, 0x2f,
- 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
- 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61,
- 0x73, 0x73, 0x65, 0x74, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42,
- 0x2b, 0x0a, 0x29, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
+ 0x1a, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73,
+ 0x63, 0x6f, 0x72, 0x65, 0x5f, 0x75, 0x70, 0x6c, 0x69, 0x66, 0x74, 0x42, 0x19, 0x0a, 0x17, 0x5f,
+ 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x63, 0x6f,
+ 0x72, 0x65, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e,
+ 0x69, 0x63, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x6f, 0x72,
+ 0x67, 0x61, 0x6e, 0x69, 0x63, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x70, 0x65, 0x72,
+ 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e,
+ 0x69, 0x63, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x20,
+ 0x0a, 0x1e, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65,
+ 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79,
+ 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x6f, 0x72, 0x67, 0x61, 0x6e, 0x69, 0x63, 0x5f, 0x71, 0x75, 0x65,
+ 0x72, 0x69, 0x65, 0x73, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74,
+ 0x5f, 0x6e, 0x65, 0x77, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x74, 0x6f, 0x72, 0x73, 0x42, 0x0e, 0x0a,
+ 0x0c, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x73, 0x42, 0x14, 0x0a,
+ 0x12, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
+ 0x6f, 0x6e, 0x73, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x74, 0x68,
+ 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x72,
+ 0x65, 0x6c, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x74, 0x72, 0x42, 0x27, 0x0a, 0x25, 0x5f,
+ 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x61, 0x62, 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x5f,
+ 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73,
+ 0x68, 0x61, 0x72, 0x65, 0x42, 0x33, 0x0a, 0x31, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f,
+ 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x6c, 0x6f, 0x73, 0x74, 0x5f, 0x61, 0x62, 0x73, 0x6f,
+ 0x6c, 0x75, 0x74, 0x65, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42, 0x26, 0x0a, 0x24, 0x5f, 0x73, 0x65,
+ 0x61, 0x72, 0x63, 0x68, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x6c, 0x6f, 0x73, 0x74,
+ 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72,
+ 0x65, 0x42, 0x2a, 0x0a, 0x28, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x62, 0x75, 0x64,
+ 0x67, 0x65, 0x74, 0x5f, 0x6c, 0x6f, 0x73, 0x74, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70,
+ 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42, 0x15, 0x0a,
+ 0x13, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x73,
+ 0x68, 0x61, 0x72, 0x65, 0x42, 0x26, 0x0a, 0x24, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f,
+ 0x65, 0x78, 0x61, 0x63, 0x74, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x69, 0x6d, 0x70, 0x72,
+ 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42, 0x1a, 0x0a, 0x18,
+ 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
+ 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42, 0x31, 0x0a, 0x2f, 0x5f, 0x73, 0x65, 0x61,
+ 0x72, 0x63, 0x68, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x5f, 0x6c, 0x6f, 0x73, 0x74, 0x5f, 0x61, 0x62,
+ 0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65,
+ 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42, 0x24, 0x0a, 0x22, 0x5f,
+ 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x5f, 0x6c, 0x6f, 0x73, 0x74,
+ 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72,
+ 0x65, 0x42, 0x28, 0x0a, 0x26, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x72, 0x61, 0x6e,
+ 0x6b, 0x5f, 0x6c, 0x6f, 0x73, 0x74, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65,
+ 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42, 0x1e, 0x0a, 0x1c, 0x5f,
+ 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65,
+ 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x42, 0x10, 0x0a, 0x0e, 0x5f,
+ 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x42, 0x0e, 0x0a,
+ 0x0c, 0x5f, 0x73, 0x70, 0x65, 0x65, 0x64, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x42, 0x1c, 0x0a,
+ 0x1a, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74,
+ 0x5f, 0x63, 0x70, 0x61, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x16, 0x0a, 0x14, 0x5f,
+ 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72,
+ 0x6f, 0x61, 0x73, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x74, 0x6f, 0x70, 0x5f, 0x69, 0x6d, 0x70, 0x72,
+ 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67,
+ 0x65, 0x42, 0x33, 0x0a, 0x31, 0x5f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, 0x61, 0x63, 0x63, 0x65,
+ 0x6c, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x70,
+ 0x61, 0x67, 0x65, 0x73, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x70, 0x65, 0x72, 0x63,
+ 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65,
+ 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
+ 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x2f, 0x0a, 0x2d, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70,
+ 0x65, 0x72, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
+ 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f,
+ 0x70, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x2b,
+ 0x0a, 0x29, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e,
+ 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x62, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x76,
+ 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x30, 0x0a, 0x2e, 0x5f,
+ 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e,
+ 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74,
+ 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x1b, 0x0a,
+ 0x19, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x71, 0x75, 0x61, 0x72, 0x74, 0x69, 0x6c, 0x65,
+ 0x5f, 0x70, 0x31, 0x30, 0x30, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x1a, 0x0a, 0x18, 0x5f, 0x76,
+ 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x71, 0x75, 0x61, 0x72, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x70, 0x32,
+ 0x35, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x1a, 0x0a, 0x18, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f,
+ 0x5f, 0x71, 0x75, 0x61, 0x72, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x70, 0x35, 0x30, 0x5f, 0x72, 0x61,
+ 0x74, 0x65, 0x42, 0x1a, 0x0a, 0x18, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x71, 0x75, 0x61,
+ 0x72, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x70, 0x37, 0x35, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x12,
+ 0x0a, 0x10, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x61,
+ 0x74, 0x65, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x76, 0x69, 0x65,
+ 0x77, 0x73, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f,
+ 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42,
+ 0x34, 0x0a, 0x32, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x42, 0x2c, 0x0a, 0x2a,
- 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
- 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61,
- 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x37, 0x0a, 0x35, 0x5f, 0x61,
- 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66,
- 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73,
- 0x65, 0x74, 0x5f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x5f, 0x65, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x42, 0x33, 0x0a, 0x31, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76,
- 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x74, 0x6f, 0x72,
- 0x65, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x74, 0x73, 0x42, 0x2e, 0x0a, 0x2c, 0x5f, 0x61, 0x6c, 0x6c,
+ 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x74, 0x6f,
+ 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x31, 0x0a, 0x2f, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f,
+ 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c,
+ 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x64, 0x69,
+ 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x2b, 0x0a, 0x29, 0x5f, 0x61, 0x6c, 0x6c,
0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f,
0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74,
- 0x5f, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x42, 0x37, 0x0a, 0x35, 0x5f, 0x65, 0x6c, 0x69,
- 0x67, 0x69, 0x62, 0x6c, 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e,
- 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
- 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x72, 0x65, 0x61, 0x63,
- 0x68, 0x42, 0x3d, 0x0a, 0x3b, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75,
- 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66,
- 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73,
- 0x65, 0x74, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x74, 0x6f, 0x5f, 0x63, 0x61, 0x6c, 0x6c,
- 0x42, 0x3a, 0x0a, 0x38, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67,
- 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72,
- 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65,
- 0x74, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x34, 0x0a, 0x32,
- 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f,
+ 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x42, 0x2c, 0x0a, 0x2a, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f,
0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c,
- 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6d, 0x65,
- 0x6e, 0x75, 0x42, 0x35, 0x0a, 0x33, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f,
- 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f,
- 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73,
- 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x40, 0x0a, 0x3e, 0x5f, 0x76, 0x69,
+ 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x72,
+ 0x64, 0x65, 0x72, 0x42, 0x37, 0x0a, 0x35, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76,
+ 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x74, 0x68, 0x65,
+ 0x72, 0x5f, 0x65, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x33, 0x0a, 0x31,
+ 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73,
+ 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61,
+ 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x74,
+ 0x73, 0x42, 0x2e, 0x0a, 0x2c, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72,
+ 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74,
+ 0x65, 0x42, 0x37, 0x0a, 0x35, 0x5f, 0x65, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x5f, 0x69,
+ 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f,
+ 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73,
+ 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x42, 0x3d, 0x0a, 0x3b, 0x5f, 0x76,
+ 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76,
+ 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x63, 0x6c, 0x69, 0x63,
+ 0x6b, 0x5f, 0x74, 0x6f, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x3a, 0x0a, 0x38, 0x5f, 0x76, 0x69,
0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x74, 0x68, 0x65, 0x72,
- 0x5f, 0x65, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x3c, 0x0a, 0x3a, 0x5f,
+ 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x34, 0x0a, 0x32, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74,
+ 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
+ 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x42, 0x35, 0x0a, 0x33, 0x5f,
0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e,
0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x74, 0x6f,
- 0x72, 0x65, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x74, 0x73, 0x42, 0x37, 0x0a, 0x35, 0x5f, 0x76, 0x69,
- 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x77, 0x65, 0x62, 0x73, 0x69,
- 0x74, 0x65, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x73, 0x42, 0x1d, 0x0a,
- 0x1b, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f,
- 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x14, 0x0a, 0x12,
- 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x61, 0x72, 0x74, 0x5f, 0x73, 0x69,
- 0x7a, 0x65, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x6f, 0x66, 0x5f, 0x67,
- 0x6f, 0x6f, 0x64, 0x73, 0x5f, 0x73, 0x6f, 0x6c, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73,
- 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x67, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x70, 0x72, 0x6f, 0x66, 0x69,
- 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x67, 0x72, 0x6f,
- 0x73, 0x73, 0x5f, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x5f, 0x6d, 0x61, 0x72, 0x67, 0x69, 0x6e,
- 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x72, 0x65, 0x76, 0x65, 0x6e, 0x75, 0x65, 0x5f, 0x6d, 0x69, 0x63,
- 0x72, 0x6f, 0x73, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x5f, 0x73, 0x6f,
- 0x6c, 0x64, 0x42, 0x27, 0x0a, 0x25, 0x5f, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x73, 0x65, 0x6c,
- 0x6c, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x6f, 0x66, 0x5f, 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x5f,
- 0x73, 0x6f, 0x6c, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x21, 0x0a, 0x1f, 0x5f,
- 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x73, 0x65, 0x6c, 0x6c, 0x5f, 0x67, 0x72, 0x6f, 0x73, 0x73,
- 0x5f, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x1c,
- 0x0a, 0x1a, 0x5f, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x73, 0x65, 0x6c, 0x6c, 0x5f, 0x72, 0x65,
- 0x76, 0x65, 0x6e, 0x75, 0x65, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x18, 0x0a, 0x16,
- 0x5f, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x73, 0x65, 0x6c, 0x6c, 0x5f, 0x75, 0x6e, 0x69, 0x74,
- 0x73, 0x5f, 0x73, 0x6f, 0x6c, 0x64, 0x42, 0x21, 0x0a, 0x1f, 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x5f,
+ 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x72, 0x64,
+ 0x65, 0x72, 0x42, 0x40, 0x0a, 0x3e, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f,
+ 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f,
+ 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73,
+ 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x5f, 0x65, 0x6e, 0x67, 0x61, 0x67, 0x65,
+ 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x3c, 0x0a, 0x3a, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68,
+ 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
+ 0x73, 0x5f, 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
+ 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x76, 0x69, 0x73, 0x69,
+ 0x74, 0x73, 0x42, 0x37, 0x0a, 0x35, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f,
+ 0x75, 0x67, 0x68, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f,
+ 0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73,
+ 0x73, 0x65, 0x74, 0x5f, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x42, 0x09, 0x0a, 0x07, 0x5f,
+ 0x6f, 0x72, 0x64, 0x65, 0x72, 0x73, 0x42, 0x1d, 0x0a, 0x1b, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61,
+ 0x67, 0x65, 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x6d,
+ 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67,
+ 0x65, 0x5f, 0x63, 0x61, 0x72, 0x74, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x42, 0x1c, 0x0a, 0x1a, 0x5f,
0x63, 0x6f, 0x73, 0x74, 0x5f, 0x6f, 0x66, 0x5f, 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x5f, 0x73, 0x6f,
- 0x6c, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x6c, 0x65,
- 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x5f,
- 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x5f,
- 0x72, 0x65, 0x76, 0x65, 0x6e, 0x75, 0x65, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x12,
- 0x0a, 0x10, 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x5f, 0x73, 0x6f,
- 0x6c, 0x64, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x5f, 0x75, 0x73,
- 0x65, 0x72, 0x73, 0x42, 0x28, 0x0a, 0x26, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f,
- 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75,
- 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x22, 0x51, 0x0a,
+ 0x6c, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x67, 0x72,
+ 0x6f, 0x73, 0x73, 0x5f, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f,
+ 0x73, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x67, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x70, 0x72, 0x6f, 0x66,
+ 0x69, 0x74, 0x5f, 0x6d, 0x61, 0x72, 0x67, 0x69, 0x6e, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x72, 0x65,
+ 0x76, 0x65, 0x6e, 0x75, 0x65, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x0d, 0x0a, 0x0b,
+ 0x5f, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x5f, 0x73, 0x6f, 0x6c, 0x64, 0x42, 0x27, 0x0a, 0x25, 0x5f,
+ 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x73, 0x65, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f,
+ 0x6f, 0x66, 0x5f, 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x5f, 0x73, 0x6f, 0x6c, 0x64, 0x5f, 0x6d, 0x69,
+ 0x63, 0x72, 0x6f, 0x73, 0x42, 0x21, 0x0a, 0x1f, 0x5f, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x73,
+ 0x65, 0x6c, 0x6c, 0x5f, 0x67, 0x72, 0x6f, 0x73, 0x73, 0x5f, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x74,
+ 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x63, 0x72, 0x6f, 0x73,
+ 0x73, 0x5f, 0x73, 0x65, 0x6c, 0x6c, 0x5f, 0x72, 0x65, 0x76, 0x65, 0x6e, 0x75, 0x65, 0x5f, 0x6d,
+ 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x63, 0x72, 0x6f, 0x73, 0x73, 0x5f,
+ 0x73, 0x65, 0x6c, 0x6c, 0x5f, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x5f, 0x73, 0x6f, 0x6c, 0x64, 0x42,
+ 0x21, 0x0a, 0x1f, 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x6f, 0x66,
+ 0x5f, 0x67, 0x6f, 0x6f, 0x64, 0x73, 0x5f, 0x73, 0x6f, 0x6c, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72,
+ 0x6f, 0x73, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x73,
+ 0x73, 0x5f, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42,
+ 0x16, 0x0a, 0x14, 0x5f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x72, 0x65, 0x76, 0x65, 0x6e, 0x75, 0x65,
+ 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x6c, 0x65, 0x61, 0x64,
+ 0x5f, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x5f, 0x73, 0x6f, 0x6c, 0x64, 0x42, 0x0f, 0x0a, 0x0d, 0x5f,
+ 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x42, 0x28, 0x0a, 0x26,
+ 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x70, 0x65,
+ 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x65,
+ 0x64, 0x5f, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74,
+ 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x70, 0x69, 0x6e, 0x6e, 0x65,
+ 0x64, 0x5f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x2e, 0x0a,
+ 0x2c, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x5f, 0x61,
+ 0x73, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x6e, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x2e, 0x0a,
+ 0x2c, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x5f, 0x61,
+ 0x73, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x77, 0x6f, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x30, 0x0a,
+ 0x2e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64, 0x5f, 0x61,
+ 0x73, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x68, 0x72, 0x65, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42,
+ 0x31, 0x0a, 0x2f, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x70, 0x69, 0x6e, 0x6e, 0x65, 0x64,
+ 0x5f, 0x61, 0x73, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
+ 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x6e, 0x65, 0x5f, 0x63, 0x6f, 0x75,
+ 0x6e, 0x74, 0x42, 0x31, 0x0a, 0x2f, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x70, 0x69, 0x6e,
+ 0x6e, 0x65, 0x64, 0x5f, 0x61, 0x73, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
+ 0x6f, 0x6e, 0x5f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x77, 0x6f, 0x5f,
+ 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x2f, 0x0a, 0x2d, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f,
+ 0x62, 0x65, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65,
+ 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x65, 0x72, 0x63,
+ 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x42, 0x2f, 0x0a, 0x2d, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74,
+ 0x5f, 0x67, 0x6f, 0x6f, 0x64, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63,
+ 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x65, 0x72,
+ 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x42, 0x2e, 0x0a, 0x2c, 0x5f, 0x61, 0x73, 0x73, 0x65,
+ 0x74, 0x5f, 0x6c, 0x6f, 0x77, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63,
+ 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x65, 0x72,
+ 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x42, 0x33, 0x0a, 0x31, 0x5f, 0x61, 0x73, 0x73, 0x65,
+ 0x74, 0x5f, 0x6c, 0x65, 0x61, 0x72, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f,
+ 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
+ 0x6e, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x42, 0x32, 0x0a, 0x30,
+ 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x75, 0x6e, 0x72, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x70,
+ 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65,
+ 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65,
+ 0x42, 0x29, 0x0a, 0x27, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x62, 0x65, 0x73, 0x74, 0x5f,
+ 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x73, 0x74,
+ 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x42, 0x29, 0x0a, 0x27, 0x5f,
+ 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x6f, 0x6f, 0x64, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f,
+ 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x63,
+ 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x42, 0x28, 0x0a, 0x26, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74,
+ 0x5f, 0x6c, 0x6f, 0x77, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65,
+ 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65,
+ 0x42, 0x2d, 0x0a, 0x2b, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x65, 0x61, 0x72, 0x6e,
+ 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f,
+ 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x42,
+ 0x2c, 0x0a, 0x2a, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x75, 0x6e, 0x72, 0x61, 0x74, 0x65,
+ 0x64, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x63, 0x6f,
+ 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x22, 0x51, 0x0a,
0x11, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x56, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x52, 0x61, 0x6e,
0x67, 0x65, 0x12, 0x15, 0x0a, 0x03, 0x6d, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48,
0x00, 0x52, 0x03, 0x6d, 0x69, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x15, 0x0a, 0x03, 0x6d, 0x61, 0x78,
@@ -3329,47 +3804,47 @@ var file_google_ads_googleads_v16_common_metrics_proto_rawDesc = []byte{
0x42, 0x06, 0x0a, 0x04, 0x5f, 0x6d, 0x69, 0x6e, 0x42, 0x06, 0x0a, 0x04, 0x5f, 0x6d, 0x61, 0x78,
0x42, 0xec, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0c, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0c, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63,
0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2,
+ 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_metrics_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_metrics_proto_rawDescData = file_google_ads_googleads_v16_common_metrics_proto_rawDesc
+ file_google_ads_googleads_v17_common_metrics_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_metrics_proto_rawDescData = file_google_ads_googleads_v17_common_metrics_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_metrics_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_metrics_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_metrics_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_metrics_proto_rawDescData)
+func file_google_ads_googleads_v17_common_metrics_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_metrics_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_metrics_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_metrics_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_metrics_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_common_metrics_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
-var file_google_ads_googleads_v16_common_metrics_proto_goTypes = []interface{}{
- (*Metrics)(nil), // 0: google.ads.googleads.v16.common.Metrics
- (*SearchVolumeRange)(nil), // 1: google.ads.googleads.v16.common.SearchVolumeRange
- (enums.QualityScoreBucketEnum_QualityScoreBucket)(0), // 2: google.ads.googleads.v16.enums.QualityScoreBucketEnum.QualityScoreBucket
- (enums.InteractionEventTypeEnum_InteractionEventType)(0), // 3: google.ads.googleads.v16.enums.InteractionEventTypeEnum.InteractionEventType
-}
-var file_google_ads_googleads_v16_common_metrics_proto_depIdxs = []int32{
- 2, // 0: google.ads.googleads.v16.common.Metrics.historical_creative_quality_score:type_name -> google.ads.googleads.v16.enums.QualityScoreBucketEnum.QualityScoreBucket
- 2, // 1: google.ads.googleads.v16.common.Metrics.historical_landing_page_quality_score:type_name -> google.ads.googleads.v16.enums.QualityScoreBucketEnum.QualityScoreBucket
- 2, // 2: google.ads.googleads.v16.common.Metrics.historical_search_predicted_ctr:type_name -> google.ads.googleads.v16.enums.QualityScoreBucketEnum.QualityScoreBucket
- 3, // 3: google.ads.googleads.v16.common.Metrics.interaction_event_types:type_name -> google.ads.googleads.v16.enums.InteractionEventTypeEnum.InteractionEventType
- 1, // 4: google.ads.googleads.v16.common.Metrics.search_volume:type_name -> google.ads.googleads.v16.common.SearchVolumeRange
+ return file_google_ads_googleads_v17_common_metrics_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_common_metrics_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
+var file_google_ads_googleads_v17_common_metrics_proto_goTypes = []interface{}{
+ (*Metrics)(nil), // 0: google.ads.googleads.v17.common.Metrics
+ (*SearchVolumeRange)(nil), // 1: google.ads.googleads.v17.common.SearchVolumeRange
+ (enums.QualityScoreBucketEnum_QualityScoreBucket)(0), // 2: google.ads.googleads.v17.enums.QualityScoreBucketEnum.QualityScoreBucket
+ (enums.InteractionEventTypeEnum_InteractionEventType)(0), // 3: google.ads.googleads.v17.enums.InteractionEventTypeEnum.InteractionEventType
+}
+var file_google_ads_googleads_v17_common_metrics_proto_depIdxs = []int32{
+ 2, // 0: google.ads.googleads.v17.common.Metrics.historical_creative_quality_score:type_name -> google.ads.googleads.v17.enums.QualityScoreBucketEnum.QualityScoreBucket
+ 2, // 1: google.ads.googleads.v17.common.Metrics.historical_landing_page_quality_score:type_name -> google.ads.googleads.v17.enums.QualityScoreBucketEnum.QualityScoreBucket
+ 2, // 2: google.ads.googleads.v17.common.Metrics.historical_search_predicted_ctr:type_name -> google.ads.googleads.v17.enums.QualityScoreBucketEnum.QualityScoreBucket
+ 3, // 3: google.ads.googleads.v17.common.Metrics.interaction_event_types:type_name -> google.ads.googleads.v17.enums.InteractionEventTypeEnum.InteractionEventType
+ 1, // 4: google.ads.googleads.v17.common.Metrics.search_volume:type_name -> google.ads.googleads.v17.common.SearchVolumeRange
5, // [5:5] is the sub-list for method output_type
5, // [5:5] is the sub-list for method input_type
5, // [5:5] is the sub-list for extension type_name
@@ -3377,13 +3852,13 @@ var file_google_ads_googleads_v16_common_metrics_proto_depIdxs = []int32{
0, // [0:5] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_metrics_proto_init() }
-func file_google_ads_googleads_v16_common_metrics_proto_init() {
- if File_google_ads_googleads_v16_common_metrics_proto != nil {
+func init() { file_google_ads_googleads_v17_common_metrics_proto_init() }
+func file_google_ads_googleads_v17_common_metrics_proto_init() {
+ if File_google_ads_googleads_v17_common_metrics_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_metrics_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_metrics_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Metrics); i {
case 0:
return &v.state
@@ -3395,7 +3870,7 @@ func file_google_ads_googleads_v16_common_metrics_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_metrics_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_metrics_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SearchVolumeRange); i {
case 0:
return &v.state
@@ -3408,24 +3883,24 @@ func file_google_ads_googleads_v16_common_metrics_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_metrics_proto_msgTypes[0].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_metrics_proto_msgTypes[1].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_metrics_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_metrics_proto_msgTypes[1].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_metrics_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_metrics_proto_rawDesc,
NumEnums: 0,
NumMessages: 2,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_metrics_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_metrics_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_metrics_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_metrics_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_metrics_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_metrics_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_metrics_proto = out.File
- file_google_ads_googleads_v16_common_metrics_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_metrics_proto_goTypes = nil
- file_google_ads_googleads_v16_common_metrics_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_metrics_proto = out.File
+ file_google_ads_googleads_v17_common_metrics_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_metrics_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_metrics_proto_depIdxs = nil
}
diff --git a/common/offline_user_data.pb.go b/common/offline_user_data.pb.go
index 175f9335..6ac8e52e 100644
--- a/common/offline_user_data.pb.go
+++ b/common/offline_user_data.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/offline_user_data.proto
+// source: google/ads/googleads/v17/common/offline_user_data.proto
package common
@@ -68,7 +68,7 @@ type OfflineUserAddressInfo struct {
func (x *OfflineUserAddressInfo) Reset() {
*x = OfflineUserAddressInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -81,7 +81,7 @@ func (x *OfflineUserAddressInfo) String() string {
func (*OfflineUserAddressInfo) ProtoMessage() {}
func (x *OfflineUserAddressInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -94,7 +94,7 @@ func (x *OfflineUserAddressInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use OfflineUserAddressInfo.ProtoReflect.Descriptor instead.
func (*OfflineUserAddressInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescGZIP(), []int{0}
}
func (x *OfflineUserAddressInfo) GetHashedFirstName() string {
@@ -154,7 +154,7 @@ type UserIdentifier struct {
// Source of the user identifier when the upload is from Store Sales,
// ConversionUploadService, or ConversionAdjustmentUploadService.
- UserIdentifierSource enums.UserIdentifierSourceEnum_UserIdentifierSource `protobuf:"varint,6,opt,name=user_identifier_source,json=userIdentifierSource,proto3,enum=google.ads.googleads.v16.enums.UserIdentifierSourceEnum_UserIdentifierSource" json:"user_identifier_source,omitempty"`
+ UserIdentifierSource enums.UserIdentifierSourceEnum_UserIdentifierSource `protobuf:"varint,6,opt,name=user_identifier_source,json=userIdentifierSource,proto3,enum=google.ads.googleads.v17.enums.UserIdentifierSourceEnum_UserIdentifierSource" json:"user_identifier_source,omitempty"`
// Exactly one must be specified. For OfflineUserDataJobService, Customer
// Match accepts hashed_email, hashed_phone_number, mobile_id,
// third_party_user_id, and address_info; Store Sales accepts hashed_email,
@@ -176,7 +176,7 @@ type UserIdentifier struct {
func (x *UserIdentifier) Reset() {
*x = UserIdentifier{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -189,7 +189,7 @@ func (x *UserIdentifier) String() string {
func (*UserIdentifier) ProtoMessage() {}
func (x *UserIdentifier) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -202,7 +202,7 @@ func (x *UserIdentifier) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserIdentifier.ProtoReflect.Descriptor instead.
func (*UserIdentifier) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescGZIP(), []int{1}
}
func (x *UserIdentifier) GetUserIdentifierSource() enums.UserIdentifierSourceEnum_UserIdentifierSource {
@@ -339,7 +339,7 @@ type TransactionAttribute struct {
func (x *TransactionAttribute) Reset() {
*x = TransactionAttribute{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -352,7 +352,7 @@ func (x *TransactionAttribute) String() string {
func (*TransactionAttribute) ProtoMessage() {}
func (x *TransactionAttribute) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -365,7 +365,7 @@ func (x *TransactionAttribute) ProtoReflect() protoreflect.Message {
// Deprecated: Use TransactionAttribute.ProtoReflect.Descriptor instead.
func (*TransactionAttribute) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescGZIP(), []int{2}
}
func (x *TransactionAttribute) GetTransactionDateTime() string {
@@ -438,7 +438,7 @@ type StoreAttribute struct {
func (x *StoreAttribute) Reset() {
*x = StoreAttribute{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -451,7 +451,7 @@ func (x *StoreAttribute) String() string {
func (*StoreAttribute) ProtoMessage() {}
func (x *StoreAttribute) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -464,7 +464,7 @@ func (x *StoreAttribute) ProtoReflect() protoreflect.Message {
// Deprecated: Use StoreAttribute.ProtoReflect.Descriptor instead.
func (*StoreAttribute) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescGZIP(), []int{3}
+ return file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescGZIP(), []int{3}
}
func (x *StoreAttribute) GetStoreCode() string {
@@ -500,7 +500,7 @@ type ItemAttribute struct {
func (x *ItemAttribute) Reset() {
*x = ItemAttribute{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -513,7 +513,7 @@ func (x *ItemAttribute) String() string {
func (*ItemAttribute) ProtoMessage() {}
func (x *ItemAttribute) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -526,7 +526,7 @@ func (x *ItemAttribute) ProtoReflect() protoreflect.Message {
// Deprecated: Use ItemAttribute.ProtoReflect.Descriptor instead.
func (*ItemAttribute) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescGZIP(), []int{4}
+ return file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescGZIP(), []int{4}
}
func (x *ItemAttribute) GetItemId() string {
@@ -586,7 +586,7 @@ type UserData struct {
func (x *UserData) Reset() {
*x = UserData{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -599,7 +599,7 @@ func (x *UserData) String() string {
func (*UserData) ProtoMessage() {}
func (x *UserData) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -612,7 +612,7 @@ func (x *UserData) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserData.ProtoReflect.Descriptor instead.
func (*UserData) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescGZIP(), []int{5}
+ return file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescGZIP(), []int{5}
}
func (x *UserData) GetUserIdentifiers() []*UserIdentifier {
@@ -691,7 +691,7 @@ type UserAttribute struct {
func (x *UserAttribute) Reset() {
*x = UserAttribute{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -704,7 +704,7 @@ func (x *UserAttribute) String() string {
func (*UserAttribute) ProtoMessage() {}
func (x *UserAttribute) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -717,7 +717,7 @@ func (x *UserAttribute) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserAttribute.ProtoReflect.Descriptor instead.
func (*UserAttribute) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescGZIP(), []int{6}
+ return file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescGZIP(), []int{6}
}
func (x *UserAttribute) GetLifetimeValueMicros() int64 {
@@ -812,7 +812,7 @@ type EventAttribute struct {
func (x *EventAttribute) Reset() {
*x = EventAttribute{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -825,7 +825,7 @@ func (x *EventAttribute) String() string {
func (*EventAttribute) ProtoMessage() {}
func (x *EventAttribute) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -838,7 +838,7 @@ func (x *EventAttribute) ProtoReflect() protoreflect.Message {
// Deprecated: Use EventAttribute.ProtoReflect.Descriptor instead.
func (*EventAttribute) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescGZIP(), []int{7}
+ return file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescGZIP(), []int{7}
}
func (x *EventAttribute) GetEvent() string {
@@ -876,7 +876,7 @@ type EventItemAttribute struct {
func (x *EventItemAttribute) Reset() {
*x = EventItemAttribute{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -889,7 +889,7 @@ func (x *EventItemAttribute) String() string {
func (*EventItemAttribute) ProtoMessage() {}
func (x *EventItemAttribute) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -902,7 +902,7 @@ func (x *EventItemAttribute) ProtoReflect() protoreflect.Message {
// Deprecated: Use EventItemAttribute.ProtoReflect.Descriptor instead.
func (*EventItemAttribute) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescGZIP(), []int{8}
+ return file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescGZIP(), []int{8}
}
func (x *EventItemAttribute) GetItemId() string {
@@ -929,7 +929,7 @@ type ShoppingLoyalty struct {
func (x *ShoppingLoyalty) Reset() {
*x = ShoppingLoyalty{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -942,7 +942,7 @@ func (x *ShoppingLoyalty) String() string {
func (*ShoppingLoyalty) ProtoMessage() {}
func (x *ShoppingLoyalty) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -955,7 +955,7 @@ func (x *ShoppingLoyalty) ProtoReflect() protoreflect.Message {
// Deprecated: Use ShoppingLoyalty.ProtoReflect.Descriptor instead.
func (*ShoppingLoyalty) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescGZIP(), []int{9}
+ return file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescGZIP(), []int{9}
}
func (x *ShoppingLoyalty) GetLoyaltyTier() string {
@@ -981,7 +981,7 @@ type CustomerMatchUserListMetadata struct {
func (x *CustomerMatchUserListMetadata) Reset() {
*x = CustomerMatchUserListMetadata{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -994,7 +994,7 @@ func (x *CustomerMatchUserListMetadata) String() string {
func (*CustomerMatchUserListMetadata) ProtoMessage() {}
func (x *CustomerMatchUserListMetadata) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1007,7 +1007,7 @@ func (x *CustomerMatchUserListMetadata) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomerMatchUserListMetadata.ProtoReflect.Descriptor instead.
func (*CustomerMatchUserListMetadata) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescGZIP(), []int{10}
+ return file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescGZIP(), []int{10}
}
func (x *CustomerMatchUserListMetadata) GetUserList() string {
@@ -1052,7 +1052,7 @@ type StoreSalesMetadata struct {
func (x *StoreSalesMetadata) Reset() {
*x = StoreSalesMetadata{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1065,7 +1065,7 @@ func (x *StoreSalesMetadata) String() string {
func (*StoreSalesMetadata) ProtoMessage() {}
func (x *StoreSalesMetadata) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1078,7 +1078,7 @@ func (x *StoreSalesMetadata) ProtoReflect() protoreflect.Message {
// Deprecated: Use StoreSalesMetadata.ProtoReflect.Descriptor instead.
func (*StoreSalesMetadata) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescGZIP(), []int{11}
+ return file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescGZIP(), []int{11}
}
func (x *StoreSalesMetadata) GetLoyaltyFraction() float64 {
@@ -1146,7 +1146,7 @@ type StoreSalesThirdPartyMetadata struct {
func (x *StoreSalesThirdPartyMetadata) Reset() {
*x = StoreSalesThirdPartyMetadata{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[12]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1159,7 +1159,7 @@ func (x *StoreSalesThirdPartyMetadata) String() string {
func (*StoreSalesThirdPartyMetadata) ProtoMessage() {}
func (x *StoreSalesThirdPartyMetadata) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[12]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1172,7 +1172,7 @@ func (x *StoreSalesThirdPartyMetadata) ProtoReflect() protoreflect.Message {
// Deprecated: Use StoreSalesThirdPartyMetadata.ProtoReflect.Descriptor instead.
func (*StoreSalesThirdPartyMetadata) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescGZIP(), []int{12}
+ return file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescGZIP(), []int{12}
}
func (x *StoreSalesThirdPartyMetadata) GetAdvertiserUploadDateTime() string {
@@ -1217,20 +1217,20 @@ func (x *StoreSalesThirdPartyMetadata) GetPartnerId() int64 {
return 0
}
-var File_google_ads_googleads_v16_common_offline_user_data_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_offline_user_data_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_offline_user_data_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_offline_user_data_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x64,
0x61, 0x74, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x2d, 0x67, 0x6f, 0x6f, 0x67,
+ 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x2d, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6e, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6e, 0x73,
0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69,
0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f,
@@ -1266,7 +1266,7 @@ var file_google_ads_googleads_v16_common_offline_user_data_proto_rawDesc = []byt
0x65, 0x72, 0x5f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x73, 0x6f,
0x75, 0x72, 0x63, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72,
0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65,
0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66,
0x69, 0x65, 0x72, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x14, 0x75, 0x73, 0x65, 0x72, 0x49,
@@ -1284,7 +1284,7 @@ var file_google_ads_googleads_v16_common_offline_user_data_proto_rawDesc = []byt
0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x5c, 0x0a, 0x0c, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73,
0x73, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4f,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4f,
0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73,
0x73, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0b, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73,
0x49, 0x6e, 0x66, 0x6f, 0x42, 0x0c, 0x0a, 0x0a, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69,
@@ -1308,7 +1308,7 @@ var file_google_ads_googleads_v16_common_offline_user_data_proto_rawDesc = []byt
0x01, 0x12, 0x58, 0x0a, 0x0f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69,
0x62, 0x75, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x74, 0x6f,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x74, 0x6f,
0x72, 0x65, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x0e, 0x73, 0x74, 0x6f,
0x72, 0x65, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x12, 0x26, 0x0a, 0x0c, 0x63,
0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28,
@@ -1316,7 +1316,7 @@ var file_google_ads_googleads_v16_common_offline_user_data_proto_rawDesc = []byt
0x88, 0x01, 0x01, 0x12, 0x55, 0x0a, 0x0e, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x72,
0x69, 0x62, 0x75, 0x74, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x74,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x74,
0x65, 0x6d, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x0d, 0x69, 0x74, 0x65,
0x6d, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x74,
0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x5f,
@@ -1347,24 +1347,24 @@ var file_google_ads_googleads_v16_common_offline_user_data_proto_rawDesc = []byt
0x5a, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69,
0x65, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72,
0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x0f, 0x75, 0x73, 0x65, 0x72,
0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x73, 0x12, 0x6a, 0x0a, 0x15, 0x74,
0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69,
0x62, 0x75, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x72, 0x61,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x72, 0x61,
0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74,
0x65, 0x52, 0x14, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x74,
0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x12, 0x55, 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x5f,
0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x2e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52,
0x0d, 0x75, 0x73, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x12, 0x47,
0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x28, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2e, 0x43, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x07, 0x63, 0x6f, 0x6e,
0x73, 0x65, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x63, 0x6f, 0x6e, 0x73,
0x65, 0x6e, 0x74, 0x22, 0xdb, 0x05, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72,
@@ -1392,7 +1392,7 @@ var file_google_ads_googleads_v16_common_offline_user_data_proto_rawDesc = []byt
0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x60, 0x0a, 0x10, 0x73,
0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x6c, 0x6f, 0x79, 0x61, 0x6c, 0x74, 0x79, 0x18,
0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67,
0x4c, 0x6f, 0x79, 0x61, 0x6c, 0x74, 0x79, 0x48, 0x02, 0x52, 0x0f, 0x73, 0x68, 0x6f, 0x70, 0x70,
0x69, 0x6e, 0x67, 0x4c, 0x6f, 0x79, 0x61, 0x6c, 0x74, 0x79, 0x88, 0x01, 0x01, 0x12, 0x2c, 0x0a,
@@ -1405,7 +1405,7 @@ var file_google_ads_googleads_v16_common_offline_user_data_proto_rawDesc = []byt
0x65, 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x5d, 0x0a, 0x0f, 0x65, 0x76, 0x65,
0x6e, 0x74, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x18, 0x0a, 0x20, 0x03,
0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62,
0x75, 0x74, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x0e, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x41,
0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x6c, 0x69, 0x66,
@@ -1421,7 +1421,7 @@ var file_google_ads_googleads_v16_common_offline_user_data_proto_rawDesc = []byt
0x76, 0x65, 0x6e, 0x74, 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x5f, 0x0a, 0x0e,
0x69, 0x74, 0x65, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x18, 0x03,
0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x49, 0x74, 0x65, 0x6d,
0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0d,
0x69, 0x74, 0x65, 0x6d, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x22, 0x32, 0x0a,
@@ -1439,7 +1439,7 @@ var file_google_ads_googleads_v16_common_offline_user_data_proto_rawDesc = []byt
0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x88, 0x01,
0x01, 0x12, 0x47, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x28, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74, 0x48, 0x01, 0x52, 0x07,
0x63, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x42, 0x0c, 0x0a, 0x0a, 0x5f, 0x75,
0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x63, 0x6f, 0x6e,
@@ -1457,7 +1457,7 @@ var file_google_ads_googleads_v16_common_offline_user_data_proto_rawDesc = []byt
0x79, 0x88, 0x01, 0x01, 0x12, 0x6f, 0x0a, 0x14, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, 0x70, 0x61,
0x72, 0x74, 0x79, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x53, 0x61, 0x6c, 0x65, 0x73, 0x54,
0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74,
0x61, 0x52, 0x12, 0x74, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x4d, 0x65, 0x74,
@@ -1501,67 +1501,67 @@ var file_google_ads_googleads_v16_common_offline_user_data_proto_rawDesc = []byt
0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
0x72, 0x5f, 0x69, 0x64, 0x42, 0xf4, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x14, 0x4f, 0x66,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x14, 0x4f, 0x66,
0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescData = file_google_ads_googleads_v16_common_offline_user_data_proto_rawDesc
+ file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescData = file_google_ads_googleads_v17_common_offline_user_data_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescData)
+func file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_offline_user_data_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes = make([]protoimpl.MessageInfo, 13)
-var file_google_ads_googleads_v16_common_offline_user_data_proto_goTypes = []interface{}{
- (*OfflineUserAddressInfo)(nil), // 0: google.ads.googleads.v16.common.OfflineUserAddressInfo
- (*UserIdentifier)(nil), // 1: google.ads.googleads.v16.common.UserIdentifier
- (*TransactionAttribute)(nil), // 2: google.ads.googleads.v16.common.TransactionAttribute
- (*StoreAttribute)(nil), // 3: google.ads.googleads.v16.common.StoreAttribute
- (*ItemAttribute)(nil), // 4: google.ads.googleads.v16.common.ItemAttribute
- (*UserData)(nil), // 5: google.ads.googleads.v16.common.UserData
- (*UserAttribute)(nil), // 6: google.ads.googleads.v16.common.UserAttribute
- (*EventAttribute)(nil), // 7: google.ads.googleads.v16.common.EventAttribute
- (*EventItemAttribute)(nil), // 8: google.ads.googleads.v16.common.EventItemAttribute
- (*ShoppingLoyalty)(nil), // 9: google.ads.googleads.v16.common.ShoppingLoyalty
- (*CustomerMatchUserListMetadata)(nil), // 10: google.ads.googleads.v16.common.CustomerMatchUserListMetadata
- (*StoreSalesMetadata)(nil), // 11: google.ads.googleads.v16.common.StoreSalesMetadata
- (*StoreSalesThirdPartyMetadata)(nil), // 12: google.ads.googleads.v16.common.StoreSalesThirdPartyMetadata
- (enums.UserIdentifierSourceEnum_UserIdentifierSource)(0), // 13: google.ads.googleads.v16.enums.UserIdentifierSourceEnum.UserIdentifierSource
- (*Consent)(nil), // 14: google.ads.googleads.v16.common.Consent
-}
-var file_google_ads_googleads_v16_common_offline_user_data_proto_depIdxs = []int32{
- 13, // 0: google.ads.googleads.v16.common.UserIdentifier.user_identifier_source:type_name -> google.ads.googleads.v16.enums.UserIdentifierSourceEnum.UserIdentifierSource
- 0, // 1: google.ads.googleads.v16.common.UserIdentifier.address_info:type_name -> google.ads.googleads.v16.common.OfflineUserAddressInfo
- 3, // 2: google.ads.googleads.v16.common.TransactionAttribute.store_attribute:type_name -> google.ads.googleads.v16.common.StoreAttribute
- 4, // 3: google.ads.googleads.v16.common.TransactionAttribute.item_attribute:type_name -> google.ads.googleads.v16.common.ItemAttribute
- 1, // 4: google.ads.googleads.v16.common.UserData.user_identifiers:type_name -> google.ads.googleads.v16.common.UserIdentifier
- 2, // 5: google.ads.googleads.v16.common.UserData.transaction_attribute:type_name -> google.ads.googleads.v16.common.TransactionAttribute
- 6, // 6: google.ads.googleads.v16.common.UserData.user_attribute:type_name -> google.ads.googleads.v16.common.UserAttribute
- 14, // 7: google.ads.googleads.v16.common.UserData.consent:type_name -> google.ads.googleads.v16.common.Consent
- 9, // 8: google.ads.googleads.v16.common.UserAttribute.shopping_loyalty:type_name -> google.ads.googleads.v16.common.ShoppingLoyalty
- 7, // 9: google.ads.googleads.v16.common.UserAttribute.event_attribute:type_name -> google.ads.googleads.v16.common.EventAttribute
- 8, // 10: google.ads.googleads.v16.common.EventAttribute.item_attribute:type_name -> google.ads.googleads.v16.common.EventItemAttribute
- 14, // 11: google.ads.googleads.v16.common.CustomerMatchUserListMetadata.consent:type_name -> google.ads.googleads.v16.common.Consent
- 12, // 12: google.ads.googleads.v16.common.StoreSalesMetadata.third_party_metadata:type_name -> google.ads.googleads.v16.common.StoreSalesThirdPartyMetadata
+ return file_google_ads_googleads_v17_common_offline_user_data_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes = make([]protoimpl.MessageInfo, 13)
+var file_google_ads_googleads_v17_common_offline_user_data_proto_goTypes = []interface{}{
+ (*OfflineUserAddressInfo)(nil), // 0: google.ads.googleads.v17.common.OfflineUserAddressInfo
+ (*UserIdentifier)(nil), // 1: google.ads.googleads.v17.common.UserIdentifier
+ (*TransactionAttribute)(nil), // 2: google.ads.googleads.v17.common.TransactionAttribute
+ (*StoreAttribute)(nil), // 3: google.ads.googleads.v17.common.StoreAttribute
+ (*ItemAttribute)(nil), // 4: google.ads.googleads.v17.common.ItemAttribute
+ (*UserData)(nil), // 5: google.ads.googleads.v17.common.UserData
+ (*UserAttribute)(nil), // 6: google.ads.googleads.v17.common.UserAttribute
+ (*EventAttribute)(nil), // 7: google.ads.googleads.v17.common.EventAttribute
+ (*EventItemAttribute)(nil), // 8: google.ads.googleads.v17.common.EventItemAttribute
+ (*ShoppingLoyalty)(nil), // 9: google.ads.googleads.v17.common.ShoppingLoyalty
+ (*CustomerMatchUserListMetadata)(nil), // 10: google.ads.googleads.v17.common.CustomerMatchUserListMetadata
+ (*StoreSalesMetadata)(nil), // 11: google.ads.googleads.v17.common.StoreSalesMetadata
+ (*StoreSalesThirdPartyMetadata)(nil), // 12: google.ads.googleads.v17.common.StoreSalesThirdPartyMetadata
+ (enums.UserIdentifierSourceEnum_UserIdentifierSource)(0), // 13: google.ads.googleads.v17.enums.UserIdentifierSourceEnum.UserIdentifierSource
+ (*Consent)(nil), // 14: google.ads.googleads.v17.common.Consent
+}
+var file_google_ads_googleads_v17_common_offline_user_data_proto_depIdxs = []int32{
+ 13, // 0: google.ads.googleads.v17.common.UserIdentifier.user_identifier_source:type_name -> google.ads.googleads.v17.enums.UserIdentifierSourceEnum.UserIdentifierSource
+ 0, // 1: google.ads.googleads.v17.common.UserIdentifier.address_info:type_name -> google.ads.googleads.v17.common.OfflineUserAddressInfo
+ 3, // 2: google.ads.googleads.v17.common.TransactionAttribute.store_attribute:type_name -> google.ads.googleads.v17.common.StoreAttribute
+ 4, // 3: google.ads.googleads.v17.common.TransactionAttribute.item_attribute:type_name -> google.ads.googleads.v17.common.ItemAttribute
+ 1, // 4: google.ads.googleads.v17.common.UserData.user_identifiers:type_name -> google.ads.googleads.v17.common.UserIdentifier
+ 2, // 5: google.ads.googleads.v17.common.UserData.transaction_attribute:type_name -> google.ads.googleads.v17.common.TransactionAttribute
+ 6, // 6: google.ads.googleads.v17.common.UserData.user_attribute:type_name -> google.ads.googleads.v17.common.UserAttribute
+ 14, // 7: google.ads.googleads.v17.common.UserData.consent:type_name -> google.ads.googleads.v17.common.Consent
+ 9, // 8: google.ads.googleads.v17.common.UserAttribute.shopping_loyalty:type_name -> google.ads.googleads.v17.common.ShoppingLoyalty
+ 7, // 9: google.ads.googleads.v17.common.UserAttribute.event_attribute:type_name -> google.ads.googleads.v17.common.EventAttribute
+ 8, // 10: google.ads.googleads.v17.common.EventAttribute.item_attribute:type_name -> google.ads.googleads.v17.common.EventItemAttribute
+ 14, // 11: google.ads.googleads.v17.common.CustomerMatchUserListMetadata.consent:type_name -> google.ads.googleads.v17.common.Consent
+ 12, // 12: google.ads.googleads.v17.common.StoreSalesMetadata.third_party_metadata:type_name -> google.ads.googleads.v17.common.StoreSalesThirdPartyMetadata
13, // [13:13] is the sub-list for method output_type
13, // [13:13] is the sub-list for method input_type
13, // [13:13] is the sub-list for extension type_name
@@ -1569,14 +1569,14 @@ var file_google_ads_googleads_v16_common_offline_user_data_proto_depIdxs = []int
0, // [0:13] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_offline_user_data_proto_init() }
-func file_google_ads_googleads_v16_common_offline_user_data_proto_init() {
- if File_google_ads_googleads_v16_common_offline_user_data_proto != nil {
+func init() { file_google_ads_googleads_v17_common_offline_user_data_proto_init() }
+func file_google_ads_googleads_v17_common_offline_user_data_proto_init() {
+ if File_google_ads_googleads_v17_common_offline_user_data_proto != nil {
return
}
- file_google_ads_googleads_v16_common_consent_proto_init()
+ file_google_ads_googleads_v17_common_consent_proto_init()
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*OfflineUserAddressInfo); i {
case 0:
return &v.state
@@ -1588,7 +1588,7 @@ func file_google_ads_googleads_v16_common_offline_user_data_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserIdentifier); i {
case 0:
return &v.state
@@ -1600,7 +1600,7 @@ func file_google_ads_googleads_v16_common_offline_user_data_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TransactionAttribute); i {
case 0:
return &v.state
@@ -1612,7 +1612,7 @@ func file_google_ads_googleads_v16_common_offline_user_data_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*StoreAttribute); i {
case 0:
return &v.state
@@ -1624,7 +1624,7 @@ func file_google_ads_googleads_v16_common_offline_user_data_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ItemAttribute); i {
case 0:
return &v.state
@@ -1636,7 +1636,7 @@ func file_google_ads_googleads_v16_common_offline_user_data_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserData); i {
case 0:
return &v.state
@@ -1648,7 +1648,7 @@ func file_google_ads_googleads_v16_common_offline_user_data_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserAttribute); i {
case 0:
return &v.state
@@ -1660,7 +1660,7 @@ func file_google_ads_googleads_v16_common_offline_user_data_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*EventAttribute); i {
case 0:
return &v.state
@@ -1672,7 +1672,7 @@ func file_google_ads_googleads_v16_common_offline_user_data_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*EventItemAttribute); i {
case 0:
return &v.state
@@ -1684,7 +1684,7 @@ func file_google_ads_googleads_v16_common_offline_user_data_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ShoppingLoyalty); i {
case 0:
return &v.state
@@ -1696,7 +1696,7 @@ func file_google_ads_googleads_v16_common_offline_user_data_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomerMatchUserListMetadata); i {
case 0:
return &v.state
@@ -1708,7 +1708,7 @@ func file_google_ads_googleads_v16_common_offline_user_data_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*StoreSalesMetadata); i {
case 0:
return &v.state
@@ -1720,7 +1720,7 @@ func file_google_ads_googleads_v16_common_offline_user_data_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*StoreSalesThirdPartyMetadata); i {
case 0:
return &v.state
@@ -1733,39 +1733,39 @@ func file_google_ads_googleads_v16_common_offline_user_data_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[0].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[1].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[1].OneofWrappers = []interface{}{
(*UserIdentifier_HashedEmail)(nil),
(*UserIdentifier_HashedPhoneNumber)(nil),
(*UserIdentifier_MobileId)(nil),
(*UserIdentifier_ThirdPartyUserId)(nil),
(*UserIdentifier_AddressInfo)(nil),
}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[2].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[3].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[4].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[5].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[6].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[9].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[10].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[11].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes[12].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[2].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[3].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[4].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[5].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[6].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[9].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[10].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[11].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes[12].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_offline_user_data_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_offline_user_data_proto_rawDesc,
NumEnums: 0,
NumMessages: 13,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_offline_user_data_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_offline_user_data_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_offline_user_data_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_offline_user_data_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_offline_user_data_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_offline_user_data_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_offline_user_data_proto = out.File
- file_google_ads_googleads_v16_common_offline_user_data_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_offline_user_data_proto_goTypes = nil
- file_google_ads_googleads_v16_common_offline_user_data_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_offline_user_data_proto = out.File
+ file_google_ads_googleads_v17_common_offline_user_data_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_offline_user_data_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_offline_user_data_proto_depIdxs = nil
}
diff --git a/common/policy.pb.go b/common/policy.pb.go
index bb9f22d9..cc2e5cd2 100644
--- a/common/policy.pb.go
+++ b/common/policy.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/policy.proto
+// source: google/ads/googleads/v17/common/policy.proto
package common
@@ -55,7 +55,7 @@ type PolicyViolationKey struct {
func (x *PolicyViolationKey) Reset() {
*x = PolicyViolationKey{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -68,7 +68,7 @@ func (x *PolicyViolationKey) String() string {
func (*PolicyViolationKey) ProtoMessage() {}
func (x *PolicyViolationKey) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -81,7 +81,7 @@ func (x *PolicyViolationKey) ProtoReflect() protoreflect.Message {
// Deprecated: Use PolicyViolationKey.ProtoReflect.Descriptor instead.
func (*PolicyViolationKey) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_policy_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_policy_proto_rawDescGZIP(), []int{0}
}
func (x *PolicyViolationKey) GetPolicyName() string {
@@ -128,7 +128,7 @@ type PolicyValidationParameter struct {
func (x *PolicyValidationParameter) Reset() {
*x = PolicyValidationParameter{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -141,7 +141,7 @@ func (x *PolicyValidationParameter) String() string {
func (*PolicyValidationParameter) ProtoMessage() {}
func (x *PolicyValidationParameter) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -154,7 +154,7 @@ func (x *PolicyValidationParameter) ProtoReflect() protoreflect.Message {
// Deprecated: Use PolicyValidationParameter.ProtoReflect.Descriptor instead.
func (*PolicyValidationParameter) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_policy_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_policy_proto_rawDescGZIP(), []int{1}
}
func (x *PolicyValidationParameter) GetIgnorablePolicyTopics() []string {
@@ -190,7 +190,7 @@ type PolicyTopicEntry struct {
// at any time.
Topic *string `protobuf:"bytes,5,opt,name=topic,proto3,oneof" json:"topic,omitempty"`
// Describes the negative or positive effect this policy will have on serving.
- Type enums.PolicyTopicEntryTypeEnum_PolicyTopicEntryType `protobuf:"varint,2,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.PolicyTopicEntryTypeEnum_PolicyTopicEntryType" json:"type,omitempty"`
+ Type enums.PolicyTopicEntryTypeEnum_PolicyTopicEntryType `protobuf:"varint,2,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.PolicyTopicEntryTypeEnum_PolicyTopicEntryType" json:"type,omitempty"`
// Additional information that explains policy finding
// (for example, the brand name for a trademark finding).
Evidences []*PolicyTopicEvidence `protobuf:"bytes,3,rep,name=evidences,proto3" json:"evidences,omitempty"`
@@ -202,7 +202,7 @@ type PolicyTopicEntry struct {
func (x *PolicyTopicEntry) Reset() {
*x = PolicyTopicEntry{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -215,7 +215,7 @@ func (x *PolicyTopicEntry) String() string {
func (*PolicyTopicEntry) ProtoMessage() {}
func (x *PolicyTopicEntry) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -228,7 +228,7 @@ func (x *PolicyTopicEntry) ProtoReflect() protoreflect.Message {
// Deprecated: Use PolicyTopicEntry.ProtoReflect.Descriptor instead.
func (*PolicyTopicEntry) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_policy_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_common_policy_proto_rawDescGZIP(), []int{2}
}
func (x *PolicyTopicEntry) GetTopic() string {
@@ -281,7 +281,7 @@ type PolicyTopicEvidence struct {
func (x *PolicyTopicEvidence) Reset() {
*x = PolicyTopicEvidence{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -294,7 +294,7 @@ func (x *PolicyTopicEvidence) String() string {
func (*PolicyTopicEvidence) ProtoMessage() {}
func (x *PolicyTopicEvidence) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -307,7 +307,7 @@ func (x *PolicyTopicEvidence) ProtoReflect() protoreflect.Message {
// Deprecated: Use PolicyTopicEvidence.ProtoReflect.Descriptor instead.
func (*PolicyTopicEvidence) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_policy_proto_rawDescGZIP(), []int{3}
+ return file_google_ads_googleads_v17_common_policy_proto_rawDescGZIP(), []int{3}
}
func (m *PolicyTopicEvidence) GetValue() isPolicyTopicEvidence_Value {
@@ -428,7 +428,7 @@ type PolicyTopicConstraint struct {
func (x *PolicyTopicConstraint) Reset() {
*x = PolicyTopicConstraint{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -441,7 +441,7 @@ func (x *PolicyTopicConstraint) String() string {
func (*PolicyTopicConstraint) ProtoMessage() {}
func (x *PolicyTopicConstraint) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -454,7 +454,7 @@ func (x *PolicyTopicConstraint) ProtoReflect() protoreflect.Message {
// Deprecated: Use PolicyTopicConstraint.ProtoReflect.Descriptor instead.
func (*PolicyTopicConstraint) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_policy_proto_rawDescGZIP(), []int{4}
+ return file_google_ads_googleads_v17_common_policy_proto_rawDescGZIP(), []int{4}
}
func (m *PolicyTopicConstraint) GetValue() isPolicyTopicConstraint_Value {
@@ -539,7 +539,7 @@ type PolicyTopicEvidence_TextList struct {
func (x *PolicyTopicEvidence_TextList) Reset() {
*x = PolicyTopicEvidence_TextList{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -552,7 +552,7 @@ func (x *PolicyTopicEvidence_TextList) String() string {
func (*PolicyTopicEvidence_TextList) ProtoMessage() {}
func (x *PolicyTopicEvidence_TextList) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -565,7 +565,7 @@ func (x *PolicyTopicEvidence_TextList) ProtoReflect() protoreflect.Message {
// Deprecated: Use PolicyTopicEvidence_TextList.ProtoReflect.Descriptor instead.
func (*PolicyTopicEvidence_TextList) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_policy_proto_rawDescGZIP(), []int{3, 0}
+ return file_google_ads_googleads_v17_common_policy_proto_rawDescGZIP(), []int{3, 0}
}
func (x *PolicyTopicEvidence_TextList) GetTexts() []string {
@@ -591,7 +591,7 @@ type PolicyTopicEvidence_WebsiteList struct {
func (x *PolicyTopicEvidence_WebsiteList) Reset() {
*x = PolicyTopicEvidence_WebsiteList{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -604,7 +604,7 @@ func (x *PolicyTopicEvidence_WebsiteList) String() string {
func (*PolicyTopicEvidence_WebsiteList) ProtoMessage() {}
func (x *PolicyTopicEvidence_WebsiteList) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -617,7 +617,7 @@ func (x *PolicyTopicEvidence_WebsiteList) ProtoReflect() protoreflect.Message {
// Deprecated: Use PolicyTopicEvidence_WebsiteList.ProtoReflect.Descriptor instead.
func (*PolicyTopicEvidence_WebsiteList) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_policy_proto_rawDescGZIP(), []int{3, 1}
+ return file_google_ads_googleads_v17_common_policy_proto_rawDescGZIP(), []int{3, 1}
}
func (x *PolicyTopicEvidence_WebsiteList) GetWebsites() []string {
@@ -641,7 +641,7 @@ type PolicyTopicEvidence_DestinationTextList struct {
func (x *PolicyTopicEvidence_DestinationTextList) Reset() {
*x = PolicyTopicEvidence_DestinationTextList{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -654,7 +654,7 @@ func (x *PolicyTopicEvidence_DestinationTextList) String() string {
func (*PolicyTopicEvidence_DestinationTextList) ProtoMessage() {}
func (x *PolicyTopicEvidence_DestinationTextList) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -667,7 +667,7 @@ func (x *PolicyTopicEvidence_DestinationTextList) ProtoReflect() protoreflect.Me
// Deprecated: Use PolicyTopicEvidence_DestinationTextList.ProtoReflect.Descriptor instead.
func (*PolicyTopicEvidence_DestinationTextList) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_policy_proto_rawDescGZIP(), []int{3, 2}
+ return file_google_ads_googleads_v17_common_policy_proto_rawDescGZIP(), []int{3, 2}
}
func (x *PolicyTopicEvidence_DestinationTextList) GetDestinationTexts() []string {
@@ -684,13 +684,13 @@ type PolicyTopicEvidence_DestinationMismatch struct {
unknownFields protoimpl.UnknownFields
// The set of URLs that did not match each other.
- UrlTypes []enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType `protobuf:"varint,1,rep,packed,name=url_types,json=urlTypes,proto3,enum=google.ads.googleads.v16.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType" json:"url_types,omitempty"`
+ UrlTypes []enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType `protobuf:"varint,1,rep,packed,name=url_types,json=urlTypes,proto3,enum=google.ads.googleads.v17.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType" json:"url_types,omitempty"`
}
func (x *PolicyTopicEvidence_DestinationMismatch) Reset() {
*x = PolicyTopicEvidence_DestinationMismatch{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -703,7 +703,7 @@ func (x *PolicyTopicEvidence_DestinationMismatch) String() string {
func (*PolicyTopicEvidence_DestinationMismatch) ProtoMessage() {}
func (x *PolicyTopicEvidence_DestinationMismatch) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -716,7 +716,7 @@ func (x *PolicyTopicEvidence_DestinationMismatch) ProtoReflect() protoreflect.Me
// Deprecated: Use PolicyTopicEvidence_DestinationMismatch.ProtoReflect.Descriptor instead.
func (*PolicyTopicEvidence_DestinationMismatch) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_policy_proto_rawDescGZIP(), []int{3, 3}
+ return file_google_ads_googleads_v17_common_policy_proto_rawDescGZIP(), []int{3, 3}
}
func (x *PolicyTopicEvidence_DestinationMismatch) GetUrlTypes() []enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType {
@@ -736,7 +736,7 @@ type PolicyTopicEvidence_DestinationNotWorking struct {
// The full URL that didn't work.
ExpandedUrl *string `protobuf:"bytes,7,opt,name=expanded_url,json=expandedUrl,proto3,oneof" json:"expanded_url,omitempty"`
// The type of device that failed to load the URL.
- Device enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice `protobuf:"varint,4,opt,name=device,proto3,enum=google.ads.googleads.v16.enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice" json:"device,omitempty"`
+ Device enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice `protobuf:"varint,4,opt,name=device,proto3,enum=google.ads.googleads.v17.enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice" json:"device,omitempty"`
// The time the URL was last checked.
// The format is "YYYY-MM-DD HH:MM:SS".
// Examples: "2018-03-05 09:15:00" or "2018-02-01 14:34:30"
@@ -753,7 +753,7 @@ type PolicyTopicEvidence_DestinationNotWorking struct {
func (x *PolicyTopicEvidence_DestinationNotWorking) Reset() {
*x = PolicyTopicEvidence_DestinationNotWorking{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -766,7 +766,7 @@ func (x *PolicyTopicEvidence_DestinationNotWorking) String() string {
func (*PolicyTopicEvidence_DestinationNotWorking) ProtoMessage() {}
func (x *PolicyTopicEvidence_DestinationNotWorking) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -779,7 +779,7 @@ func (x *PolicyTopicEvidence_DestinationNotWorking) ProtoReflect() protoreflect.
// Deprecated: Use PolicyTopicEvidence_DestinationNotWorking.ProtoReflect.Descriptor instead.
func (*PolicyTopicEvidence_DestinationNotWorking) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_policy_proto_rawDescGZIP(), []int{3, 4}
+ return file_google_ads_googleads_v17_common_policy_proto_rawDescGZIP(), []int{3, 4}
}
func (x *PolicyTopicEvidence_DestinationNotWorking) GetExpandedUrl() string {
@@ -830,7 +830,7 @@ type isPolicyTopicEvidence_DestinationNotWorking_Reason interface {
type PolicyTopicEvidence_DestinationNotWorking_DnsErrorType struct {
// The type of DNS error.
- DnsErrorType enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType `protobuf:"varint,1,opt,name=dns_error_type,json=dnsErrorType,proto3,enum=google.ads.googleads.v16.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType,oneof"`
+ DnsErrorType enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType `protobuf:"varint,1,opt,name=dns_error_type,json=dnsErrorType,proto3,enum=google.ads.googleads.v17.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType,oneof"`
}
type PolicyTopicEvidence_DestinationNotWorking_HttpErrorCode struct {
@@ -859,7 +859,7 @@ type PolicyTopicConstraint_CountryConstraintList struct {
func (x *PolicyTopicConstraint_CountryConstraintList) Reset() {
*x = PolicyTopicConstraint_CountryConstraintList{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -872,7 +872,7 @@ func (x *PolicyTopicConstraint_CountryConstraintList) String() string {
func (*PolicyTopicConstraint_CountryConstraintList) ProtoMessage() {}
func (x *PolicyTopicConstraint_CountryConstraintList) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -885,7 +885,7 @@ func (x *PolicyTopicConstraint_CountryConstraintList) ProtoReflect() protoreflec
// Deprecated: Use PolicyTopicConstraint_CountryConstraintList.ProtoReflect.Descriptor instead.
func (*PolicyTopicConstraint_CountryConstraintList) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_policy_proto_rawDescGZIP(), []int{4, 0}
+ return file_google_ads_googleads_v17_common_policy_proto_rawDescGZIP(), []int{4, 0}
}
func (x *PolicyTopicConstraint_CountryConstraintList) GetTotalTargetedCountries() int32 {
@@ -913,7 +913,7 @@ type PolicyTopicConstraint_ResellerConstraint struct {
func (x *PolicyTopicConstraint_ResellerConstraint) Reset() {
*x = PolicyTopicConstraint_ResellerConstraint{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -926,7 +926,7 @@ func (x *PolicyTopicConstraint_ResellerConstraint) String() string {
func (*PolicyTopicConstraint_ResellerConstraint) ProtoMessage() {}
func (x *PolicyTopicConstraint_ResellerConstraint) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -939,7 +939,7 @@ func (x *PolicyTopicConstraint_ResellerConstraint) ProtoReflect() protoreflect.M
// Deprecated: Use PolicyTopicConstraint_ResellerConstraint.ProtoReflect.Descriptor instead.
func (*PolicyTopicConstraint_ResellerConstraint) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_policy_proto_rawDescGZIP(), []int{4, 1}
+ return file_google_ads_googleads_v17_common_policy_proto_rawDescGZIP(), []int{4, 1}
}
// Indicates that a resource's ability to serve in a particular country is
@@ -957,7 +957,7 @@ type PolicyTopicConstraint_CountryConstraint struct {
func (x *PolicyTopicConstraint_CountryConstraint) Reset() {
*x = PolicyTopicConstraint_CountryConstraint{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[12]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -970,7 +970,7 @@ func (x *PolicyTopicConstraint_CountryConstraint) String() string {
func (*PolicyTopicConstraint_CountryConstraint) ProtoMessage() {}
func (x *PolicyTopicConstraint_CountryConstraint) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_policy_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_policy_proto_msgTypes[12]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -983,7 +983,7 @@ func (x *PolicyTopicConstraint_CountryConstraint) ProtoReflect() protoreflect.Me
// Deprecated: Use PolicyTopicConstraint_CountryConstraint.ProtoReflect.Descriptor instead.
func (*PolicyTopicConstraint_CountryConstraint) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_policy_proto_rawDescGZIP(), []int{4, 2}
+ return file_google_ads_googleads_v17_common_policy_proto_rawDescGZIP(), []int{4, 2}
}
func (x *PolicyTopicConstraint_CountryConstraint) GetCountryCriterion() string {
@@ -993,31 +993,31 @@ func (x *PolicyTopicConstraint_CountryConstraint) GetCountryCriterion() string {
return ""
}
-var File_google_ads_googleads_v16_common_policy_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_policy_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_policy_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_policy_proto_rawDesc = []byte{
0x0a, 0x2c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a,
0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f,
0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f, 0x65, 0x6e, 0x74,
0x72, 0x79, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x58, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6f,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6f,
0x6c, 0x69, 0x63, 0x79, 0x5f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f, 0x65, 0x76, 0x69, 0x64, 0x65,
0x6e, 0x63, 0x65, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
0x6d, 0x69, 0x73, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x74, 0x79, 0x70,
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x59, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x74,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x74,
0x6f, 0x70, 0x69, 0x63, 0x5f, 0x65, 0x76, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x64, 0x65,
0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x6f, 0x74, 0x5f, 0x77, 0x6f,
0x72, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x61, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f,
0x65, 0x76, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x6f, 0x74, 0x5f, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67,
@@ -1040,7 +1040,7 @@ var file_google_ads_googleads_v16_common_policy_proto_rawDesc = []byte{
0x74, 0x5f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x76, 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4b,
0x65, 0x79, 0x52, 0x19, 0x65, 0x78, 0x65, 0x6d, 0x70, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79,
0x56, 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4b, 0x65, 0x79, 0x73, 0x22, 0xc8, 0x02,
@@ -1049,19 +1049,19 @@ var file_google_ads_googleads_v16_common_policy_proto_rawDesc = []byte{
0x09, 0x48, 0x00, 0x52, 0x05, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x88, 0x01, 0x01, 0x12, 0x61, 0x0a,
0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x6f, 0x6c,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x6f, 0x6c,
0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x54, 0x79, 0x70,
0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69,
0x63, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65,
0x12, 0x52, 0x0a, 0x09, 0x65, 0x76, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x18, 0x03, 0x20,
0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69,
0x63, 0x45, 0x76, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x09, 0x65, 0x76, 0x69, 0x64, 0x65,
0x6e, 0x63, 0x65, 0x73, 0x12, 0x58, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69,
0x6e, 0x74, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69,
0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e,
0x74, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x73, 0x42, 0x08,
0x0a, 0x06, 0x5f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x22, 0x8a, 0x0c, 0x0a, 0x13, 0x50, 0x6f, 0x6c,
@@ -1069,13 +1069,13 @@ var file_google_ads_googleads_v16_common_policy_proto_rawDesc = []byte{
0x12, 0x65, 0x0a, 0x0c, 0x77, 0x65, 0x62, 0x73, 0x69, 0x74, 0x65, 0x5f, 0x6c, 0x69, 0x73, 0x74,
0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54,
0x6f, 0x70, 0x69, 0x63, 0x45, 0x76, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x2e, 0x57, 0x65, 0x62,
0x73, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x48, 0x00, 0x52, 0x0b, 0x77, 0x65, 0x62, 0x73,
0x69, 0x74, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x5c, 0x0a, 0x09, 0x74, 0x65, 0x78, 0x74, 0x5f,
0x6c, 0x69, 0x73, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c,
0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x45, 0x76, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65,
0x2e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x48, 0x00, 0x52, 0x08, 0x74, 0x65, 0x78,
0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x25, 0x0a, 0x0d, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67,
@@ -1084,7 +1084,7 @@ var file_google_ads_googleads_v16_common_policy_proto_rawDesc = []byte{
0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x65, 0x78, 0x74,
0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x48, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f,
0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x45, 0x76, 0x69, 0x64, 0x65, 0x6e, 0x63,
0x65, 0x2e, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x65, 0x78,
0x74, 0x4c, 0x69, 0x73, 0x74, 0x48, 0x00, 0x52, 0x13, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61,
@@ -1092,7 +1092,7 @@ var file_google_ads_googleads_v16_common_policy_proto_rawDesc = []byte{
0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x69, 0x73, 0x6d,
0x61, 0x74, 0x63, 0x68, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x48, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c,
0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x45, 0x76, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65,
0x2e, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x69, 0x73, 0x6d,
0x61, 0x74, 0x63, 0x68, 0x48, 0x00, 0x52, 0x13, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74,
@@ -1100,7 +1100,7 @@ var file_google_ads_googleads_v16_common_policy_proto_rawDesc = []byte{
0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x6f, 0x74, 0x5f,
0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x4a, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x45, 0x76, 0x69, 0x64, 0x65,
0x6e, 0x63, 0x65, 0x2e, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4e,
0x6f, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x48, 0x00, 0x52, 0x15, 0x64, 0x65, 0x73,
@@ -1118,7 +1118,7 @@ var file_google_ads_googleads_v16_common_policy_proto_rawDesc = []byte{
0x69, 0x6f, 0x6e, 0x4d, 0x69, 0x73, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x12, 0x9c, 0x01, 0x0a, 0x09,
0x75, 0x72, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0e, 0x32,
0x7f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x45, 0x76, 0x69, 0x64,
0x65, 0x6e, 0x63, 0x65, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d,
0x69, 0x73, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x55, 0x72, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e,
@@ -1132,7 +1132,7 @@ var file_google_ads_googleads_v16_common_policy_proto_rawDesc = []byte{
0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x55, 0x72, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x9a, 0x01, 0x0a,
0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x81, 0x01,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e,
0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x45, 0x76, 0x69, 0x64, 0x65,
0x6e, 0x63, 0x65, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x6f,
0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x45, 0x6e,
@@ -1146,7 +1146,7 @@ var file_google_ads_googleads_v16_common_policy_proto_rawDesc = []byte{
0x88, 0x01, 0x01, 0x12, 0xb6, 0x01, 0x0a, 0x0e, 0x64, 0x6e, 0x73, 0x5f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x8d, 0x01, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50,
0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x45, 0x76, 0x69, 0x64, 0x65, 0x6e,
0x63, 0x65, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x6f, 0x74,
0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x44, 0x6e, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x54,
@@ -1166,7 +1166,7 @@ var file_google_ads_googleads_v16_common_policy_proto_rawDesc = []byte{
0x86, 0x01, 0x0a, 0x17, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x73,
0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x4c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x43,
0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72,
0x79, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x48,
@@ -1174,7 +1174,7 @@ var file_google_ads_googleads_v16_common_policy_proto_rawDesc = []byte{
0x61, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x7c, 0x0a, 0x13, 0x72, 0x65, 0x73, 0x65,
0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x18,
0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x49, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f,
0x70, 0x69, 0x63, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x2e, 0x52, 0x65,
0x73, 0x65, 0x6c, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74,
@@ -1183,7 +1183,7 @@ var file_google_ads_googleads_v16_common_policy_proto_rawDesc = []byte{
0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x69,
0x6e, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x03,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x4c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70,
0x69, 0x63, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x2e, 0x43, 0x6f, 0x75,
0x6e, 0x74, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x4c, 0x69,
@@ -1194,7 +1194,7 @@ var file_google_ads_googleads_v16_common_policy_proto_rawDesc = []byte{
0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x69, 0x6e, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79,
0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x4c, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f,
0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61,
0x69, 0x6e, 0x74, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x73, 0x74,
0x72, 0x61, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x48, 0x00, 0x52, 0x26, 0x63, 0x65, 0x72,
@@ -1208,7 +1208,7 @@ var file_google_ads_googleads_v16_common_policy_proto_rawDesc = []byte{
0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x88, 0x01, 0x01, 0x12, 0x66, 0x0a, 0x09,
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x48, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x43, 0x6f, 0x6e,
0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x43,
0x6f, 0x6e, 0x73, 0x74, 0x72, 0x61, 0x69, 0x6e, 0x74, 0x52, 0x09, 0x63, 0x6f, 0x75, 0x6e, 0x74,
@@ -1223,73 +1223,73 @@ var file_google_ads_googleads_v16_common_policy_proto_rawDesc = []byte{
0x0a, 0x12, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65,
0x72, 0x69, 0x6f, 0x6e, 0x42, 0x07, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0xeb, 0x01,
0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0b, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_policy_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_policy_proto_rawDescData = file_google_ads_googleads_v16_common_policy_proto_rawDesc
+ file_google_ads_googleads_v17_common_policy_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_policy_proto_rawDescData = file_google_ads_googleads_v17_common_policy_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_policy_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_policy_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_policy_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_policy_proto_rawDescData)
+func file_google_ads_googleads_v17_common_policy_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_policy_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_policy_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_policy_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_policy_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_common_policy_proto_msgTypes = make([]protoimpl.MessageInfo, 13)
-var file_google_ads_googleads_v16_common_policy_proto_goTypes = []interface{}{
- (*PolicyViolationKey)(nil), // 0: google.ads.googleads.v16.common.PolicyViolationKey
- (*PolicyValidationParameter)(nil), // 1: google.ads.googleads.v16.common.PolicyValidationParameter
- (*PolicyTopicEntry)(nil), // 2: google.ads.googleads.v16.common.PolicyTopicEntry
- (*PolicyTopicEvidence)(nil), // 3: google.ads.googleads.v16.common.PolicyTopicEvidence
- (*PolicyTopicConstraint)(nil), // 4: google.ads.googleads.v16.common.PolicyTopicConstraint
- (*PolicyTopicEvidence_TextList)(nil), // 5: google.ads.googleads.v16.common.PolicyTopicEvidence.TextList
- (*PolicyTopicEvidence_WebsiteList)(nil), // 6: google.ads.googleads.v16.common.PolicyTopicEvidence.WebsiteList
- (*PolicyTopicEvidence_DestinationTextList)(nil), // 7: google.ads.googleads.v16.common.PolicyTopicEvidence.DestinationTextList
- (*PolicyTopicEvidence_DestinationMismatch)(nil), // 8: google.ads.googleads.v16.common.PolicyTopicEvidence.DestinationMismatch
- (*PolicyTopicEvidence_DestinationNotWorking)(nil), // 9: google.ads.googleads.v16.common.PolicyTopicEvidence.DestinationNotWorking
- (*PolicyTopicConstraint_CountryConstraintList)(nil), // 10: google.ads.googleads.v16.common.PolicyTopicConstraint.CountryConstraintList
- (*PolicyTopicConstraint_ResellerConstraint)(nil), // 11: google.ads.googleads.v16.common.PolicyTopicConstraint.ResellerConstraint
- (*PolicyTopicConstraint_CountryConstraint)(nil), // 12: google.ads.googleads.v16.common.PolicyTopicConstraint.CountryConstraint
- (enums.PolicyTopicEntryTypeEnum_PolicyTopicEntryType)(0), // 13: google.ads.googleads.v16.enums.PolicyTopicEntryTypeEnum.PolicyTopicEntryType
- (enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType)(0), // 14: google.ads.googleads.v16.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum.PolicyTopicEvidenceDestinationMismatchUrlType
- (enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice)(0), // 15: google.ads.googleads.v16.enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum.PolicyTopicEvidenceDestinationNotWorkingDevice
- (enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType)(0), // 16: google.ads.googleads.v16.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum.PolicyTopicEvidenceDestinationNotWorkingDnsErrorType
-}
-var file_google_ads_googleads_v16_common_policy_proto_depIdxs = []int32{
- 0, // 0: google.ads.googleads.v16.common.PolicyValidationParameter.exempt_policy_violation_keys:type_name -> google.ads.googleads.v16.common.PolicyViolationKey
- 13, // 1: google.ads.googleads.v16.common.PolicyTopicEntry.type:type_name -> google.ads.googleads.v16.enums.PolicyTopicEntryTypeEnum.PolicyTopicEntryType
- 3, // 2: google.ads.googleads.v16.common.PolicyTopicEntry.evidences:type_name -> google.ads.googleads.v16.common.PolicyTopicEvidence
- 4, // 3: google.ads.googleads.v16.common.PolicyTopicEntry.constraints:type_name -> google.ads.googleads.v16.common.PolicyTopicConstraint
- 6, // 4: google.ads.googleads.v16.common.PolicyTopicEvidence.website_list:type_name -> google.ads.googleads.v16.common.PolicyTopicEvidence.WebsiteList
- 5, // 5: google.ads.googleads.v16.common.PolicyTopicEvidence.text_list:type_name -> google.ads.googleads.v16.common.PolicyTopicEvidence.TextList
- 7, // 6: google.ads.googleads.v16.common.PolicyTopicEvidence.destination_text_list:type_name -> google.ads.googleads.v16.common.PolicyTopicEvidence.DestinationTextList
- 8, // 7: google.ads.googleads.v16.common.PolicyTopicEvidence.destination_mismatch:type_name -> google.ads.googleads.v16.common.PolicyTopicEvidence.DestinationMismatch
- 9, // 8: google.ads.googleads.v16.common.PolicyTopicEvidence.destination_not_working:type_name -> google.ads.googleads.v16.common.PolicyTopicEvidence.DestinationNotWorking
- 10, // 9: google.ads.googleads.v16.common.PolicyTopicConstraint.country_constraint_list:type_name -> google.ads.googleads.v16.common.PolicyTopicConstraint.CountryConstraintList
- 11, // 10: google.ads.googleads.v16.common.PolicyTopicConstraint.reseller_constraint:type_name -> google.ads.googleads.v16.common.PolicyTopicConstraint.ResellerConstraint
- 10, // 11: google.ads.googleads.v16.common.PolicyTopicConstraint.certificate_missing_in_country_list:type_name -> google.ads.googleads.v16.common.PolicyTopicConstraint.CountryConstraintList
- 10, // 12: google.ads.googleads.v16.common.PolicyTopicConstraint.certificate_domain_mismatch_in_country_list:type_name -> google.ads.googleads.v16.common.PolicyTopicConstraint.CountryConstraintList
- 14, // 13: google.ads.googleads.v16.common.PolicyTopicEvidence.DestinationMismatch.url_types:type_name -> google.ads.googleads.v16.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum.PolicyTopicEvidenceDestinationMismatchUrlType
- 15, // 14: google.ads.googleads.v16.common.PolicyTopicEvidence.DestinationNotWorking.device:type_name -> google.ads.googleads.v16.enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum.PolicyTopicEvidenceDestinationNotWorkingDevice
- 16, // 15: google.ads.googleads.v16.common.PolicyTopicEvidence.DestinationNotWorking.dns_error_type:type_name -> google.ads.googleads.v16.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum.PolicyTopicEvidenceDestinationNotWorkingDnsErrorType
- 12, // 16: google.ads.googleads.v16.common.PolicyTopicConstraint.CountryConstraintList.countries:type_name -> google.ads.googleads.v16.common.PolicyTopicConstraint.CountryConstraint
+ return file_google_ads_googleads_v17_common_policy_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_common_policy_proto_msgTypes = make([]protoimpl.MessageInfo, 13)
+var file_google_ads_googleads_v17_common_policy_proto_goTypes = []interface{}{
+ (*PolicyViolationKey)(nil), // 0: google.ads.googleads.v17.common.PolicyViolationKey
+ (*PolicyValidationParameter)(nil), // 1: google.ads.googleads.v17.common.PolicyValidationParameter
+ (*PolicyTopicEntry)(nil), // 2: google.ads.googleads.v17.common.PolicyTopicEntry
+ (*PolicyTopicEvidence)(nil), // 3: google.ads.googleads.v17.common.PolicyTopicEvidence
+ (*PolicyTopicConstraint)(nil), // 4: google.ads.googleads.v17.common.PolicyTopicConstraint
+ (*PolicyTopicEvidence_TextList)(nil), // 5: google.ads.googleads.v17.common.PolicyTopicEvidence.TextList
+ (*PolicyTopicEvidence_WebsiteList)(nil), // 6: google.ads.googleads.v17.common.PolicyTopicEvidence.WebsiteList
+ (*PolicyTopicEvidence_DestinationTextList)(nil), // 7: google.ads.googleads.v17.common.PolicyTopicEvidence.DestinationTextList
+ (*PolicyTopicEvidence_DestinationMismatch)(nil), // 8: google.ads.googleads.v17.common.PolicyTopicEvidence.DestinationMismatch
+ (*PolicyTopicEvidence_DestinationNotWorking)(nil), // 9: google.ads.googleads.v17.common.PolicyTopicEvidence.DestinationNotWorking
+ (*PolicyTopicConstraint_CountryConstraintList)(nil), // 10: google.ads.googleads.v17.common.PolicyTopicConstraint.CountryConstraintList
+ (*PolicyTopicConstraint_ResellerConstraint)(nil), // 11: google.ads.googleads.v17.common.PolicyTopicConstraint.ResellerConstraint
+ (*PolicyTopicConstraint_CountryConstraint)(nil), // 12: google.ads.googleads.v17.common.PolicyTopicConstraint.CountryConstraint
+ (enums.PolicyTopicEntryTypeEnum_PolicyTopicEntryType)(0), // 13: google.ads.googleads.v17.enums.PolicyTopicEntryTypeEnum.PolicyTopicEntryType
+ (enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType)(0), // 14: google.ads.googleads.v17.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum.PolicyTopicEvidenceDestinationMismatchUrlType
+ (enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice)(0), // 15: google.ads.googleads.v17.enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum.PolicyTopicEvidenceDestinationNotWorkingDevice
+ (enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType)(0), // 16: google.ads.googleads.v17.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum.PolicyTopicEvidenceDestinationNotWorkingDnsErrorType
+}
+var file_google_ads_googleads_v17_common_policy_proto_depIdxs = []int32{
+ 0, // 0: google.ads.googleads.v17.common.PolicyValidationParameter.exempt_policy_violation_keys:type_name -> google.ads.googleads.v17.common.PolicyViolationKey
+ 13, // 1: google.ads.googleads.v17.common.PolicyTopicEntry.type:type_name -> google.ads.googleads.v17.enums.PolicyTopicEntryTypeEnum.PolicyTopicEntryType
+ 3, // 2: google.ads.googleads.v17.common.PolicyTopicEntry.evidences:type_name -> google.ads.googleads.v17.common.PolicyTopicEvidence
+ 4, // 3: google.ads.googleads.v17.common.PolicyTopicEntry.constraints:type_name -> google.ads.googleads.v17.common.PolicyTopicConstraint
+ 6, // 4: google.ads.googleads.v17.common.PolicyTopicEvidence.website_list:type_name -> google.ads.googleads.v17.common.PolicyTopicEvidence.WebsiteList
+ 5, // 5: google.ads.googleads.v17.common.PolicyTopicEvidence.text_list:type_name -> google.ads.googleads.v17.common.PolicyTopicEvidence.TextList
+ 7, // 6: google.ads.googleads.v17.common.PolicyTopicEvidence.destination_text_list:type_name -> google.ads.googleads.v17.common.PolicyTopicEvidence.DestinationTextList
+ 8, // 7: google.ads.googleads.v17.common.PolicyTopicEvidence.destination_mismatch:type_name -> google.ads.googleads.v17.common.PolicyTopicEvidence.DestinationMismatch
+ 9, // 8: google.ads.googleads.v17.common.PolicyTopicEvidence.destination_not_working:type_name -> google.ads.googleads.v17.common.PolicyTopicEvidence.DestinationNotWorking
+ 10, // 9: google.ads.googleads.v17.common.PolicyTopicConstraint.country_constraint_list:type_name -> google.ads.googleads.v17.common.PolicyTopicConstraint.CountryConstraintList
+ 11, // 10: google.ads.googleads.v17.common.PolicyTopicConstraint.reseller_constraint:type_name -> google.ads.googleads.v17.common.PolicyTopicConstraint.ResellerConstraint
+ 10, // 11: google.ads.googleads.v17.common.PolicyTopicConstraint.certificate_missing_in_country_list:type_name -> google.ads.googleads.v17.common.PolicyTopicConstraint.CountryConstraintList
+ 10, // 12: google.ads.googleads.v17.common.PolicyTopicConstraint.certificate_domain_mismatch_in_country_list:type_name -> google.ads.googleads.v17.common.PolicyTopicConstraint.CountryConstraintList
+ 14, // 13: google.ads.googleads.v17.common.PolicyTopicEvidence.DestinationMismatch.url_types:type_name -> google.ads.googleads.v17.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum.PolicyTopicEvidenceDestinationMismatchUrlType
+ 15, // 14: google.ads.googleads.v17.common.PolicyTopicEvidence.DestinationNotWorking.device:type_name -> google.ads.googleads.v17.enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum.PolicyTopicEvidenceDestinationNotWorkingDevice
+ 16, // 15: google.ads.googleads.v17.common.PolicyTopicEvidence.DestinationNotWorking.dns_error_type:type_name -> google.ads.googleads.v17.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum.PolicyTopicEvidenceDestinationNotWorkingDnsErrorType
+ 12, // 16: google.ads.googleads.v17.common.PolicyTopicConstraint.CountryConstraintList.countries:type_name -> google.ads.googleads.v17.common.PolicyTopicConstraint.CountryConstraint
17, // [17:17] is the sub-list for method output_type
17, // [17:17] is the sub-list for method input_type
17, // [17:17] is the sub-list for extension type_name
@@ -1297,13 +1297,13 @@ var file_google_ads_googleads_v16_common_policy_proto_depIdxs = []int32{
0, // [0:17] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_policy_proto_init() }
-func file_google_ads_googleads_v16_common_policy_proto_init() {
- if File_google_ads_googleads_v16_common_policy_proto != nil {
+func init() { file_google_ads_googleads_v17_common_policy_proto_init() }
+func file_google_ads_googleads_v17_common_policy_proto_init() {
+ if File_google_ads_googleads_v17_common_policy_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyViolationKey); i {
case 0:
return &v.state
@@ -1315,7 +1315,7 @@ func file_google_ads_googleads_v16_common_policy_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyValidationParameter); i {
case 0:
return &v.state
@@ -1327,7 +1327,7 @@ func file_google_ads_googleads_v16_common_policy_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyTopicEntry); i {
case 0:
return &v.state
@@ -1339,7 +1339,7 @@ func file_google_ads_googleads_v16_common_policy_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyTopicEvidence); i {
case 0:
return &v.state
@@ -1351,7 +1351,7 @@ func file_google_ads_googleads_v16_common_policy_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyTopicConstraint); i {
case 0:
return &v.state
@@ -1363,7 +1363,7 @@ func file_google_ads_googleads_v16_common_policy_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyTopicEvidence_TextList); i {
case 0:
return &v.state
@@ -1375,7 +1375,7 @@ func file_google_ads_googleads_v16_common_policy_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyTopicEvidence_WebsiteList); i {
case 0:
return &v.state
@@ -1387,7 +1387,7 @@ func file_google_ads_googleads_v16_common_policy_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyTopicEvidence_DestinationTextList); i {
case 0:
return &v.state
@@ -1399,7 +1399,7 @@ func file_google_ads_googleads_v16_common_policy_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyTopicEvidence_DestinationMismatch); i {
case 0:
return &v.state
@@ -1411,7 +1411,7 @@ func file_google_ads_googleads_v16_common_policy_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyTopicEvidence_DestinationNotWorking); i {
case 0:
return &v.state
@@ -1423,7 +1423,7 @@ func file_google_ads_googleads_v16_common_policy_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyTopicConstraint_CountryConstraintList); i {
case 0:
return &v.state
@@ -1435,7 +1435,7 @@ func file_google_ads_googleads_v16_common_policy_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyTopicConstraint_ResellerConstraint); i {
case 0:
return &v.state
@@ -1447,7 +1447,7 @@ func file_google_ads_googleads_v16_common_policy_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyTopicConstraint_CountryConstraint); i {
case 0:
return &v.state
@@ -1460,9 +1460,9 @@ func file_google_ads_googleads_v16_common_policy_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[0].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[2].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[3].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[2].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[3].OneofWrappers = []interface{}{
(*PolicyTopicEvidence_WebsiteList_)(nil),
(*PolicyTopicEvidence_TextList_)(nil),
(*PolicyTopicEvidence_LanguageCode)(nil),
@@ -1470,34 +1470,34 @@ func file_google_ads_googleads_v16_common_policy_proto_init() {
(*PolicyTopicEvidence_DestinationMismatch_)(nil),
(*PolicyTopicEvidence_DestinationNotWorking_)(nil),
}
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[4].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[4].OneofWrappers = []interface{}{
(*PolicyTopicConstraint_CountryConstraintList_)(nil),
(*PolicyTopicConstraint_ResellerConstraint_)(nil),
(*PolicyTopicConstraint_CertificateMissingInCountryList)(nil),
(*PolicyTopicConstraint_CertificateDomainMismatchInCountryList)(nil),
}
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[9].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[9].OneofWrappers = []interface{}{
(*PolicyTopicEvidence_DestinationNotWorking_DnsErrorType)(nil),
(*PolicyTopicEvidence_DestinationNotWorking_HttpErrorCode)(nil),
}
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[10].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_policy_proto_msgTypes[12].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[10].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_policy_proto_msgTypes[12].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_policy_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_policy_proto_rawDesc,
NumEnums: 0,
NumMessages: 13,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_policy_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_policy_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_policy_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_policy_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_policy_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_policy_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_policy_proto = out.File
- file_google_ads_googleads_v16_common_policy_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_policy_proto_goTypes = nil
- file_google_ads_googleads_v16_common_policy_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_policy_proto = out.File
+ file_google_ads_googleads_v17_common_policy_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_policy_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_policy_proto_depIdxs = nil
}
diff --git a/common/policy_summary.pb.go b/common/policy_summary.pb.go
index 95646fe3..d0fa627f 100644
--- a/common/policy_summary.pb.go
+++ b/common/policy_summary.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/policy_summary.proto
+// source: google/ads/googleads/v17/common/policy_summary.proto
package common
@@ -44,16 +44,16 @@ type PolicySummary struct {
// The list of policy findings.
PolicyTopicEntries []*PolicyTopicEntry `protobuf:"bytes,1,rep,name=policy_topic_entries,json=policyTopicEntries,proto3" json:"policy_topic_entries,omitempty"`
// Where in the review process the resource is.
- ReviewStatus enums.PolicyReviewStatusEnum_PolicyReviewStatus `protobuf:"varint,2,opt,name=review_status,json=reviewStatus,proto3,enum=google.ads.googleads.v16.enums.PolicyReviewStatusEnum_PolicyReviewStatus" json:"review_status,omitempty"`
+ ReviewStatus enums.PolicyReviewStatusEnum_PolicyReviewStatus `protobuf:"varint,2,opt,name=review_status,json=reviewStatus,proto3,enum=google.ads.googleads.v17.enums.PolicyReviewStatusEnum_PolicyReviewStatus" json:"review_status,omitempty"`
// The overall approval status, which is calculated based on
// the status of its individual policy topic entries.
- ApprovalStatus enums.PolicyApprovalStatusEnum_PolicyApprovalStatus `protobuf:"varint,3,opt,name=approval_status,json=approvalStatus,proto3,enum=google.ads.googleads.v16.enums.PolicyApprovalStatusEnum_PolicyApprovalStatus" json:"approval_status,omitempty"`
+ ApprovalStatus enums.PolicyApprovalStatusEnum_PolicyApprovalStatus `protobuf:"varint,3,opt,name=approval_status,json=approvalStatus,proto3,enum=google.ads.googleads.v17.enums.PolicyApprovalStatusEnum_PolicyApprovalStatus" json:"approval_status,omitempty"`
}
func (x *PolicySummary) Reset() {
*x = PolicySummary{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_policy_summary_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_policy_summary_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -66,7 +66,7 @@ func (x *PolicySummary) String() string {
func (*PolicySummary) ProtoMessage() {}
func (x *PolicySummary) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_policy_summary_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_policy_summary_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -79,7 +79,7 @@ func (x *PolicySummary) ProtoReflect() protoreflect.Message {
// Deprecated: Use PolicySummary.ProtoReflect.Descriptor instead.
func (*PolicySummary) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_policy_summary_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_policy_summary_proto_rawDescGZIP(), []int{0}
}
func (x *PolicySummary) GetPolicyTopicEntries() []*PolicyTopicEntry {
@@ -103,88 +103,88 @@ func (x *PolicySummary) GetApprovalStatus() enums.PolicyApprovalStatusEnum_Polic
return enums.PolicyApprovalStatusEnum_PolicyApprovalStatus(0)
}
-var File_google_ads_googleads_v16_common_policy_summary_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_policy_summary_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_policy_summary_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_policy_summary_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x2c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e,
+ 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x61, 0x70, 0x70,
0x72, 0x6f, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77,
0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xdc, 0x02,
0x0a, 0x0d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12,
0x63, 0x0a, 0x14, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f,
0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x45, 0x6e, 0x74, 0x72, 0x79,
0x52, 0x12, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x45, 0x6e, 0x74,
0x72, 0x69, 0x65, 0x73, 0x12, 0x6e, 0x0a, 0x0d, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x73,
0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x49, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x6f, 0x6c,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x6f, 0x6c,
0x69, 0x63, 0x79, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45,
0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0c, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x74,
0x61, 0x74, 0x75, 0x73, 0x12, 0x76, 0x0a, 0x0f, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c,
0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50,
0x6f, 0x6c, 0x69, 0x63, 0x79, 0x41, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x41, 0x70,
0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0e, 0x61, 0x70,
0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0xf2, 0x01, 0x0a,
0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x12, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x53, 0x75, 0x6d, 0x6d,
0x61, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_policy_summary_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_policy_summary_proto_rawDescData = file_google_ads_googleads_v16_common_policy_summary_proto_rawDesc
+ file_google_ads_googleads_v17_common_policy_summary_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_policy_summary_proto_rawDescData = file_google_ads_googleads_v17_common_policy_summary_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_policy_summary_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_policy_summary_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_policy_summary_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_policy_summary_proto_rawDescData)
+func file_google_ads_googleads_v17_common_policy_summary_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_policy_summary_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_policy_summary_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_policy_summary_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_policy_summary_proto_rawDescData
+ return file_google_ads_googleads_v17_common_policy_summary_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_policy_summary_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_common_policy_summary_proto_goTypes = []interface{}{
- (*PolicySummary)(nil), // 0: google.ads.googleads.v16.common.PolicySummary
- (*PolicyTopicEntry)(nil), // 1: google.ads.googleads.v16.common.PolicyTopicEntry
- (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 2: google.ads.googleads.v16.enums.PolicyReviewStatusEnum.PolicyReviewStatus
- (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 3: google.ads.googleads.v16.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus
+var file_google_ads_googleads_v17_common_policy_summary_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_common_policy_summary_proto_goTypes = []interface{}{
+ (*PolicySummary)(nil), // 0: google.ads.googleads.v17.common.PolicySummary
+ (*PolicyTopicEntry)(nil), // 1: google.ads.googleads.v17.common.PolicyTopicEntry
+ (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 2: google.ads.googleads.v17.enums.PolicyReviewStatusEnum.PolicyReviewStatus
+ (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 3: google.ads.googleads.v17.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus
}
-var file_google_ads_googleads_v16_common_policy_summary_proto_depIdxs = []int32{
- 1, // 0: google.ads.googleads.v16.common.PolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v16.common.PolicyTopicEntry
- 2, // 1: google.ads.googleads.v16.common.PolicySummary.review_status:type_name -> google.ads.googleads.v16.enums.PolicyReviewStatusEnum.PolicyReviewStatus
- 3, // 2: google.ads.googleads.v16.common.PolicySummary.approval_status:type_name -> google.ads.googleads.v16.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus
+var file_google_ads_googleads_v17_common_policy_summary_proto_depIdxs = []int32{
+ 1, // 0: google.ads.googleads.v17.common.PolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v17.common.PolicyTopicEntry
+ 2, // 1: google.ads.googleads.v17.common.PolicySummary.review_status:type_name -> google.ads.googleads.v17.enums.PolicyReviewStatusEnum.PolicyReviewStatus
+ 3, // 2: google.ads.googleads.v17.common.PolicySummary.approval_status:type_name -> google.ads.googleads.v17.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus
3, // [3:3] is the sub-list for method output_type
3, // [3:3] is the sub-list for method input_type
3, // [3:3] is the sub-list for extension type_name
@@ -192,14 +192,14 @@ var file_google_ads_googleads_v16_common_policy_summary_proto_depIdxs = []int32{
0, // [0:3] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_policy_summary_proto_init() }
-func file_google_ads_googleads_v16_common_policy_summary_proto_init() {
- if File_google_ads_googleads_v16_common_policy_summary_proto != nil {
+func init() { file_google_ads_googleads_v17_common_policy_summary_proto_init() }
+func file_google_ads_googleads_v17_common_policy_summary_proto_init() {
+ if File_google_ads_googleads_v17_common_policy_summary_proto != nil {
return
}
- file_google_ads_googleads_v16_common_policy_proto_init()
+ file_google_ads_googleads_v17_common_policy_proto_init()
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_policy_summary_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_policy_summary_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicySummary); i {
case 0:
return &v.state
@@ -216,18 +216,18 @@ func file_google_ads_googleads_v16_common_policy_summary_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_policy_summary_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_policy_summary_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_policy_summary_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_policy_summary_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_policy_summary_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_policy_summary_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_policy_summary_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_policy_summary_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_policy_summary_proto = out.File
- file_google_ads_googleads_v16_common_policy_summary_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_policy_summary_proto_goTypes = nil
- file_google_ads_googleads_v16_common_policy_summary_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_policy_summary_proto = out.File
+ file_google_ads_googleads_v17_common_policy_summary_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_policy_summary_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_policy_summary_proto_depIdxs = nil
}
diff --git a/common/real_time_bidding_setting.pb.go b/common/real_time_bidding_setting.pb.go
index 67c8102a..20cda3c2 100644
--- a/common/real_time_bidding_setting.pb.go
+++ b/common/real_time_bidding_setting.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/real_time_bidding_setting.proto
+// source: google/ads/googleads/v17/common/real_time_bidding_setting.proto
package common
@@ -48,7 +48,7 @@ type RealTimeBiddingSetting struct {
func (x *RealTimeBiddingSetting) Reset() {
*x = RealTimeBiddingSetting{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -61,7 +61,7 @@ func (x *RealTimeBiddingSetting) String() string {
func (*RealTimeBiddingSetting) ProtoMessage() {}
func (x *RealTimeBiddingSetting) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -74,7 +74,7 @@ func (x *RealTimeBiddingSetting) ProtoReflect() protoreflect.Message {
// Deprecated: Use RealTimeBiddingSetting.ProtoReflect.Descriptor instead.
func (*RealTimeBiddingSetting) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_rawDescGZIP(), []int{0}
}
func (x *RealTimeBiddingSetting) GetOptIn() bool {
@@ -84,55 +84,55 @@ func (x *RealTimeBiddingSetting) GetOptIn() bool {
return false
}
-var File_google_ads_googleads_v16_common_real_time_bidding_setting_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_real_time_bidding_setting_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x72, 0x65, 0x61, 0x6c, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x62, 0x69, 0x64, 0x64,
0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x22, 0x3f, 0x0a, 0x16, 0x52, 0x65, 0x61, 0x6c, 0x54, 0x69, 0x6d, 0x65, 0x42, 0x69,
0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x1a, 0x0a, 0x06,
0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x05,
0x6f, 0x70, 0x74, 0x49, 0x6e, 0x88, 0x01, 0x01, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x6f, 0x70, 0x74,
0x5f, 0x69, 0x6e, 0x42, 0xfb, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x1b, 0x52, 0x65, 0x61,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x1b, 0x52, 0x65, 0x61,
0x6c, 0x54, 0x69, 0x6d, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74,
0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_rawDescData = file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_rawDesc
+ file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_rawDescData = file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_rawDescData)
+func file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_rawDescData
+ return file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_goTypes = []interface{}{
- (*RealTimeBiddingSetting)(nil), // 0: google.ads.googleads.v16.common.RealTimeBiddingSetting
+var file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_goTypes = []interface{}{
+ (*RealTimeBiddingSetting)(nil), // 0: google.ads.googleads.v17.common.RealTimeBiddingSetting
}
-var file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -140,13 +140,13 @@ var file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_init() }
-func file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_init() {
- if File_google_ads_googleads_v16_common_real_time_bidding_setting_proto != nil {
+func init() { file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_init() }
+func file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_init() {
+ if File_google_ads_googleads_v17_common_real_time_bidding_setting_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RealTimeBiddingSetting); i {
case 0:
return &v.state
@@ -159,23 +159,23 @@ func file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_init()
}
}
}
- file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_msgTypes[0].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_real_time_bidding_setting_proto = out.File
- file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_goTypes = nil
- file_google_ads_googleads_v16_common_real_time_bidding_setting_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_real_time_bidding_setting_proto = out.File
+ file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_real_time_bidding_setting_proto_depIdxs = nil
}
diff --git a/common/segments.pb.go b/common/segments.pb.go
index f002b360..3f4f6efb 100644
--- a/common/segments.pb.go
+++ b/common/segments.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/segments.proto
+// source: google/ads/googleads/v17/common/segments.proto
package common
@@ -55,9 +55,9 @@ type Segments struct {
// Advertiser supplied activity ID.
ExternalActivityId *string `protobuf:"bytes,150,opt,name=external_activity_id,json=externalActivityId,proto3,oneof" json:"external_activity_id,omitempty"`
// Ad Destination type.
- AdDestinationType enums.AdDestinationTypeEnum_AdDestinationType `protobuf:"varint,136,opt,name=ad_destination_type,json=adDestinationType,proto3,enum=google.ads.googleads.v16.enums.AdDestinationTypeEnum_AdDestinationType" json:"ad_destination_type,omitempty"`
+ AdDestinationType enums.AdDestinationTypeEnum_AdDestinationType `protobuf:"varint,136,opt,name=ad_destination_type,json=adDestinationType,proto3,enum=google.ads.googleads.v17.enums.AdDestinationTypeEnum_AdDestinationType" json:"ad_destination_type,omitempty"`
// Ad network type.
- AdNetworkType enums.AdNetworkTypeEnum_AdNetworkType `protobuf:"varint,3,opt,name=ad_network_type,json=adNetworkType,proto3,enum=google.ads.googleads.v16.enums.AdNetworkTypeEnum_AdNetworkType" json:"ad_network_type,omitempty"`
+ AdNetworkType enums.AdNetworkTypeEnum_AdNetworkType `protobuf:"varint,3,opt,name=ad_network_type,json=adNetworkType,proto3,enum=google.ads.googleads.v17.enums.AdNetworkTypeEnum_AdNetworkType" json:"ad_network_type,omitempty"`
// Resource name of the ad group.
AdGroup *string `protobuf:"bytes,158,opt,name=ad_group,json=adGroup,proto3,oneof" json:"ad_group,omitempty"`
// Resource name of the asset group.
@@ -69,11 +69,11 @@ type Segments struct {
// Resource name of the campaign.
Campaign *string `protobuf:"bytes,157,opt,name=campaign,proto3,oneof" json:"campaign,omitempty"`
// Click type.
- ClickType enums.ClickTypeEnum_ClickType `protobuf:"varint,26,opt,name=click_type,json=clickType,proto3,enum=google.ads.googleads.v16.enums.ClickTypeEnum_ClickType" json:"click_type,omitempty"`
+ ClickType enums.ClickTypeEnum_ClickType `protobuf:"varint,26,opt,name=click_type,json=clickType,proto3,enum=google.ads.googleads.v17.enums.ClickTypeEnum_ClickType" json:"click_type,omitempty"`
// Resource name of the conversion action.
ConversionAction *string `protobuf:"bytes,113,opt,name=conversion_action,json=conversionAction,proto3,oneof" json:"conversion_action,omitempty"`
// Conversion action category.
- ConversionActionCategory enums.ConversionActionCategoryEnum_ConversionActionCategory `protobuf:"varint,53,opt,name=conversion_action_category,json=conversionActionCategory,proto3,enum=google.ads.googleads.v16.enums.ConversionActionCategoryEnum_ConversionActionCategory" json:"conversion_action_category,omitempty"`
+ ConversionActionCategory enums.ConversionActionCategoryEnum_ConversionActionCategory `protobuf:"varint,53,opt,name=conversion_action_category,json=conversionActionCategory,proto3,enum=google.ads.googleads.v17.enums.ConversionActionCategoryEnum_ConversionActionCategory" json:"conversion_action_category,omitempty"`
// Conversion action name.
ConversionActionName *string `protobuf:"bytes,114,opt,name=conversion_action_name,json=conversionActionName,proto3,oneof" json:"conversion_action_name,omitempty"`
// This segments your conversion columns by the original conversion and
@@ -83,22 +83,22 @@ type Segments struct {
// results post-adjustment data.
ConversionAdjustment *bool `protobuf:"varint,115,opt,name=conversion_adjustment,json=conversionAdjustment,proto3,oneof" json:"conversion_adjustment,omitempty"`
// Conversion attribution event type.
- ConversionAttributionEventType enums.ConversionAttributionEventTypeEnum_ConversionAttributionEventType `protobuf:"varint,2,opt,name=conversion_attribution_event_type,json=conversionAttributionEventType,proto3,enum=google.ads.googleads.v16.enums.ConversionAttributionEventTypeEnum_ConversionAttributionEventType" json:"conversion_attribution_event_type,omitempty"`
+ ConversionAttributionEventType enums.ConversionAttributionEventTypeEnum_ConversionAttributionEventType `protobuf:"varint,2,opt,name=conversion_attribution_event_type,json=conversionAttributionEventType,proto3,enum=google.ads.googleads.v17.enums.ConversionAttributionEventTypeEnum_ConversionAttributionEventType" json:"conversion_attribution_event_type,omitempty"`
// An enum value representing the number of days between the impression and
// the conversion.
- ConversionLagBucket enums.ConversionLagBucketEnum_ConversionLagBucket `protobuf:"varint,50,opt,name=conversion_lag_bucket,json=conversionLagBucket,proto3,enum=google.ads.googleads.v16.enums.ConversionLagBucketEnum_ConversionLagBucket" json:"conversion_lag_bucket,omitempty"`
+ ConversionLagBucket enums.ConversionLagBucketEnum_ConversionLagBucket `protobuf:"varint,50,opt,name=conversion_lag_bucket,json=conversionLagBucket,proto3,enum=google.ads.googleads.v17.enums.ConversionLagBucketEnum_ConversionLagBucket" json:"conversion_lag_bucket,omitempty"`
// An enum value representing the number of days between the impression and
// the conversion or between the impression and adjustments to the conversion.
- ConversionOrAdjustmentLagBucket enums.ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket `protobuf:"varint,51,opt,name=conversion_or_adjustment_lag_bucket,json=conversionOrAdjustmentLagBucket,proto3,enum=google.ads.googleads.v16.enums.ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket" json:"conversion_or_adjustment_lag_bucket,omitempty"`
+ ConversionOrAdjustmentLagBucket enums.ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket `protobuf:"varint,51,opt,name=conversion_or_adjustment_lag_bucket,json=conversionOrAdjustmentLagBucket,proto3,enum=google.ads.googleads.v17.enums.ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket" json:"conversion_or_adjustment_lag_bucket,omitempty"`
// Date to which metrics apply.
// yyyy-MM-dd format, for example, 2018-04-17.
Date *string `protobuf:"bytes,79,opt,name=date,proto3,oneof" json:"date,omitempty"`
// Day of the week, for example, MONDAY.
- DayOfWeek enums.DayOfWeekEnum_DayOfWeek `protobuf:"varint,5,opt,name=day_of_week,json=dayOfWeek,proto3,enum=google.ads.googleads.v16.enums.DayOfWeekEnum_DayOfWeek" json:"day_of_week,omitempty"`
+ DayOfWeek enums.DayOfWeekEnum_DayOfWeek `protobuf:"varint,5,opt,name=day_of_week,json=dayOfWeek,proto3,enum=google.ads.googleads.v17.enums.DayOfWeekEnum_DayOfWeek" json:"day_of_week,omitempty"`
// Device to which metrics apply.
- Device enums.DeviceEnum_Device `protobuf:"varint,1,opt,name=device,proto3,enum=google.ads.googleads.v16.enums.DeviceEnum_Device" json:"device,omitempty"`
+ Device enums.DeviceEnum_Device `protobuf:"varint,1,opt,name=device,proto3,enum=google.ads.googleads.v17.enums.DeviceEnum_Device" json:"device,omitempty"`
// External conversion source.
- ExternalConversionSource enums.ExternalConversionSourceEnum_ExternalConversionSource `protobuf:"varint,55,opt,name=external_conversion_source,json=externalConversionSource,proto3,enum=google.ads.googleads.v16.enums.ExternalConversionSourceEnum_ExternalConversionSource" json:"external_conversion_source,omitempty"`
+ ExternalConversionSource enums.ExternalConversionSourceEnum_ExternalConversionSource `protobuf:"varint,55,opt,name=external_conversion_source,json=externalConversionSource,proto3,enum=google.ads.googleads.v17.enums.ExternalConversionSourceEnum_ExternalConversionSource" json:"external_conversion_source,omitempty"`
// Resource name of the geo target constant that represents an airport.
GeoTargetAirport *string `protobuf:"bytes,116,opt,name=geo_target_airport,json=geoTargetAirport,proto3,oneof" json:"geo_target_airport,omitempty"`
// Resource name of the geo target constant that represents a canton.
@@ -131,7 +131,7 @@ type Segments struct {
// Hotel check-in date. Formatted as yyyy-MM-dd.
HotelCheckInDate *string `protobuf:"bytes,81,opt,name=hotel_check_in_date,json=hotelCheckInDate,proto3,oneof" json:"hotel_check_in_date,omitempty"`
// Hotel check-in day of week.
- HotelCheckInDayOfWeek enums.DayOfWeekEnum_DayOfWeek `protobuf:"varint,9,opt,name=hotel_check_in_day_of_week,json=hotelCheckInDayOfWeek,proto3,enum=google.ads.googleads.v16.enums.DayOfWeekEnum_DayOfWeek" json:"hotel_check_in_day_of_week,omitempty"`
+ HotelCheckInDayOfWeek enums.DayOfWeekEnum_DayOfWeek `protobuf:"varint,9,opt,name=hotel_check_in_day_of_week,json=hotelCheckInDayOfWeek,proto3,enum=google.ads.googleads.v17.enums.DayOfWeekEnum_DayOfWeek" json:"hotel_check_in_day_of_week,omitempty"`
// Hotel city.
HotelCity *string `protobuf:"bytes,82,opt,name=hotel_city,json=hotelCity,proto3,oneof" json:"hotel_city,omitempty"`
// Hotel class.
@@ -139,15 +139,15 @@ type Segments struct {
// Hotel country.
HotelCountry *string `protobuf:"bytes,84,opt,name=hotel_country,json=hotelCountry,proto3,oneof" json:"hotel_country,omitempty"`
// Hotel date selection type.
- HotelDateSelectionType enums.HotelDateSelectionTypeEnum_HotelDateSelectionType `protobuf:"varint,13,opt,name=hotel_date_selection_type,json=hotelDateSelectionType,proto3,enum=google.ads.googleads.v16.enums.HotelDateSelectionTypeEnum_HotelDateSelectionType" json:"hotel_date_selection_type,omitempty"`
+ HotelDateSelectionType enums.HotelDateSelectionTypeEnum_HotelDateSelectionType `protobuf:"varint,13,opt,name=hotel_date_selection_type,json=hotelDateSelectionType,proto3,enum=google.ads.googleads.v17.enums.HotelDateSelectionTypeEnum_HotelDateSelectionType" json:"hotel_date_selection_type,omitempty"`
// Hotel length of stay.
HotelLengthOfStay *int32 `protobuf:"varint,85,opt,name=hotel_length_of_stay,json=hotelLengthOfStay,proto3,oneof" json:"hotel_length_of_stay,omitempty"`
// Hotel rate rule ID.
HotelRateRuleId *string `protobuf:"bytes,86,opt,name=hotel_rate_rule_id,json=hotelRateRuleId,proto3,oneof" json:"hotel_rate_rule_id,omitempty"`
// Hotel rate type.
- HotelRateType enums.HotelRateTypeEnum_HotelRateType `protobuf:"varint,74,opt,name=hotel_rate_type,json=hotelRateType,proto3,enum=google.ads.googleads.v16.enums.HotelRateTypeEnum_HotelRateType" json:"hotel_rate_type,omitempty"`
+ HotelRateType enums.HotelRateTypeEnum_HotelRateType `protobuf:"varint,74,opt,name=hotel_rate_type,json=hotelRateType,proto3,enum=google.ads.googleads.v17.enums.HotelRateTypeEnum_HotelRateType" json:"hotel_rate_type,omitempty"`
// Hotel price bucket.
- HotelPriceBucket enums.HotelPriceBucketEnum_HotelPriceBucket `protobuf:"varint,78,opt,name=hotel_price_bucket,json=hotelPriceBucket,proto3,enum=google.ads.googleads.v16.enums.HotelPriceBucketEnum_HotelPriceBucket" json:"hotel_price_bucket,omitempty"`
+ HotelPriceBucket enums.HotelPriceBucketEnum_HotelPriceBucket `protobuf:"varint,78,opt,name=hotel_price_bucket,json=hotelPriceBucket,proto3,enum=google.ads.googleads.v17.enums.HotelPriceBucketEnum_HotelPriceBucket" json:"hotel_price_bucket,omitempty"`
// Hotel state.
HotelState *string `protobuf:"bytes,87,opt,name=hotel_state,json=hotelState,proto3,oneof" json:"hotel_state,omitempty"`
// Hour of day as a number between 0 and 23, inclusive.
@@ -162,11 +162,11 @@ type Segments struct {
// yyyy-MM-dd.
Month *string `protobuf:"bytes,90,opt,name=month,proto3,oneof" json:"month,omitempty"`
// Month of the year, for example, January.
- MonthOfYear enums.MonthOfYearEnum_MonthOfYear `protobuf:"varint,18,opt,name=month_of_year,json=monthOfYear,proto3,enum=google.ads.googleads.v16.enums.MonthOfYearEnum_MonthOfYear" json:"month_of_year,omitempty"`
+ MonthOfYear enums.MonthOfYearEnum_MonthOfYear `protobuf:"varint,18,opt,name=month_of_year,json=monthOfYear,proto3,enum=google.ads.googleads.v17.enums.MonthOfYearEnum_MonthOfYear" json:"month_of_year,omitempty"`
// Partner hotel ID.
PartnerHotelId *string `protobuf:"bytes,91,opt,name=partner_hotel_id,json=partnerHotelId,proto3,oneof" json:"partner_hotel_id,omitempty"`
// Placeholder type. This is only used with feed item metrics.
- PlaceholderType enums.PlaceholderTypeEnum_PlaceholderType `protobuf:"varint,20,opt,name=placeholder_type,json=placeholderType,proto3,enum=google.ads.googleads.v16.enums.PlaceholderTypeEnum_PlaceholderType" json:"placeholder_type,omitempty"`
+ PlaceholderType enums.PlaceholderTypeEnum_PlaceholderType `protobuf:"varint,20,opt,name=placeholder_type,json=placeholderType,proto3,enum=google.ads.googleads.v17.enums.PlaceholderTypeEnum_PlaceholderType" json:"placeholder_type,omitempty"`
// Aggregator ID of the product.
ProductAggregatorId *int64 `protobuf:"varint,132,opt,name=product_aggregator_id,json=productAggregatorId,proto3,oneof" json:"product_aggregator_id,omitempty"`
// Category (level 1) of the product.
@@ -182,11 +182,11 @@ type Segments struct {
// Brand of the product.
ProductBrand *string `protobuf:"bytes,97,opt,name=product_brand,json=productBrand,proto3,oneof" json:"product_brand,omitempty"`
// Channel of the product.
- ProductChannel enums.ProductChannelEnum_ProductChannel `protobuf:"varint,30,opt,name=product_channel,json=productChannel,proto3,enum=google.ads.googleads.v16.enums.ProductChannelEnum_ProductChannel" json:"product_channel,omitempty"`
+ ProductChannel enums.ProductChannelEnum_ProductChannel `protobuf:"varint,30,opt,name=product_channel,json=productChannel,proto3,enum=google.ads.googleads.v17.enums.ProductChannelEnum_ProductChannel" json:"product_channel,omitempty"`
// Channel exclusivity of the product.
- ProductChannelExclusivity enums.ProductChannelExclusivityEnum_ProductChannelExclusivity `protobuf:"varint,31,opt,name=product_channel_exclusivity,json=productChannelExclusivity,proto3,enum=google.ads.googleads.v16.enums.ProductChannelExclusivityEnum_ProductChannelExclusivity" json:"product_channel_exclusivity,omitempty"`
+ ProductChannelExclusivity enums.ProductChannelExclusivityEnum_ProductChannelExclusivity `protobuf:"varint,31,opt,name=product_channel_exclusivity,json=productChannelExclusivity,proto3,enum=google.ads.googleads.v17.enums.ProductChannelExclusivityEnum_ProductChannelExclusivity" json:"product_channel_exclusivity,omitempty"`
// Condition of the product.
- ProductCondition enums.ProductConditionEnum_ProductCondition `protobuf:"varint,32,opt,name=product_condition,json=productCondition,proto3,enum=google.ads.googleads.v16.enums.ProductConditionEnum_ProductCondition" json:"product_condition,omitempty"`
+ ProductCondition enums.ProductConditionEnum_ProductCondition `protobuf:"varint,32,opt,name=product_condition,json=productCondition,proto3,enum=google.ads.googleads.v17.enums.ProductConditionEnum_ProductCondition" json:"product_condition,omitempty"`
// Resource name of the geo target constant for the country of sale of the
// product.
ProductCountry *string `protobuf:"bytes,98,opt,name=product_country,json=productCountry,proto3,oneof" json:"product_country,omitempty"`
@@ -227,18 +227,18 @@ type Segments struct {
// 2018 starts on 2018-04-01. Formatted as yyyy-MM-dd.
Quarter *string `protobuf:"bytes,128,opt,name=quarter,proto3,oneof" json:"quarter,omitempty"`
// Recommendation type.
- RecommendationType enums.RecommendationTypeEnum_RecommendationType `protobuf:"varint,140,opt,name=recommendation_type,json=recommendationType,proto3,enum=google.ads.googleads.v16.enums.RecommendationTypeEnum_RecommendationType" json:"recommendation_type,omitempty"`
+ RecommendationType enums.RecommendationTypeEnum_RecommendationType `protobuf:"varint,140,opt,name=recommendation_type,json=recommendationType,proto3,enum=google.ads.googleads.v17.enums.RecommendationTypeEnum_RecommendationType" json:"recommendation_type,omitempty"`
// Type of the search engine results page.
- SearchEngineResultsPageType enums.SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType `protobuf:"varint,70,opt,name=search_engine_results_page_type,json=searchEngineResultsPageType,proto3,enum=google.ads.googleads.v16.enums.SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType" json:"search_engine_results_page_type,omitempty"`
+ SearchEngineResultsPageType enums.SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType `protobuf:"varint,70,opt,name=search_engine_results_page_type,json=searchEngineResultsPageType,proto3,enum=google.ads.googleads.v17.enums.SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType" json:"search_engine_results_page_type,omitempty"`
// A search term subcategory. An empty string denotes the catch-all
// subcategory for search terms that didn't fit into another subcategory.
SearchSubcategory *string `protobuf:"bytes,155,opt,name=search_subcategory,json=searchSubcategory,proto3,oneof" json:"search_subcategory,omitempty"`
// A search term.
SearchTerm *string `protobuf:"bytes,156,opt,name=search_term,json=searchTerm,proto3,oneof" json:"search_term,omitempty"`
// Match type of the keyword that triggered the ad, including variants.
- SearchTermMatchType enums.SearchTermMatchTypeEnum_SearchTermMatchType `protobuf:"varint,22,opt,name=search_term_match_type,json=searchTermMatchType,proto3,enum=google.ads.googleads.v16.enums.SearchTermMatchTypeEnum_SearchTermMatchType" json:"search_term_match_type,omitempty"`
+ SearchTermMatchType enums.SearchTermMatchTypeEnum_SearchTermMatchType `protobuf:"varint,22,opt,name=search_term_match_type,json=searchTermMatchType,proto3,enum=google.ads.googleads.v17.enums.SearchTermMatchTypeEnum_SearchTermMatchType" json:"search_term_match_type,omitempty"`
// Position of the ad.
- Slot enums.SlotEnum_Slot `protobuf:"varint,23,opt,name=slot,proto3,enum=google.ads.googleads.v16.enums.SlotEnum_Slot" json:"slot,omitempty"`
+ Slot enums.SlotEnum_Slot `protobuf:"varint,23,opt,name=slot,proto3,enum=google.ads.googleads.v17.enums.SlotEnum_Slot" json:"slot,omitempty"`
// Primary dimension of applied conversion value rules.
// NO_RULE_APPLIED shows the total recorded value of conversions that
// do not have a value rule applied.
@@ -246,7 +246,7 @@ type Segments struct {
// has been applied.
// GEO_LOCATION, DEVICE, AUDIENCE show the net adjustment after value
// rules were applied.
- ConversionValueRulePrimaryDimension enums.ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension `protobuf:"varint,138,opt,name=conversion_value_rule_primary_dimension,json=conversionValueRulePrimaryDimension,proto3,enum=google.ads.googleads.v16.enums.ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension" json:"conversion_value_rule_primary_dimension,omitempty"`
+ ConversionValueRulePrimaryDimension enums.ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension `protobuf:"varint,138,opt,name=conversion_value_rule_primary_dimension,json=conversionValueRulePrimaryDimension,proto3,enum=google.ads.googleads.v17.enums.ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension" json:"conversion_value_rule_primary_dimension,omitempty"`
// Resource name of the ad group criterion that represents webpage criterion.
Webpage *string `protobuf:"bytes,129,opt,name=webpage,proto3,oneof" json:"webpage,omitempty"`
// Week as defined as Monday through Sunday, and represented by the date of
@@ -257,19 +257,28 @@ type Segments struct {
// iOS Store Kit Ad Network conversion value.
// Null value means this segment is not applicable, for example, non-iOS
// campaign.
- SkAdNetworkConversionValue *int64 `protobuf:"varint,137,opt,name=sk_ad_network_conversion_value,json=skAdNetworkConversionValue,proto3,oneof" json:"sk_ad_network_conversion_value,omitempty"`
+ SkAdNetworkFineConversionValue *int64 `protobuf:"varint,137,opt,name=sk_ad_network_fine_conversion_value,json=skAdNetworkFineConversionValue,proto3,oneof" json:"sk_ad_network_fine_conversion_value,omitempty"`
+ // iOS Store Kit Ad Network redistributed fine conversion value.
+ //
+ // Google uses modeling on observed conversion values(obtained
+ // from Apple) to calculate conversions from SKAN postbacks where
+ // NULLs are returned. This column represents the sum of the modeled
+ // conversion values and the observed conversion values. See
+ // https://support.google.com/google-ads/answer/14892597
+ // to lean more.
+ SkAdNetworkRedistributedFineConversionValue *int64 `protobuf:"varint,190,opt,name=sk_ad_network_redistributed_fine_conversion_value,json=skAdNetworkRedistributedFineConversionValue,proto3,oneof" json:"sk_ad_network_redistributed_fine_conversion_value,omitempty"`
// iOS Store Kit Ad Network user type.
- SkAdNetworkUserType enums.SkAdNetworkUserTypeEnum_SkAdNetworkUserType `protobuf:"varint,141,opt,name=sk_ad_network_user_type,json=skAdNetworkUserType,proto3,enum=google.ads.googleads.v16.enums.SkAdNetworkUserTypeEnum_SkAdNetworkUserType" json:"sk_ad_network_user_type,omitempty"`
+ SkAdNetworkUserType enums.SkAdNetworkUserTypeEnum_SkAdNetworkUserType `protobuf:"varint,141,opt,name=sk_ad_network_user_type,json=skAdNetworkUserType,proto3,enum=google.ads.googleads.v17.enums.SkAdNetworkUserTypeEnum_SkAdNetworkUserType" json:"sk_ad_network_user_type,omitempty"`
// iOS Store Kit Ad Network ad event type.
- SkAdNetworkAdEventType enums.SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType `protobuf:"varint,142,opt,name=sk_ad_network_ad_event_type,json=skAdNetworkAdEventType,proto3,enum=google.ads.googleads.v16.enums.SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType" json:"sk_ad_network_ad_event_type,omitempty"`
+ SkAdNetworkAdEventType enums.SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType `protobuf:"varint,142,opt,name=sk_ad_network_ad_event_type,json=skAdNetworkAdEventType,proto3,enum=google.ads.googleads.v17.enums.SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType" json:"sk_ad_network_ad_event_type,omitempty"`
// App where the ad that drove the iOS Store Kit Ad Network install was
// shown. Null value means this segment is not applicable, for example,
// non-iOS campaign, or was not present in any postbacks sent by Apple.
SkAdNetworkSourceApp *SkAdNetworkSourceApp `protobuf:"bytes,143,opt,name=sk_ad_network_source_app,json=skAdNetworkSourceApp,proto3,oneof" json:"sk_ad_network_source_app,omitempty"`
// iOS Store Kit Ad Network attribution credit
- SkAdNetworkAttributionCredit enums.SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit `protobuf:"varint,144,opt,name=sk_ad_network_attribution_credit,json=skAdNetworkAttributionCredit,proto3,enum=google.ads.googleads.v16.enums.SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit" json:"sk_ad_network_attribution_credit,omitempty"`
+ SkAdNetworkAttributionCredit enums.SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit `protobuf:"varint,144,opt,name=sk_ad_network_attribution_credit,json=skAdNetworkAttributionCredit,proto3,enum=google.ads.googleads.v17.enums.SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit" json:"sk_ad_network_attribution_credit,omitempty"`
// iOS Store Kit Ad Network coarse conversion value.
- SkAdNetworkCoarseConversionValue enums.SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue `protobuf:"varint,151,opt,name=sk_ad_network_coarse_conversion_value,json=skAdNetworkCoarseConversionValue,proto3,enum=google.ads.googleads.v16.enums.SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue" json:"sk_ad_network_coarse_conversion_value,omitempty"`
+ SkAdNetworkCoarseConversionValue enums.SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue `protobuf:"varint,151,opt,name=sk_ad_network_coarse_conversion_value,json=skAdNetworkCoarseConversionValue,proto3,enum=google.ads.googleads.v17.enums.SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue" json:"sk_ad_network_coarse_conversion_value,omitempty"`
// Website where the ad that drove the iOS Store Kit Ad Network install was
// shown. Null value means this segment is not applicable, for example,
// non-iOS campaign, or was not present in any postbacks sent by Apple.
@@ -278,7 +287,7 @@ type Segments struct {
// install was shown. Null value means this segment is not applicable, for
// example, non-iOS campaign, or neither source domain nor source app were
// present in any postbacks sent by Apple.
- SkAdNetworkSourceType enums.SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType `protobuf:"varint,153,opt,name=sk_ad_network_source_type,json=skAdNetworkSourceType,proto3,enum=google.ads.googleads.v16.enums.SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType" json:"sk_ad_network_source_type,omitempty"`
+ SkAdNetworkSourceType enums.SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType `protobuf:"varint,153,opt,name=sk_ad_network_source_type,json=skAdNetworkSourceType,proto3,enum=google.ads.googleads.v17.enums.SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType" json:"sk_ad_network_source_type,omitempty"`
// iOS Store Kit Ad Network postback sequence index.
SkAdNetworkPostbackSequenceIndex *int64 `protobuf:"varint,154,opt,name=sk_ad_network_postback_sequence_index,json=skAdNetworkPostbackSequenceIndex,proto3,oneof" json:"sk_ad_network_postback_sequence_index,omitempty"`
// Only used with CustomerAsset, CampaignAsset and AdGroupAsset metrics.
@@ -295,13 +304,13 @@ type Segments struct {
// This is for segmenting conversions by whether the user is a new customer
// or a returning customer. This segmentation is typically used to measure
// the impact of customer acquisition goal.
- NewVersusReturningCustomers enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket `protobuf:"varint,160,opt,name=new_versus_returning_customers,json=newVersusReturningCustomers,proto3,enum=google.ads.googleads.v16.enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket" json:"new_versus_returning_customers,omitempty"`
+ NewVersusReturningCustomers enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket `protobuf:"varint,160,opt,name=new_versus_returning_customers,json=newVersusReturningCustomers,proto3,enum=google.ads.googleads.v17.enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket" json:"new_versus_returning_customers,omitempty"`
}
func (x *Segments) Reset() {
*x = Segments{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_segments_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_segments_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -314,7 +323,7 @@ func (x *Segments) String() string {
func (*Segments) ProtoMessage() {}
func (x *Segments) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_segments_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_segments_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -327,7 +336,7 @@ func (x *Segments) ProtoReflect() protoreflect.Message {
// Deprecated: Use Segments.ProtoReflect.Descriptor instead.
func (*Segments) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_segments_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_segments_proto_rawDescGZIP(), []int{0}
}
func (x *Segments) GetActivityAccountId() int64 {
@@ -995,9 +1004,16 @@ func (x *Segments) GetYear() int32 {
return 0
}
-func (x *Segments) GetSkAdNetworkConversionValue() int64 {
- if x != nil && x.SkAdNetworkConversionValue != nil {
- return *x.SkAdNetworkConversionValue
+func (x *Segments) GetSkAdNetworkFineConversionValue() int64 {
+ if x != nil && x.SkAdNetworkFineConversionValue != nil {
+ return *x.SkAdNetworkFineConversionValue
+ }
+ return 0
+}
+
+func (x *Segments) GetSkAdNetworkRedistributedFineConversionValue() int64 {
+ if x != nil && x.SkAdNetworkRedistributedFineConversionValue != nil {
+ return *x.SkAdNetworkRedistributedFineConversionValue
}
return 0
}
@@ -1087,7 +1103,7 @@ type Keyword struct {
func (x *Keyword) Reset() {
*x = Keyword{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_segments_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_segments_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1100,7 +1116,7 @@ func (x *Keyword) String() string {
func (*Keyword) ProtoMessage() {}
func (x *Keyword) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_segments_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_segments_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1113,7 +1129,7 @@ func (x *Keyword) ProtoReflect() protoreflect.Message {
// Deprecated: Use Keyword.ProtoReflect.Descriptor instead.
func (*Keyword) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_segments_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_segments_proto_rawDescGZIP(), []int{1}
}
func (x *Keyword) GetAdGroupCriterion() string {
@@ -1139,13 +1155,13 @@ type BudgetCampaignAssociationStatus struct {
// The campaign resource name.
Campaign *string `protobuf:"bytes,1,opt,name=campaign,proto3,oneof" json:"campaign,omitempty"`
// Budget campaign association status.
- Status enums.BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus `protobuf:"varint,2,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus" json:"status,omitempty"`
+ Status enums.BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus `protobuf:"varint,2,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus" json:"status,omitempty"`
}
func (x *BudgetCampaignAssociationStatus) Reset() {
*x = BudgetCampaignAssociationStatus{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_segments_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_segments_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1158,7 +1174,7 @@ func (x *BudgetCampaignAssociationStatus) String() string {
func (*BudgetCampaignAssociationStatus) ProtoMessage() {}
func (x *BudgetCampaignAssociationStatus) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_segments_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_segments_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1171,7 +1187,7 @@ func (x *BudgetCampaignAssociationStatus) ProtoReflect() protoreflect.Message {
// Deprecated: Use BudgetCampaignAssociationStatus.ProtoReflect.Descriptor instead.
func (*BudgetCampaignAssociationStatus) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_segments_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_common_segments_proto_rawDescGZIP(), []int{2}
}
func (x *BudgetCampaignAssociationStatus) GetCampaign() string {
@@ -1205,7 +1221,7 @@ type AssetInteractionTarget struct {
func (x *AssetInteractionTarget) Reset() {
*x = AssetInteractionTarget{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_segments_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_segments_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1218,7 +1234,7 @@ func (x *AssetInteractionTarget) String() string {
func (*AssetInteractionTarget) ProtoMessage() {}
func (x *AssetInteractionTarget) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_segments_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_segments_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1231,7 +1247,7 @@ func (x *AssetInteractionTarget) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetInteractionTarget.ProtoReflect.Descriptor instead.
func (*AssetInteractionTarget) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_segments_proto_rawDescGZIP(), []int{3}
+ return file_google_ads_googleads_v17_common_segments_proto_rawDescGZIP(), []int{3}
}
func (x *AssetInteractionTarget) GetAsset() string {
@@ -1262,7 +1278,7 @@ type SkAdNetworkSourceApp struct {
func (x *SkAdNetworkSourceApp) Reset() {
*x = SkAdNetworkSourceApp{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_segments_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_segments_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1275,7 +1291,7 @@ func (x *SkAdNetworkSourceApp) String() string {
func (*SkAdNetworkSourceApp) ProtoMessage() {}
func (x *SkAdNetworkSourceApp) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_segments_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_segments_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1288,7 +1304,7 @@ func (x *SkAdNetworkSourceApp) ProtoReflect() protoreflect.Message {
// Deprecated: Use SkAdNetworkSourceApp.ProtoReflect.Descriptor instead.
func (*SkAdNetworkSourceApp) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_segments_proto_rawDescGZIP(), []int{4}
+ return file_google_ads_googleads_v17_common_segments_proto_rawDescGZIP(), []int{4}
}
func (x *SkAdNetworkSourceApp) GetSkAdNetworkSourceAppId() string {
@@ -1298,136 +1314,136 @@ func (x *SkAdNetworkSourceApp) GetSkAdNetworkSourceAppId() string {
return ""
}
-var File_google_ads_googleads_v16_common_segments_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_segments_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_segments_proto_rawDesc = []byte{
0x0a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x73, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x2f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x1a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x2f, 0x61, 0x64, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x34, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x6e,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x6e,
0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x1a, 0x47, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x2f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67,
0x6e, 0x5f, 0x61, 0x73, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74,
0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6c, 0x69, 0x63, 0x6b,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6c, 0x69, 0x63, 0x6b,
0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76,
0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x61,
0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x46, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e,
0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74,
0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f,
0x6c, 0x61, 0x67, 0x5f, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x1a, 0x48, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x72, 0x5f, 0x61,
0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6c, 0x61, 0x67, 0x5f, 0x62, 0x75,
0x63, 0x6b, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x4c, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65,
0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69,
0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x59, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74,
0x69, 0x6e, 0x67, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x70, 0x72, 0x69, 0x6f, 0x72, 0x5f, 0x65,
0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x61,
0x6e, 0x64, 0x5f, 0x6c, 0x74, 0x76, 0x5f, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2f, 0x64, 0x61, 0x79, 0x5f, 0x6f, 0x66, 0x5f, 0x77, 0x65, 0x65, 0x6b, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76,
0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x73,
0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f,
0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x34, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x68, 0x6f, 0x74,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x68, 0x6f, 0x74,
0x65, 0x6c, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x2f, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x5f, 0x6f, 0x66, 0x5f, 0x79, 0x65, 0x61, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64,
0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x34, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72,
0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x68, 0x61, 0x6e,
0x6e, 0x65, 0x6c, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x69, 0x74, 0x79, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6f,
0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x38, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65,
0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70,
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x65,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x65,
0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x5f, 0x70, 0x61,
0x67, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3b, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x65,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x65,
0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f,
0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x40, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x6b, 0x5f, 0x61, 0x64,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x6b, 0x5f, 0x61, 0x64,
0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x65, 0x76, 0x65, 0x6e,
0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x45, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x6b, 0x5f,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x6b, 0x5f,
0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69,
0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x4a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72,
0x6b, 0x5f, 0x63, 0x6f, 0x61, 0x72, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f,
0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x73, 0x6f,
0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f,
0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x75, 0x73,
0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x29, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x6c,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x6c,
0x6f, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x22, 0xa1, 0x4c, 0x0a, 0x08, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x73,
+ 0x6f, 0x74, 0x6f, 0x22, 0xd3, 0x4d, 0x0a, 0x08, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x73,
0x12, 0x34, 0x0a, 0x13, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x61, 0x63, 0x63,
0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x94, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00,
0x52, 0x11, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
@@ -1449,7 +1465,7 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x79, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x78, 0x0a, 0x13, 0x61, 0x64, 0x5f, 0x64, 0x65, 0x73,
0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x88, 0x01,
0x20, 0x01, 0x28, 0x0e, 0x32, 0x47, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x44, 0x65,
0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x11, 0x61,
@@ -1457,7 +1473,7 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x12, 0x67, 0x0a, 0x0f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x74,
0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3f, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x4e, 0x65, 0x74,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x4e, 0x65, 0x74,
0x77, 0x6f, 0x72, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x4e,
0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0d, 0x61, 0x64, 0x4e, 0x65,
0x74, 0x77, 0x6f, 0x72, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1f, 0x0a, 0x08, 0x61, 0x64, 0x5f,
@@ -1473,7 +1489,7 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x6e, 0x5f, 0x61, 0x73, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74,
0x61, 0x74, 0x75, 0x73, 0x18, 0x86, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x40, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x75,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x75,
0x64, 0x67, 0x65, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x6f,
0x63, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x1f, 0x62,
0x75, 0x64, 0x67, 0x65, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73,
@@ -1482,7 +1498,7 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x09, 0x48, 0x09, 0x52, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x88, 0x01, 0x01,
0x12, 0x56, 0x0a, 0x0a, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x1a,
0x20, 0x01, 0x28, 0x0e, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x45,
0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x52, 0x09, 0x63,
0x6c, 0x69, 0x63, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x12, 0x60, 0x0a, 0x11, 0x63, 0x6f, 0x6e, 0x76,
@@ -1495,7 +1511,7 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x35, 0x20, 0x01, 0x28, 0x0e, 0x32,
0x55, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f,
0x6e, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f,
0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x61,
@@ -1512,7 +1528,7 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
0x0e, 0x32, 0x61, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x74, 0x74,
0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70,
0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
@@ -1522,7 +1538,7 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x54, 0x79, 0x70, 0x65, 0x12, 0x7f, 0x0a, 0x15, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x67, 0x5f, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x32, 0x20,
0x01, 0x28, 0x0e, 0x32, 0x4b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4c,
0x61, 0x67, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e,
0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x67, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74,
@@ -1531,7 +1547,7 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x72, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65,
0x6e, 0x74, 0x5f, 0x6c, 0x61, 0x67, 0x5f, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x33, 0x20,
0x01, 0x28, 0x0e, 0x32, 0x63, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4f,
0x72, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x4c, 0x61, 0x67, 0x42, 0x75,
0x63, 0x6b, 0x65, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
@@ -1543,18 +1559,18 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x01, 0x01, 0x12, 0x57, 0x0a, 0x0b, 0x64, 0x61, 0x79, 0x5f, 0x6f, 0x66, 0x5f, 0x77, 0x65, 0x65,
0x6b, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x61, 0x79, 0x4f, 0x66, 0x57, 0x65,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x61, 0x79, 0x4f, 0x66, 0x57, 0x65,
0x65, 0x6b, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x61, 0x79, 0x4f, 0x66, 0x57, 0x65, 0x65, 0x6b,
0x52, 0x09, 0x64, 0x61, 0x79, 0x4f, 0x66, 0x57, 0x65, 0x65, 0x6b, 0x12, 0x49, 0x0a, 0x06, 0x64,
0x65, 0x76, 0x69, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x31, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x65, 0x76,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x65, 0x76,
0x69, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x52, 0x06,
0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x12, 0x93, 0x01, 0x0a, 0x1a, 0x65, 0x78, 0x74, 0x65, 0x72,
0x6e, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73,
0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x37, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x55, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x45, 0x78, 0x74,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x45, 0x78, 0x74,
0x65, 0x72, 0x6e, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53,
0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e,
0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x6f, 0x75, 0x72,
@@ -1613,7 +1629,7 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x68, 0x65, 0x63, 0x6b, 0x5f, 0x69, 0x6e, 0x5f, 0x64, 0x61, 0x79, 0x5f, 0x6f, 0x66, 0x5f, 0x77,
0x65, 0x65, 0x6b, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x61, 0x79, 0x4f, 0x66,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x61, 0x79, 0x4f, 0x66,
0x57, 0x65, 0x65, 0x6b, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x61, 0x79, 0x4f, 0x66, 0x57, 0x65,
0x65, 0x6b, 0x52, 0x15, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x49, 0x6e,
0x44, 0x61, 0x79, 0x4f, 0x66, 0x57, 0x65, 0x65, 0x6b, 0x12, 0x22, 0x0a, 0x0a, 0x68, 0x6f, 0x74,
@@ -1627,7 +1643,7 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x0a, 0x19, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x73, 0x65, 0x6c,
0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28,
0x0e, 0x32, 0x51, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x44, 0x61, 0x74, 0x65, 0x53, 0x65, 0x6c, 0x65,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x48, 0x6f,
0x74, 0x65, 0x6c, 0x44, 0x61, 0x74, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
@@ -1642,14 +1658,14 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x64, 0x88, 0x01, 0x01, 0x12, 0x67, 0x0a, 0x0f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x72, 0x61,
0x74, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x4a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3f, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x48,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x48,
0x6f, 0x74, 0x65, 0x6c, 0x52, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d,
0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x52, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0d,
0x68, 0x6f, 0x74, 0x65, 0x6c, 0x52, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x73, 0x0a,
0x12, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x62, 0x75, 0x63,
0x6b, 0x65, 0x74, 0x18, 0x4e, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x45, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c,
0x50, 0x72, 0x69, 0x63, 0x65, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
0x48, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x72, 0x69, 0x63, 0x65, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74,
0x52, 0x10, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x72, 0x69, 0x63, 0x65, 0x42, 0x75, 0x63, 0x6b,
@@ -1664,13 +1680,13 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x42, 0x0a, 0x07, 0x6b, 0x65, 0x79,
0x77, 0x6f, 0x72, 0x64, 0x18, 0x3d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79,
0x77, 0x6f, 0x72, 0x64, 0x52, 0x07, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x19, 0x0a,
0x05, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x18, 0x5a, 0x20, 0x01, 0x28, 0x09, 0x48, 0x25, 0x52, 0x05,
0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x88, 0x01, 0x01, 0x12, 0x5f, 0x0a, 0x0d, 0x6d, 0x6f, 0x6e, 0x74,
0x68, 0x5f, 0x6f, 0x66, 0x5f, 0x79, 0x65, 0x61, 0x72, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0e, 0x32,
0x3b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2e, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x4f, 0x66, 0x59, 0x65, 0x61, 0x72, 0x45, 0x6e, 0x75, 0x6d,
0x2e, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x4f, 0x66, 0x59, 0x65, 0x61, 0x72, 0x52, 0x0b, 0x6d, 0x6f,
0x6e, 0x74, 0x68, 0x4f, 0x66, 0x59, 0x65, 0x61, 0x72, 0x12, 0x2d, 0x0a, 0x10, 0x70, 0x61, 0x72,
@@ -1679,7 +1695,7 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x74, 0x65, 0x6c, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x6e, 0x0a, 0x10, 0x70, 0x6c, 0x61, 0x63,
0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x14, 0x20, 0x01,
0x28, 0x0e, 0x32, 0x43, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x54,
0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c,
0x64, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f,
@@ -1712,14 +1728,14 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x01, 0x01, 0x12, 0x6a, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x68,
0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x41, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f,
0x64, 0x75, 0x63, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x52, 0x0e,
0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x12, 0x97,
0x01, 0x0a, 0x1b, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e,
0x65, 0x6c, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x69, 0x74, 0x79, 0x18, 0x1f,
0x20, 0x01, 0x28, 0x0e, 0x32, 0x57, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x68, 0x61,
0x6e, 0x6e, 0x65, 0x6c, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x69, 0x74, 0x79, 0x45,
0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e,
@@ -1728,7 +1744,7 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x6c, 0x75, 0x73, 0x69, 0x76, 0x69, 0x74, 0x79, 0x12, 0x72, 0x0a, 0x11, 0x70, 0x72, 0x6f, 0x64,
0x75, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x20, 0x20,
0x01, 0x28, 0x0e, 0x32, 0x45, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x6f, 0x6e, 0x64,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63,
0x74, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x10, 0x70, 0x72, 0x6f, 0x64,
@@ -1793,7 +1809,7 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x12, 0x7b, 0x0a, 0x13, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x8c, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x49,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e,
0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79,
0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x12, 0x72, 0x65, 0x63, 0x6f, 0x6d,
@@ -1802,7 +1818,7 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x79, 0x70,
0x65, 0x18, 0x46, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x45,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x45,
0x6e, 0x67, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x50, 0x61, 0x67, 0x65,
0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x45,
0x6e, 0x67, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x50, 0x61, 0x67, 0x65,
@@ -1817,21 +1833,21 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x0a, 0x16, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x6d, 0x61,
0x74, 0x63, 0x68, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4b,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e,
0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54,
0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65,
0x72, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x73, 0x65, 0x61,
0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65,
0x12, 0x41, 0x0a, 0x04, 0x73, 0x6c, 0x6f, 0x74, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e,
0x53, 0x6c, 0x6f, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x6c, 0x6f, 0x74, 0x52, 0x04, 0x73,
0x6c, 0x6f, 0x74, 0x12, 0xc2, 0x01, 0x0a, 0x27, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x70, 0x72,
0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18,
0x8a, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x6b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61,
0x72, 0x79, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
@@ -1843,343 +1859,354 @@ var file_google_ads_googleads_v16_common_segments_proto_rawDesc = []byte{
0x62, 0x70, 0x61, 0x67, 0x65, 0x88, 0x01, 0x01, 0x12, 0x18, 0x0a, 0x04, 0x77, 0x65, 0x65, 0x6b,
0x18, 0x82, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x43, 0x52, 0x04, 0x77, 0x65, 0x65, 0x6b, 0x88,
0x01, 0x01, 0x12, 0x18, 0x0a, 0x04, 0x79, 0x65, 0x61, 0x72, 0x18, 0x83, 0x01, 0x20, 0x01, 0x28,
- 0x05, 0x48, 0x44, 0x52, 0x04, 0x79, 0x65, 0x61, 0x72, 0x88, 0x01, 0x01, 0x12, 0x48, 0x0a, 0x1e,
- 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x63, 0x6f,
- 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x89,
- 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x45, 0x52, 0x1a, 0x73, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74,
- 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61,
- 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01, 0x12, 0x82, 0x01, 0x0a, 0x17, 0x73, 0x6b, 0x5f, 0x61, 0x64,
- 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x74, 0x79,
- 0x70, 0x65, 0x18, 0x8d, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4b, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
+ 0x05, 0x48, 0x44, 0x52, 0x04, 0x79, 0x65, 0x61, 0x72, 0x88, 0x01, 0x01, 0x12, 0x51, 0x0a, 0x23,
+ 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x66, 0x69,
+ 0x6e, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61,
+ 0x6c, 0x75, 0x65, 0x18, 0x89, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x45, 0x52, 0x1e, 0x73, 0x6b,
+ 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x46, 0x69, 0x6e, 0x65, 0x43, 0x6f, 0x6e,
+ 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01, 0x12,
+ 0x6c, 0x0a, 0x31, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b,
+ 0x5f, 0x72, 0x65, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f, 0x66,
+ 0x69, 0x6e, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76,
+ 0x61, 0x6c, 0x75, 0x65, 0x18, 0xbe, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x46, 0x52, 0x2b, 0x73,
+ 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x52, 0x65, 0x64, 0x69, 0x73, 0x74,
+ 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x46, 0x69, 0x6e, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65,
+ 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01, 0x12, 0x82, 0x01,
+ 0x0a, 0x17, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f,
+ 0x75, 0x73, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x8d, 0x01, 0x20, 0x01, 0x28, 0x0e,
+ 0x32, 0x4b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x55, 0x73, 0x65,
+ 0x72, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65,
+ 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x73,
+ 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x54, 0x79,
+ 0x70, 0x65, 0x12, 0x8f, 0x01, 0x0a, 0x1b, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74,
+ 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79,
+ 0x70, 0x65, 0x18, 0x8e, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x51, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e,
- 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e,
- 0x75, 0x6d, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x55, 0x73,
- 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x52, 0x13, 0x73, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77,
- 0x6f, 0x72, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x8f, 0x01, 0x0a, 0x1b,
- 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x61, 0x64,
- 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x8e, 0x01, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x51, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
- 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x41,
- 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53,
- 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x41, 0x64, 0x45, 0x76, 0x65, 0x6e,
- 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x16, 0x73, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f,
- 0x72, 0x6b, 0x41, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x73, 0x0a,
- 0x18, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x73,
- 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x18, 0x8f, 0x01, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
- 0x6f, 0x6e, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x6f,
- 0x75, 0x72, 0x63, 0x65, 0x41, 0x70, 0x70, 0x48, 0x46, 0x52, 0x14, 0x73, 0x6b, 0x41, 0x64, 0x4e,
- 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x41, 0x70, 0x70, 0x88,
- 0x01, 0x01, 0x12, 0xa6, 0x01, 0x0a, 0x20, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74,
- 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e,
- 0x5f, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x90, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5d,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e,
- 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x41, 0x74, 0x74, 0x72, 0x69,
- 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x45, 0x6e, 0x75, 0x6d,
- 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x41, 0x74, 0x74, 0x72,
- 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x52, 0x1c, 0x73,
- 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62,
- 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0xb7, 0x01, 0x0a, 0x25,
- 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x63, 0x6f,
- 0x61, 0x72, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f,
- 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x97, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x65, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x6b,
- 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x61, 0x72, 0x73, 0x65, 0x43,
- 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x45, 0x6e,
- 0x75, 0x6d, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f,
- 0x61, 0x72, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61,
- 0x6c, 0x75, 0x65, 0x52, 0x20, 0x73, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b,
- 0x43, 0x6f, 0x61, 0x72, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
- 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x42, 0x0a, 0x1b, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e,
- 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x6f,
- 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x98, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x47, 0x52, 0x17, 0x73,
- 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65,
- 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x8a, 0x01, 0x0a, 0x19, 0x73, 0x6b,
- 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x73, 0x6f, 0x75, 0x72,
- 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x99, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4f,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e,
- 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x6f, 0x75, 0x72, 0x63,
- 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65,
- 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52,
- 0x15, 0x73, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x6f, 0x75, 0x72,
- 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x55, 0x0a, 0x25, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f,
- 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x70, 0x6f, 0x73, 0x74, 0x62, 0x61, 0x63, 0x6b,
- 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18,
- 0x9a, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x48, 0x52, 0x20, 0x73, 0x6b, 0x41, 0x64, 0x4e, 0x65,
- 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x50, 0x6f, 0x73, 0x74, 0x62, 0x61, 0x63, 0x6b, 0x53, 0x65, 0x71,
- 0x75, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x88, 0x01, 0x01, 0x12, 0x77, 0x0a,
- 0x18, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x18, 0x8b, 0x01, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
- 0x6f, 0x6e, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x48, 0x49, 0x52, 0x16, 0x61, 0x73, 0x73,
- 0x65, 0x74, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x61, 0x72,
- 0x67, 0x65, 0x74, 0x88, 0x01, 0x01, 0x12, 0xc5, 0x01, 0x0a, 0x1e, 0x6e, 0x65, 0x77, 0x5f, 0x76,
- 0x65, 0x72, 0x73, 0x75, 0x73, 0x5f, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x69, 0x6e, 0x67, 0x5f,
- 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x18, 0xa0, 0x01, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x7f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
- 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x55, 0x73, 0x65, 0x72,
- 0x50, 0x72, 0x69, 0x6f, 0x72, 0x45, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x54,
- 0x79, 0x70, 0x65, 0x41, 0x6e, 0x64, 0x4c, 0x74, 0x76, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x45,
- 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x55, 0x73,
- 0x65, 0x72, 0x50, 0x72, 0x69, 0x6f, 0x72, 0x45, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x54, 0x79, 0x70, 0x65, 0x41, 0x6e, 0x64, 0x4c, 0x74, 0x76, 0x42, 0x75, 0x63, 0x6b, 0x65,
- 0x74, 0x52, 0x1b, 0x6e, 0x65, 0x77, 0x56, 0x65, 0x72, 0x73, 0x75, 0x73, 0x52, 0x65, 0x74, 0x75,
- 0x72, 0x6e, 0x69, 0x6e, 0x67, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x42, 0x16,
- 0x0a, 0x14, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x61, 0x63, 0x63, 0x6f,
- 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76,
- 0x69, 0x74, 0x79, 0x5f, 0x63, 0x69, 0x74, 0x79, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x61, 0x63, 0x74,
- 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x12, 0x0a,
- 0x10, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6e,
- 0x67, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x73,
- 0x74, 0x61, 0x74, 0x65, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61,
- 0x6c, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x42, 0x0b, 0x0a,
- 0x09, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x61,
- 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x61,
- 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x64,
- 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69,
- 0x67, 0x6e, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
- 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x63, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e,
- 0x61, 0x6d, 0x65, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
- 0x6f, 0x6e, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x07, 0x0a,
- 0x05, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74,
- 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x61, 0x69, 0x72, 0x70, 0x6f, 0x72, 0x74, 0x42, 0x14, 0x0a,
- 0x12, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x61, 0x6e,
- 0x74, 0x6f, 0x6e, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67,
- 0x65, 0x74, 0x5f, 0x63, 0x69, 0x74, 0x79, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x67, 0x65, 0x6f, 0x5f,
- 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x14,
- 0x0a, 0x12, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f,
- 0x75, 0x6e, 0x74, 0x79, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72,
- 0x67, 0x65, 0x74, 0x5f, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x42, 0x13, 0x0a, 0x11,
- 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x6d, 0x65, 0x74, 0x72,
- 0x6f, 0x42, 0x24, 0x0a, 0x22, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74,
- 0x5f, 0x6d, 0x6f, 0x73, 0x74, 0x5f, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x63, 0x5f, 0x6c,
- 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x67, 0x65, 0x6f, 0x5f,
- 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f,
- 0x64, 0x65, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65,
- 0x74, 0x5f, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x67,
- 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e,
- 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f,
- 0x62, 0x6f, 0x6f, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x64,
- 0x61, 0x79, 0x73, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x63, 0x65,
- 0x6e, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x68, 0x6f, 0x74, 0x65,
- 0x6c, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x5f, 0x69, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42,
- 0x0d, 0x0a, 0x0b, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x63, 0x69, 0x74, 0x79, 0x42, 0x0e,
- 0x0a, 0x0c, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x42, 0x10,
- 0x0a, 0x0e, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79,
- 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74,
- 0x68, 0x5f, 0x6f, 0x66, 0x5f, 0x73, 0x74, 0x61, 0x79, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x68, 0x6f,
- 0x74, 0x65, 0x6c, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x69, 0x64,
- 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65,
- 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x68, 0x6f, 0x75, 0x72, 0x42, 0x20, 0x0a, 0x1e, 0x5f, 0x69, 0x6e,
- 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x6e, 0x5f, 0x74, 0x68, 0x69,
- 0x73, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x08, 0x0a, 0x06, 0x5f,
- 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
- 0x72, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x69, 0x64, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x70,
- 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x6f,
- 0x72, 0x5f, 0x69, 0x64, 0x42, 0x1a, 0x0a, 0x18, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
- 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x31,
- 0x42, 0x1a, 0x0a, 0x18, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x61, 0x74,
- 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x32, 0x42, 0x1a, 0x0a, 0x18,
- 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
- 0x79, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x33, 0x42, 0x1a, 0x0a, 0x18, 0x5f, 0x70, 0x72, 0x6f,
- 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x6c, 0x65,
- 0x76, 0x65, 0x6c, 0x34, 0x42, 0x1a, 0x0a, 0x18, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
- 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x35,
- 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x62, 0x72, 0x61,
- 0x6e, 0x64, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63,
- 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75,
- 0x63, 0x74, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62,
- 0x75, 0x74, 0x65, 0x30, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
- 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74,
- 0x65, 0x31, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63,
- 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x32,
- 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x75, 0x73,
- 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x33, 0x42, 0x1c,
- 0x0a, 0x1a, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f,
- 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x34, 0x42, 0x15, 0x0a, 0x13,
- 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6c, 0x61,
- 0x62, 0x65, 0x6c, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
- 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x69, 0x64, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x70, 0x72, 0x6f, 0x64,
- 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x42, 0x16, 0x0a, 0x14,
- 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e,
- 0x74, 0x5f, 0x69, 0x64, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
- 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x70, 0x72,
- 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x42, 0x12, 0x0a, 0x10, 0x5f,
- 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6c, 0x31, 0x42,
- 0x12, 0x0a, 0x10, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65,
- 0x5f, 0x6c, 0x32, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
- 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6c, 0x33, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x70, 0x72, 0x6f, 0x64,
- 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6c, 0x34, 0x42, 0x12, 0x0a, 0x10, 0x5f,
- 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6c, 0x35, 0x42,
- 0x0a, 0x0a, 0x08, 0x5f, 0x71, 0x75, 0x61, 0x72, 0x74, 0x65, 0x72, 0x42, 0x15, 0x0a, 0x13, 0x5f,
- 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x73, 0x75, 0x62, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f,
- 0x72, 0x79, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65,
- 0x72, 0x6d, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x42, 0x07,
- 0x0a, 0x05, 0x5f, 0x77, 0x65, 0x65, 0x6b, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x79, 0x65, 0x61, 0x72,
- 0x42, 0x21, 0x0a, 0x1f, 0x5f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f,
- 0x72, 0x6b, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e,
+ 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x41, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70,
+ 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72,
+ 0x6b, 0x41, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x16, 0x73, 0x6b,
+ 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x41, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74,
+ 0x54, 0x79, 0x70, 0x65, 0x12, 0x73, 0x0a, 0x18, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65,
0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x61, 0x70, 0x70,
- 0x42, 0x1e, 0x0a, 0x1c, 0x5f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f,
- 0x72, 0x6b, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e,
- 0x42, 0x28, 0x0a, 0x26, 0x5f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f,
- 0x72, 0x6b, 0x5f, 0x70, 0x6f, 0x73, 0x74, 0x62, 0x61, 0x63, 0x6b, 0x5f, 0x73, 0x65, 0x71, 0x75,
- 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x61,
- 0x73, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
- 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x22, 0x95, 0x01, 0x0a, 0x07, 0x4b, 0x65, 0x79, 0x77,
- 0x6f, 0x72, 0x64, 0x12, 0x31, 0x0a, 0x12, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f,
- 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48,
- 0x00, 0x52, 0x10, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72,
- 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x40, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
- 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x49, 0x6e,
- 0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x61, 0x64, 0x5f,
- 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x22,
- 0xcc, 0x01, 0x0a, 0x1f, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69,
- 0x67, 0x6e, 0x41, 0x73, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61,
- 0x74, 0x75, 0x73, 0x12, 0x1f, 0x0a, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67,
- 0x6e, 0x88, 0x01, 0x01, 0x12, 0x7b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x63, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
- 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x43, 0x61, 0x6d, 0x70,
+ 0x18, 0x8f, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65,
+ 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x41, 0x70, 0x70, 0x48, 0x47,
+ 0x52, 0x14, 0x73, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x6f, 0x75,
+ 0x72, 0x63, 0x65, 0x41, 0x70, 0x70, 0x88, 0x01, 0x01, 0x12, 0xa6, 0x01, 0x0a, 0x20, 0x73, 0x6b,
+ 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x61, 0x74, 0x74, 0x72,
+ 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x90,
+ 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
+ 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f,
+ 0x72, 0x6b, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x72, 0x65,
+ 0x64, 0x69, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77,
+ 0x6f, 0x72, 0x6b, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x72,
+ 0x65, 0x64, 0x69, 0x74, 0x52, 0x1c, 0x73, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72,
+ 0x6b, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x72, 0x65, 0x64,
+ 0x69, 0x74, 0x12, 0xb7, 0x01, 0x0a, 0x25, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74,
+ 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x63, 0x6f, 0x61, 0x72, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76,
+ 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x97, 0x01, 0x20,
+ 0x01, 0x28, 0x0e, 0x32, 0x65, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
+ 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b,
+ 0x43, 0x6f, 0x61, 0x72, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
+ 0x56, 0x61, 0x6c, 0x75, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65,
+ 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x61, 0x72, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65,
+ 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x20, 0x73, 0x6b, 0x41, 0x64,
+ 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x61, 0x72, 0x73, 0x65, 0x43, 0x6f, 0x6e,
+ 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x42, 0x0a, 0x1b,
+ 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x73, 0x6f,
+ 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x98, 0x01, 0x20, 0x01,
+ 0x28, 0x09, 0x48, 0x48, 0x52, 0x17, 0x73, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72,
+ 0x6b, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x88, 0x01, 0x01,
+ 0x12, 0x8a, 0x01, 0x0a, 0x19, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f,
+ 0x72, 0x6b, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x99,
+ 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
+ 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f,
+ 0x72, 0x6b, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d,
+ 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x6f, 0x75, 0x72,
+ 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x15, 0x73, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77,
+ 0x6f, 0x72, 0x6b, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x55, 0x0a,
+ 0x25, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x70,
+ 0x6f, 0x73, 0x74, 0x62, 0x61, 0x63, 0x6b, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65,
+ 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x9a, 0x01, 0x20, 0x01, 0x28, 0x03, 0x48, 0x49, 0x52,
+ 0x20, 0x73, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x50, 0x6f, 0x73, 0x74,
+ 0x62, 0x61, 0x63, 0x6b, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x64, 0x65,
+ 0x78, 0x88, 0x01, 0x01, 0x12, 0x77, 0x0a, 0x18, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x6e,
+ 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74,
+ 0x18, 0x8b, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x49,
+ 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74,
+ 0x48, 0x4a, 0x52, 0x16, 0x61, 0x73, 0x73, 0x65, 0x74, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x88, 0x01, 0x01, 0x12, 0xc5, 0x01,
+ 0x0a, 0x1e, 0x6e, 0x65, 0x77, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x75, 0x73, 0x5f, 0x72, 0x65, 0x74,
+ 0x75, 0x72, 0x6e, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73,
+ 0x18, 0xa0, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x7f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74,
+ 0x69, 0x6e, 0x67, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x69, 0x6f, 0x72, 0x45, 0x6e, 0x67, 0x61,
+ 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x41, 0x6e, 0x64, 0x4c, 0x74, 0x76,
+ 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65,
+ 0x72, 0x74, 0x69, 0x6e, 0x67, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x69, 0x6f, 0x72, 0x45, 0x6e,
+ 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x41, 0x6e, 0x64, 0x4c,
+ 0x74, 0x76, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x52, 0x1b, 0x6e, 0x65, 0x77, 0x56, 0x65, 0x72,
+ 0x73, 0x75, 0x73, 0x52, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x69, 0x6e, 0x67, 0x43, 0x75, 0x73, 0x74,
+ 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69,
+ 0x74, 0x79, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x10, 0x0a,
+ 0x0e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x63, 0x69, 0x74, 0x79, 0x42,
+ 0x13, 0x0a, 0x11, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x63, 0x6f, 0x75,
+ 0x6e, 0x74, 0x72, 0x79, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74,
+ 0x79, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x61, 0x63, 0x74,
+ 0x69, 0x76, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x42, 0x17, 0x0a, 0x15, 0x5f,
+ 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74,
+ 0x79, 0x5f, 0x69, 0x64, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75,
+ 0x70, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75,
+ 0x70, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x61, 0x75, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e,
+ 0x73, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x42, 0x0b, 0x0a, 0x09,
+ 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x63, 0x6f,
+ 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42,
+ 0x19, 0x0a, 0x17, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x63,
+ 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74,
+ 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x15, 0x0a,
+ 0x13, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x61, 0x69, 0x72,
+ 0x70, 0x6f, 0x72, 0x74, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72,
+ 0x67, 0x65, 0x74, 0x5f, 0x63, 0x61, 0x6e, 0x74, 0x6f, 0x6e, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x67,
+ 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x69, 0x74, 0x79, 0x42, 0x15,
+ 0x0a, 0x13, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f,
+ 0x75, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61,
+ 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x79, 0x42, 0x16, 0x0a, 0x14, 0x5f,
+ 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x64, 0x69, 0x73, 0x74, 0x72,
+ 0x69, 0x63, 0x74, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67,
+ 0x65, 0x74, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x6f, 0x42, 0x24, 0x0a, 0x22, 0x5f, 0x67, 0x65, 0x6f,
+ 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x6d, 0x6f, 0x73, 0x74, 0x5f, 0x73, 0x70, 0x65,
+ 0x63, 0x69, 0x66, 0x69, 0x63, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x19,
+ 0x0a, 0x17, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x70, 0x6f,
+ 0x73, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x67, 0x65,
+ 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63,
+ 0x65, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74,
+ 0x5f, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x67, 0x65, 0x6f, 0x5f,
+ 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x42, 0x1c, 0x0a, 0x1a,
+ 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x62, 0x6f, 0x6f, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x77,
+ 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x5f, 0x64, 0x61, 0x79, 0x73, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x68,
+ 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x42, 0x16,
+ 0x0a, 0x14, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x5f, 0x69,
+ 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x42, 0x0d, 0x0a, 0x0b, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c,
+ 0x5f, 0x63, 0x69, 0x74, 0x79, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f,
+ 0x63, 0x6c, 0x61, 0x73, 0x73, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f,
+ 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x68, 0x6f, 0x74, 0x65,
+ 0x6c, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x5f, 0x6f, 0x66, 0x5f, 0x73, 0x74, 0x61, 0x79,
+ 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f,
+ 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x68, 0x6f, 0x74, 0x65,
+ 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x68, 0x6f, 0x75, 0x72,
+ 0x42, 0x20, 0x0a, 0x1e, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x5f, 0x6f, 0x6e, 0x5f, 0x74, 0x68, 0x69, 0x73, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
+ 0x6f, 0x6e, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x42, 0x13, 0x0a, 0x11,
+ 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x5f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x69,
+ 0x64, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x61, 0x67,
+ 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x42, 0x1a, 0x0a, 0x18, 0x5f,
+ 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79,
+ 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x31, 0x42, 0x1a, 0x0a, 0x18, 0x5f, 0x70, 0x72, 0x6f, 0x64,
+ 0x75, 0x63, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x6c, 0x65, 0x76,
+ 0x65, 0x6c, 0x32, 0x42, 0x1a, 0x0a, 0x18, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
+ 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x33, 0x42,
+ 0x1a, 0x0a, 0x18, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65,
+ 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x34, 0x42, 0x1a, 0x0a, 0x18, 0x5f,
+ 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79,
+ 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x35, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x70, 0x72, 0x6f, 0x64,
+ 0x75, 0x63, 0x74, 0x5f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x70, 0x72,
+ 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x1c, 0x0a,
+ 0x1a, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d,
+ 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x30, 0x42, 0x1c, 0x0a, 0x1a, 0x5f,
+ 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61,
+ 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x31, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x70, 0x72,
+ 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74, 0x74,
+ 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x32, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x70, 0x72, 0x6f, 0x64,
+ 0x75, 0x63, 0x74, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69,
+ 0x62, 0x75, 0x74, 0x65, 0x33, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
+ 0x74, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75,
+ 0x74, 0x65, 0x34, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
+ 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x70,
+ 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x69, 0x64, 0x42, 0x13,
+ 0x0a, 0x11, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x75,
+ 0x61, 0x67, 0x65, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
+ 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x42, 0x13, 0x0a, 0x11, 0x5f,
+ 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x69, 0x64,
+ 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x69, 0x74,
+ 0x6c, 0x65, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74,
+ 0x79, 0x70, 0x65, 0x5f, 0x6c, 0x31, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75,
+ 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6c, 0x32, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x70,
+ 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6c, 0x33, 0x42, 0x12,
+ 0x0a, 0x10, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f,
+ 0x6c, 0x34, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74,
+ 0x79, 0x70, 0x65, 0x5f, 0x6c, 0x35, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x71, 0x75, 0x61, 0x72, 0x74,
+ 0x65, 0x72, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x73, 0x75,
+ 0x62, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x73, 0x65,
+ 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x77, 0x65,
+ 0x62, 0x70, 0x61, 0x67, 0x65, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x77, 0x65, 0x65, 0x6b, 0x42, 0x07,
+ 0x0a, 0x05, 0x5f, 0x79, 0x65, 0x61, 0x72, 0x42, 0x26, 0x0a, 0x24, 0x5f, 0x73, 0x6b, 0x5f, 0x61,
+ 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x66, 0x69, 0x6e, 0x65, 0x5f, 0x63,
+ 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42,
+ 0x34, 0x0a, 0x32, 0x5f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72,
+ 0x6b, 0x5f, 0x72, 0x65, 0x64, 0x69, 0x73, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x64, 0x5f,
+ 0x66, 0x69, 0x6e, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f,
+ 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f,
+ 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x61,
+ 0x70, 0x70, 0x42, 0x1e, 0x0a, 0x1c, 0x5f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74,
+ 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x64, 0x6f, 0x6d, 0x61,
+ 0x69, 0x6e, 0x42, 0x28, 0x0a, 0x26, 0x5f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74,
+ 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x70, 0x6f, 0x73, 0x74, 0x62, 0x61, 0x63, 0x6b, 0x5f, 0x73, 0x65,
+ 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x42, 0x1b, 0x0a, 0x19,
+ 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x22, 0x95, 0x01, 0x0a, 0x07, 0x4b, 0x65,
+ 0x79, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x31, 0x0a, 0x12, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75,
+ 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28,
+ 0x09, 0x48, 0x00, 0x52, 0x10, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74,
+ 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x40, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f,
+ 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
+ 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64,
+ 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x61,
+ 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f,
+ 0x6e, 0x22, 0xcc, 0x01, 0x0a, 0x1f, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x43, 0x61, 0x6d, 0x70,
0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74,
- 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
- 0x73, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x22, 0x69,
- 0x0a, 0x16, 0x41, 0x73, 0x73, 0x65, 0x74, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x73, 0x73, 0x65,
- 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x12, 0x39,
- 0x0a, 0x19, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x6e,
- 0x5f, 0x74, 0x68, 0x69, 0x73, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x16, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x6e,
- 0x54, 0x68, 0x69, 0x73, 0x41, 0x73, 0x73, 0x65, 0x74, 0x22, 0x78, 0x0a, 0x14, 0x53, 0x6b, 0x41,
- 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x41, 0x70,
- 0x70, 0x12, 0x40, 0x0a, 0x1b, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f,
- 0x72, 0x6b, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x69, 0x64,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x16, 0x73, 0x6b, 0x41, 0x64, 0x4e, 0x65,
- 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x41, 0x70, 0x70, 0x49, 0x64,
- 0x88, 0x01, 0x01, 0x42, 0x1e, 0x0a, 0x1c, 0x5f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65,
- 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x61, 0x70, 0x70,
- 0x5f, 0x69, 0x64, 0x42, 0xed, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0d, 0x53, 0x65, 0x67,
- 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
- 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d,
- 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d,
- 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1f, 0x0a, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67,
+ 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61,
+ 0x69, 0x67, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x7b, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
+ 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x63, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
+ 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x43, 0x61,
+ 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x75, 0x64, 0x67,
+ 0x65, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x6f, 0x63, 0x69,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61,
+ 0x74, 0x75, 0x73, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e,
+ 0x22, 0x69, 0x0a, 0x16, 0x41, 0x73, 0x73, 0x65, 0x74, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x73,
+ 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74,
+ 0x12, 0x39, 0x0a, 0x19, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
+ 0x6f, 0x6e, 0x5f, 0x74, 0x68, 0x69, 0x73, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20,
+ 0x01, 0x28, 0x08, 0x52, 0x16, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x4f, 0x6e, 0x54, 0x68, 0x69, 0x73, 0x41, 0x73, 0x73, 0x65, 0x74, 0x22, 0x78, 0x0a, 0x14, 0x53,
+ 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65,
+ 0x41, 0x70, 0x70, 0x12, 0x40, 0x0a, 0x1b, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74,
+ 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f,
+ 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x16, 0x73, 0x6b, 0x41, 0x64,
+ 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x41, 0x70, 0x70,
+ 0x49, 0x64, 0x88, 0x01, 0x01, 0x42, 0x1e, 0x0a, 0x1c, 0x5f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f,
+ 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x61,
+ 0x70, 0x70, 0x5f, 0x69, 0x64, 0x42, 0xed, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0d, 0x53,
+ 0x65, 0x67, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
+ 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63,
+ 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea,
+ 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43,
+ 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_segments_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_segments_proto_rawDescData = file_google_ads_googleads_v16_common_segments_proto_rawDesc
+ file_google_ads_googleads_v17_common_segments_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_segments_proto_rawDescData = file_google_ads_googleads_v17_common_segments_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_segments_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_segments_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_segments_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_segments_proto_rawDescData)
+func file_google_ads_googleads_v17_common_segments_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_segments_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_segments_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_segments_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_segments_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_common_segments_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
-var file_google_ads_googleads_v16_common_segments_proto_goTypes = []interface{}{
- (*Segments)(nil), // 0: google.ads.googleads.v16.common.Segments
- (*Keyword)(nil), // 1: google.ads.googleads.v16.common.Keyword
- (*BudgetCampaignAssociationStatus)(nil), // 2: google.ads.googleads.v16.common.BudgetCampaignAssociationStatus
- (*AssetInteractionTarget)(nil), // 3: google.ads.googleads.v16.common.AssetInteractionTarget
- (*SkAdNetworkSourceApp)(nil), // 4: google.ads.googleads.v16.common.SkAdNetworkSourceApp
- (enums.AdDestinationTypeEnum_AdDestinationType)(0), // 5: google.ads.googleads.v16.enums.AdDestinationTypeEnum.AdDestinationType
- (enums.AdNetworkTypeEnum_AdNetworkType)(0), // 6: google.ads.googleads.v16.enums.AdNetworkTypeEnum.AdNetworkType
- (enums.ClickTypeEnum_ClickType)(0), // 7: google.ads.googleads.v16.enums.ClickTypeEnum.ClickType
- (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 8: google.ads.googleads.v16.enums.ConversionActionCategoryEnum.ConversionActionCategory
- (enums.ConversionAttributionEventTypeEnum_ConversionAttributionEventType)(0), // 9: google.ads.googleads.v16.enums.ConversionAttributionEventTypeEnum.ConversionAttributionEventType
- (enums.ConversionLagBucketEnum_ConversionLagBucket)(0), // 10: google.ads.googleads.v16.enums.ConversionLagBucketEnum.ConversionLagBucket
- (enums.ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket)(0), // 11: google.ads.googleads.v16.enums.ConversionOrAdjustmentLagBucketEnum.ConversionOrAdjustmentLagBucket
- (enums.DayOfWeekEnum_DayOfWeek)(0), // 12: google.ads.googleads.v16.enums.DayOfWeekEnum.DayOfWeek
- (enums.DeviceEnum_Device)(0), // 13: google.ads.googleads.v16.enums.DeviceEnum.Device
- (enums.ExternalConversionSourceEnum_ExternalConversionSource)(0), // 14: google.ads.googleads.v16.enums.ExternalConversionSourceEnum.ExternalConversionSource
- (enums.HotelDateSelectionTypeEnum_HotelDateSelectionType)(0), // 15: google.ads.googleads.v16.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType
- (enums.HotelRateTypeEnum_HotelRateType)(0), // 16: google.ads.googleads.v16.enums.HotelRateTypeEnum.HotelRateType
- (enums.HotelPriceBucketEnum_HotelPriceBucket)(0), // 17: google.ads.googleads.v16.enums.HotelPriceBucketEnum.HotelPriceBucket
- (enums.MonthOfYearEnum_MonthOfYear)(0), // 18: google.ads.googleads.v16.enums.MonthOfYearEnum.MonthOfYear
- (enums.PlaceholderTypeEnum_PlaceholderType)(0), // 19: google.ads.googleads.v16.enums.PlaceholderTypeEnum.PlaceholderType
- (enums.ProductChannelEnum_ProductChannel)(0), // 20: google.ads.googleads.v16.enums.ProductChannelEnum.ProductChannel
- (enums.ProductChannelExclusivityEnum_ProductChannelExclusivity)(0), // 21: google.ads.googleads.v16.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity
- (enums.ProductConditionEnum_ProductCondition)(0), // 22: google.ads.googleads.v16.enums.ProductConditionEnum.ProductCondition
- (enums.RecommendationTypeEnum_RecommendationType)(0), // 23: google.ads.googleads.v16.enums.RecommendationTypeEnum.RecommendationType
- (enums.SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType)(0), // 24: google.ads.googleads.v16.enums.SearchEngineResultsPageTypeEnum.SearchEngineResultsPageType
- (enums.SearchTermMatchTypeEnum_SearchTermMatchType)(0), // 25: google.ads.googleads.v16.enums.SearchTermMatchTypeEnum.SearchTermMatchType
- (enums.SlotEnum_Slot)(0), // 26: google.ads.googleads.v16.enums.SlotEnum.Slot
- (enums.ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension)(0), // 27: google.ads.googleads.v16.enums.ConversionValueRulePrimaryDimensionEnum.ConversionValueRulePrimaryDimension
- (enums.SkAdNetworkUserTypeEnum_SkAdNetworkUserType)(0), // 28: google.ads.googleads.v16.enums.SkAdNetworkUserTypeEnum.SkAdNetworkUserType
- (enums.SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType)(0), // 29: google.ads.googleads.v16.enums.SkAdNetworkAdEventTypeEnum.SkAdNetworkAdEventType
- (enums.SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit)(0), // 30: google.ads.googleads.v16.enums.SkAdNetworkAttributionCreditEnum.SkAdNetworkAttributionCredit
- (enums.SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue)(0), // 31: google.ads.googleads.v16.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue
- (enums.SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType)(0), // 32: google.ads.googleads.v16.enums.SkAdNetworkSourceTypeEnum.SkAdNetworkSourceType
- (enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket)(0), // 33: google.ads.googleads.v16.enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum.ConvertingUserPriorEngagementTypeAndLtvBucket
- (*KeywordInfo)(nil), // 34: google.ads.googleads.v16.common.KeywordInfo
- (enums.BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus)(0), // 35: google.ads.googleads.v16.enums.BudgetCampaignAssociationStatusEnum.BudgetCampaignAssociationStatus
-}
-var file_google_ads_googleads_v16_common_segments_proto_depIdxs = []int32{
- 5, // 0: google.ads.googleads.v16.common.Segments.ad_destination_type:type_name -> google.ads.googleads.v16.enums.AdDestinationTypeEnum.AdDestinationType
- 6, // 1: google.ads.googleads.v16.common.Segments.ad_network_type:type_name -> google.ads.googleads.v16.enums.AdNetworkTypeEnum.AdNetworkType
- 2, // 2: google.ads.googleads.v16.common.Segments.budget_campaign_association_status:type_name -> google.ads.googleads.v16.common.BudgetCampaignAssociationStatus
- 7, // 3: google.ads.googleads.v16.common.Segments.click_type:type_name -> google.ads.googleads.v16.enums.ClickTypeEnum.ClickType
- 8, // 4: google.ads.googleads.v16.common.Segments.conversion_action_category:type_name -> google.ads.googleads.v16.enums.ConversionActionCategoryEnum.ConversionActionCategory
- 9, // 5: google.ads.googleads.v16.common.Segments.conversion_attribution_event_type:type_name -> google.ads.googleads.v16.enums.ConversionAttributionEventTypeEnum.ConversionAttributionEventType
- 10, // 6: google.ads.googleads.v16.common.Segments.conversion_lag_bucket:type_name -> google.ads.googleads.v16.enums.ConversionLagBucketEnum.ConversionLagBucket
- 11, // 7: google.ads.googleads.v16.common.Segments.conversion_or_adjustment_lag_bucket:type_name -> google.ads.googleads.v16.enums.ConversionOrAdjustmentLagBucketEnum.ConversionOrAdjustmentLagBucket
- 12, // 8: google.ads.googleads.v16.common.Segments.day_of_week:type_name -> google.ads.googleads.v16.enums.DayOfWeekEnum.DayOfWeek
- 13, // 9: google.ads.googleads.v16.common.Segments.device:type_name -> google.ads.googleads.v16.enums.DeviceEnum.Device
- 14, // 10: google.ads.googleads.v16.common.Segments.external_conversion_source:type_name -> google.ads.googleads.v16.enums.ExternalConversionSourceEnum.ExternalConversionSource
- 12, // 11: google.ads.googleads.v16.common.Segments.hotel_check_in_day_of_week:type_name -> google.ads.googleads.v16.enums.DayOfWeekEnum.DayOfWeek
- 15, // 12: google.ads.googleads.v16.common.Segments.hotel_date_selection_type:type_name -> google.ads.googleads.v16.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType
- 16, // 13: google.ads.googleads.v16.common.Segments.hotel_rate_type:type_name -> google.ads.googleads.v16.enums.HotelRateTypeEnum.HotelRateType
- 17, // 14: google.ads.googleads.v16.common.Segments.hotel_price_bucket:type_name -> google.ads.googleads.v16.enums.HotelPriceBucketEnum.HotelPriceBucket
- 1, // 15: google.ads.googleads.v16.common.Segments.keyword:type_name -> google.ads.googleads.v16.common.Keyword
- 18, // 16: google.ads.googleads.v16.common.Segments.month_of_year:type_name -> google.ads.googleads.v16.enums.MonthOfYearEnum.MonthOfYear
- 19, // 17: google.ads.googleads.v16.common.Segments.placeholder_type:type_name -> google.ads.googleads.v16.enums.PlaceholderTypeEnum.PlaceholderType
- 20, // 18: google.ads.googleads.v16.common.Segments.product_channel:type_name -> google.ads.googleads.v16.enums.ProductChannelEnum.ProductChannel
- 21, // 19: google.ads.googleads.v16.common.Segments.product_channel_exclusivity:type_name -> google.ads.googleads.v16.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity
- 22, // 20: google.ads.googleads.v16.common.Segments.product_condition:type_name -> google.ads.googleads.v16.enums.ProductConditionEnum.ProductCondition
- 23, // 21: google.ads.googleads.v16.common.Segments.recommendation_type:type_name -> google.ads.googleads.v16.enums.RecommendationTypeEnum.RecommendationType
- 24, // 22: google.ads.googleads.v16.common.Segments.search_engine_results_page_type:type_name -> google.ads.googleads.v16.enums.SearchEngineResultsPageTypeEnum.SearchEngineResultsPageType
- 25, // 23: google.ads.googleads.v16.common.Segments.search_term_match_type:type_name -> google.ads.googleads.v16.enums.SearchTermMatchTypeEnum.SearchTermMatchType
- 26, // 24: google.ads.googleads.v16.common.Segments.slot:type_name -> google.ads.googleads.v16.enums.SlotEnum.Slot
- 27, // 25: google.ads.googleads.v16.common.Segments.conversion_value_rule_primary_dimension:type_name -> google.ads.googleads.v16.enums.ConversionValueRulePrimaryDimensionEnum.ConversionValueRulePrimaryDimension
- 28, // 26: google.ads.googleads.v16.common.Segments.sk_ad_network_user_type:type_name -> google.ads.googleads.v16.enums.SkAdNetworkUserTypeEnum.SkAdNetworkUserType
- 29, // 27: google.ads.googleads.v16.common.Segments.sk_ad_network_ad_event_type:type_name -> google.ads.googleads.v16.enums.SkAdNetworkAdEventTypeEnum.SkAdNetworkAdEventType
- 4, // 28: google.ads.googleads.v16.common.Segments.sk_ad_network_source_app:type_name -> google.ads.googleads.v16.common.SkAdNetworkSourceApp
- 30, // 29: google.ads.googleads.v16.common.Segments.sk_ad_network_attribution_credit:type_name -> google.ads.googleads.v16.enums.SkAdNetworkAttributionCreditEnum.SkAdNetworkAttributionCredit
- 31, // 30: google.ads.googleads.v16.common.Segments.sk_ad_network_coarse_conversion_value:type_name -> google.ads.googleads.v16.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue
- 32, // 31: google.ads.googleads.v16.common.Segments.sk_ad_network_source_type:type_name -> google.ads.googleads.v16.enums.SkAdNetworkSourceTypeEnum.SkAdNetworkSourceType
- 3, // 32: google.ads.googleads.v16.common.Segments.asset_interaction_target:type_name -> google.ads.googleads.v16.common.AssetInteractionTarget
- 33, // 33: google.ads.googleads.v16.common.Segments.new_versus_returning_customers:type_name -> google.ads.googleads.v16.enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum.ConvertingUserPriorEngagementTypeAndLtvBucket
- 34, // 34: google.ads.googleads.v16.common.Keyword.info:type_name -> google.ads.googleads.v16.common.KeywordInfo
- 35, // 35: google.ads.googleads.v16.common.BudgetCampaignAssociationStatus.status:type_name -> google.ads.googleads.v16.enums.BudgetCampaignAssociationStatusEnum.BudgetCampaignAssociationStatus
+ return file_google_ads_googleads_v17_common_segments_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_common_segments_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
+var file_google_ads_googleads_v17_common_segments_proto_goTypes = []interface{}{
+ (*Segments)(nil), // 0: google.ads.googleads.v17.common.Segments
+ (*Keyword)(nil), // 1: google.ads.googleads.v17.common.Keyword
+ (*BudgetCampaignAssociationStatus)(nil), // 2: google.ads.googleads.v17.common.BudgetCampaignAssociationStatus
+ (*AssetInteractionTarget)(nil), // 3: google.ads.googleads.v17.common.AssetInteractionTarget
+ (*SkAdNetworkSourceApp)(nil), // 4: google.ads.googleads.v17.common.SkAdNetworkSourceApp
+ (enums.AdDestinationTypeEnum_AdDestinationType)(0), // 5: google.ads.googleads.v17.enums.AdDestinationTypeEnum.AdDestinationType
+ (enums.AdNetworkTypeEnum_AdNetworkType)(0), // 6: google.ads.googleads.v17.enums.AdNetworkTypeEnum.AdNetworkType
+ (enums.ClickTypeEnum_ClickType)(0), // 7: google.ads.googleads.v17.enums.ClickTypeEnum.ClickType
+ (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 8: google.ads.googleads.v17.enums.ConversionActionCategoryEnum.ConversionActionCategory
+ (enums.ConversionAttributionEventTypeEnum_ConversionAttributionEventType)(0), // 9: google.ads.googleads.v17.enums.ConversionAttributionEventTypeEnum.ConversionAttributionEventType
+ (enums.ConversionLagBucketEnum_ConversionLagBucket)(0), // 10: google.ads.googleads.v17.enums.ConversionLagBucketEnum.ConversionLagBucket
+ (enums.ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket)(0), // 11: google.ads.googleads.v17.enums.ConversionOrAdjustmentLagBucketEnum.ConversionOrAdjustmentLagBucket
+ (enums.DayOfWeekEnum_DayOfWeek)(0), // 12: google.ads.googleads.v17.enums.DayOfWeekEnum.DayOfWeek
+ (enums.DeviceEnum_Device)(0), // 13: google.ads.googleads.v17.enums.DeviceEnum.Device
+ (enums.ExternalConversionSourceEnum_ExternalConversionSource)(0), // 14: google.ads.googleads.v17.enums.ExternalConversionSourceEnum.ExternalConversionSource
+ (enums.HotelDateSelectionTypeEnum_HotelDateSelectionType)(0), // 15: google.ads.googleads.v17.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType
+ (enums.HotelRateTypeEnum_HotelRateType)(0), // 16: google.ads.googleads.v17.enums.HotelRateTypeEnum.HotelRateType
+ (enums.HotelPriceBucketEnum_HotelPriceBucket)(0), // 17: google.ads.googleads.v17.enums.HotelPriceBucketEnum.HotelPriceBucket
+ (enums.MonthOfYearEnum_MonthOfYear)(0), // 18: google.ads.googleads.v17.enums.MonthOfYearEnum.MonthOfYear
+ (enums.PlaceholderTypeEnum_PlaceholderType)(0), // 19: google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType
+ (enums.ProductChannelEnum_ProductChannel)(0), // 20: google.ads.googleads.v17.enums.ProductChannelEnum.ProductChannel
+ (enums.ProductChannelExclusivityEnum_ProductChannelExclusivity)(0), // 21: google.ads.googleads.v17.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity
+ (enums.ProductConditionEnum_ProductCondition)(0), // 22: google.ads.googleads.v17.enums.ProductConditionEnum.ProductCondition
+ (enums.RecommendationTypeEnum_RecommendationType)(0), // 23: google.ads.googleads.v17.enums.RecommendationTypeEnum.RecommendationType
+ (enums.SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType)(0), // 24: google.ads.googleads.v17.enums.SearchEngineResultsPageTypeEnum.SearchEngineResultsPageType
+ (enums.SearchTermMatchTypeEnum_SearchTermMatchType)(0), // 25: google.ads.googleads.v17.enums.SearchTermMatchTypeEnum.SearchTermMatchType
+ (enums.SlotEnum_Slot)(0), // 26: google.ads.googleads.v17.enums.SlotEnum.Slot
+ (enums.ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension)(0), // 27: google.ads.googleads.v17.enums.ConversionValueRulePrimaryDimensionEnum.ConversionValueRulePrimaryDimension
+ (enums.SkAdNetworkUserTypeEnum_SkAdNetworkUserType)(0), // 28: google.ads.googleads.v17.enums.SkAdNetworkUserTypeEnum.SkAdNetworkUserType
+ (enums.SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType)(0), // 29: google.ads.googleads.v17.enums.SkAdNetworkAdEventTypeEnum.SkAdNetworkAdEventType
+ (enums.SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit)(0), // 30: google.ads.googleads.v17.enums.SkAdNetworkAttributionCreditEnum.SkAdNetworkAttributionCredit
+ (enums.SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue)(0), // 31: google.ads.googleads.v17.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue
+ (enums.SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType)(0), // 32: google.ads.googleads.v17.enums.SkAdNetworkSourceTypeEnum.SkAdNetworkSourceType
+ (enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket)(0), // 33: google.ads.googleads.v17.enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum.ConvertingUserPriorEngagementTypeAndLtvBucket
+ (*KeywordInfo)(nil), // 34: google.ads.googleads.v17.common.KeywordInfo
+ (enums.BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus)(0), // 35: google.ads.googleads.v17.enums.BudgetCampaignAssociationStatusEnum.BudgetCampaignAssociationStatus
+}
+var file_google_ads_googleads_v17_common_segments_proto_depIdxs = []int32{
+ 5, // 0: google.ads.googleads.v17.common.Segments.ad_destination_type:type_name -> google.ads.googleads.v17.enums.AdDestinationTypeEnum.AdDestinationType
+ 6, // 1: google.ads.googleads.v17.common.Segments.ad_network_type:type_name -> google.ads.googleads.v17.enums.AdNetworkTypeEnum.AdNetworkType
+ 2, // 2: google.ads.googleads.v17.common.Segments.budget_campaign_association_status:type_name -> google.ads.googleads.v17.common.BudgetCampaignAssociationStatus
+ 7, // 3: google.ads.googleads.v17.common.Segments.click_type:type_name -> google.ads.googleads.v17.enums.ClickTypeEnum.ClickType
+ 8, // 4: google.ads.googleads.v17.common.Segments.conversion_action_category:type_name -> google.ads.googleads.v17.enums.ConversionActionCategoryEnum.ConversionActionCategory
+ 9, // 5: google.ads.googleads.v17.common.Segments.conversion_attribution_event_type:type_name -> google.ads.googleads.v17.enums.ConversionAttributionEventTypeEnum.ConversionAttributionEventType
+ 10, // 6: google.ads.googleads.v17.common.Segments.conversion_lag_bucket:type_name -> google.ads.googleads.v17.enums.ConversionLagBucketEnum.ConversionLagBucket
+ 11, // 7: google.ads.googleads.v17.common.Segments.conversion_or_adjustment_lag_bucket:type_name -> google.ads.googleads.v17.enums.ConversionOrAdjustmentLagBucketEnum.ConversionOrAdjustmentLagBucket
+ 12, // 8: google.ads.googleads.v17.common.Segments.day_of_week:type_name -> google.ads.googleads.v17.enums.DayOfWeekEnum.DayOfWeek
+ 13, // 9: google.ads.googleads.v17.common.Segments.device:type_name -> google.ads.googleads.v17.enums.DeviceEnum.Device
+ 14, // 10: google.ads.googleads.v17.common.Segments.external_conversion_source:type_name -> google.ads.googleads.v17.enums.ExternalConversionSourceEnum.ExternalConversionSource
+ 12, // 11: google.ads.googleads.v17.common.Segments.hotel_check_in_day_of_week:type_name -> google.ads.googleads.v17.enums.DayOfWeekEnum.DayOfWeek
+ 15, // 12: google.ads.googleads.v17.common.Segments.hotel_date_selection_type:type_name -> google.ads.googleads.v17.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType
+ 16, // 13: google.ads.googleads.v17.common.Segments.hotel_rate_type:type_name -> google.ads.googleads.v17.enums.HotelRateTypeEnum.HotelRateType
+ 17, // 14: google.ads.googleads.v17.common.Segments.hotel_price_bucket:type_name -> google.ads.googleads.v17.enums.HotelPriceBucketEnum.HotelPriceBucket
+ 1, // 15: google.ads.googleads.v17.common.Segments.keyword:type_name -> google.ads.googleads.v17.common.Keyword
+ 18, // 16: google.ads.googleads.v17.common.Segments.month_of_year:type_name -> google.ads.googleads.v17.enums.MonthOfYearEnum.MonthOfYear
+ 19, // 17: google.ads.googleads.v17.common.Segments.placeholder_type:type_name -> google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType
+ 20, // 18: google.ads.googleads.v17.common.Segments.product_channel:type_name -> google.ads.googleads.v17.enums.ProductChannelEnum.ProductChannel
+ 21, // 19: google.ads.googleads.v17.common.Segments.product_channel_exclusivity:type_name -> google.ads.googleads.v17.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity
+ 22, // 20: google.ads.googleads.v17.common.Segments.product_condition:type_name -> google.ads.googleads.v17.enums.ProductConditionEnum.ProductCondition
+ 23, // 21: google.ads.googleads.v17.common.Segments.recommendation_type:type_name -> google.ads.googleads.v17.enums.RecommendationTypeEnum.RecommendationType
+ 24, // 22: google.ads.googleads.v17.common.Segments.search_engine_results_page_type:type_name -> google.ads.googleads.v17.enums.SearchEngineResultsPageTypeEnum.SearchEngineResultsPageType
+ 25, // 23: google.ads.googleads.v17.common.Segments.search_term_match_type:type_name -> google.ads.googleads.v17.enums.SearchTermMatchTypeEnum.SearchTermMatchType
+ 26, // 24: google.ads.googleads.v17.common.Segments.slot:type_name -> google.ads.googleads.v17.enums.SlotEnum.Slot
+ 27, // 25: google.ads.googleads.v17.common.Segments.conversion_value_rule_primary_dimension:type_name -> google.ads.googleads.v17.enums.ConversionValueRulePrimaryDimensionEnum.ConversionValueRulePrimaryDimension
+ 28, // 26: google.ads.googleads.v17.common.Segments.sk_ad_network_user_type:type_name -> google.ads.googleads.v17.enums.SkAdNetworkUserTypeEnum.SkAdNetworkUserType
+ 29, // 27: google.ads.googleads.v17.common.Segments.sk_ad_network_ad_event_type:type_name -> google.ads.googleads.v17.enums.SkAdNetworkAdEventTypeEnum.SkAdNetworkAdEventType
+ 4, // 28: google.ads.googleads.v17.common.Segments.sk_ad_network_source_app:type_name -> google.ads.googleads.v17.common.SkAdNetworkSourceApp
+ 30, // 29: google.ads.googleads.v17.common.Segments.sk_ad_network_attribution_credit:type_name -> google.ads.googleads.v17.enums.SkAdNetworkAttributionCreditEnum.SkAdNetworkAttributionCredit
+ 31, // 30: google.ads.googleads.v17.common.Segments.sk_ad_network_coarse_conversion_value:type_name -> google.ads.googleads.v17.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue
+ 32, // 31: google.ads.googleads.v17.common.Segments.sk_ad_network_source_type:type_name -> google.ads.googleads.v17.enums.SkAdNetworkSourceTypeEnum.SkAdNetworkSourceType
+ 3, // 32: google.ads.googleads.v17.common.Segments.asset_interaction_target:type_name -> google.ads.googleads.v17.common.AssetInteractionTarget
+ 33, // 33: google.ads.googleads.v17.common.Segments.new_versus_returning_customers:type_name -> google.ads.googleads.v17.enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum.ConvertingUserPriorEngagementTypeAndLtvBucket
+ 34, // 34: google.ads.googleads.v17.common.Keyword.info:type_name -> google.ads.googleads.v17.common.KeywordInfo
+ 35, // 35: google.ads.googleads.v17.common.BudgetCampaignAssociationStatus.status:type_name -> google.ads.googleads.v17.enums.BudgetCampaignAssociationStatusEnum.BudgetCampaignAssociationStatus
36, // [36:36] is the sub-list for method output_type
36, // [36:36] is the sub-list for method input_type
36, // [36:36] is the sub-list for extension type_name
@@ -2187,14 +2214,14 @@ var file_google_ads_googleads_v16_common_segments_proto_depIdxs = []int32{
0, // [0:36] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_segments_proto_init() }
-func file_google_ads_googleads_v16_common_segments_proto_init() {
- if File_google_ads_googleads_v16_common_segments_proto != nil {
+func init() { file_google_ads_googleads_v17_common_segments_proto_init() }
+func file_google_ads_googleads_v17_common_segments_proto_init() {
+ if File_google_ads_googleads_v17_common_segments_proto != nil {
return
}
- file_google_ads_googleads_v16_common_criteria_proto_init()
+ file_google_ads_googleads_v17_common_criteria_proto_init()
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_segments_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_segments_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Segments); i {
case 0:
return &v.state
@@ -2206,7 +2233,7 @@ func file_google_ads_googleads_v16_common_segments_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_segments_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_segments_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Keyword); i {
case 0:
return &v.state
@@ -2218,7 +2245,7 @@ func file_google_ads_googleads_v16_common_segments_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_segments_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_segments_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BudgetCampaignAssociationStatus); i {
case 0:
return &v.state
@@ -2230,7 +2257,7 @@ func file_google_ads_googleads_v16_common_segments_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_segments_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_segments_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetInteractionTarget); i {
case 0:
return &v.state
@@ -2242,7 +2269,7 @@ func file_google_ads_googleads_v16_common_segments_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_segments_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_segments_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SkAdNetworkSourceApp); i {
case 0:
return &v.state
@@ -2255,26 +2282,26 @@ func file_google_ads_googleads_v16_common_segments_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_segments_proto_msgTypes[0].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_segments_proto_msgTypes[1].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_segments_proto_msgTypes[2].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_segments_proto_msgTypes[4].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_segments_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_segments_proto_msgTypes[1].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_segments_proto_msgTypes[2].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_segments_proto_msgTypes[4].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_segments_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_segments_proto_rawDesc,
NumEnums: 0,
NumMessages: 5,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_segments_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_segments_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_segments_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_segments_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_segments_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_segments_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_segments_proto = out.File
- file_google_ads_googleads_v16_common_segments_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_segments_proto_goTypes = nil
- file_google_ads_googleads_v16_common_segments_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_segments_proto = out.File
+ file_google_ads_googleads_v17_common_segments_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_segments_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_segments_proto_depIdxs = nil
}
diff --git a/common/simulation.pb.go b/common/simulation.pb.go
index e7f5ec91..359be42a 100644
--- a/common/simulation.pb.go
+++ b/common/simulation.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/simulation.proto
+// source: google/ads/googleads/v17/common/simulation.proto
package common
@@ -47,7 +47,7 @@ type CpcBidSimulationPointList struct {
func (x *CpcBidSimulationPointList) Reset() {
*x = CpcBidSimulationPointList{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -60,7 +60,7 @@ func (x *CpcBidSimulationPointList) String() string {
func (*CpcBidSimulationPointList) ProtoMessage() {}
func (x *CpcBidSimulationPointList) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -73,7 +73,7 @@ func (x *CpcBidSimulationPointList) ProtoReflect() protoreflect.Message {
// Deprecated: Use CpcBidSimulationPointList.ProtoReflect.Descriptor instead.
func (*CpcBidSimulationPointList) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_simulation_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_simulation_proto_rawDescGZIP(), []int{0}
}
func (x *CpcBidSimulationPointList) GetPoints() []*CpcBidSimulationPoint {
@@ -96,7 +96,7 @@ type CpvBidSimulationPointList struct {
func (x *CpvBidSimulationPointList) Reset() {
*x = CpvBidSimulationPointList{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -109,7 +109,7 @@ func (x *CpvBidSimulationPointList) String() string {
func (*CpvBidSimulationPointList) ProtoMessage() {}
func (x *CpvBidSimulationPointList) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -122,7 +122,7 @@ func (x *CpvBidSimulationPointList) ProtoReflect() protoreflect.Message {
// Deprecated: Use CpvBidSimulationPointList.ProtoReflect.Descriptor instead.
func (*CpvBidSimulationPointList) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_simulation_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_simulation_proto_rawDescGZIP(), []int{1}
}
func (x *CpvBidSimulationPointList) GetPoints() []*CpvBidSimulationPoint {
@@ -145,7 +145,7 @@ type TargetCpaSimulationPointList struct {
func (x *TargetCpaSimulationPointList) Reset() {
*x = TargetCpaSimulationPointList{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -158,7 +158,7 @@ func (x *TargetCpaSimulationPointList) String() string {
func (*TargetCpaSimulationPointList) ProtoMessage() {}
func (x *TargetCpaSimulationPointList) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -171,7 +171,7 @@ func (x *TargetCpaSimulationPointList) ProtoReflect() protoreflect.Message {
// Deprecated: Use TargetCpaSimulationPointList.ProtoReflect.Descriptor instead.
func (*TargetCpaSimulationPointList) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_simulation_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_common_simulation_proto_rawDescGZIP(), []int{2}
}
func (x *TargetCpaSimulationPointList) GetPoints() []*TargetCpaSimulationPoint {
@@ -194,7 +194,7 @@ type TargetRoasSimulationPointList struct {
func (x *TargetRoasSimulationPointList) Reset() {
*x = TargetRoasSimulationPointList{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -207,7 +207,7 @@ func (x *TargetRoasSimulationPointList) String() string {
func (*TargetRoasSimulationPointList) ProtoMessage() {}
func (x *TargetRoasSimulationPointList) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -220,7 +220,7 @@ func (x *TargetRoasSimulationPointList) ProtoReflect() protoreflect.Message {
// Deprecated: Use TargetRoasSimulationPointList.ProtoReflect.Descriptor instead.
func (*TargetRoasSimulationPointList) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_simulation_proto_rawDescGZIP(), []int{3}
+ return file_google_ads_googleads_v17_common_simulation_proto_rawDescGZIP(), []int{3}
}
func (x *TargetRoasSimulationPointList) GetPoints() []*TargetRoasSimulationPoint {
@@ -243,7 +243,7 @@ type PercentCpcBidSimulationPointList struct {
func (x *PercentCpcBidSimulationPointList) Reset() {
*x = PercentCpcBidSimulationPointList{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -256,7 +256,7 @@ func (x *PercentCpcBidSimulationPointList) String() string {
func (*PercentCpcBidSimulationPointList) ProtoMessage() {}
func (x *PercentCpcBidSimulationPointList) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -269,7 +269,7 @@ func (x *PercentCpcBidSimulationPointList) ProtoReflect() protoreflect.Message {
// Deprecated: Use PercentCpcBidSimulationPointList.ProtoReflect.Descriptor instead.
func (*PercentCpcBidSimulationPointList) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_simulation_proto_rawDescGZIP(), []int{4}
+ return file_google_ads_googleads_v17_common_simulation_proto_rawDescGZIP(), []int{4}
}
func (x *PercentCpcBidSimulationPointList) GetPoints() []*PercentCpcBidSimulationPoint {
@@ -292,7 +292,7 @@ type BudgetSimulationPointList struct {
func (x *BudgetSimulationPointList) Reset() {
*x = BudgetSimulationPointList{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -305,7 +305,7 @@ func (x *BudgetSimulationPointList) String() string {
func (*BudgetSimulationPointList) ProtoMessage() {}
func (x *BudgetSimulationPointList) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -318,7 +318,7 @@ func (x *BudgetSimulationPointList) ProtoReflect() protoreflect.Message {
// Deprecated: Use BudgetSimulationPointList.ProtoReflect.Descriptor instead.
func (*BudgetSimulationPointList) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_simulation_proto_rawDescGZIP(), []int{5}
+ return file_google_ads_googleads_v17_common_simulation_proto_rawDescGZIP(), []int{5}
}
func (x *BudgetSimulationPointList) GetPoints() []*BudgetSimulationPoint {
@@ -342,7 +342,7 @@ type TargetImpressionShareSimulationPointList struct {
func (x *TargetImpressionShareSimulationPointList) Reset() {
*x = TargetImpressionShareSimulationPointList{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -355,7 +355,7 @@ func (x *TargetImpressionShareSimulationPointList) String() string {
func (*TargetImpressionShareSimulationPointList) ProtoMessage() {}
func (x *TargetImpressionShareSimulationPointList) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -368,7 +368,7 @@ func (x *TargetImpressionShareSimulationPointList) ProtoReflect() protoreflect.M
// Deprecated: Use TargetImpressionShareSimulationPointList.ProtoReflect.Descriptor instead.
func (*TargetImpressionShareSimulationPointList) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_simulation_proto_rawDescGZIP(), []int{6}
+ return file_google_ads_googleads_v17_common_simulation_proto_rawDescGZIP(), []int{6}
}
func (x *TargetImpressionShareSimulationPointList) GetPoints() []*TargetImpressionShareSimulationPoint {
@@ -415,7 +415,7 @@ type CpcBidSimulationPoint struct {
func (x *CpcBidSimulationPoint) Reset() {
*x = CpcBidSimulationPoint{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -428,7 +428,7 @@ func (x *CpcBidSimulationPoint) String() string {
func (*CpcBidSimulationPoint) ProtoMessage() {}
func (x *CpcBidSimulationPoint) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -441,7 +441,7 @@ func (x *CpcBidSimulationPoint) ProtoReflect() protoreflect.Message {
// Deprecated: Use CpcBidSimulationPoint.ProtoReflect.Descriptor instead.
func (*CpcBidSimulationPoint) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_simulation_proto_rawDescGZIP(), []int{7}
+ return file_google_ads_googleads_v17_common_simulation_proto_rawDescGZIP(), []int{7}
}
func (x *CpcBidSimulationPoint) GetRequiredBudgetAmountMicros() int64 {
@@ -553,7 +553,7 @@ type CpvBidSimulationPoint struct {
func (x *CpvBidSimulationPoint) Reset() {
*x = CpvBidSimulationPoint{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -566,7 +566,7 @@ func (x *CpvBidSimulationPoint) String() string {
func (*CpvBidSimulationPoint) ProtoMessage() {}
func (x *CpvBidSimulationPoint) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -579,7 +579,7 @@ func (x *CpvBidSimulationPoint) ProtoReflect() protoreflect.Message {
// Deprecated: Use CpvBidSimulationPoint.ProtoReflect.Descriptor instead.
func (*CpvBidSimulationPoint) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_simulation_proto_rawDescGZIP(), []int{8}
+ return file_google_ads_googleads_v17_common_simulation_proto_rawDescGZIP(), []int{8}
}
func (x *CpvBidSimulationPoint) GetCpvBidMicros() int64 {
@@ -654,7 +654,7 @@ type TargetCpaSimulationPoint struct {
func (x *TargetCpaSimulationPoint) Reset() {
*x = TargetCpaSimulationPoint{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -667,7 +667,7 @@ func (x *TargetCpaSimulationPoint) String() string {
func (*TargetCpaSimulationPoint) ProtoMessage() {}
func (x *TargetCpaSimulationPoint) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -680,7 +680,7 @@ func (x *TargetCpaSimulationPoint) ProtoReflect() protoreflect.Message {
// Deprecated: Use TargetCpaSimulationPoint.ProtoReflect.Descriptor instead.
func (*TargetCpaSimulationPoint) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_simulation_proto_rawDescGZIP(), []int{9}
+ return file_google_ads_googleads_v17_common_simulation_proto_rawDescGZIP(), []int{9}
}
func (x *TargetCpaSimulationPoint) GetRequiredBudgetAmountMicros() int64 {
@@ -825,7 +825,7 @@ type TargetRoasSimulationPoint struct {
func (x *TargetRoasSimulationPoint) Reset() {
*x = TargetRoasSimulationPoint{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -838,7 +838,7 @@ func (x *TargetRoasSimulationPoint) String() string {
func (*TargetRoasSimulationPoint) ProtoMessage() {}
func (x *TargetRoasSimulationPoint) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -851,7 +851,7 @@ func (x *TargetRoasSimulationPoint) ProtoReflect() protoreflect.Message {
// Deprecated: Use TargetRoasSimulationPoint.ProtoReflect.Descriptor instead.
func (*TargetRoasSimulationPoint) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_simulation_proto_rawDescGZIP(), []int{10}
+ return file_google_ads_googleads_v17_common_simulation_proto_rawDescGZIP(), []int{10}
}
func (x *TargetRoasSimulationPoint) GetTargetRoas() float64 {
@@ -938,7 +938,7 @@ type PercentCpcBidSimulationPoint struct {
func (x *PercentCpcBidSimulationPoint) Reset() {
*x = PercentCpcBidSimulationPoint{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -951,7 +951,7 @@ func (x *PercentCpcBidSimulationPoint) String() string {
func (*PercentCpcBidSimulationPoint) ProtoMessage() {}
func (x *PercentCpcBidSimulationPoint) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -964,7 +964,7 @@ func (x *PercentCpcBidSimulationPoint) ProtoReflect() protoreflect.Message {
// Deprecated: Use PercentCpcBidSimulationPoint.ProtoReflect.Descriptor instead.
func (*PercentCpcBidSimulationPoint) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_simulation_proto_rawDescGZIP(), []int{11}
+ return file_google_ads_googleads_v17_common_simulation_proto_rawDescGZIP(), []int{11}
}
func (x *PercentCpcBidSimulationPoint) GetPercentCpcBidMicros() int64 {
@@ -1049,7 +1049,7 @@ type BudgetSimulationPoint struct {
func (x *BudgetSimulationPoint) Reset() {
*x = BudgetSimulationPoint{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[12]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1062,7 +1062,7 @@ func (x *BudgetSimulationPoint) String() string {
func (*BudgetSimulationPoint) ProtoMessage() {}
func (x *BudgetSimulationPoint) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[12]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1075,7 +1075,7 @@ func (x *BudgetSimulationPoint) ProtoReflect() protoreflect.Message {
// Deprecated: Use BudgetSimulationPoint.ProtoReflect.Descriptor instead.
func (*BudgetSimulationPoint) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_simulation_proto_rawDescGZIP(), []int{12}
+ return file_google_ads_googleads_v17_common_simulation_proto_rawDescGZIP(), []int{12}
}
func (x *BudgetSimulationPoint) GetBudgetAmountMicros() int64 {
@@ -1179,7 +1179,7 @@ type TargetImpressionShareSimulationPoint struct {
func (x *TargetImpressionShareSimulationPoint) Reset() {
*x = TargetImpressionShareSimulationPoint{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[13]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[13]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1192,7 +1192,7 @@ func (x *TargetImpressionShareSimulationPoint) String() string {
func (*TargetImpressionShareSimulationPoint) ProtoMessage() {}
func (x *TargetImpressionShareSimulationPoint) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_simulation_proto_msgTypes[13]
+ mi := &file_google_ads_googleads_v17_common_simulation_proto_msgTypes[13]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1205,7 +1205,7 @@ func (x *TargetImpressionShareSimulationPoint) ProtoReflect() protoreflect.Messa
// Deprecated: Use TargetImpressionShareSimulationPoint.ProtoReflect.Descriptor instead.
func (*TargetImpressionShareSimulationPoint) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_simulation_proto_rawDescGZIP(), []int{13}
+ return file_google_ads_googleads_v17_common_simulation_proto_rawDescGZIP(), []int{13}
}
func (x *TargetImpressionShareSimulationPoint) GetTargetImpressionShareMicros() int64 {
@@ -1278,40 +1278,40 @@ func (x *TargetImpressionShareSimulationPoint) GetAbsoluteTopImpressions() int64
return 0
}
-var File_google_ads_googleads_v16_common_simulation_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_simulation_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_simulation_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_simulation_proto_rawDesc = []byte{
0x0a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x22, 0x6b, 0x0a, 0x19, 0x43, 0x70, 0x63, 0x42, 0x69, 0x64, 0x53, 0x69, 0x6d,
0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74,
0x12, 0x4e, 0x0a, 0x06, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b,
0x32, 0x36, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x2e, 0x43, 0x70, 0x63, 0x42, 0x69, 0x64, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x06, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73,
0x22, 0x6b, 0x0a, 0x19, 0x43, 0x70, 0x76, 0x42, 0x69, 0x64, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x4e, 0x0a,
0x06, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x36, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x43, 0x70, 0x76, 0x42, 0x69, 0x64, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x06, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x22, 0x71, 0x0a,
0x1c, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x51, 0x0a,
0x06, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x06, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73,
0x22, 0x73, 0x0a, 0x1d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, 0x53, 0x69,
0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x73,
0x74, 0x12, 0x52, 0x0a, 0x06, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
0x0b, 0x32, 0x3a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, 0x53, 0x69,
0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x06, 0x70,
0x6f, 0x69, 0x6e, 0x74, 0x73, 0x22, 0x79, 0x0a, 0x20, 0x50, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74,
@@ -1319,14 +1319,14 @@ var file_google_ads_googleads_v16_common_simulation_proto_rawDesc = []byte{
0x50, 0x6f, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x55, 0x0a, 0x06, 0x70, 0x6f, 0x69,
0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x63,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x63,
0x65, 0x6e, 0x74, 0x43, 0x70, 0x63, 0x42, 0x69, 0x64, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x06, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73,
0x22, 0x6b, 0x0a, 0x19, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x4e, 0x0a,
0x06, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x36, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x06, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x22, 0x89, 0x01,
0x0a, 0x28, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
@@ -1334,7 +1334,7 @@ var file_google_ads_googleads_v16_common_simulation_proto_rawDesc = []byte{
0x6e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x5d, 0x0a, 0x06, 0x70, 0x6f,
0x69, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x45, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72,
0x67, 0x65, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61,
0x72, 0x65, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x69, 0x6e,
0x74, 0x52, 0x06, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x22, 0xf1, 0x04, 0x0a, 0x15, 0x43, 0x70,
@@ -1572,59 +1572,59 @@ var file_google_ads_googleads_v16_common_simulation_proto_rawDesc = []byte{
0x73, 0x6f, 0x6c, 0x75, 0x74, 0x65, 0x54, 0x6f, 0x70, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73,
0x69, 0x6f, 0x6e, 0x73, 0x42, 0xef, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0f, 0x53, 0x69,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0f, 0x53, 0x69,
0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_simulation_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_simulation_proto_rawDescData = file_google_ads_googleads_v16_common_simulation_proto_rawDesc
+ file_google_ads_googleads_v17_common_simulation_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_simulation_proto_rawDescData = file_google_ads_googleads_v17_common_simulation_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_simulation_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_simulation_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_simulation_proto_rawDescData)
+func file_google_ads_googleads_v17_common_simulation_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_simulation_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_simulation_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_simulation_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_common_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 14)
-var file_google_ads_googleads_v16_common_simulation_proto_goTypes = []interface{}{
- (*CpcBidSimulationPointList)(nil), // 0: google.ads.googleads.v16.common.CpcBidSimulationPointList
- (*CpvBidSimulationPointList)(nil), // 1: google.ads.googleads.v16.common.CpvBidSimulationPointList
- (*TargetCpaSimulationPointList)(nil), // 2: google.ads.googleads.v16.common.TargetCpaSimulationPointList
- (*TargetRoasSimulationPointList)(nil), // 3: google.ads.googleads.v16.common.TargetRoasSimulationPointList
- (*PercentCpcBidSimulationPointList)(nil), // 4: google.ads.googleads.v16.common.PercentCpcBidSimulationPointList
- (*BudgetSimulationPointList)(nil), // 5: google.ads.googleads.v16.common.BudgetSimulationPointList
- (*TargetImpressionShareSimulationPointList)(nil), // 6: google.ads.googleads.v16.common.TargetImpressionShareSimulationPointList
- (*CpcBidSimulationPoint)(nil), // 7: google.ads.googleads.v16.common.CpcBidSimulationPoint
- (*CpvBidSimulationPoint)(nil), // 8: google.ads.googleads.v16.common.CpvBidSimulationPoint
- (*TargetCpaSimulationPoint)(nil), // 9: google.ads.googleads.v16.common.TargetCpaSimulationPoint
- (*TargetRoasSimulationPoint)(nil), // 10: google.ads.googleads.v16.common.TargetRoasSimulationPoint
- (*PercentCpcBidSimulationPoint)(nil), // 11: google.ads.googleads.v16.common.PercentCpcBidSimulationPoint
- (*BudgetSimulationPoint)(nil), // 12: google.ads.googleads.v16.common.BudgetSimulationPoint
- (*TargetImpressionShareSimulationPoint)(nil), // 13: google.ads.googleads.v16.common.TargetImpressionShareSimulationPoint
-}
-var file_google_ads_googleads_v16_common_simulation_proto_depIdxs = []int32{
- 7, // 0: google.ads.googleads.v16.common.CpcBidSimulationPointList.points:type_name -> google.ads.googleads.v16.common.CpcBidSimulationPoint
- 8, // 1: google.ads.googleads.v16.common.CpvBidSimulationPointList.points:type_name -> google.ads.googleads.v16.common.CpvBidSimulationPoint
- 9, // 2: google.ads.googleads.v16.common.TargetCpaSimulationPointList.points:type_name -> google.ads.googleads.v16.common.TargetCpaSimulationPoint
- 10, // 3: google.ads.googleads.v16.common.TargetRoasSimulationPointList.points:type_name -> google.ads.googleads.v16.common.TargetRoasSimulationPoint
- 11, // 4: google.ads.googleads.v16.common.PercentCpcBidSimulationPointList.points:type_name -> google.ads.googleads.v16.common.PercentCpcBidSimulationPoint
- 12, // 5: google.ads.googleads.v16.common.BudgetSimulationPointList.points:type_name -> google.ads.googleads.v16.common.BudgetSimulationPoint
- 13, // 6: google.ads.googleads.v16.common.TargetImpressionShareSimulationPointList.points:type_name -> google.ads.googleads.v16.common.TargetImpressionShareSimulationPoint
+ return file_google_ads_googleads_v17_common_simulation_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_common_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 14)
+var file_google_ads_googleads_v17_common_simulation_proto_goTypes = []interface{}{
+ (*CpcBidSimulationPointList)(nil), // 0: google.ads.googleads.v17.common.CpcBidSimulationPointList
+ (*CpvBidSimulationPointList)(nil), // 1: google.ads.googleads.v17.common.CpvBidSimulationPointList
+ (*TargetCpaSimulationPointList)(nil), // 2: google.ads.googleads.v17.common.TargetCpaSimulationPointList
+ (*TargetRoasSimulationPointList)(nil), // 3: google.ads.googleads.v17.common.TargetRoasSimulationPointList
+ (*PercentCpcBidSimulationPointList)(nil), // 4: google.ads.googleads.v17.common.PercentCpcBidSimulationPointList
+ (*BudgetSimulationPointList)(nil), // 5: google.ads.googleads.v17.common.BudgetSimulationPointList
+ (*TargetImpressionShareSimulationPointList)(nil), // 6: google.ads.googleads.v17.common.TargetImpressionShareSimulationPointList
+ (*CpcBidSimulationPoint)(nil), // 7: google.ads.googleads.v17.common.CpcBidSimulationPoint
+ (*CpvBidSimulationPoint)(nil), // 8: google.ads.googleads.v17.common.CpvBidSimulationPoint
+ (*TargetCpaSimulationPoint)(nil), // 9: google.ads.googleads.v17.common.TargetCpaSimulationPoint
+ (*TargetRoasSimulationPoint)(nil), // 10: google.ads.googleads.v17.common.TargetRoasSimulationPoint
+ (*PercentCpcBidSimulationPoint)(nil), // 11: google.ads.googleads.v17.common.PercentCpcBidSimulationPoint
+ (*BudgetSimulationPoint)(nil), // 12: google.ads.googleads.v17.common.BudgetSimulationPoint
+ (*TargetImpressionShareSimulationPoint)(nil), // 13: google.ads.googleads.v17.common.TargetImpressionShareSimulationPoint
+}
+var file_google_ads_googleads_v17_common_simulation_proto_depIdxs = []int32{
+ 7, // 0: google.ads.googleads.v17.common.CpcBidSimulationPointList.points:type_name -> google.ads.googleads.v17.common.CpcBidSimulationPoint
+ 8, // 1: google.ads.googleads.v17.common.CpvBidSimulationPointList.points:type_name -> google.ads.googleads.v17.common.CpvBidSimulationPoint
+ 9, // 2: google.ads.googleads.v17.common.TargetCpaSimulationPointList.points:type_name -> google.ads.googleads.v17.common.TargetCpaSimulationPoint
+ 10, // 3: google.ads.googleads.v17.common.TargetRoasSimulationPointList.points:type_name -> google.ads.googleads.v17.common.TargetRoasSimulationPoint
+ 11, // 4: google.ads.googleads.v17.common.PercentCpcBidSimulationPointList.points:type_name -> google.ads.googleads.v17.common.PercentCpcBidSimulationPoint
+ 12, // 5: google.ads.googleads.v17.common.BudgetSimulationPointList.points:type_name -> google.ads.googleads.v17.common.BudgetSimulationPoint
+ 13, // 6: google.ads.googleads.v17.common.TargetImpressionShareSimulationPointList.points:type_name -> google.ads.googleads.v17.common.TargetImpressionShareSimulationPoint
7, // [7:7] is the sub-list for method output_type
7, // [7:7] is the sub-list for method input_type
7, // [7:7] is the sub-list for extension type_name
@@ -1632,13 +1632,13 @@ var file_google_ads_googleads_v16_common_simulation_proto_depIdxs = []int32{
0, // [0:7] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_simulation_proto_init() }
-func file_google_ads_googleads_v16_common_simulation_proto_init() {
- if File_google_ads_googleads_v16_common_simulation_proto != nil {
+func init() { file_google_ads_googleads_v17_common_simulation_proto_init() }
+func file_google_ads_googleads_v17_common_simulation_proto_init() {
+ if File_google_ads_googleads_v17_common_simulation_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_simulation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_simulation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CpcBidSimulationPointList); i {
case 0:
return &v.state
@@ -1650,7 +1650,7 @@ func file_google_ads_googleads_v16_common_simulation_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_simulation_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_simulation_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CpvBidSimulationPointList); i {
case 0:
return &v.state
@@ -1662,7 +1662,7 @@ func file_google_ads_googleads_v16_common_simulation_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_simulation_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_simulation_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TargetCpaSimulationPointList); i {
case 0:
return &v.state
@@ -1674,7 +1674,7 @@ func file_google_ads_googleads_v16_common_simulation_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_simulation_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_simulation_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TargetRoasSimulationPointList); i {
case 0:
return &v.state
@@ -1686,7 +1686,7 @@ func file_google_ads_googleads_v16_common_simulation_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_simulation_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_simulation_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PercentCpcBidSimulationPointList); i {
case 0:
return &v.state
@@ -1698,7 +1698,7 @@ func file_google_ads_googleads_v16_common_simulation_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_simulation_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_simulation_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BudgetSimulationPointList); i {
case 0:
return &v.state
@@ -1710,7 +1710,7 @@ func file_google_ads_googleads_v16_common_simulation_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_simulation_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_simulation_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TargetImpressionShareSimulationPointList); i {
case 0:
return &v.state
@@ -1722,7 +1722,7 @@ func file_google_ads_googleads_v16_common_simulation_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_simulation_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_simulation_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CpcBidSimulationPoint); i {
case 0:
return &v.state
@@ -1734,7 +1734,7 @@ func file_google_ads_googleads_v16_common_simulation_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_simulation_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_simulation_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CpvBidSimulationPoint); i {
case 0:
return &v.state
@@ -1746,7 +1746,7 @@ func file_google_ads_googleads_v16_common_simulation_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_simulation_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_simulation_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TargetCpaSimulationPoint); i {
case 0:
return &v.state
@@ -1758,7 +1758,7 @@ func file_google_ads_googleads_v16_common_simulation_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_simulation_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_simulation_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TargetRoasSimulationPoint); i {
case 0:
return &v.state
@@ -1770,7 +1770,7 @@ func file_google_ads_googleads_v16_common_simulation_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_simulation_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_simulation_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PercentCpcBidSimulationPoint); i {
case 0:
return &v.state
@@ -1782,7 +1782,7 @@ func file_google_ads_googleads_v16_common_simulation_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_simulation_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_simulation_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BudgetSimulationPoint); i {
case 0:
return &v.state
@@ -1794,7 +1794,7 @@ func file_google_ads_googleads_v16_common_simulation_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_simulation_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_simulation_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TargetImpressionShareSimulationPoint); i {
case 0:
return &v.state
@@ -1807,33 +1807,33 @@ func file_google_ads_googleads_v16_common_simulation_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_simulation_proto_msgTypes[7].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_simulation_proto_msgTypes[7].OneofWrappers = []interface{}{
(*CpcBidSimulationPoint_CpcBidMicros)(nil),
(*CpcBidSimulationPoint_CpcBidScalingModifier)(nil),
}
- file_google_ads_googleads_v16_common_simulation_proto_msgTypes[8].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_simulation_proto_msgTypes[9].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_simulation_proto_msgTypes[8].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_simulation_proto_msgTypes[9].OneofWrappers = []interface{}{
(*TargetCpaSimulationPoint_TargetCpaMicros)(nil),
(*TargetCpaSimulationPoint_TargetCpaScalingModifier)(nil),
}
- file_google_ads_googleads_v16_common_simulation_proto_msgTypes[10].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_simulation_proto_msgTypes[11].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_simulation_proto_msgTypes[10].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_simulation_proto_msgTypes[11].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_simulation_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_simulation_proto_rawDesc,
NumEnums: 0,
NumMessages: 14,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_simulation_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_simulation_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_simulation_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_simulation_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_simulation_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_simulation_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_simulation_proto = out.File
- file_google_ads_googleads_v16_common_simulation_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_simulation_proto_goTypes = nil
- file_google_ads_googleads_v16_common_simulation_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_simulation_proto = out.File
+ file_google_ads_googleads_v17_common_simulation_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_simulation_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_simulation_proto_depIdxs = nil
}
diff --git a/common/tag_snippet.pb.go b/common/tag_snippet.pb.go
index 9b3d097e..ec10351f 100644
--- a/common/tag_snippet.pb.go
+++ b/common/tag_snippet.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/tag_snippet.proto
+// source: google/ads/googleads/v17/common/tag_snippet.proto
package common
@@ -42,10 +42,10 @@ type TagSnippet struct {
unknownFields protoimpl.UnknownFields
// The type of the generated tag snippets for tracking conversions.
- Type enums.TrackingCodeTypeEnum_TrackingCodeType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.TrackingCodeTypeEnum_TrackingCodeType" json:"type,omitempty"`
+ Type enums.TrackingCodeTypeEnum_TrackingCodeType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.TrackingCodeTypeEnum_TrackingCodeType" json:"type,omitempty"`
// The format of the web page where the tracking tag and snippet will be
// installed, for example, HTML.
- PageFormat enums.TrackingCodePageFormatEnum_TrackingCodePageFormat `protobuf:"varint,2,opt,name=page_format,json=pageFormat,proto3,enum=google.ads.googleads.v16.enums.TrackingCodePageFormatEnum_TrackingCodePageFormat" json:"page_format,omitempty"`
+ PageFormat enums.TrackingCodePageFormatEnum_TrackingCodePageFormat `protobuf:"varint,2,opt,name=page_format,json=pageFormat,proto3,enum=google.ads.googleads.v17.enums.TrackingCodePageFormatEnum_TrackingCodePageFormat" json:"page_format,omitempty"`
// The site tag that adds visitors to your basic remarketing lists and sets
// new cookies on your domain.
GlobalSiteTag *string `protobuf:"bytes,5,opt,name=global_site_tag,json=globalSiteTag,proto3,oneof" json:"global_site_tag,omitempty"`
@@ -57,7 +57,7 @@ type TagSnippet struct {
func (x *TagSnippet) Reset() {
*x = TagSnippet{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_tag_snippet_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_tag_snippet_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -70,7 +70,7 @@ func (x *TagSnippet) String() string {
func (*TagSnippet) ProtoMessage() {}
func (x *TagSnippet) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_tag_snippet_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_tag_snippet_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -83,7 +83,7 @@ func (x *TagSnippet) ProtoReflect() protoreflect.Message {
// Deprecated: Use TagSnippet.ProtoReflect.Descriptor instead.
func (*TagSnippet) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_tag_snippet_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_tag_snippet_proto_rawDescGZIP(), []int{0}
}
func (x *TagSnippet) GetType() enums.TrackingCodeTypeEnum_TrackingCodeType {
@@ -114,32 +114,32 @@ func (x *TagSnippet) GetEventSnippet() string {
return ""
}
-var File_google_ads_googleads_v16_common_tag_snippet_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_tag_snippet_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_tag_snippet_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_tag_snippet_proto_rawDesc = []byte{
0x0a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x74, 0x61, 0x67, 0x5f, 0x73, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f,
0x64, 0x65, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f,
0x64, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xd8, 0x02,
0x0a, 0x0a, 0x54, 0x61, 0x67, 0x53, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 0x12, 0x59, 0x0a, 0x04,
0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x45, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x72, 0x61, 0x63,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x72, 0x61, 0x63,
0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d,
0x2e, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x54, 0x79, 0x70,
0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x72, 0x0a, 0x0b, 0x70, 0x61, 0x67, 0x65, 0x5f,
0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x51, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x72,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x72,
0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x50, 0x61, 0x67, 0x65, 0x46, 0x6f,
0x72, 0x6d, 0x61, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e,
0x67, 0x43, 0x6f, 0x64, 0x65, 0x50, 0x61, 0x67, 0x65, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x52,
@@ -153,44 +153,44 @@ var file_google_ads_googleads_v16_common_tag_snippet_proto_rawDesc = []byte{
0x74, 0x65, 0x5f, 0x74, 0x61, 0x67, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74,
0x5f, 0x73, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 0x42, 0xef, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x42, 0x0f, 0x54, 0x61, 0x67, 0x53, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_tag_snippet_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_tag_snippet_proto_rawDescData = file_google_ads_googleads_v16_common_tag_snippet_proto_rawDesc
+ file_google_ads_googleads_v17_common_tag_snippet_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_tag_snippet_proto_rawDescData = file_google_ads_googleads_v17_common_tag_snippet_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_tag_snippet_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_tag_snippet_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_tag_snippet_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_tag_snippet_proto_rawDescData)
+func file_google_ads_googleads_v17_common_tag_snippet_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_tag_snippet_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_tag_snippet_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_tag_snippet_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_tag_snippet_proto_rawDescData
+ return file_google_ads_googleads_v17_common_tag_snippet_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_tag_snippet_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_common_tag_snippet_proto_goTypes = []interface{}{
- (*TagSnippet)(nil), // 0: google.ads.googleads.v16.common.TagSnippet
- (enums.TrackingCodeTypeEnum_TrackingCodeType)(0), // 1: google.ads.googleads.v16.enums.TrackingCodeTypeEnum.TrackingCodeType
- (enums.TrackingCodePageFormatEnum_TrackingCodePageFormat)(0), // 2: google.ads.googleads.v16.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat
+var file_google_ads_googleads_v17_common_tag_snippet_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_common_tag_snippet_proto_goTypes = []interface{}{
+ (*TagSnippet)(nil), // 0: google.ads.googleads.v17.common.TagSnippet
+ (enums.TrackingCodeTypeEnum_TrackingCodeType)(0), // 1: google.ads.googleads.v17.enums.TrackingCodeTypeEnum.TrackingCodeType
+ (enums.TrackingCodePageFormatEnum_TrackingCodePageFormat)(0), // 2: google.ads.googleads.v17.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat
}
-var file_google_ads_googleads_v16_common_tag_snippet_proto_depIdxs = []int32{
- 1, // 0: google.ads.googleads.v16.common.TagSnippet.type:type_name -> google.ads.googleads.v16.enums.TrackingCodeTypeEnum.TrackingCodeType
- 2, // 1: google.ads.googleads.v16.common.TagSnippet.page_format:type_name -> google.ads.googleads.v16.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat
+var file_google_ads_googleads_v17_common_tag_snippet_proto_depIdxs = []int32{
+ 1, // 0: google.ads.googleads.v17.common.TagSnippet.type:type_name -> google.ads.googleads.v17.enums.TrackingCodeTypeEnum.TrackingCodeType
+ 2, // 1: google.ads.googleads.v17.common.TagSnippet.page_format:type_name -> google.ads.googleads.v17.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat
2, // [2:2] is the sub-list for method output_type
2, // [2:2] is the sub-list for method input_type
2, // [2:2] is the sub-list for extension type_name
@@ -198,13 +198,13 @@ var file_google_ads_googleads_v16_common_tag_snippet_proto_depIdxs = []int32{
0, // [0:2] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_tag_snippet_proto_init() }
-func file_google_ads_googleads_v16_common_tag_snippet_proto_init() {
- if File_google_ads_googleads_v16_common_tag_snippet_proto != nil {
+func init() { file_google_ads_googleads_v17_common_tag_snippet_proto_init() }
+func file_google_ads_googleads_v17_common_tag_snippet_proto_init() {
+ if File_google_ads_googleads_v17_common_tag_snippet_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_tag_snippet_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_tag_snippet_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TagSnippet); i {
case 0:
return &v.state
@@ -217,23 +217,23 @@ func file_google_ads_googleads_v16_common_tag_snippet_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_tag_snippet_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_tag_snippet_proto_msgTypes[0].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_tag_snippet_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_tag_snippet_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_tag_snippet_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_tag_snippet_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_tag_snippet_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_tag_snippet_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_tag_snippet_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_tag_snippet_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_tag_snippet_proto = out.File
- file_google_ads_googleads_v16_common_tag_snippet_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_tag_snippet_proto_goTypes = nil
- file_google_ads_googleads_v16_common_tag_snippet_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_tag_snippet_proto = out.File
+ file_google_ads_googleads_v17_common_tag_snippet_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_tag_snippet_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_tag_snippet_proto_depIdxs = nil
}
diff --git a/common/targeting_setting.pb.go b/common/targeting_setting.pb.go
index 14759dc7..c75bd054 100644
--- a/common/targeting_setting.pb.go
+++ b/common/targeting_setting.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/targeting_setting.proto
+// source: google/ads/googleads/v17/common/targeting_setting.proto
package common
@@ -76,11 +76,11 @@ func (x TargetRestrictionOperation_Operator) String() string {
}
func (TargetRestrictionOperation_Operator) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_common_targeting_setting_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_common_targeting_setting_proto_enumTypes[0].Descriptor()
}
func (TargetRestrictionOperation_Operator) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_common_targeting_setting_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_common_targeting_setting_proto_enumTypes[0]
}
func (x TargetRestrictionOperation_Operator) Number() protoreflect.EnumNumber {
@@ -89,7 +89,7 @@ func (x TargetRestrictionOperation_Operator) Number() protoreflect.EnumNumber {
// Deprecated: Use TargetRestrictionOperation_Operator.Descriptor instead.
func (TargetRestrictionOperation_Operator) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_targeting_setting_proto_rawDescGZIP(), []int{2, 0}
+ return file_google_ads_googleads_v17_common_targeting_setting_proto_rawDescGZIP(), []int{2, 0}
}
// Settings for the targeting-related features, at the campaign and ad group
@@ -113,7 +113,7 @@ type TargetingSetting struct {
func (x *TargetingSetting) Reset() {
*x = TargetingSetting{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_targeting_setting_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_targeting_setting_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +126,7 @@ func (x *TargetingSetting) String() string {
func (*TargetingSetting) ProtoMessage() {}
func (x *TargetingSetting) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_targeting_setting_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_targeting_setting_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,7 +139,7 @@ func (x *TargetingSetting) ProtoReflect() protoreflect.Message {
// Deprecated: Use TargetingSetting.ProtoReflect.Descriptor instead.
func (*TargetingSetting) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_targeting_setting_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_targeting_setting_proto_rawDescGZIP(), []int{0}
}
func (x *TargetingSetting) GetTargetRestrictions() []*TargetRestriction {
@@ -163,7 +163,7 @@ type TargetRestriction struct {
unknownFields protoimpl.UnknownFields
// The targeting dimension that these settings apply to.
- TargetingDimension enums.TargetingDimensionEnum_TargetingDimension `protobuf:"varint,1,opt,name=targeting_dimension,json=targetingDimension,proto3,enum=google.ads.googleads.v16.enums.TargetingDimensionEnum_TargetingDimension" json:"targeting_dimension,omitempty"`
+ TargetingDimension enums.TargetingDimensionEnum_TargetingDimension `protobuf:"varint,1,opt,name=targeting_dimension,json=targetingDimension,proto3,enum=google.ads.googleads.v17.enums.TargetingDimensionEnum_TargetingDimension" json:"targeting_dimension,omitempty"`
// Indicates whether to restrict your ads to show only for the criteria you
// have selected for this targeting_dimension, or to target all values for
// this targeting_dimension and show ads based on your targeting in other
@@ -177,7 +177,7 @@ type TargetRestriction struct {
func (x *TargetRestriction) Reset() {
*x = TargetRestriction{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_targeting_setting_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_targeting_setting_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -190,7 +190,7 @@ func (x *TargetRestriction) String() string {
func (*TargetRestriction) ProtoMessage() {}
func (x *TargetRestriction) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_targeting_setting_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_targeting_setting_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -203,7 +203,7 @@ func (x *TargetRestriction) ProtoReflect() protoreflect.Message {
// Deprecated: Use TargetRestriction.ProtoReflect.Descriptor instead.
func (*TargetRestriction) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_targeting_setting_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_targeting_setting_proto_rawDescGZIP(), []int{1}
}
func (x *TargetRestriction) GetTargetingDimension() enums.TargetingDimensionEnum_TargetingDimension {
@@ -227,7 +227,7 @@ type TargetRestrictionOperation struct {
unknownFields protoimpl.UnknownFields
// Type of list operation to perform.
- Operator TargetRestrictionOperation_Operator `protobuf:"varint,1,opt,name=operator,proto3,enum=google.ads.googleads.v16.common.TargetRestrictionOperation_Operator" json:"operator,omitempty"`
+ Operator TargetRestrictionOperation_Operator `protobuf:"varint,1,opt,name=operator,proto3,enum=google.ads.googleads.v17.common.TargetRestrictionOperation_Operator" json:"operator,omitempty"`
// The target restriction being added to or removed from the list.
Value *TargetRestriction `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
}
@@ -235,7 +235,7 @@ type TargetRestrictionOperation struct {
func (x *TargetRestrictionOperation) Reset() {
*x = TargetRestrictionOperation{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_targeting_setting_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_targeting_setting_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -248,7 +248,7 @@ func (x *TargetRestrictionOperation) String() string {
func (*TargetRestrictionOperation) ProtoMessage() {}
func (x *TargetRestrictionOperation) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_targeting_setting_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_targeting_setting_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -261,7 +261,7 @@ func (x *TargetRestrictionOperation) ProtoReflect() protoreflect.Message {
// Deprecated: Use TargetRestrictionOperation.ProtoReflect.Descriptor instead.
func (*TargetRestrictionOperation) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_targeting_setting_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_common_targeting_setting_proto_rawDescGZIP(), []int{2}
}
func (x *TargetRestrictionOperation) GetOperator() TargetRestrictionOperation_Operator {
@@ -278,30 +278,30 @@ func (x *TargetRestrictionOperation) GetValue() *TargetRestriction {
return nil
}
-var File_google_ads_googleads_v16_common_targeting_setting_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_targeting_setting_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_targeting_setting_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_targeting_setting_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x74,
0x69, 0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x38, 0x67, 0x6f, 0x6f, 0x67,
+ 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x38, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x72, 0x67, 0x65,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x72, 0x67, 0x65,
0x74, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x22, 0xf8, 0x01, 0x0a, 0x10, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69,
0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x63, 0x0a, 0x13, 0x74, 0x61, 0x72,
0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73,
0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52,
0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x12, 0x74, 0x61, 0x72, 0x67,
0x65, 0x74, 0x52, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x7f,
0x0a, 0x1d, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63,
0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18,
0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x65,
0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x52, 0x1b, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x65, 0x73, 0x74, 0x72, 0x69,
@@ -310,7 +310,7 @@ var file_google_ads_googleads_v16_common_targeting_setting_proto_rawDesc = []byt
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x7a, 0x0a, 0x13, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69,
0x6e, 0x67, 0x5f, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01,
0x28, 0x0e, 0x32, 0x49, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x44, 0x69, 0x6d,
0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65,
0x74, 0x69, 0x6e, 0x67, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x12, 0x74,
@@ -322,13 +322,13 @@ var file_google_ads_googleads_v16_common_targeting_setting_proto_rawDesc = []byt
0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x60, 0x0a,
0x08, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
0x44, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x4f, 0x70, 0x65,
0x72, 0x61, 0x74, 0x6f, 0x72, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x12,
0x48, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69,
0x6f, 0x6e, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x3d, 0x0a, 0x08, 0x4f, 0x70, 0x65,
0x72, 0x61, 0x74, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49,
@@ -336,50 +336,50 @@ var file_google_ads_googleads_v16_common_targeting_setting_proto_rawDesc = []byt
0x4e, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x44, 0x44, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06,
0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x10, 0x03, 0x42, 0xf5, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x42, 0x15, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69,
0x6e, 0x67, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_targeting_setting_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_targeting_setting_proto_rawDescData = file_google_ads_googleads_v16_common_targeting_setting_proto_rawDesc
+ file_google_ads_googleads_v17_common_targeting_setting_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_targeting_setting_proto_rawDescData = file_google_ads_googleads_v17_common_targeting_setting_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_targeting_setting_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_targeting_setting_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_targeting_setting_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_targeting_setting_proto_rawDescData)
+func file_google_ads_googleads_v17_common_targeting_setting_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_targeting_setting_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_targeting_setting_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_targeting_setting_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_targeting_setting_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_common_targeting_setting_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_common_targeting_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
-var file_google_ads_googleads_v16_common_targeting_setting_proto_goTypes = []interface{}{
- (TargetRestrictionOperation_Operator)(0), // 0: google.ads.googleads.v16.common.TargetRestrictionOperation.Operator
- (*TargetingSetting)(nil), // 1: google.ads.googleads.v16.common.TargetingSetting
- (*TargetRestriction)(nil), // 2: google.ads.googleads.v16.common.TargetRestriction
- (*TargetRestrictionOperation)(nil), // 3: google.ads.googleads.v16.common.TargetRestrictionOperation
- (enums.TargetingDimensionEnum_TargetingDimension)(0), // 4: google.ads.googleads.v16.enums.TargetingDimensionEnum.TargetingDimension
-}
-var file_google_ads_googleads_v16_common_targeting_setting_proto_depIdxs = []int32{
- 2, // 0: google.ads.googleads.v16.common.TargetingSetting.target_restrictions:type_name -> google.ads.googleads.v16.common.TargetRestriction
- 3, // 1: google.ads.googleads.v16.common.TargetingSetting.target_restriction_operations:type_name -> google.ads.googleads.v16.common.TargetRestrictionOperation
- 4, // 2: google.ads.googleads.v16.common.TargetRestriction.targeting_dimension:type_name -> google.ads.googleads.v16.enums.TargetingDimensionEnum.TargetingDimension
- 0, // 3: google.ads.googleads.v16.common.TargetRestrictionOperation.operator:type_name -> google.ads.googleads.v16.common.TargetRestrictionOperation.Operator
- 2, // 4: google.ads.googleads.v16.common.TargetRestrictionOperation.value:type_name -> google.ads.googleads.v16.common.TargetRestriction
+ return file_google_ads_googleads_v17_common_targeting_setting_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_common_targeting_setting_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_common_targeting_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
+var file_google_ads_googleads_v17_common_targeting_setting_proto_goTypes = []interface{}{
+ (TargetRestrictionOperation_Operator)(0), // 0: google.ads.googleads.v17.common.TargetRestrictionOperation.Operator
+ (*TargetingSetting)(nil), // 1: google.ads.googleads.v17.common.TargetingSetting
+ (*TargetRestriction)(nil), // 2: google.ads.googleads.v17.common.TargetRestriction
+ (*TargetRestrictionOperation)(nil), // 3: google.ads.googleads.v17.common.TargetRestrictionOperation
+ (enums.TargetingDimensionEnum_TargetingDimension)(0), // 4: google.ads.googleads.v17.enums.TargetingDimensionEnum.TargetingDimension
+}
+var file_google_ads_googleads_v17_common_targeting_setting_proto_depIdxs = []int32{
+ 2, // 0: google.ads.googleads.v17.common.TargetingSetting.target_restrictions:type_name -> google.ads.googleads.v17.common.TargetRestriction
+ 3, // 1: google.ads.googleads.v17.common.TargetingSetting.target_restriction_operations:type_name -> google.ads.googleads.v17.common.TargetRestrictionOperation
+ 4, // 2: google.ads.googleads.v17.common.TargetRestriction.targeting_dimension:type_name -> google.ads.googleads.v17.enums.TargetingDimensionEnum.TargetingDimension
+ 0, // 3: google.ads.googleads.v17.common.TargetRestrictionOperation.operator:type_name -> google.ads.googleads.v17.common.TargetRestrictionOperation.Operator
+ 2, // 4: google.ads.googleads.v17.common.TargetRestrictionOperation.value:type_name -> google.ads.googleads.v17.common.TargetRestriction
5, // [5:5] is the sub-list for method output_type
5, // [5:5] is the sub-list for method input_type
5, // [5:5] is the sub-list for extension type_name
@@ -387,13 +387,13 @@ var file_google_ads_googleads_v16_common_targeting_setting_proto_depIdxs = []int
0, // [0:5] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_targeting_setting_proto_init() }
-func file_google_ads_googleads_v16_common_targeting_setting_proto_init() {
- if File_google_ads_googleads_v16_common_targeting_setting_proto != nil {
+func init() { file_google_ads_googleads_v17_common_targeting_setting_proto_init() }
+func file_google_ads_googleads_v17_common_targeting_setting_proto_init() {
+ if File_google_ads_googleads_v17_common_targeting_setting_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_targeting_setting_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_targeting_setting_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TargetingSetting); i {
case 0:
return &v.state
@@ -405,7 +405,7 @@ func file_google_ads_googleads_v16_common_targeting_setting_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_targeting_setting_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_targeting_setting_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TargetRestriction); i {
case 0:
return &v.state
@@ -417,7 +417,7 @@ func file_google_ads_googleads_v16_common_targeting_setting_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_targeting_setting_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_targeting_setting_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TargetRestrictionOperation); i {
case 0:
return &v.state
@@ -430,24 +430,24 @@ func file_google_ads_googleads_v16_common_targeting_setting_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_targeting_setting_proto_msgTypes[1].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_targeting_setting_proto_msgTypes[1].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_targeting_setting_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_targeting_setting_proto_rawDesc,
NumEnums: 1,
NumMessages: 3,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_targeting_setting_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_targeting_setting_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_common_targeting_setting_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_common_targeting_setting_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_targeting_setting_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_targeting_setting_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_common_targeting_setting_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_common_targeting_setting_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_targeting_setting_proto = out.File
- file_google_ads_googleads_v16_common_targeting_setting_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_targeting_setting_proto_goTypes = nil
- file_google_ads_googleads_v16_common_targeting_setting_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_targeting_setting_proto = out.File
+ file_google_ads_googleads_v17_common_targeting_setting_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_targeting_setting_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_targeting_setting_proto_depIdxs = nil
}
diff --git a/common/text_label.pb.go b/common/text_label.pb.go
index 014320a1..31fff8d6 100644
--- a/common/text_label.pb.go
+++ b/common/text_label.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/text_label.proto
+// source: google/ads/googleads/v17/common/text_label.proto
package common
@@ -52,7 +52,7 @@ type TextLabel struct {
func (x *TextLabel) Reset() {
*x = TextLabel{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_text_label_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_text_label_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -65,7 +65,7 @@ func (x *TextLabel) String() string {
func (*TextLabel) ProtoMessage() {}
func (x *TextLabel) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_text_label_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_text_label_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -78,7 +78,7 @@ func (x *TextLabel) ProtoReflect() protoreflect.Message {
// Deprecated: Use TextLabel.ProtoReflect.Descriptor instead.
func (*TextLabel) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_text_label_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_text_label_proto_rawDescGZIP(), []int{0}
}
func (x *TextLabel) GetBackgroundColor() string {
@@ -95,14 +95,14 @@ func (x *TextLabel) GetDescription() string {
return ""
}
-var File_google_ads_googleads_v16_common_text_label_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_text_label_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_text_label_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_text_label_proto_rawDesc = []byte{
0x0a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x22, 0x87, 0x01, 0x0a, 0x09, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x61, 0x62, 0x65,
0x6c, 0x12, 0x2e, 0x0a, 0x10, 0x62, 0x61, 0x63, 0x6b, 0x67, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x5f,
0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0f, 0x62,
@@ -113,40 +113,40 @@ var file_google_ads_googleads_v16_common_text_label_proto_rawDesc = []byte{
0x6b, 0x67, 0x72, 0x6f, 0x75, 0x6e, 0x64, 0x5f, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x42, 0x0e, 0x0a,
0x0c, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0xee, 0x01,
0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_text_label_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_text_label_proto_rawDescData = file_google_ads_googleads_v16_common_text_label_proto_rawDesc
+ file_google_ads_googleads_v17_common_text_label_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_text_label_proto_rawDescData = file_google_ads_googleads_v17_common_text_label_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_text_label_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_text_label_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_text_label_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_text_label_proto_rawDescData)
+func file_google_ads_googleads_v17_common_text_label_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_text_label_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_text_label_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_text_label_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_text_label_proto_rawDescData
+ return file_google_ads_googleads_v17_common_text_label_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_text_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_common_text_label_proto_goTypes = []interface{}{
- (*TextLabel)(nil), // 0: google.ads.googleads.v16.common.TextLabel
+var file_google_ads_googleads_v17_common_text_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_common_text_label_proto_goTypes = []interface{}{
+ (*TextLabel)(nil), // 0: google.ads.googleads.v17.common.TextLabel
}
-var file_google_ads_googleads_v16_common_text_label_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_common_text_label_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -154,13 +154,13 @@ var file_google_ads_googleads_v16_common_text_label_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_text_label_proto_init() }
-func file_google_ads_googleads_v16_common_text_label_proto_init() {
- if File_google_ads_googleads_v16_common_text_label_proto != nil {
+func init() { file_google_ads_googleads_v17_common_text_label_proto_init() }
+func file_google_ads_googleads_v17_common_text_label_proto_init() {
+ if File_google_ads_googleads_v17_common_text_label_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_text_label_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_text_label_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TextLabel); i {
case 0:
return &v.state
@@ -173,23 +173,23 @@ func file_google_ads_googleads_v16_common_text_label_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_text_label_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_text_label_proto_msgTypes[0].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_text_label_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_text_label_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_text_label_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_text_label_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_text_label_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_text_label_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_text_label_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_text_label_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_text_label_proto = out.File
- file_google_ads_googleads_v16_common_text_label_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_text_label_proto_goTypes = nil
- file_google_ads_googleads_v16_common_text_label_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_text_label_proto = out.File
+ file_google_ads_googleads_v17_common_text_label_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_text_label_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_text_label_proto_depIdxs = nil
}
diff --git a/common/url_collection.pb.go b/common/url_collection.pb.go
index a147e849..a9a32988 100644
--- a/common/url_collection.pb.go
+++ b/common/url_collection.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/url_collection.proto
+// source: google/ads/googleads/v17/common/url_collection.proto
package common
@@ -53,7 +53,7 @@ type UrlCollection struct {
func (x *UrlCollection) Reset() {
*x = UrlCollection{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_url_collection_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_url_collection_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -66,7 +66,7 @@ func (x *UrlCollection) String() string {
func (*UrlCollection) ProtoMessage() {}
func (x *UrlCollection) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_url_collection_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_url_collection_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -79,7 +79,7 @@ func (x *UrlCollection) ProtoReflect() protoreflect.Message {
// Deprecated: Use UrlCollection.ProtoReflect.Descriptor instead.
func (*UrlCollection) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_url_collection_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_url_collection_proto_rawDescGZIP(), []int{0}
}
func (x *UrlCollection) GetUrlCollectionId() string {
@@ -110,14 +110,14 @@ func (x *UrlCollection) GetTrackingUrlTemplate() string {
return ""
}
-var File_google_ads_googleads_v16_common_url_collection_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_url_collection_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_url_collection_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_url_collection_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x75, 0x72, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0xf4, 0x01, 0x0a, 0x0d, 0x55, 0x72, 0x6c, 0x43,
0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2f, 0x0a, 0x11, 0x75, 0x72, 0x6c,
0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x05,
@@ -135,40 +135,40 @@ var file_google_ads_googleads_v16_common_url_collection_proto_rawDesc = []byte{
0x6e, 0x5f, 0x69, 0x64, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e,
0x67, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x42, 0xf2,
0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x12, 0x55, 0x72, 0x6c, 0x43, 0x6f, 0x6c, 0x6c, 0x65,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_url_collection_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_url_collection_proto_rawDescData = file_google_ads_googleads_v16_common_url_collection_proto_rawDesc
+ file_google_ads_googleads_v17_common_url_collection_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_url_collection_proto_rawDescData = file_google_ads_googleads_v17_common_url_collection_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_url_collection_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_url_collection_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_url_collection_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_url_collection_proto_rawDescData)
+func file_google_ads_googleads_v17_common_url_collection_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_url_collection_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_url_collection_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_url_collection_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_url_collection_proto_rawDescData
+ return file_google_ads_googleads_v17_common_url_collection_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_url_collection_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_common_url_collection_proto_goTypes = []interface{}{
- (*UrlCollection)(nil), // 0: google.ads.googleads.v16.common.UrlCollection
+var file_google_ads_googleads_v17_common_url_collection_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_common_url_collection_proto_goTypes = []interface{}{
+ (*UrlCollection)(nil), // 0: google.ads.googleads.v17.common.UrlCollection
}
-var file_google_ads_googleads_v16_common_url_collection_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_common_url_collection_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -176,13 +176,13 @@ var file_google_ads_googleads_v16_common_url_collection_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_url_collection_proto_init() }
-func file_google_ads_googleads_v16_common_url_collection_proto_init() {
- if File_google_ads_googleads_v16_common_url_collection_proto != nil {
+func init() { file_google_ads_googleads_v17_common_url_collection_proto_init() }
+func file_google_ads_googleads_v17_common_url_collection_proto_init() {
+ if File_google_ads_googleads_v17_common_url_collection_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_url_collection_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_url_collection_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UrlCollection); i {
case 0:
return &v.state
@@ -195,23 +195,23 @@ func file_google_ads_googleads_v16_common_url_collection_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_url_collection_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_url_collection_proto_msgTypes[0].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_url_collection_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_url_collection_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_url_collection_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_url_collection_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_url_collection_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_url_collection_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_url_collection_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_url_collection_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_url_collection_proto = out.File
- file_google_ads_googleads_v16_common_url_collection_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_url_collection_proto_goTypes = nil
- file_google_ads_googleads_v16_common_url_collection_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_url_collection_proto = out.File
+ file_google_ads_googleads_v17_common_url_collection_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_url_collection_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_url_collection_proto_depIdxs = nil
}
diff --git a/common/user_lists.pb.go b/common/user_lists.pb.go
index 086571f2..3078b20a 100644
--- a/common/user_lists.pb.go
+++ b/common/user_lists.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/user_lists.proto
+// source: google/ads/googleads/v17/common/user_lists.proto
package common
@@ -46,7 +46,7 @@ type LookalikeUserListInfo struct {
// Seed UserList ID from which this list is derived, provided by user.
SeedUserListIds []int64 `protobuf:"varint,1,rep,packed,name=seed_user_list_ids,json=seedUserListIds,proto3" json:"seed_user_list_ids,omitempty"`
// Expansion level, reflecting the size of the lookalike audience
- ExpansionLevel enums.LookalikeExpansionLevelEnum_LookalikeExpansionLevel `protobuf:"varint,2,opt,name=expansion_level,json=expansionLevel,proto3,enum=google.ads.googleads.v16.enums.LookalikeExpansionLevelEnum_LookalikeExpansionLevel" json:"expansion_level,omitempty"`
+ ExpansionLevel enums.LookalikeExpansionLevelEnum_LookalikeExpansionLevel `protobuf:"varint,2,opt,name=expansion_level,json=expansionLevel,proto3,enum=google.ads.googleads.v17.enums.LookalikeExpansionLevelEnum_LookalikeExpansionLevel" json:"expansion_level,omitempty"`
// Countries targeted by the Lookalike. Two-letter country code as defined by
// ISO-3166
CountryCodes []string `protobuf:"bytes,3,rep,name=country_codes,json=countryCodes,proto3" json:"country_codes,omitempty"`
@@ -55,7 +55,7 @@ type LookalikeUserListInfo struct {
func (x *LookalikeUserListInfo) Reset() {
*x = LookalikeUserListInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -68,7 +68,7 @@ func (x *LookalikeUserListInfo) String() string {
func (*LookalikeUserListInfo) ProtoMessage() {}
func (x *LookalikeUserListInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -81,7 +81,7 @@ func (x *LookalikeUserListInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use LookalikeUserListInfo.ProtoReflect.Descriptor instead.
func (*LookalikeUserListInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_user_lists_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_user_lists_proto_rawDescGZIP(), []int{0}
}
func (x *LookalikeUserListInfo) GetSeedUserListIds() []int64 {
@@ -119,7 +119,7 @@ type SimilarUserListInfo struct {
func (x *SimilarUserListInfo) Reset() {
*x = SimilarUserListInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -132,7 +132,7 @@ func (x *SimilarUserListInfo) String() string {
func (*SimilarUserListInfo) ProtoMessage() {}
func (x *SimilarUserListInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -145,7 +145,7 @@ func (x *SimilarUserListInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use SimilarUserListInfo.ProtoReflect.Descriptor instead.
func (*SimilarUserListInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_user_lists_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_common_user_lists_proto_rawDescGZIP(), []int{1}
}
func (x *SimilarUserListInfo) GetSeedUserList() string {
@@ -175,16 +175,16 @@ type CrmBasedUserListInfo struct {
// Matching key type of the list.
// Mixed data types are not allowed on the same list.
// This field is required for an ADD operation.
- UploadKeyType enums.CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType `protobuf:"varint,2,opt,name=upload_key_type,json=uploadKeyType,proto3,enum=google.ads.googleads.v16.enums.CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType" json:"upload_key_type,omitempty"`
+ UploadKeyType enums.CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType `protobuf:"varint,2,opt,name=upload_key_type,json=uploadKeyType,proto3,enum=google.ads.googleads.v17.enums.CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType" json:"upload_key_type,omitempty"`
// Data source of the list. Default value is FIRST_PARTY.
// Only customers on the allow-list can create third-party sourced CRM lists.
- DataSourceType enums.UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType `protobuf:"varint,3,opt,name=data_source_type,json=dataSourceType,proto3,enum=google.ads.googleads.v16.enums.UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType" json:"data_source_type,omitempty"`
+ DataSourceType enums.UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType `protobuf:"varint,3,opt,name=data_source_type,json=dataSourceType,proto3,enum=google.ads.googleads.v17.enums.UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType" json:"data_source_type,omitempty"`
}
func (x *CrmBasedUserListInfo) Reset() {
*x = CrmBasedUserListInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -197,7 +197,7 @@ func (x *CrmBasedUserListInfo) String() string {
func (*CrmBasedUserListInfo) ProtoMessage() {}
func (x *CrmBasedUserListInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -210,7 +210,7 @@ func (x *CrmBasedUserListInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use CrmBasedUserListInfo.ProtoReflect.Descriptor instead.
func (*CrmBasedUserListInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_user_lists_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_common_user_lists_proto_rawDescGZIP(), []int{2}
}
func (x *CrmBasedUserListInfo) GetAppId() string {
@@ -248,7 +248,7 @@ type UserListRuleInfo struct {
// groups themselves will be ORed together.
//
// OR of ANDs is the only supported type for FlexibleRuleUserList.
- RuleType enums.UserListRuleTypeEnum_UserListRuleType `protobuf:"varint,1,opt,name=rule_type,json=ruleType,proto3,enum=google.ads.googleads.v16.enums.UserListRuleTypeEnum_UserListRuleType" json:"rule_type,omitempty"`
+ RuleType enums.UserListRuleTypeEnum_UserListRuleType `protobuf:"varint,1,opt,name=rule_type,json=ruleType,proto3,enum=google.ads.googleads.v17.enums.UserListRuleTypeEnum_UserListRuleType" json:"rule_type,omitempty"`
// List of rule item groups that defines this rule.
// Rule item groups are grouped together based on rule_type.
RuleItemGroups []*UserListRuleItemGroupInfo `protobuf:"bytes,2,rep,name=rule_item_groups,json=ruleItemGroups,proto3" json:"rule_item_groups,omitempty"`
@@ -257,7 +257,7 @@ type UserListRuleInfo struct {
func (x *UserListRuleInfo) Reset() {
*x = UserListRuleInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -270,7 +270,7 @@ func (x *UserListRuleInfo) String() string {
func (*UserListRuleInfo) ProtoMessage() {}
func (x *UserListRuleInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -283,7 +283,7 @@ func (x *UserListRuleInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListRuleInfo.ProtoReflect.Descriptor instead.
func (*UserListRuleInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_user_lists_proto_rawDescGZIP(), []int{3}
+ return file_google_ads_googleads_v17_common_user_lists_proto_rawDescGZIP(), []int{3}
}
func (x *UserListRuleInfo) GetRuleType() enums.UserListRuleTypeEnum_UserListRuleType {
@@ -313,7 +313,7 @@ type UserListRuleItemGroupInfo struct {
func (x *UserListRuleItemGroupInfo) Reset() {
*x = UserListRuleItemGroupInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -326,7 +326,7 @@ func (x *UserListRuleItemGroupInfo) String() string {
func (*UserListRuleItemGroupInfo) ProtoMessage() {}
func (x *UserListRuleItemGroupInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -339,7 +339,7 @@ func (x *UserListRuleItemGroupInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListRuleItemGroupInfo.ProtoReflect.Descriptor instead.
func (*UserListRuleItemGroupInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_user_lists_proto_rawDescGZIP(), []int{4}
+ return file_google_ads_googleads_v17_common_user_lists_proto_rawDescGZIP(), []int{4}
}
func (x *UserListRuleItemGroupInfo) GetRuleItems() []*UserListRuleItemInfo {
@@ -377,7 +377,7 @@ type UserListRuleItemInfo struct {
func (x *UserListRuleItemInfo) Reset() {
*x = UserListRuleItemInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -390,7 +390,7 @@ func (x *UserListRuleItemInfo) String() string {
func (*UserListRuleItemInfo) ProtoMessage() {}
func (x *UserListRuleItemInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -403,7 +403,7 @@ func (x *UserListRuleItemInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListRuleItemInfo.ProtoReflect.Descriptor instead.
func (*UserListRuleItemInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_user_lists_proto_rawDescGZIP(), []int{5}
+ return file_google_ads_googleads_v17_common_user_lists_proto_rawDescGZIP(), []int{5}
}
func (x *UserListRuleItemInfo) GetName() string {
@@ -475,7 +475,7 @@ type UserListDateRuleItemInfo struct {
// Date comparison operator.
// This field is required and must be populated when creating new date
// rule item.
- Operator enums.UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator `protobuf:"varint,1,opt,name=operator,proto3,enum=google.ads.googleads.v16.enums.UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator" json:"operator,omitempty"`
+ Operator enums.UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator `protobuf:"varint,1,opt,name=operator,proto3,enum=google.ads.googleads.v17.enums.UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator" json:"operator,omitempty"`
// String representing date value to be compared with the rule variable.
// Supported date format is YYYY-MM-DD.
// Times are reported in the customer's time zone.
@@ -489,7 +489,7 @@ type UserListDateRuleItemInfo struct {
func (x *UserListDateRuleItemInfo) Reset() {
*x = UserListDateRuleItemInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -502,7 +502,7 @@ func (x *UserListDateRuleItemInfo) String() string {
func (*UserListDateRuleItemInfo) ProtoMessage() {}
func (x *UserListDateRuleItemInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -515,7 +515,7 @@ func (x *UserListDateRuleItemInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListDateRuleItemInfo.ProtoReflect.Descriptor instead.
func (*UserListDateRuleItemInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_user_lists_proto_rawDescGZIP(), []int{6}
+ return file_google_ads_googleads_v17_common_user_lists_proto_rawDescGZIP(), []int{6}
}
func (x *UserListDateRuleItemInfo) GetOperator() enums.UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator {
@@ -548,7 +548,7 @@ type UserListNumberRuleItemInfo struct {
// Number comparison operator.
// This field is required and must be populated when creating a new number
// rule item.
- Operator enums.UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator `protobuf:"varint,1,opt,name=operator,proto3,enum=google.ads.googleads.v16.enums.UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator" json:"operator,omitempty"`
+ Operator enums.UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator `protobuf:"varint,1,opt,name=operator,proto3,enum=google.ads.googleads.v17.enums.UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator" json:"operator,omitempty"`
// Number value to be compared with the variable.
// This field is required and must be populated when creating a new number
// rule item.
@@ -558,7 +558,7 @@ type UserListNumberRuleItemInfo struct {
func (x *UserListNumberRuleItemInfo) Reset() {
*x = UserListNumberRuleItemInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -571,7 +571,7 @@ func (x *UserListNumberRuleItemInfo) String() string {
func (*UserListNumberRuleItemInfo) ProtoMessage() {}
func (x *UserListNumberRuleItemInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -584,7 +584,7 @@ func (x *UserListNumberRuleItemInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListNumberRuleItemInfo.ProtoReflect.Descriptor instead.
func (*UserListNumberRuleItemInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_user_lists_proto_rawDescGZIP(), []int{7}
+ return file_google_ads_googleads_v17_common_user_lists_proto_rawDescGZIP(), []int{7}
}
func (x *UserListNumberRuleItemInfo) GetOperator() enums.UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator {
@@ -610,7 +610,7 @@ type UserListStringRuleItemInfo struct {
// String comparison operator.
// This field is required and must be populated when creating a new string
// rule item.
- Operator enums.UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator `protobuf:"varint,1,opt,name=operator,proto3,enum=google.ads.googleads.v16.enums.UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator" json:"operator,omitempty"`
+ Operator enums.UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator `protobuf:"varint,1,opt,name=operator,proto3,enum=google.ads.googleads.v17.enums.UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator" json:"operator,omitempty"`
// The right hand side of the string rule item. For URLs or referrer URLs,
// the value can not contain illegal URL chars such as newlines, quotes,
// tabs, or parentheses. This field is required and must be populated when
@@ -621,7 +621,7 @@ type UserListStringRuleItemInfo struct {
func (x *UserListStringRuleItemInfo) Reset() {
*x = UserListStringRuleItemInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -634,7 +634,7 @@ func (x *UserListStringRuleItemInfo) String() string {
func (*UserListStringRuleItemInfo) ProtoMessage() {}
func (x *UserListStringRuleItemInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -647,7 +647,7 @@ func (x *UserListStringRuleItemInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListStringRuleItemInfo.ProtoReflect.Descriptor instead.
func (*UserListStringRuleItemInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_user_lists_proto_rawDescGZIP(), []int{8}
+ return file_google_ads_googleads_v17_common_user_lists_proto_rawDescGZIP(), []int{8}
}
func (x *UserListStringRuleItemInfo) GetOperator() enums.UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator {
@@ -680,7 +680,7 @@ type FlexibleRuleOperandInfo struct {
func (x *FlexibleRuleOperandInfo) Reset() {
*x = FlexibleRuleOperandInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -693,7 +693,7 @@ func (x *FlexibleRuleOperandInfo) String() string {
func (*FlexibleRuleOperandInfo) ProtoMessage() {}
func (x *FlexibleRuleOperandInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -706,7 +706,7 @@ func (x *FlexibleRuleOperandInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use FlexibleRuleOperandInfo.ProtoReflect.Descriptor instead.
func (*FlexibleRuleOperandInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_user_lists_proto_rawDescGZIP(), []int{9}
+ return file_google_ads_googleads_v17_common_user_lists_proto_rawDescGZIP(), []int{9}
}
func (x *FlexibleRuleOperandInfo) GetRule() *UserListRuleInfo {
@@ -736,7 +736,7 @@ type FlexibleRuleUserListInfo struct {
unknownFields protoimpl.UnknownFields
// Operator that defines how the inclusive operands are combined.
- InclusiveRuleOperator enums.UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator `protobuf:"varint,1,opt,name=inclusive_rule_operator,json=inclusiveRuleOperator,proto3,enum=google.ads.googleads.v16.enums.UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator" json:"inclusive_rule_operator,omitempty"`
+ InclusiveRuleOperator enums.UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator `protobuf:"varint,1,opt,name=inclusive_rule_operator,json=inclusiveRuleOperator,proto3,enum=google.ads.googleads.v17.enums.UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator" json:"inclusive_rule_operator,omitempty"`
// Rules representing users that should be included in the user list. These
// are located on the left side of the AND_NOT operator, and joined together
// by either AND/OR as specified by the inclusive_rule_operator.
@@ -750,7 +750,7 @@ type FlexibleRuleUserListInfo struct {
func (x *FlexibleRuleUserListInfo) Reset() {
*x = FlexibleRuleUserListInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -763,7 +763,7 @@ func (x *FlexibleRuleUserListInfo) String() string {
func (*FlexibleRuleUserListInfo) ProtoMessage() {}
func (x *FlexibleRuleUserListInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[10]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -776,7 +776,7 @@ func (x *FlexibleRuleUserListInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use FlexibleRuleUserListInfo.ProtoReflect.Descriptor instead.
func (*FlexibleRuleUserListInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_user_lists_proto_rawDescGZIP(), []int{10}
+ return file_google_ads_googleads_v17_common_user_lists_proto_rawDescGZIP(), []int{10}
}
func (x *FlexibleRuleUserListInfo) GetInclusiveRuleOperator() enums.UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator {
@@ -814,7 +814,7 @@ type RuleBasedUserListInfo struct {
// list's membership duration and the date when the remarketing tag is added.
// The status will be updated to FINISHED once request is processed, or FAILED
// if the request fails.
- PrepopulationStatus enums.UserListPrepopulationStatusEnum_UserListPrepopulationStatus `protobuf:"varint,1,opt,name=prepopulation_status,json=prepopulationStatus,proto3,enum=google.ads.googleads.v16.enums.UserListPrepopulationStatusEnum_UserListPrepopulationStatus" json:"prepopulation_status,omitempty"`
+ PrepopulationStatus enums.UserListPrepopulationStatusEnum_UserListPrepopulationStatus `protobuf:"varint,1,opt,name=prepopulation_status,json=prepopulationStatus,proto3,enum=google.ads.googleads.v17.enums.UserListPrepopulationStatusEnum_UserListPrepopulationStatus" json:"prepopulation_status,omitempty"`
// Flexible rule representation of visitors with one or multiple actions. The
// flexible user list is defined by two lists of operands – inclusive_operands
// and exclusive_operands; each operand represents a set of users based on
@@ -828,7 +828,7 @@ type RuleBasedUserListInfo struct {
func (x *RuleBasedUserListInfo) Reset() {
*x = RuleBasedUserListInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -841,7 +841,7 @@ func (x *RuleBasedUserListInfo) String() string {
func (*RuleBasedUserListInfo) ProtoMessage() {}
func (x *RuleBasedUserListInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[11]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -854,7 +854,7 @@ func (x *RuleBasedUserListInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use RuleBasedUserListInfo.ProtoReflect.Descriptor instead.
func (*RuleBasedUserListInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_user_lists_proto_rawDescGZIP(), []int{11}
+ return file_google_ads_googleads_v17_common_user_lists_proto_rawDescGZIP(), []int{11}
}
func (x *RuleBasedUserListInfo) GetPrepopulationStatus() enums.UserListPrepopulationStatusEnum_UserListPrepopulationStatus {
@@ -888,7 +888,7 @@ type LogicalUserListInfo struct {
func (x *LogicalUserListInfo) Reset() {
*x = LogicalUserListInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[12]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -901,7 +901,7 @@ func (x *LogicalUserListInfo) String() string {
func (*LogicalUserListInfo) ProtoMessage() {}
func (x *LogicalUserListInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[12]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[12]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -914,7 +914,7 @@ func (x *LogicalUserListInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use LogicalUserListInfo.ProtoReflect.Descriptor instead.
func (*LogicalUserListInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_user_lists_proto_rawDescGZIP(), []int{12}
+ return file_google_ads_googleads_v17_common_user_lists_proto_rawDescGZIP(), []int{12}
}
func (x *LogicalUserListInfo) GetRules() []*UserListLogicalRuleInfo {
@@ -932,7 +932,7 @@ type UserListLogicalRuleInfo struct {
unknownFields protoimpl.UnknownFields
// The logical operator of the rule.
- Operator enums.UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator `protobuf:"varint,1,opt,name=operator,proto3,enum=google.ads.googleads.v16.enums.UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator" json:"operator,omitempty"`
+ Operator enums.UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator `protobuf:"varint,1,opt,name=operator,proto3,enum=google.ads.googleads.v17.enums.UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator" json:"operator,omitempty"`
// The list of operands of the rule.
RuleOperands []*LogicalUserListOperandInfo `protobuf:"bytes,2,rep,name=rule_operands,json=ruleOperands,proto3" json:"rule_operands,omitempty"`
}
@@ -940,7 +940,7 @@ type UserListLogicalRuleInfo struct {
func (x *UserListLogicalRuleInfo) Reset() {
*x = UserListLogicalRuleInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[13]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[13]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -953,7 +953,7 @@ func (x *UserListLogicalRuleInfo) String() string {
func (*UserListLogicalRuleInfo) ProtoMessage() {}
func (x *UserListLogicalRuleInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[13]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[13]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -966,7 +966,7 @@ func (x *UserListLogicalRuleInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListLogicalRuleInfo.ProtoReflect.Descriptor instead.
func (*UserListLogicalRuleInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_user_lists_proto_rawDescGZIP(), []int{13}
+ return file_google_ads_googleads_v17_common_user_lists_proto_rawDescGZIP(), []int{13}
}
func (x *UserListLogicalRuleInfo) GetOperator() enums.UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator {
@@ -996,7 +996,7 @@ type LogicalUserListOperandInfo struct {
func (x *LogicalUserListOperandInfo) Reset() {
*x = LogicalUserListOperandInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[14]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[14]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1009,7 +1009,7 @@ func (x *LogicalUserListOperandInfo) String() string {
func (*LogicalUserListOperandInfo) ProtoMessage() {}
func (x *LogicalUserListOperandInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[14]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[14]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1022,7 +1022,7 @@ func (x *LogicalUserListOperandInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use LogicalUserListOperandInfo.ProtoReflect.Descriptor instead.
func (*LogicalUserListOperandInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_user_lists_proto_rawDescGZIP(), []int{14}
+ return file_google_ads_googleads_v17_common_user_lists_proto_rawDescGZIP(), []int{14}
}
func (x *LogicalUserListOperandInfo) GetUserList() string {
@@ -1045,7 +1045,7 @@ type BasicUserListInfo struct {
func (x *BasicUserListInfo) Reset() {
*x = BasicUserListInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[15]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[15]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1058,7 +1058,7 @@ func (x *BasicUserListInfo) String() string {
func (*BasicUserListInfo) ProtoMessage() {}
func (x *BasicUserListInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[15]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[15]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1071,7 +1071,7 @@ func (x *BasicUserListInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use BasicUserListInfo.ProtoReflect.Descriptor instead.
func (*BasicUserListInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_user_lists_proto_rawDescGZIP(), []int{15}
+ return file_google_ads_googleads_v17_common_user_lists_proto_rawDescGZIP(), []int{15}
}
func (x *BasicUserListInfo) GetActions() []*UserListActionInfo {
@@ -1099,7 +1099,7 @@ type UserListActionInfo struct {
func (x *UserListActionInfo) Reset() {
*x = UserListActionInfo{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[16]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[16]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -1112,7 +1112,7 @@ func (x *UserListActionInfo) String() string {
func (*UserListActionInfo) ProtoMessage() {}
func (x *UserListActionInfo) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[16]
+ mi := &file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[16]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -1125,7 +1125,7 @@ func (x *UserListActionInfo) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListActionInfo.ProtoReflect.Descriptor instead.
func (*UserListActionInfo) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_user_lists_proto_rawDescGZIP(), []int{16}
+ return file_google_ads_googleads_v17_common_user_lists_proto_rawDescGZIP(), []int{16}
}
func (m *UserListActionInfo) GetUserListAction() isUserListActionInfo_UserListAction {
@@ -1167,55 +1167,55 @@ func (*UserListActionInfo_ConversionAction) isUserListActionInfo_UserListAction(
func (*UserListActionInfo_RemarketingAction) isUserListActionInfo_UserListAction() {}
-var File_google_ads_googleads_v16_common_user_lists_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_user_lists_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_user_lists_proto_rawDesc = []byte{
0x0a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x73, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x1a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6d, 0x61, 0x74,
0x63, 0x68, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x74, 0x79,
0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x61, 0x6c, 0x69,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x61, 0x6c, 0x69,
0x6b, 0x65, 0x5f, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x65, 0x76,
0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69,
0x73, 0x74, 0x5f, 0x63, 0x72, 0x6d, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x73, 0x6f, 0x75, 0x72,
0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x46, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73,
0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x75, 0x6c,
0x65, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f,
0x66, 0x6c, 0x65, 0x78, 0x69, 0x62, 0x6c, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x6f, 0x70,
0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x44, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65,
0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x72,
0x75, 0x6c, 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x48, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x6e, 0x75, 0x6d,
0x62, 0x65, 0x72, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6f, 0x70,
0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65,
0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x1a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x72, 0x75, 0x6c, 0x65,
0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x48, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72,
0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6c,
0x65, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xe7, 0x01, 0x0a, 0x15, 0x4c, 0x6f, 0x6f, 0x6b, 0x61, 0x6c,
@@ -1225,7 +1225,7 @@ var file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = []byte{
0x64, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x64, 0x73, 0x12, 0x7c, 0x0a, 0x0f,
0x65, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18,
0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x53, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x61, 0x6c, 0x69, 0x6b, 0x65,
0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x45, 0x6e,
0x75, 0x6d, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x61, 0x6c, 0x69, 0x6b, 0x65, 0x45, 0x78, 0x70, 0x61,
@@ -1244,7 +1244,7 @@ var file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = []byte{
0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x81, 0x01, 0x0a, 0x0f, 0x75, 0x70,
0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20,
0x01, 0x28, 0x0e, 0x32, 0x59, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x74,
0x63, 0x68, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x4b, 0x65, 0x79, 0x54, 0x79, 0x70, 0x65, 0x45,
0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x74, 0x63,
@@ -1253,7 +1253,7 @@ var file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = []byte{
0x0a, 0x10, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79,
0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x57, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69,
0x73, 0x74, 0x43, 0x72, 0x6d, 0x44, 0x61, 0x74, 0x61, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54,
0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
0x43, 0x72, 0x6d, 0x44, 0x61, 0x74, 0x61, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70,
@@ -1262,14 +1262,14 @@ var file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = []byte{
0x10, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66,
0x6f, 0x12, 0x62, 0x0a, 0x09, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01,
0x20, 0x01, 0x28, 0x0e, 0x32, 0x45, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x75,
0x6c, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c,
0x69, 0x73, 0x74, 0x52, 0x75, 0x6c, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x08, 0x72, 0x75, 0x6c,
0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x64, 0x0a, 0x10, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x69, 0x74,
0x65, 0x6d, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x3a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x74,
0x65, 0x6d, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0e, 0x72, 0x75, 0x6c,
0x65, 0x49, 0x74, 0x65, 0x6d, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x22, 0x71, 0x0a, 0x19, 0x55,
@@ -1277,7 +1277,7 @@ var file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = []byte{
0x72, 0x6f, 0x75, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x54, 0x0a, 0x0a, 0x72, 0x75, 0x6c, 0x65,
0x5f, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55,
0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x49,
0x6e, 0x66, 0x6f, 0x52, 0x09, 0x72, 0x75, 0x6c, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x22, 0xfa,
0x02, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x75, 0x6c, 0x65, 0x49,
@@ -1286,20 +1286,20 @@ var file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = []byte{
0x12, 0x67, 0x0a, 0x10, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f,
0x69, 0x74, 0x65, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65,
0x72, 0x4c, 0x69, 0x73, 0x74, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x75, 0x6c, 0x65, 0x49,
0x74, 0x65, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0e, 0x6e, 0x75, 0x6d, 0x62, 0x65,
0x72, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x67, 0x0a, 0x10, 0x73, 0x74, 0x72,
0x69, 0x6e, 0x67, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x03, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x49, 0x6e, 0x66, 0x6f,
0x48, 0x00, 0x52, 0x0e, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x74,
0x65, 0x6d, 0x12, 0x61, 0x0a, 0x0e, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f,
0x69, 0x74, 0x65, 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65,
0x72, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x74, 0x65,
0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0c, 0x64, 0x61, 0x74, 0x65, 0x52, 0x75, 0x6c,
0x65, 0x49, 0x74, 0x65, 0x6d, 0x42, 0x0b, 0x0a, 0x09, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x69, 0x74,
@@ -1308,7 +1308,7 @@ var file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = []byte{
0x49, 0x74, 0x65, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x79, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x72,
0x61, 0x74, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72,
0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x74, 0x65, 0x6d,
0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x55, 0x73, 0x65,
0x72, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x74, 0x65,
@@ -1324,7 +1324,7 @@ var file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = []byte{
0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x7d, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f,
0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x61, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73,
0x74, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x4f,
0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x55, 0x73, 0x65, 0x72,
0x4c, 0x69, 0x73, 0x74, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x74,
@@ -1336,7 +1336,7 @@ var file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = []byte{
0x49, 0x74, 0x65, 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x7d, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x72,
0x61, 0x74, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x61, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72,
0x4c, 0x69, 0x73, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x74,
0x65, 0x6d, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x55,
0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c,
@@ -1348,7 +1348,7 @@ var file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = []byte{
0x72, 0x61, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x45, 0x0a, 0x04, 0x72, 0x75, 0x6c, 0x65,
0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73,
0x74, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x72, 0x75, 0x6c, 0x65, 0x12,
0x35, 0x0a, 0x14, 0x6c, 0x6f, 0x6f, 0x6b, 0x62, 0x61, 0x63, 0x6b, 0x5f, 0x77, 0x69, 0x6e, 0x64,
0x6f, 0x77, 0x5f, 0x64, 0x61, 0x79, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52,
@@ -1360,7 +1360,7 @@ var file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = []byte{
0x17, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f,
0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e,
0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x46, 0x6c, 0x65, 0x78, 0x69, 0x62, 0x6c, 0x65,
0x52, 0x75, 0x6c, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x46, 0x6c, 0x65, 0x78, 0x69, 0x62, 0x6c,
@@ -1369,14 +1369,14 @@ var file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = []byte{
0x61, 0x74, 0x6f, 0x72, 0x12, 0x67, 0x0a, 0x12, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76,
0x65, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b,
0x32, 0x38, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x2e, 0x46, 0x6c, 0x65, 0x78, 0x69, 0x62, 0x6c, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x4f,
0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x11, 0x69, 0x6e, 0x63, 0x6c,
0x75, 0x73, 0x69, 0x76, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x73, 0x12, 0x67, 0x0a,
0x12, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61,
0x6e, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x6c, 0x65, 0x78,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x6c, 0x65, 0x78,
0x69, 0x62, 0x6c, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x49,
0x6e, 0x66, 0x6f, 0x52, 0x11, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x65, 0x4f, 0x70,
0x65, 0x72, 0x61, 0x6e, 0x64, 0x73, 0x22, 0x9a, 0x02, 0x0a, 0x15, 0x52, 0x75, 0x6c, 0x65, 0x42,
@@ -1384,7 +1384,7 @@ var file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = []byte{
0x12, 0x8e, 0x01, 0x0a, 0x14, 0x70, 0x72, 0x65, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
0x5b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x65, 0x70, 0x6f, 0x70, 0x75,
0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d,
0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x72, 0x65, 0x70, 0x6f, 0x70, 0x75,
@@ -1393,7 +1393,7 @@ var file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = []byte{
0x73, 0x12, 0x70, 0x0a, 0x17, 0x66, 0x6c, 0x65, 0x78, 0x69, 0x62, 0x6c, 0x65, 0x5f, 0x72, 0x75,
0x6c, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x05, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x6c, 0x65, 0x78, 0x69, 0x62, 0x6c, 0x65, 0x52, 0x75, 0x6c,
0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x14, 0x66,
0x6c, 0x65, 0x78, 0x69, 0x62, 0x6c, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c,
@@ -1401,14 +1401,14 @@ var file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = []byte{
0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x4e, 0x0a, 0x05, 0x72, 0x75,
0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72,
0x4c, 0x69, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x63, 0x61, 0x6c, 0x52, 0x75, 0x6c, 0x65, 0x49,
0x6e, 0x66, 0x6f, 0x52, 0x05, 0x72, 0x75, 0x6c, 0x65, 0x73, 0x22, 0xf4, 0x01, 0x0a, 0x17, 0x55,
0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x63, 0x61, 0x6c, 0x52, 0x75,
0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x77, 0x0a, 0x08, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69,
0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x63, 0x61, 0x6c, 0x52, 0x75, 0x6c, 0x65, 0x4f, 0x70, 0x65,
0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69,
0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x63, 0x61, 0x6c, 0x52, 0x75, 0x6c, 0x65, 0x4f, 0x70, 0x65,
@@ -1416,7 +1416,7 @@ var file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = []byte{
0x60, 0x0a, 0x0d, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x73,
0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x63, 0x61, 0x6c,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x63, 0x61, 0x6c,
0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x49,
0x6e, 0x66, 0x6f, 0x52, 0x0c, 0x72, 0x75, 0x6c, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64,
0x73, 0x22, 0x4c, 0x0a, 0x1a, 0x4c, 0x6f, 0x67, 0x69, 0x63, 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72,
@@ -1427,7 +1427,7 @@ var file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = []byte{
0x62, 0x0a, 0x11, 0x42, 0x61, 0x73, 0x69, 0x63, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
0x49, 0x6e, 0x66, 0x6f, 0x12, 0x4d, 0x0a, 0x07, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18,
0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x07, 0x61, 0x63, 0x74, 0x69,
0x6f, 0x6e, 0x73, 0x22, 0x88, 0x01, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
@@ -1440,88 +1440,88 @@ var file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = []byte{
0x74, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x12, 0x0a, 0x10, 0x75, 0x73,
0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0xee,
0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2,
+ 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_user_lists_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_user_lists_proto_rawDescData = file_google_ads_googleads_v16_common_user_lists_proto_rawDesc
+ file_google_ads_googleads_v17_common_user_lists_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_user_lists_proto_rawDescData = file_google_ads_googleads_v17_common_user_lists_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_user_lists_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_user_lists_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_user_lists_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_user_lists_proto_rawDescData)
+func file_google_ads_googleads_v17_common_user_lists_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_user_lists_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_user_lists_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_user_lists_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_user_lists_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_common_user_lists_proto_msgTypes = make([]protoimpl.MessageInfo, 17)
-var file_google_ads_googleads_v16_common_user_lists_proto_goTypes = []interface{}{
- (*LookalikeUserListInfo)(nil), // 0: google.ads.googleads.v16.common.LookalikeUserListInfo
- (*SimilarUserListInfo)(nil), // 1: google.ads.googleads.v16.common.SimilarUserListInfo
- (*CrmBasedUserListInfo)(nil), // 2: google.ads.googleads.v16.common.CrmBasedUserListInfo
- (*UserListRuleInfo)(nil), // 3: google.ads.googleads.v16.common.UserListRuleInfo
- (*UserListRuleItemGroupInfo)(nil), // 4: google.ads.googleads.v16.common.UserListRuleItemGroupInfo
- (*UserListRuleItemInfo)(nil), // 5: google.ads.googleads.v16.common.UserListRuleItemInfo
- (*UserListDateRuleItemInfo)(nil), // 6: google.ads.googleads.v16.common.UserListDateRuleItemInfo
- (*UserListNumberRuleItemInfo)(nil), // 7: google.ads.googleads.v16.common.UserListNumberRuleItemInfo
- (*UserListStringRuleItemInfo)(nil), // 8: google.ads.googleads.v16.common.UserListStringRuleItemInfo
- (*FlexibleRuleOperandInfo)(nil), // 9: google.ads.googleads.v16.common.FlexibleRuleOperandInfo
- (*FlexibleRuleUserListInfo)(nil), // 10: google.ads.googleads.v16.common.FlexibleRuleUserListInfo
- (*RuleBasedUserListInfo)(nil), // 11: google.ads.googleads.v16.common.RuleBasedUserListInfo
- (*LogicalUserListInfo)(nil), // 12: google.ads.googleads.v16.common.LogicalUserListInfo
- (*UserListLogicalRuleInfo)(nil), // 13: google.ads.googleads.v16.common.UserListLogicalRuleInfo
- (*LogicalUserListOperandInfo)(nil), // 14: google.ads.googleads.v16.common.LogicalUserListOperandInfo
- (*BasicUserListInfo)(nil), // 15: google.ads.googleads.v16.common.BasicUserListInfo
- (*UserListActionInfo)(nil), // 16: google.ads.googleads.v16.common.UserListActionInfo
- (enums.LookalikeExpansionLevelEnum_LookalikeExpansionLevel)(0), // 17: google.ads.googleads.v16.enums.LookalikeExpansionLevelEnum.LookalikeExpansionLevel
- (enums.CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType)(0), // 18: google.ads.googleads.v16.enums.CustomerMatchUploadKeyTypeEnum.CustomerMatchUploadKeyType
- (enums.UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType)(0), // 19: google.ads.googleads.v16.enums.UserListCrmDataSourceTypeEnum.UserListCrmDataSourceType
- (enums.UserListRuleTypeEnum_UserListRuleType)(0), // 20: google.ads.googleads.v16.enums.UserListRuleTypeEnum.UserListRuleType
- (enums.UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator)(0), // 21: google.ads.googleads.v16.enums.UserListDateRuleItemOperatorEnum.UserListDateRuleItemOperator
- (enums.UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator)(0), // 22: google.ads.googleads.v16.enums.UserListNumberRuleItemOperatorEnum.UserListNumberRuleItemOperator
- (enums.UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator)(0), // 23: google.ads.googleads.v16.enums.UserListStringRuleItemOperatorEnum.UserListStringRuleItemOperator
- (enums.UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator)(0), // 24: google.ads.googleads.v16.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator
- (enums.UserListPrepopulationStatusEnum_UserListPrepopulationStatus)(0), // 25: google.ads.googleads.v16.enums.UserListPrepopulationStatusEnum.UserListPrepopulationStatus
- (enums.UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator)(0), // 26: google.ads.googleads.v16.enums.UserListLogicalRuleOperatorEnum.UserListLogicalRuleOperator
-}
-var file_google_ads_googleads_v16_common_user_lists_proto_depIdxs = []int32{
- 17, // 0: google.ads.googleads.v16.common.LookalikeUserListInfo.expansion_level:type_name -> google.ads.googleads.v16.enums.LookalikeExpansionLevelEnum.LookalikeExpansionLevel
- 18, // 1: google.ads.googleads.v16.common.CrmBasedUserListInfo.upload_key_type:type_name -> google.ads.googleads.v16.enums.CustomerMatchUploadKeyTypeEnum.CustomerMatchUploadKeyType
- 19, // 2: google.ads.googleads.v16.common.CrmBasedUserListInfo.data_source_type:type_name -> google.ads.googleads.v16.enums.UserListCrmDataSourceTypeEnum.UserListCrmDataSourceType
- 20, // 3: google.ads.googleads.v16.common.UserListRuleInfo.rule_type:type_name -> google.ads.googleads.v16.enums.UserListRuleTypeEnum.UserListRuleType
- 4, // 4: google.ads.googleads.v16.common.UserListRuleInfo.rule_item_groups:type_name -> google.ads.googleads.v16.common.UserListRuleItemGroupInfo
- 5, // 5: google.ads.googleads.v16.common.UserListRuleItemGroupInfo.rule_items:type_name -> google.ads.googleads.v16.common.UserListRuleItemInfo
- 7, // 6: google.ads.googleads.v16.common.UserListRuleItemInfo.number_rule_item:type_name -> google.ads.googleads.v16.common.UserListNumberRuleItemInfo
- 8, // 7: google.ads.googleads.v16.common.UserListRuleItemInfo.string_rule_item:type_name -> google.ads.googleads.v16.common.UserListStringRuleItemInfo
- 6, // 8: google.ads.googleads.v16.common.UserListRuleItemInfo.date_rule_item:type_name -> google.ads.googleads.v16.common.UserListDateRuleItemInfo
- 21, // 9: google.ads.googleads.v16.common.UserListDateRuleItemInfo.operator:type_name -> google.ads.googleads.v16.enums.UserListDateRuleItemOperatorEnum.UserListDateRuleItemOperator
- 22, // 10: google.ads.googleads.v16.common.UserListNumberRuleItemInfo.operator:type_name -> google.ads.googleads.v16.enums.UserListNumberRuleItemOperatorEnum.UserListNumberRuleItemOperator
- 23, // 11: google.ads.googleads.v16.common.UserListStringRuleItemInfo.operator:type_name -> google.ads.googleads.v16.enums.UserListStringRuleItemOperatorEnum.UserListStringRuleItemOperator
- 3, // 12: google.ads.googleads.v16.common.FlexibleRuleOperandInfo.rule:type_name -> google.ads.googleads.v16.common.UserListRuleInfo
- 24, // 13: google.ads.googleads.v16.common.FlexibleRuleUserListInfo.inclusive_rule_operator:type_name -> google.ads.googleads.v16.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator
- 9, // 14: google.ads.googleads.v16.common.FlexibleRuleUserListInfo.inclusive_operands:type_name -> google.ads.googleads.v16.common.FlexibleRuleOperandInfo
- 9, // 15: google.ads.googleads.v16.common.FlexibleRuleUserListInfo.exclusive_operands:type_name -> google.ads.googleads.v16.common.FlexibleRuleOperandInfo
- 25, // 16: google.ads.googleads.v16.common.RuleBasedUserListInfo.prepopulation_status:type_name -> google.ads.googleads.v16.enums.UserListPrepopulationStatusEnum.UserListPrepopulationStatus
- 10, // 17: google.ads.googleads.v16.common.RuleBasedUserListInfo.flexible_rule_user_list:type_name -> google.ads.googleads.v16.common.FlexibleRuleUserListInfo
- 13, // 18: google.ads.googleads.v16.common.LogicalUserListInfo.rules:type_name -> google.ads.googleads.v16.common.UserListLogicalRuleInfo
- 26, // 19: google.ads.googleads.v16.common.UserListLogicalRuleInfo.operator:type_name -> google.ads.googleads.v16.enums.UserListLogicalRuleOperatorEnum.UserListLogicalRuleOperator
- 14, // 20: google.ads.googleads.v16.common.UserListLogicalRuleInfo.rule_operands:type_name -> google.ads.googleads.v16.common.LogicalUserListOperandInfo
- 16, // 21: google.ads.googleads.v16.common.BasicUserListInfo.actions:type_name -> google.ads.googleads.v16.common.UserListActionInfo
+ return file_google_ads_googleads_v17_common_user_lists_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_common_user_lists_proto_msgTypes = make([]protoimpl.MessageInfo, 17)
+var file_google_ads_googleads_v17_common_user_lists_proto_goTypes = []interface{}{
+ (*LookalikeUserListInfo)(nil), // 0: google.ads.googleads.v17.common.LookalikeUserListInfo
+ (*SimilarUserListInfo)(nil), // 1: google.ads.googleads.v17.common.SimilarUserListInfo
+ (*CrmBasedUserListInfo)(nil), // 2: google.ads.googleads.v17.common.CrmBasedUserListInfo
+ (*UserListRuleInfo)(nil), // 3: google.ads.googleads.v17.common.UserListRuleInfo
+ (*UserListRuleItemGroupInfo)(nil), // 4: google.ads.googleads.v17.common.UserListRuleItemGroupInfo
+ (*UserListRuleItemInfo)(nil), // 5: google.ads.googleads.v17.common.UserListRuleItemInfo
+ (*UserListDateRuleItemInfo)(nil), // 6: google.ads.googleads.v17.common.UserListDateRuleItemInfo
+ (*UserListNumberRuleItemInfo)(nil), // 7: google.ads.googleads.v17.common.UserListNumberRuleItemInfo
+ (*UserListStringRuleItemInfo)(nil), // 8: google.ads.googleads.v17.common.UserListStringRuleItemInfo
+ (*FlexibleRuleOperandInfo)(nil), // 9: google.ads.googleads.v17.common.FlexibleRuleOperandInfo
+ (*FlexibleRuleUserListInfo)(nil), // 10: google.ads.googleads.v17.common.FlexibleRuleUserListInfo
+ (*RuleBasedUserListInfo)(nil), // 11: google.ads.googleads.v17.common.RuleBasedUserListInfo
+ (*LogicalUserListInfo)(nil), // 12: google.ads.googleads.v17.common.LogicalUserListInfo
+ (*UserListLogicalRuleInfo)(nil), // 13: google.ads.googleads.v17.common.UserListLogicalRuleInfo
+ (*LogicalUserListOperandInfo)(nil), // 14: google.ads.googleads.v17.common.LogicalUserListOperandInfo
+ (*BasicUserListInfo)(nil), // 15: google.ads.googleads.v17.common.BasicUserListInfo
+ (*UserListActionInfo)(nil), // 16: google.ads.googleads.v17.common.UserListActionInfo
+ (enums.LookalikeExpansionLevelEnum_LookalikeExpansionLevel)(0), // 17: google.ads.googleads.v17.enums.LookalikeExpansionLevelEnum.LookalikeExpansionLevel
+ (enums.CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType)(0), // 18: google.ads.googleads.v17.enums.CustomerMatchUploadKeyTypeEnum.CustomerMatchUploadKeyType
+ (enums.UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType)(0), // 19: google.ads.googleads.v17.enums.UserListCrmDataSourceTypeEnum.UserListCrmDataSourceType
+ (enums.UserListRuleTypeEnum_UserListRuleType)(0), // 20: google.ads.googleads.v17.enums.UserListRuleTypeEnum.UserListRuleType
+ (enums.UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator)(0), // 21: google.ads.googleads.v17.enums.UserListDateRuleItemOperatorEnum.UserListDateRuleItemOperator
+ (enums.UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator)(0), // 22: google.ads.googleads.v17.enums.UserListNumberRuleItemOperatorEnum.UserListNumberRuleItemOperator
+ (enums.UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator)(0), // 23: google.ads.googleads.v17.enums.UserListStringRuleItemOperatorEnum.UserListStringRuleItemOperator
+ (enums.UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator)(0), // 24: google.ads.googleads.v17.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator
+ (enums.UserListPrepopulationStatusEnum_UserListPrepopulationStatus)(0), // 25: google.ads.googleads.v17.enums.UserListPrepopulationStatusEnum.UserListPrepopulationStatus
+ (enums.UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator)(0), // 26: google.ads.googleads.v17.enums.UserListLogicalRuleOperatorEnum.UserListLogicalRuleOperator
+}
+var file_google_ads_googleads_v17_common_user_lists_proto_depIdxs = []int32{
+ 17, // 0: google.ads.googleads.v17.common.LookalikeUserListInfo.expansion_level:type_name -> google.ads.googleads.v17.enums.LookalikeExpansionLevelEnum.LookalikeExpansionLevel
+ 18, // 1: google.ads.googleads.v17.common.CrmBasedUserListInfo.upload_key_type:type_name -> google.ads.googleads.v17.enums.CustomerMatchUploadKeyTypeEnum.CustomerMatchUploadKeyType
+ 19, // 2: google.ads.googleads.v17.common.CrmBasedUserListInfo.data_source_type:type_name -> google.ads.googleads.v17.enums.UserListCrmDataSourceTypeEnum.UserListCrmDataSourceType
+ 20, // 3: google.ads.googleads.v17.common.UserListRuleInfo.rule_type:type_name -> google.ads.googleads.v17.enums.UserListRuleTypeEnum.UserListRuleType
+ 4, // 4: google.ads.googleads.v17.common.UserListRuleInfo.rule_item_groups:type_name -> google.ads.googleads.v17.common.UserListRuleItemGroupInfo
+ 5, // 5: google.ads.googleads.v17.common.UserListRuleItemGroupInfo.rule_items:type_name -> google.ads.googleads.v17.common.UserListRuleItemInfo
+ 7, // 6: google.ads.googleads.v17.common.UserListRuleItemInfo.number_rule_item:type_name -> google.ads.googleads.v17.common.UserListNumberRuleItemInfo
+ 8, // 7: google.ads.googleads.v17.common.UserListRuleItemInfo.string_rule_item:type_name -> google.ads.googleads.v17.common.UserListStringRuleItemInfo
+ 6, // 8: google.ads.googleads.v17.common.UserListRuleItemInfo.date_rule_item:type_name -> google.ads.googleads.v17.common.UserListDateRuleItemInfo
+ 21, // 9: google.ads.googleads.v17.common.UserListDateRuleItemInfo.operator:type_name -> google.ads.googleads.v17.enums.UserListDateRuleItemOperatorEnum.UserListDateRuleItemOperator
+ 22, // 10: google.ads.googleads.v17.common.UserListNumberRuleItemInfo.operator:type_name -> google.ads.googleads.v17.enums.UserListNumberRuleItemOperatorEnum.UserListNumberRuleItemOperator
+ 23, // 11: google.ads.googleads.v17.common.UserListStringRuleItemInfo.operator:type_name -> google.ads.googleads.v17.enums.UserListStringRuleItemOperatorEnum.UserListStringRuleItemOperator
+ 3, // 12: google.ads.googleads.v17.common.FlexibleRuleOperandInfo.rule:type_name -> google.ads.googleads.v17.common.UserListRuleInfo
+ 24, // 13: google.ads.googleads.v17.common.FlexibleRuleUserListInfo.inclusive_rule_operator:type_name -> google.ads.googleads.v17.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator
+ 9, // 14: google.ads.googleads.v17.common.FlexibleRuleUserListInfo.inclusive_operands:type_name -> google.ads.googleads.v17.common.FlexibleRuleOperandInfo
+ 9, // 15: google.ads.googleads.v17.common.FlexibleRuleUserListInfo.exclusive_operands:type_name -> google.ads.googleads.v17.common.FlexibleRuleOperandInfo
+ 25, // 16: google.ads.googleads.v17.common.RuleBasedUserListInfo.prepopulation_status:type_name -> google.ads.googleads.v17.enums.UserListPrepopulationStatusEnum.UserListPrepopulationStatus
+ 10, // 17: google.ads.googleads.v17.common.RuleBasedUserListInfo.flexible_rule_user_list:type_name -> google.ads.googleads.v17.common.FlexibleRuleUserListInfo
+ 13, // 18: google.ads.googleads.v17.common.LogicalUserListInfo.rules:type_name -> google.ads.googleads.v17.common.UserListLogicalRuleInfo
+ 26, // 19: google.ads.googleads.v17.common.UserListLogicalRuleInfo.operator:type_name -> google.ads.googleads.v17.enums.UserListLogicalRuleOperatorEnum.UserListLogicalRuleOperator
+ 14, // 20: google.ads.googleads.v17.common.UserListLogicalRuleInfo.rule_operands:type_name -> google.ads.googleads.v17.common.LogicalUserListOperandInfo
+ 16, // 21: google.ads.googleads.v17.common.BasicUserListInfo.actions:type_name -> google.ads.googleads.v17.common.UserListActionInfo
22, // [22:22] is the sub-list for method output_type
22, // [22:22] is the sub-list for method input_type
22, // [22:22] is the sub-list for extension type_name
@@ -1529,13 +1529,13 @@ var file_google_ads_googleads_v16_common_user_lists_proto_depIdxs = []int32{
0, // [0:22] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_user_lists_proto_init() }
-func file_google_ads_googleads_v16_common_user_lists_proto_init() {
- if File_google_ads_googleads_v16_common_user_lists_proto != nil {
+func init() { file_google_ads_googleads_v17_common_user_lists_proto_init() }
+func file_google_ads_googleads_v17_common_user_lists_proto_init() {
+ if File_google_ads_googleads_v17_common_user_lists_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LookalikeUserListInfo); i {
case 0:
return &v.state
@@ -1547,7 +1547,7 @@ func file_google_ads_googleads_v16_common_user_lists_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SimilarUserListInfo); i {
case 0:
return &v.state
@@ -1559,7 +1559,7 @@ func file_google_ads_googleads_v16_common_user_lists_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CrmBasedUserListInfo); i {
case 0:
return &v.state
@@ -1571,7 +1571,7 @@ func file_google_ads_googleads_v16_common_user_lists_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListRuleInfo); i {
case 0:
return &v.state
@@ -1583,7 +1583,7 @@ func file_google_ads_googleads_v16_common_user_lists_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListRuleItemGroupInfo); i {
case 0:
return &v.state
@@ -1595,7 +1595,7 @@ func file_google_ads_googleads_v16_common_user_lists_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListRuleItemInfo); i {
case 0:
return &v.state
@@ -1607,7 +1607,7 @@ func file_google_ads_googleads_v16_common_user_lists_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListDateRuleItemInfo); i {
case 0:
return &v.state
@@ -1619,7 +1619,7 @@ func file_google_ads_googleads_v16_common_user_lists_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListNumberRuleItemInfo); i {
case 0:
return &v.state
@@ -1631,7 +1631,7 @@ func file_google_ads_googleads_v16_common_user_lists_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListStringRuleItemInfo); i {
case 0:
return &v.state
@@ -1643,7 +1643,7 @@ func file_google_ads_googleads_v16_common_user_lists_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FlexibleRuleOperandInfo); i {
case 0:
return &v.state
@@ -1655,7 +1655,7 @@ func file_google_ads_googleads_v16_common_user_lists_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FlexibleRuleUserListInfo); i {
case 0:
return &v.state
@@ -1667,7 +1667,7 @@ func file_google_ads_googleads_v16_common_user_lists_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RuleBasedUserListInfo); i {
case 0:
return &v.state
@@ -1679,7 +1679,7 @@ func file_google_ads_googleads_v16_common_user_lists_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LogicalUserListInfo); i {
case 0:
return &v.state
@@ -1691,7 +1691,7 @@ func file_google_ads_googleads_v16_common_user_lists_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListLogicalRuleInfo); i {
case 0:
return &v.state
@@ -1703,7 +1703,7 @@ func file_google_ads_googleads_v16_common_user_lists_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LogicalUserListOperandInfo); i {
case 0:
return &v.state
@@ -1715,7 +1715,7 @@ func file_google_ads_googleads_v16_common_user_lists_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BasicUserListInfo); i {
case 0:
return &v.state
@@ -1727,7 +1727,7 @@ func file_google_ads_googleads_v16_common_user_lists_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListActionInfo); i {
case 0:
return &v.state
@@ -1740,19 +1740,19 @@ func file_google_ads_googleads_v16_common_user_lists_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[1].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[2].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[5].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[1].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[2].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[5].OneofWrappers = []interface{}{
(*UserListRuleItemInfo_NumberRuleItem)(nil),
(*UserListRuleItemInfo_StringRuleItem)(nil),
(*UserListRuleItemInfo_DateRuleItem)(nil),
}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[6].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[7].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[8].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[9].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[14].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_common_user_lists_proto_msgTypes[16].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[6].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[7].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[8].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[9].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[14].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_common_user_lists_proto_msgTypes[16].OneofWrappers = []interface{}{
(*UserListActionInfo_ConversionAction)(nil),
(*UserListActionInfo_RemarketingAction)(nil),
}
@@ -1760,18 +1760,18 @@ func file_google_ads_googleads_v16_common_user_lists_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_user_lists_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_user_lists_proto_rawDesc,
NumEnums: 0,
NumMessages: 17,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_user_lists_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_user_lists_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_user_lists_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_user_lists_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_user_lists_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_user_lists_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_user_lists_proto = out.File
- file_google_ads_googleads_v16_common_user_lists_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_user_lists_proto_goTypes = nil
- file_google_ads_googleads_v16_common_user_lists_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_user_lists_proto = out.File
+ file_google_ads_googleads_v17_common_user_lists_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_user_lists_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_user_lists_proto_depIdxs = nil
}
diff --git a/common/value.pb.go b/common/value.pb.go
index ddac3339..a16ebdd3 100644
--- a/common/value.pb.go
+++ b/common/value.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/common/value.proto
+// source: google/ads/googleads/v17/common/value.proto
package common
@@ -55,7 +55,7 @@ type Value struct {
func (x *Value) Reset() {
*x = Value{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_common_value_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_value_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -68,7 +68,7 @@ func (x *Value) String() string {
func (*Value) ProtoMessage() {}
func (x *Value) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_common_value_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_common_value_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -81,7 +81,7 @@ func (x *Value) ProtoReflect() protoreflect.Message {
// Deprecated: Use Value.ProtoReflect.Descriptor instead.
func (*Value) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_common_value_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_common_value_proto_rawDescGZIP(), []int{0}
}
func (m *Value) GetValue() isValue_Value {
@@ -165,14 +165,14 @@ func (*Value_DoubleValue) isValue_Value() {}
func (*Value_StringValue) isValue_Value() {}
-var File_google_ads_googleads_v16_common_value_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_common_value_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_common_value_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_common_value_proto_rawDesc = []byte{
0x0a, 0x2b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0xc7,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0xc7,
0x01, 0x0a, 0x05, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x25, 0x0a, 0x0d, 0x62, 0x6f, 0x6f, 0x6c,
0x65, 0x61, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x48,
0x00, 0x52, 0x0c, 0x62, 0x6f, 0x6f, 0x6c, 0x65, 0x61, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12,
@@ -187,39 +187,39 @@ var file_google_ads_googleads_v16_common_value_proto_rawDesc = []byte{
0x48, 0x00, 0x52, 0x0b, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x42,
0x07, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0xea, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x42, 0x0a, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea,
0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x43,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x43,
0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_common_value_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_common_value_proto_rawDescData = file_google_ads_googleads_v16_common_value_proto_rawDesc
+ file_google_ads_googleads_v17_common_value_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_common_value_proto_rawDescData = file_google_ads_googleads_v17_common_value_proto_rawDesc
)
-func file_google_ads_googleads_v16_common_value_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_common_value_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_common_value_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_common_value_proto_rawDescData)
+func file_google_ads_googleads_v17_common_value_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_common_value_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_common_value_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_common_value_proto_rawDescData)
})
- return file_google_ads_googleads_v16_common_value_proto_rawDescData
+ return file_google_ads_googleads_v17_common_value_proto_rawDescData
}
-var file_google_ads_googleads_v16_common_value_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_common_value_proto_goTypes = []interface{}{
- (*Value)(nil), // 0: google.ads.googleads.v16.common.Value
+var file_google_ads_googleads_v17_common_value_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_common_value_proto_goTypes = []interface{}{
+ (*Value)(nil), // 0: google.ads.googleads.v17.common.Value
}
-var file_google_ads_googleads_v16_common_value_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_common_value_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -227,13 +227,13 @@ var file_google_ads_googleads_v16_common_value_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_common_value_proto_init() }
-func file_google_ads_googleads_v16_common_value_proto_init() {
- if File_google_ads_googleads_v16_common_value_proto != nil {
+func init() { file_google_ads_googleads_v17_common_value_proto_init() }
+func file_google_ads_googleads_v17_common_value_proto_init() {
+ if File_google_ads_googleads_v17_common_value_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_common_value_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_common_value_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Value); i {
case 0:
return &v.state
@@ -246,7 +246,7 @@ func file_google_ads_googleads_v16_common_value_proto_init() {
}
}
}
- file_google_ads_googleads_v16_common_value_proto_msgTypes[0].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_common_value_proto_msgTypes[0].OneofWrappers = []interface{}{
(*Value_BooleanValue)(nil),
(*Value_Int64Value)(nil),
(*Value_FloatValue)(nil),
@@ -257,18 +257,18 @@ func file_google_ads_googleads_v16_common_value_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_common_value_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_common_value_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_common_value_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_common_value_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_common_value_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_common_value_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_common_value_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_common_value_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_common_value_proto = out.File
- file_google_ads_googleads_v16_common_value_proto_rawDesc = nil
- file_google_ads_googleads_v16_common_value_proto_goTypes = nil
- file_google_ads_googleads_v16_common_value_proto_depIdxs = nil
+ File_google_ads_googleads_v17_common_value_proto = out.File
+ file_google_ads_googleads_v17_common_value_proto_rawDesc = nil
+ file_google_ads_googleads_v17_common_value_proto_goTypes = nil
+ file_google_ads_googleads_v17_common_value_proto_depIdxs = nil
}
diff --git a/enums/access_invitation_status.pb.go b/enums/access_invitation_status.pb.go
index ad6af100..e9e2bb0b 100644
--- a/enums/access_invitation_status.pb.go
+++ b/enums/access_invitation_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/access_invitation_status.proto
+// source: google/ads/googleads/v17/enums/access_invitation_status.proto
package enums
@@ -81,11 +81,11 @@ func (x AccessInvitationStatusEnum_AccessInvitationStatus) String() string {
}
func (AccessInvitationStatusEnum_AccessInvitationStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_access_invitation_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_access_invitation_status_proto_enumTypes[0].Descriptor()
}
func (AccessInvitationStatusEnum_AccessInvitationStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_access_invitation_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_access_invitation_status_proto_enumTypes[0]
}
func (x AccessInvitationStatusEnum_AccessInvitationStatus) Number() protoreflect.EnumNumber {
@@ -94,7 +94,7 @@ func (x AccessInvitationStatusEnum_AccessInvitationStatus) Number() protoreflect
// Deprecated: Use AccessInvitationStatusEnum_AccessInvitationStatus.Descriptor instead.
func (AccessInvitationStatusEnum_AccessInvitationStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_access_invitation_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_access_invitation_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum for identifying the status of access invitation
@@ -107,7 +107,7 @@ type AccessInvitationStatusEnum struct {
func (x *AccessInvitationStatusEnum) Reset() {
*x = AccessInvitationStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_access_invitation_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_access_invitation_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -120,7 +120,7 @@ func (x *AccessInvitationStatusEnum) String() string {
func (*AccessInvitationStatusEnum) ProtoMessage() {}
func (x *AccessInvitationStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_access_invitation_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_access_invitation_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -133,18 +133,18 @@ func (x *AccessInvitationStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AccessInvitationStatusEnum.ProtoReflect.Descriptor instead.
func (*AccessInvitationStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_access_invitation_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_access_invitation_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_access_invitation_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_access_invitation_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_access_invitation_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_access_invitation_status_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
0x7c, 0x0a, 0x1a, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5e, 0x0a,
0x16, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f,
@@ -154,42 +154,42 @@ var file_google_ads_googleads_v16_enums_access_invitation_status_proto_rawDesc =
0x10, 0x02, 0x12, 0x0c, 0x0a, 0x08, 0x44, 0x45, 0x43, 0x4c, 0x49, 0x4e, 0x45, 0x44, 0x10, 0x03,
0x12, 0x0b, 0x0a, 0x07, 0x45, 0x58, 0x50, 0x49, 0x52, 0x45, 0x44, 0x10, 0x04, 0x42, 0xf5, 0x01,
0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69,
0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_access_invitation_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_access_invitation_status_proto_rawDescData = file_google_ads_googleads_v16_enums_access_invitation_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_access_invitation_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_access_invitation_status_proto_rawDescData = file_google_ads_googleads_v17_enums_access_invitation_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_access_invitation_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_access_invitation_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_access_invitation_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_access_invitation_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_access_invitation_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_access_invitation_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_access_invitation_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_access_invitation_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_access_invitation_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_access_invitation_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_access_invitation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_access_invitation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_access_invitation_status_proto_goTypes = []interface{}{
- (AccessInvitationStatusEnum_AccessInvitationStatus)(0), // 0: google.ads.googleads.v16.enums.AccessInvitationStatusEnum.AccessInvitationStatus
- (*AccessInvitationStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AccessInvitationStatusEnum
+var file_google_ads_googleads_v17_enums_access_invitation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_access_invitation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_access_invitation_status_proto_goTypes = []interface{}{
+ (AccessInvitationStatusEnum_AccessInvitationStatus)(0), // 0: google.ads.googleads.v17.enums.AccessInvitationStatusEnum.AccessInvitationStatus
+ (*AccessInvitationStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AccessInvitationStatusEnum
}
-var file_google_ads_googleads_v16_enums_access_invitation_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_access_invitation_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_enums_access_invitation_status_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_access_invitation_status_proto_init() }
-func file_google_ads_googleads_v16_enums_access_invitation_status_proto_init() {
- if File_google_ads_googleads_v16_enums_access_invitation_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_access_invitation_status_proto_init() }
+func file_google_ads_googleads_v17_enums_access_invitation_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_access_invitation_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_access_invitation_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_access_invitation_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccessInvitationStatusEnum); i {
case 0:
return &v.state
@@ -220,19 +220,19 @@ func file_google_ads_googleads_v16_enums_access_invitation_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_access_invitation_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_access_invitation_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_access_invitation_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_access_invitation_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_access_invitation_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_access_invitation_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_access_invitation_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_access_invitation_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_access_invitation_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_access_invitation_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_access_invitation_status_proto = out.File
- file_google_ads_googleads_v16_enums_access_invitation_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_access_invitation_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_access_invitation_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_access_invitation_status_proto = out.File
+ file_google_ads_googleads_v17_enums_access_invitation_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_access_invitation_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_access_invitation_status_proto_depIdxs = nil
}
diff --git a/enums/access_reason.pb.go b/enums/access_reason.pb.go
index f51275bc..4c75da63 100644
--- a/enums/access_reason.pb.go
+++ b/enums/access_reason.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/access_reason.proto
+// source: google/ads/googleads/v17/enums/access_reason.proto
package enums
@@ -87,11 +87,11 @@ func (x AccessReasonEnum_AccessReason) String() string {
}
func (AccessReasonEnum_AccessReason) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_access_reason_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_access_reason_proto_enumTypes[0].Descriptor()
}
func (AccessReasonEnum_AccessReason) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_access_reason_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_access_reason_proto_enumTypes[0]
}
func (x AccessReasonEnum_AccessReason) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x AccessReasonEnum_AccessReason) Number() protoreflect.EnumNumber {
// Deprecated: Use AccessReasonEnum_AccessReason.Descriptor instead.
func (AccessReasonEnum_AccessReason) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_access_reason_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_access_reason_proto_rawDescGZIP(), []int{0, 0}
}
// Indicates the way the resource such as user list is related to a user.
@@ -113,7 +113,7 @@ type AccessReasonEnum struct {
func (x *AccessReasonEnum) Reset() {
*x = AccessReasonEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_access_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_access_reason_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +126,7 @@ func (x *AccessReasonEnum) String() string {
func (*AccessReasonEnum) ProtoMessage() {}
func (x *AccessReasonEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_access_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_access_reason_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,17 +139,17 @@ func (x *AccessReasonEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AccessReasonEnum.ProtoReflect.Descriptor instead.
func (*AccessReasonEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_access_reason_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_access_reason_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_access_reason_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_access_reason_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_access_reason_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_access_reason_proto_rawDesc = []byte{
0x0a, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x22, 0x85, 0x01, 0x0a, 0x10, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52,
0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x71, 0x0a, 0x0c, 0x41, 0x63, 0x63,
0x65, 0x73, 0x73, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53,
@@ -160,42 +160,42 @@ var file_google_ads_googleads_v16_enums_access_reason_proto_rawDesc = []byte{
0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x42, 0x45, 0x44, 0x10, 0x05, 0x12, 0x0e, 0x0a, 0x0a,
0x41, 0x46, 0x46, 0x49, 0x4c, 0x49, 0x41, 0x54, 0x45, 0x44, 0x10, 0x06, 0x42, 0xeb, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x11, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x65, 0x61, 0x73, 0x6f,
0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73,
- 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45,
+ 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
- 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_access_reason_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_access_reason_proto_rawDescData = file_google_ads_googleads_v16_enums_access_reason_proto_rawDesc
+ file_google_ads_googleads_v17_enums_access_reason_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_access_reason_proto_rawDescData = file_google_ads_googleads_v17_enums_access_reason_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_access_reason_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_access_reason_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_access_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_access_reason_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_access_reason_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_access_reason_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_access_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_access_reason_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_access_reason_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_access_reason_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_access_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_access_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_access_reason_proto_goTypes = []interface{}{
- (AccessReasonEnum_AccessReason)(0), // 0: google.ads.googleads.v16.enums.AccessReasonEnum.AccessReason
- (*AccessReasonEnum)(nil), // 1: google.ads.googleads.v16.enums.AccessReasonEnum
+var file_google_ads_googleads_v17_enums_access_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_access_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_access_reason_proto_goTypes = []interface{}{
+ (AccessReasonEnum_AccessReason)(0), // 0: google.ads.googleads.v17.enums.AccessReasonEnum.AccessReason
+ (*AccessReasonEnum)(nil), // 1: google.ads.googleads.v17.enums.AccessReasonEnum
}
-var file_google_ads_googleads_v16_enums_access_reason_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_access_reason_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -203,13 +203,13 @@ var file_google_ads_googleads_v16_enums_access_reason_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_access_reason_proto_init() }
-func file_google_ads_googleads_v16_enums_access_reason_proto_init() {
- if File_google_ads_googleads_v16_enums_access_reason_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_access_reason_proto_init() }
+func file_google_ads_googleads_v17_enums_access_reason_proto_init() {
+ if File_google_ads_googleads_v17_enums_access_reason_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_access_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_access_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccessReasonEnum); i {
case 0:
return &v.state
@@ -226,19 +226,19 @@ func file_google_ads_googleads_v16_enums_access_reason_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_access_reason_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_access_reason_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_access_reason_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_access_reason_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_access_reason_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_access_reason_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_access_reason_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_access_reason_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_access_reason_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_access_reason_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_access_reason_proto = out.File
- file_google_ads_googleads_v16_enums_access_reason_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_access_reason_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_access_reason_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_access_reason_proto = out.File
+ file_google_ads_googleads_v17_enums_access_reason_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_access_reason_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_access_reason_proto_depIdxs = nil
}
diff --git a/enums/access_role.pb.go b/enums/access_role.pb.go
index 10725894..a77cc6dd 100644
--- a/enums/access_role.pb.go
+++ b/enums/access_role.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/access_role.proto
+// source: google/ads/googleads/v17/enums/access_role.proto
package enums
@@ -84,11 +84,11 @@ func (x AccessRoleEnum_AccessRole) String() string {
}
func (AccessRoleEnum_AccessRole) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_access_role_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_access_role_proto_enumTypes[0].Descriptor()
}
func (AccessRoleEnum_AccessRole) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_access_role_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_access_role_proto_enumTypes[0]
}
func (x AccessRoleEnum_AccessRole) Number() protoreflect.EnumNumber {
@@ -97,7 +97,7 @@ func (x AccessRoleEnum_AccessRole) Number() protoreflect.EnumNumber {
// Deprecated: Use AccessRoleEnum_AccessRole.Descriptor instead.
func (AccessRoleEnum_AccessRole) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_access_role_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_access_role_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible access role for user.
@@ -110,7 +110,7 @@ type AccessRoleEnum struct {
func (x *AccessRoleEnum) Reset() {
*x = AccessRoleEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_access_role_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_access_role_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -123,7 +123,7 @@ func (x *AccessRoleEnum) String() string {
func (*AccessRoleEnum) ProtoMessage() {}
func (x *AccessRoleEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_access_role_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_access_role_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -136,17 +136,17 @@ func (x *AccessRoleEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AccessRoleEnum.ProtoReflect.Descriptor instead.
func (*AccessRoleEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_access_role_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_access_role_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_access_role_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_access_role_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_access_role_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_access_role_proto_rawDesc = []byte{
0x0a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x74, 0x0a, 0x0e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x62, 0x0a, 0x0a, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f,
0x6c, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45,
@@ -156,41 +156,41 @@ var file_google_ads_googleads_v16_enums_access_role_proto_rawDesc = []byte{
0x44, 0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x10, 0x04, 0x12, 0x0e, 0x0a, 0x0a, 0x45, 0x4d, 0x41, 0x49,
0x4c, 0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x10, 0x05, 0x42, 0xe9, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
0x0f, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x6f, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_access_role_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_access_role_proto_rawDescData = file_google_ads_googleads_v16_enums_access_role_proto_rawDesc
+ file_google_ads_googleads_v17_enums_access_role_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_access_role_proto_rawDescData = file_google_ads_googleads_v17_enums_access_role_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_access_role_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_access_role_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_access_role_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_access_role_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_access_role_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_access_role_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_access_role_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_access_role_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_access_role_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_access_role_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_access_role_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_access_role_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_access_role_proto_goTypes = []interface{}{
- (AccessRoleEnum_AccessRole)(0), // 0: google.ads.googleads.v16.enums.AccessRoleEnum.AccessRole
- (*AccessRoleEnum)(nil), // 1: google.ads.googleads.v16.enums.AccessRoleEnum
+var file_google_ads_googleads_v17_enums_access_role_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_access_role_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_access_role_proto_goTypes = []interface{}{
+ (AccessRoleEnum_AccessRole)(0), // 0: google.ads.googleads.v17.enums.AccessRoleEnum.AccessRole
+ (*AccessRoleEnum)(nil), // 1: google.ads.googleads.v17.enums.AccessRoleEnum
}
-var file_google_ads_googleads_v16_enums_access_role_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_access_role_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -198,13 +198,13 @@ var file_google_ads_googleads_v16_enums_access_role_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_access_role_proto_init() }
-func file_google_ads_googleads_v16_enums_access_role_proto_init() {
- if File_google_ads_googleads_v16_enums_access_role_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_access_role_proto_init() }
+func file_google_ads_googleads_v17_enums_access_role_proto_init() {
+ if File_google_ads_googleads_v17_enums_access_role_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_access_role_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_access_role_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccessRoleEnum); i {
case 0:
return &v.state
@@ -221,19 +221,19 @@ func file_google_ads_googleads_v16_enums_access_role_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_access_role_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_access_role_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_access_role_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_access_role_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_access_role_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_access_role_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_access_role_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_access_role_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_access_role_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_access_role_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_access_role_proto = out.File
- file_google_ads_googleads_v16_enums_access_role_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_access_role_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_access_role_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_access_role_proto = out.File
+ file_google_ads_googleads_v17_enums_access_role_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_access_role_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_access_role_proto_depIdxs = nil
}
diff --git a/enums/account_budget_proposal_status.pb.go b/enums/account_budget_proposal_status.pb.go
index bd43ed65..a254857c 100644
--- a/enums/account_budget_proposal_status.pb.go
+++ b/enums/account_budget_proposal_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/account_budget_proposal_status.proto
+// source: google/ads/googleads/v17/enums/account_budget_proposal_status.proto
package enums
@@ -91,11 +91,11 @@ func (x AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus) String() st
}
func (AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_enumTypes[0].Descriptor()
}
func (AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_enumTypes[0]
}
func (x AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus) Number() protoreflect.EnumNumber {
@@ -104,7 +104,7 @@ func (x AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus) Number() pr
// Deprecated: Use AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus.Descriptor instead.
func (AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing AccountBudgetProposal statuses.
@@ -117,7 +117,7 @@ type AccountBudgetProposalStatusEnum struct {
func (x *AccountBudgetProposalStatusEnum) Reset() {
*x = AccountBudgetProposalStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -130,7 +130,7 @@ func (x *AccountBudgetProposalStatusEnum) String() string {
func (*AccountBudgetProposalStatusEnum) ProtoMessage() {}
func (x *AccountBudgetProposalStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -143,18 +143,18 @@ func (x *AccountBudgetProposalStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AccountBudgetProposalStatusEnum.ProtoReflect.Descriptor instead.
func (*AccountBudgetProposalStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_account_budget_proposal_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_account_budget_proposal_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f,
0x70, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xaa, 0x01, 0x0a, 0x1f, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x86, 0x01, 0x0a, 0x1b, 0x41, 0x63,
@@ -168,42 +168,42 @@ var file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_raw
0x45, 0x44, 0x10, 0x05, 0x12, 0x0c, 0x0a, 0x08, 0x52, 0x45, 0x4a, 0x45, 0x43, 0x54, 0x45, 0x44,
0x10, 0x06, 0x42, 0xfa, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x41, 0x63, 0x63, 0x6f, 0x75,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x41, 0x63, 0x63, 0x6f, 0x75,
0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_rawDescData = file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_rawDescData = file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_goTypes = []interface{}{
- (AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus)(0), // 0: google.ads.googleads.v16.enums.AccountBudgetProposalStatusEnum.AccountBudgetProposalStatus
- (*AccountBudgetProposalStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AccountBudgetProposalStatusEnum
+var file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_goTypes = []interface{}{
+ (AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus)(0), // 0: google.ads.googleads.v17.enums.AccountBudgetProposalStatusEnum.AccountBudgetProposalStatus
+ (*AccountBudgetProposalStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AccountBudgetProposalStatusEnum
}
-var file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -211,13 +211,13 @@ var file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_init() }
-func file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_init() {
- if File_google_ads_googleads_v16_enums_account_budget_proposal_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_init() }
+func file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_account_budget_proposal_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccountBudgetProposalStatusEnum); i {
case 0:
return &v.state
@@ -234,19 +234,19 @@ func file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_account_budget_proposal_status_proto = out.File
- file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_account_budget_proposal_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_account_budget_proposal_status_proto = out.File
+ file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_account_budget_proposal_status_proto_depIdxs = nil
}
diff --git a/enums/account_budget_proposal_type.pb.go b/enums/account_budget_proposal_type.pb.go
index 5e09847f..de2559eb 100644
--- a/enums/account_budget_proposal_type.pb.go
+++ b/enums/account_budget_proposal_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/account_budget_proposal_type.proto
+// source: google/ads/googleads/v17/enums/account_budget_proposal_type.proto
package enums
@@ -83,11 +83,11 @@ func (x AccountBudgetProposalTypeEnum_AccountBudgetProposalType) String() string
}
func (AccountBudgetProposalTypeEnum_AccountBudgetProposalType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_enumTypes[0].Descriptor()
}
func (AccountBudgetProposalTypeEnum_AccountBudgetProposalType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_enumTypes[0]
}
func (x AccountBudgetProposalTypeEnum_AccountBudgetProposalType) Number() protoreflect.EnumNumber {
@@ -96,7 +96,7 @@ func (x AccountBudgetProposalTypeEnum_AccountBudgetProposalType) Number() protor
// Deprecated: Use AccountBudgetProposalTypeEnum_AccountBudgetProposalType.Descriptor instead.
func (AccountBudgetProposalTypeEnum_AccountBudgetProposalType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing AccountBudgetProposal types.
@@ -109,7 +109,7 @@ type AccountBudgetProposalTypeEnum struct {
func (x *AccountBudgetProposalTypeEnum) Reset() {
*x = AccountBudgetProposalTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -122,7 +122,7 @@ func (x *AccountBudgetProposalTypeEnum) String() string {
func (*AccountBudgetProposalTypeEnum) ProtoMessage() {}
func (x *AccountBudgetProposalTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -135,18 +135,18 @@ func (x *AccountBudgetProposalTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AccountBudgetProposalTypeEnum.ProtoReflect.Descriptor instead.
func (*AccountBudgetProposalTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_account_budget_proposal_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_account_budget_proposal_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_rawDesc = []byte{
0x0a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f,
0x70, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x22, 0x87, 0x01, 0x0a, 0x1d, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42,
0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x54, 0x79, 0x70,
0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x66, 0x0a, 0x19, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
@@ -157,42 +157,42 @@ var file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_rawDe
0x55, 0x50, 0x44, 0x41, 0x54, 0x45, 0x10, 0x03, 0x12, 0x07, 0x0a, 0x03, 0x45, 0x4e, 0x44, 0x10,
0x04, 0x12, 0x0a, 0x0a, 0x06, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x10, 0x05, 0x42, 0xf8, 0x01,
0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64,
0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_rawDescData = file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_rawDescData = file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_goTypes = []interface{}{
- (AccountBudgetProposalTypeEnum_AccountBudgetProposalType)(0), // 0: google.ads.googleads.v16.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType
- (*AccountBudgetProposalTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.AccountBudgetProposalTypeEnum
+var file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_goTypes = []interface{}{
+ (AccountBudgetProposalTypeEnum_AccountBudgetProposalType)(0), // 0: google.ads.googleads.v17.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType
+ (*AccountBudgetProposalTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.AccountBudgetProposalTypeEnum
}
-var file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -200,13 +200,13 @@ var file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_depId
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_init() }
-func file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_init() {
- if File_google_ads_googleads_v16_enums_account_budget_proposal_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_init() }
+func file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_account_budget_proposal_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccountBudgetProposalTypeEnum); i {
case 0:
return &v.state
@@ -223,19 +223,19 @@ func file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_init
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_account_budget_proposal_type_proto = out.File
- file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_account_budget_proposal_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_account_budget_proposal_type_proto = out.File
+ file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_account_budget_proposal_type_proto_depIdxs = nil
}
diff --git a/enums/account_budget_status.pb.go b/enums/account_budget_status.pb.go
index e2269cf1..2a5e70be 100644
--- a/enums/account_budget_status.pb.go
+++ b/enums/account_budget_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/account_budget_status.proto
+// source: google/ads/googleads/v17/enums/account_budget_status.proto
package enums
@@ -79,11 +79,11 @@ func (x AccountBudgetStatusEnum_AccountBudgetStatus) String() string {
}
func (AccountBudgetStatusEnum_AccountBudgetStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_account_budget_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_account_budget_status_proto_enumTypes[0].Descriptor()
}
func (AccountBudgetStatusEnum_AccountBudgetStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_account_budget_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_account_budget_status_proto_enumTypes[0]
}
func (x AccountBudgetStatusEnum_AccountBudgetStatus) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x AccountBudgetStatusEnum_AccountBudgetStatus) Number() protoreflect.EnumN
// Deprecated: Use AccountBudgetStatusEnum_AccountBudgetStatus.Descriptor instead.
func (AccountBudgetStatusEnum_AccountBudgetStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_account_budget_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_account_budget_status_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing AccountBudget statuses.
@@ -105,7 +105,7 @@ type AccountBudgetStatusEnum struct {
func (x *AccountBudgetStatusEnum) Reset() {
*x = AccountBudgetStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_account_budget_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_account_budget_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *AccountBudgetStatusEnum) String() string {
func (*AccountBudgetStatusEnum) ProtoMessage() {}
func (x *AccountBudgetStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_account_budget_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_account_budget_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *AccountBudgetStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AccountBudgetStatusEnum.ProtoReflect.Descriptor instead.
func (*AccountBudgetStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_account_budget_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_account_budget_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_account_budget_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_account_budget_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_account_budget_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_account_budget_status_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f,
0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x78, 0x0a, 0x17,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x78, 0x0a, 0x17,
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5d, 0x0a, 0x13, 0x41, 0x63, 0x63, 0x6f, 0x75,
0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f,
@@ -152,42 +152,42 @@ var file_google_ads_googleads_v16_enums_account_budget_status_proto_rawDesc = []
0x52, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x12, 0x0d, 0x0a, 0x09, 0x43, 0x41, 0x4e, 0x43, 0x45,
0x4c, 0x4c, 0x45, 0x44, 0x10, 0x04, 0x42, 0xf2, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, 0x41,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, 0x41,
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_account_budget_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_account_budget_status_proto_rawDescData = file_google_ads_googleads_v16_enums_account_budget_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_account_budget_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_account_budget_status_proto_rawDescData = file_google_ads_googleads_v17_enums_account_budget_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_account_budget_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_account_budget_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_account_budget_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_account_budget_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_account_budget_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_account_budget_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_account_budget_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_account_budget_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_account_budget_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_account_budget_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_account_budget_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_account_budget_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_account_budget_status_proto_goTypes = []interface{}{
- (AccountBudgetStatusEnum_AccountBudgetStatus)(0), // 0: google.ads.googleads.v16.enums.AccountBudgetStatusEnum.AccountBudgetStatus
- (*AccountBudgetStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AccountBudgetStatusEnum
+var file_google_ads_googleads_v17_enums_account_budget_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_account_budget_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_account_budget_status_proto_goTypes = []interface{}{
+ (AccountBudgetStatusEnum_AccountBudgetStatus)(0), // 0: google.ads.googleads.v17.enums.AccountBudgetStatusEnum.AccountBudgetStatus
+ (*AccountBudgetStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AccountBudgetStatusEnum
}
-var file_google_ads_googleads_v16_enums_account_budget_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_account_budget_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -195,13 +195,13 @@ var file_google_ads_googleads_v16_enums_account_budget_status_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_account_budget_status_proto_init() }
-func file_google_ads_googleads_v16_enums_account_budget_status_proto_init() {
- if File_google_ads_googleads_v16_enums_account_budget_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_account_budget_status_proto_init() }
+func file_google_ads_googleads_v17_enums_account_budget_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_account_budget_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_account_budget_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_account_budget_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccountBudgetStatusEnum); i {
case 0:
return &v.state
@@ -218,19 +218,19 @@ func file_google_ads_googleads_v16_enums_account_budget_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_account_budget_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_account_budget_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_account_budget_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_account_budget_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_account_budget_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_account_budget_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_account_budget_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_account_budget_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_account_budget_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_account_budget_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_account_budget_status_proto = out.File
- file_google_ads_googleads_v16_enums_account_budget_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_account_budget_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_account_budget_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_account_budget_status_proto = out.File
+ file_google_ads_googleads_v17_enums_account_budget_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_account_budget_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_account_budget_status_proto_depIdxs = nil
}
diff --git a/enums/account_link_status.pb.go b/enums/account_link_status.pb.go
index 959a05cb..028abdfc 100644
--- a/enums/account_link_status.pb.go
+++ b/enums/account_link_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/account_link_status.proto
+// source: google/ads/googleads/v17/enums/account_link_status.proto
package enums
@@ -94,11 +94,11 @@ func (x AccountLinkStatusEnum_AccountLinkStatus) String() string {
}
func (AccountLinkStatusEnum_AccountLinkStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_account_link_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_account_link_status_proto_enumTypes[0].Descriptor()
}
func (AccountLinkStatusEnum_AccountLinkStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_account_link_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_account_link_status_proto_enumTypes[0]
}
func (x AccountLinkStatusEnum_AccountLinkStatus) Number() protoreflect.EnumNumber {
@@ -107,7 +107,7 @@ func (x AccountLinkStatusEnum_AccountLinkStatus) Number() protoreflect.EnumNumbe
// Deprecated: Use AccountLinkStatusEnum_AccountLinkStatus.Descriptor instead.
func (AccountLinkStatusEnum_AccountLinkStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_account_link_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_account_link_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of an account link.
@@ -120,7 +120,7 @@ type AccountLinkStatusEnum struct {
func (x *AccountLinkStatusEnum) Reset() {
*x = AccountLinkStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_account_link_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_account_link_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -133,7 +133,7 @@ func (x *AccountLinkStatusEnum) String() string {
func (*AccountLinkStatusEnum) ProtoMessage() {}
func (x *AccountLinkStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_account_link_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_account_link_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -146,18 +146,18 @@ func (x *AccountLinkStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AccountLinkStatusEnum.ProtoReflect.Descriptor instead.
func (*AccountLinkStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_account_link_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_account_link_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_account_link_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_account_link_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_account_link_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_account_link_status_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x73, 0x74,
0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa5, 0x01, 0x0a, 0x15, 0x41,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa5, 0x01, 0x0a, 0x15, 0x41,
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x8b, 0x01, 0x0a, 0x11, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74,
0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e,
@@ -170,41 +170,41 @@ var file_google_ads_googleads_v16_enums_account_link_status_proto_rawDesc = []by
0x54, 0x45, 0x44, 0x10, 0x06, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x56, 0x4f, 0x4b, 0x45, 0x44,
0x10, 0x07, 0x42, 0xf0, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x41, 0x63, 0x63, 0x6f, 0x75,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x41, 0x63, 0x63, 0x6f, 0x75,
0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_account_link_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_account_link_status_proto_rawDescData = file_google_ads_googleads_v16_enums_account_link_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_account_link_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_account_link_status_proto_rawDescData = file_google_ads_googleads_v17_enums_account_link_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_account_link_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_account_link_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_account_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_account_link_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_account_link_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_account_link_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_account_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_account_link_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_account_link_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_account_link_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_account_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_account_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_account_link_status_proto_goTypes = []interface{}{
- (AccountLinkStatusEnum_AccountLinkStatus)(0), // 0: google.ads.googleads.v16.enums.AccountLinkStatusEnum.AccountLinkStatus
- (*AccountLinkStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AccountLinkStatusEnum
+var file_google_ads_googleads_v17_enums_account_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_account_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_account_link_status_proto_goTypes = []interface{}{
+ (AccountLinkStatusEnum_AccountLinkStatus)(0), // 0: google.ads.googleads.v17.enums.AccountLinkStatusEnum.AccountLinkStatus
+ (*AccountLinkStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AccountLinkStatusEnum
}
-var file_google_ads_googleads_v16_enums_account_link_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_account_link_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -212,13 +212,13 @@ var file_google_ads_googleads_v16_enums_account_link_status_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_account_link_status_proto_init() }
-func file_google_ads_googleads_v16_enums_account_link_status_proto_init() {
- if File_google_ads_googleads_v16_enums_account_link_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_account_link_status_proto_init() }
+func file_google_ads_googleads_v17_enums_account_link_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_account_link_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_account_link_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_account_link_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccountLinkStatusEnum); i {
case 0:
return &v.state
@@ -235,19 +235,19 @@ func file_google_ads_googleads_v16_enums_account_link_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_account_link_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_account_link_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_account_link_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_account_link_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_account_link_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_account_link_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_account_link_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_account_link_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_account_link_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_account_link_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_account_link_status_proto = out.File
- file_google_ads_googleads_v16_enums_account_link_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_account_link_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_account_link_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_account_link_status_proto = out.File
+ file_google_ads_googleads_v17_enums_account_link_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_account_link_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_account_link_status_proto_depIdxs = nil
}
diff --git a/enums/ad_customizer_placeholder_field.pb.go b/enums/ad_customizer_placeholder_field.pb.go
index b6200703..e2962843 100644
--- a/enums/ad_customizer_placeholder_field.pb.go
+++ b/enums/ad_customizer_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/ad_customizer_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/ad_customizer_placeholder_field.proto
package enums
@@ -83,11 +83,11 @@ func (x AdCustomizerPlaceholderFieldEnum_AdCustomizerPlaceholderField) String()
}
func (AdCustomizerPlaceholderFieldEnum_AdCustomizerPlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (AdCustomizerPlaceholderFieldEnum_AdCustomizerPlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_enumTypes[0]
}
func (x AdCustomizerPlaceholderFieldEnum_AdCustomizerPlaceholderField) Number() protoreflect.EnumNumber {
@@ -96,7 +96,7 @@ func (x AdCustomizerPlaceholderFieldEnum_AdCustomizerPlaceholderField) Number()
// Deprecated: Use AdCustomizerPlaceholderFieldEnum_AdCustomizerPlaceholderField.Descriptor instead.
func (AdCustomizerPlaceholderFieldEnum_AdCustomizerPlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Ad Customizer placeholder fields.
@@ -109,7 +109,7 @@ type AdCustomizerPlaceholderFieldEnum struct {
func (x *AdCustomizerPlaceholderFieldEnum) Reset() {
*x = AdCustomizerPlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -122,7 +122,7 @@ func (x *AdCustomizerPlaceholderFieldEnum) String() string {
func (*AdCustomizerPlaceholderFieldEnum) ProtoMessage() {}
func (x *AdCustomizerPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -135,18 +135,18 @@ func (x *AdCustomizerPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdCustomizerPlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*AdCustomizerPlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x64, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x70,
0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8e, 0x01, 0x0a, 0x20, 0x41, 0x64, 0x43, 0x75, 0x73,
0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64,
0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x6a, 0x0a, 0x1c, 0x41,
@@ -158,42 +158,42 @@ var file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_ra
0x03, 0x12, 0x08, 0x0a, 0x04, 0x44, 0x41, 0x54, 0x45, 0x10, 0x04, 0x12, 0x0a, 0x0a, 0x06, 0x53,
0x54, 0x52, 0x49, 0x4e, 0x47, 0x10, 0x05, 0x42, 0xfb, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21,
0x41, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x50, 0x6c, 0x61, 0x63,
0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_goTypes = []interface{}{
- (AdCustomizerPlaceholderFieldEnum_AdCustomizerPlaceholderField)(0), // 0: google.ads.googleads.v16.enums.AdCustomizerPlaceholderFieldEnum.AdCustomizerPlaceholderField
- (*AdCustomizerPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.AdCustomizerPlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_goTypes = []interface{}{
+ (AdCustomizerPlaceholderFieldEnum_AdCustomizerPlaceholderField)(0), // 0: google.ads.googleads.v17.enums.AdCustomizerPlaceholderFieldEnum.AdCustomizerPlaceholderField
+ (*AdCustomizerPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.AdCustomizerPlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -201,13 +201,13 @@ var file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_de
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdCustomizerPlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -224,19 +224,19 @@ func file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_i
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_ad_customizer_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_ad_customizer_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/ad_destination_type.pb.go b/enums/ad_destination_type.pb.go
index a4c5d582..9d29910d 100644
--- a/enums/ad_destination_type.pb.go
+++ b/enums/ad_destination_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/ad_destination_type.proto
+// source: google/ads/googleads/v17/enums/ad_destination_type.proto
package enums
@@ -111,11 +111,11 @@ func (x AdDestinationTypeEnum_AdDestinationType) String() string {
}
func (AdDestinationTypeEnum_AdDestinationType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_ad_destination_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_ad_destination_type_proto_enumTypes[0].Descriptor()
}
func (AdDestinationTypeEnum_AdDestinationType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_ad_destination_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_ad_destination_type_proto_enumTypes[0]
}
func (x AdDestinationTypeEnum_AdDestinationType) Number() protoreflect.EnumNumber {
@@ -124,7 +124,7 @@ func (x AdDestinationTypeEnum_AdDestinationType) Number() protoreflect.EnumNumbe
// Deprecated: Use AdDestinationTypeEnum_AdDestinationType.Descriptor instead.
func (AdDestinationTypeEnum_AdDestinationType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_destination_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_ad_destination_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enumeration of Google Ads destination types.
@@ -137,7 +137,7 @@ type AdDestinationTypeEnum struct {
func (x *AdDestinationTypeEnum) Reset() {
*x = AdDestinationTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_ad_destination_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_destination_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -150,7 +150,7 @@ func (x *AdDestinationTypeEnum) String() string {
func (*AdDestinationTypeEnum) ProtoMessage() {}
func (x *AdDestinationTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_ad_destination_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_destination_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -163,18 +163,18 @@ func (x *AdDestinationTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdDestinationTypeEnum.ProtoReflect.Descriptor instead.
func (*AdDestinationTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_destination_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_ad_destination_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_ad_destination_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_ad_destination_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_ad_destination_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_ad_destination_type_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x64, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x90, 0x02, 0x0a, 0x15, 0x41,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x90, 0x02, 0x0a, 0x15, 0x41,
0x64, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0xf6, 0x01, 0x0a, 0x11, 0x41, 0x64, 0x44, 0x65, 0x73, 0x74, 0x69,
0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e,
@@ -193,42 +193,42 @@ var file_google_ads_googleads_v16_enums_ad_destination_type_proto_rawDesc = []by
0x0a, 0x19, 0x55, 0x4e, 0x4d, 0x4f, 0x44, 0x45, 0x4c, 0x45, 0x44, 0x5f, 0x46, 0x4f, 0x52, 0x5f,
0x43, 0x4f, 0x4e, 0x56, 0x45, 0x52, 0x53, 0x49, 0x4f, 0x4e, 0x53, 0x10, 0x0c, 0x42, 0xf0, 0x01,
0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x41, 0x64, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_ad_destination_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_ad_destination_type_proto_rawDescData = file_google_ads_googleads_v16_enums_ad_destination_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_ad_destination_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_ad_destination_type_proto_rawDescData = file_google_ads_googleads_v17_enums_ad_destination_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_ad_destination_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_ad_destination_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_ad_destination_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_ad_destination_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_ad_destination_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_ad_destination_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_ad_destination_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_ad_destination_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_ad_destination_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_ad_destination_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_ad_destination_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_destination_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_destination_type_proto_goTypes = []interface{}{
- (AdDestinationTypeEnum_AdDestinationType)(0), // 0: google.ads.googleads.v16.enums.AdDestinationTypeEnum.AdDestinationType
- (*AdDestinationTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.AdDestinationTypeEnum
+var file_google_ads_googleads_v17_enums_ad_destination_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_destination_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_destination_type_proto_goTypes = []interface{}{
+ (AdDestinationTypeEnum_AdDestinationType)(0), // 0: google.ads.googleads.v17.enums.AdDestinationTypeEnum.AdDestinationType
+ (*AdDestinationTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.AdDestinationTypeEnum
}
-var file_google_ads_googleads_v16_enums_ad_destination_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_ad_destination_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -236,13 +236,13 @@ var file_google_ads_googleads_v16_enums_ad_destination_type_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_ad_destination_type_proto_init() }
-func file_google_ads_googleads_v16_enums_ad_destination_type_proto_init() {
- if File_google_ads_googleads_v16_enums_ad_destination_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_ad_destination_type_proto_init() }
+func file_google_ads_googleads_v17_enums_ad_destination_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_ad_destination_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_ad_destination_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_ad_destination_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdDestinationTypeEnum); i {
case 0:
return &v.state
@@ -259,19 +259,19 @@ func file_google_ads_googleads_v16_enums_ad_destination_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_ad_destination_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_ad_destination_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_ad_destination_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_ad_destination_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_ad_destination_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_ad_destination_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_ad_destination_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_ad_destination_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_ad_destination_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_ad_destination_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_ad_destination_type_proto = out.File
- file_google_ads_googleads_v16_enums_ad_destination_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_ad_destination_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_ad_destination_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_ad_destination_type_proto = out.File
+ file_google_ads_googleads_v17_enums_ad_destination_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_ad_destination_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_ad_destination_type_proto_depIdxs = nil
}
diff --git a/enums/ad_group_ad_primary_status.pb.go b/enums/ad_group_ad_primary_status.pb.go
index bca6f10f..244a74af 100644
--- a/enums/ad_group_ad_primary_status.pb.go
+++ b/enums/ad_group_ad_primary_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/ad_group_ad_primary_status.proto
+// source: google/ads/googleads/v17/enums/ad_group_ad_primary_status.proto
package enums
@@ -91,11 +91,11 @@ func (x AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus) String() string {
}
func (AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_enumTypes[0].Descriptor()
}
func (AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_enumTypes[0]
}
func (x AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus) Number() protoreflect.EnumNumber {
@@ -104,7 +104,7 @@ func (x AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus) Number() protoreflect
// Deprecated: Use AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus.Descriptor instead.
func (AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_rawDescGZIP(), []int{0, 0}
}
// Ad Group Ad Primary Status. Provides insight into why an ad group ad is not
@@ -118,7 +118,7 @@ type AdGroupAdPrimaryStatusEnum struct {
func (x *AdGroupAdPrimaryStatusEnum) Reset() {
*x = AdGroupAdPrimaryStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -131,7 +131,7 @@ func (x *AdGroupAdPrimaryStatusEnum) String() string {
func (*AdGroupAdPrimaryStatusEnum) ProtoMessage() {}
func (x *AdGroupAdPrimaryStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -144,18 +144,18 @@ func (x *AdGroupAdPrimaryStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroupAdPrimaryStatusEnum.ProtoReflect.Descriptor instead.
func (*AdGroupAdPrimaryStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x70, 0x72, 0x69,
0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x22, 0xa8, 0x01, 0x0a, 0x1a, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x50,
0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x89, 0x01, 0x0a, 0x16, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x50, 0x72,
@@ -168,42 +168,42 @@ var file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_rawDesc
0x07, 0x4c, 0x49, 0x4d, 0x49, 0x54, 0x45, 0x44, 0x10, 0x06, 0x12, 0x10, 0x0a, 0x0c, 0x4e, 0x4f,
0x54, 0x5f, 0x45, 0x4c, 0x49, 0x47, 0x49, 0x42, 0x4c, 0x45, 0x10, 0x07, 0x42, 0xf5, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x1b, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x50, 0x72,
0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_rawDescData = file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_rawDescData = file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_goTypes = []interface{}{
- (AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus)(0), // 0: google.ads.googleads.v16.enums.AdGroupAdPrimaryStatusEnum.AdGroupAdPrimaryStatus
- (*AdGroupAdPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AdGroupAdPrimaryStatusEnum
+var file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_goTypes = []interface{}{
+ (AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus)(0), // 0: google.ads.googleads.v17.enums.AdGroupAdPrimaryStatusEnum.AdGroupAdPrimaryStatus
+ (*AdGroupAdPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AdGroupAdPrimaryStatusEnum
}
-var file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -211,13 +211,13 @@ var file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_init() }
-func file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_init() {
- if File_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_init() }
+func file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupAdPrimaryStatusEnum); i {
case 0:
return &v.state
@@ -234,19 +234,19 @@ func file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto = out.File
- file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto = out.File
+ file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_proto_depIdxs = nil
}
diff --git a/enums/ad_group_ad_primary_status_reason.pb.go b/enums/ad_group_ad_primary_status_reason.pb.go
index 7d5caa11..d5f467f2 100644
--- a/enums/ad_group_ad_primary_status_reason.pb.go
+++ b/enums/ad_group_ad_primary_status_reason.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/ad_group_ad_primary_status_reason.proto
+// source: google/ads/googleads/v17/enums/ad_group_ad_primary_status_reason.proto
package enums
@@ -141,11 +141,11 @@ func (x AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason) String()
}
func (AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_enumTypes[0].Descriptor()
}
func (AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_enumTypes[0]
}
func (x AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason) Number() protoreflect.EnumNumber {
@@ -154,7 +154,7 @@ func (x AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason) Number()
// Deprecated: Use AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason.Descriptor instead.
func (AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_rawDescGZIP(), []int{0, 0}
}
// AdGroupAd Primary Status Reason. Provides insight into why an ad group ad is
@@ -169,7 +169,7 @@ type AdGroupAdPrimaryStatusReasonEnum struct {
func (x *AdGroupAdPrimaryStatusReasonEnum) Reset() {
*x = AdGroupAdPrimaryStatusReasonEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -182,7 +182,7 @@ func (x *AdGroupAdPrimaryStatusReasonEnum) String() string {
func (*AdGroupAdPrimaryStatusReasonEnum) ProtoMessage() {}
func (x *AdGroupAdPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -195,19 +195,19 @@ func (x *AdGroupAdPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroupAdPrimaryStatusReasonEnum.ProtoReflect.Descriptor instead.
func (*AdGroupAdPrimaryStatusReasonEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_rawDesc = []byte{
0x0a, 0x46, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x70, 0x72, 0x69,
0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x73,
0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xea, 0x03, 0x0a, 0x20, 0x41, 0x64, 0x47,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xea, 0x03, 0x0a, 0x20, 0x41, 0x64, 0x47,
0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xc5, 0x03,
0x0a, 0x1c, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x50, 0x72, 0x69, 0x6d, 0x61,
@@ -240,42 +240,42 @@ var file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_
0x4f, 0x55, 0x50, 0x5f, 0x41, 0x44, 0x5f, 0x55, 0x4e, 0x44, 0x45, 0x52, 0x5f, 0x41, 0x50, 0x50,
0x45, 0x41, 0x4c, 0x10, 0x10, 0x42, 0xfb, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x41, 0x64,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x41, 0x64,
0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74,
0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_rawDescData = file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_rawDesc
+ file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_rawDescData = file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_goTypes = []interface{}{
- (AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason)(0), // 0: google.ads.googleads.v16.enums.AdGroupAdPrimaryStatusReasonEnum.AdGroupAdPrimaryStatusReason
- (*AdGroupAdPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v16.enums.AdGroupAdPrimaryStatusReasonEnum
+var file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_goTypes = []interface{}{
+ (AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason)(0), // 0: google.ads.googleads.v17.enums.AdGroupAdPrimaryStatusReasonEnum.AdGroupAdPrimaryStatusReason
+ (*AdGroupAdPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v17.enums.AdGroupAdPrimaryStatusReasonEnum
}
-var file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -283,13 +283,13 @@ var file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_init() }
-func file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_init() {
- if File_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_init() }
+func file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_init() {
+ if File_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupAdPrimaryStatusReasonEnum); i {
case 0:
return &v.state
@@ -306,19 +306,19 @@ func file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto = out.File
- file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_ad_group_ad_primary_status_reason_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto = out.File
+ file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_ad_group_ad_primary_status_reason_proto_depIdxs = nil
}
diff --git a/enums/ad_group_ad_rotation_mode.pb.go b/enums/ad_group_ad_rotation_mode.pb.go
index 46169e00..00cdfb96 100644
--- a/enums/ad_group_ad_rotation_mode.pb.go
+++ b/enums/ad_group_ad_rotation_mode.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/ad_group_ad_rotation_mode.proto
+// source: google/ads/googleads/v17/enums/ad_group_ad_rotation_mode.proto
package enums
@@ -77,11 +77,11 @@ func (x AdGroupAdRotationModeEnum_AdGroupAdRotationMode) String() string {
}
func (AdGroupAdRotationModeEnum_AdGroupAdRotationMode) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_enumTypes[0].Descriptor()
}
func (AdGroupAdRotationModeEnum_AdGroupAdRotationMode) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_enumTypes[0]
}
func (x AdGroupAdRotationModeEnum_AdGroupAdRotationMode) Number() protoreflect.EnumNumber {
@@ -90,7 +90,7 @@ func (x AdGroupAdRotationModeEnum_AdGroupAdRotationMode) Number() protoreflect.E
// Deprecated: Use AdGroupAdRotationModeEnum_AdGroupAdRotationMode.Descriptor instead.
func (AdGroupAdRotationModeEnum_AdGroupAdRotationMode) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible ad rotation modes of ads within an
@@ -104,7 +104,7 @@ type AdGroupAdRotationModeEnum struct {
func (x *AdGroupAdRotationModeEnum) Reset() {
*x = AdGroupAdRotationModeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -117,7 +117,7 @@ func (x *AdGroupAdRotationModeEnum) String() string {
func (*AdGroupAdRotationModeEnum) ProtoMessage() {}
func (x *AdGroupAdRotationModeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -130,18 +130,18 @@ func (x *AdGroupAdRotationModeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroupAdRotationModeEnum.ProtoReflect.Descriptor instead.
func (*AdGroupAdRotationModeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x72, 0x6f, 0x74,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0x74, 0x0a, 0x19, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x52, 0x6f, 0x74,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x57, 0x0a,
0x15, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x69,
@@ -151,42 +151,42 @@ var file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_rawDesc
0x10, 0x02, 0x12, 0x12, 0x0a, 0x0e, 0x52, 0x4f, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x46, 0x4f, 0x52,
0x45, 0x56, 0x45, 0x52, 0x10, 0x03, 0x42, 0xf4, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x41,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x41,
0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x4d, 0x6f, 0x64, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_rawDescData = file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_rawDesc
+ file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_rawDescData = file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_goTypes = []interface{}{
- (AdGroupAdRotationModeEnum_AdGroupAdRotationMode)(0), // 0: google.ads.googleads.v16.enums.AdGroupAdRotationModeEnum.AdGroupAdRotationMode
- (*AdGroupAdRotationModeEnum)(nil), // 1: google.ads.googleads.v16.enums.AdGroupAdRotationModeEnum
+var file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_goTypes = []interface{}{
+ (AdGroupAdRotationModeEnum_AdGroupAdRotationMode)(0), // 0: google.ads.googleads.v17.enums.AdGroupAdRotationModeEnum.AdGroupAdRotationMode
+ (*AdGroupAdRotationModeEnum)(nil), // 1: google.ads.googleads.v17.enums.AdGroupAdRotationModeEnum
}
-var file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -194,13 +194,13 @@ var file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_init() }
-func file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_init() {
- if File_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_init() }
+func file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_init() {
+ if File_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupAdRotationModeEnum); i {
case 0:
return &v.state
@@ -217,19 +217,19 @@ func file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto = out.File
- file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_ad_group_ad_rotation_mode_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto = out.File
+ file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_ad_group_ad_rotation_mode_proto_depIdxs = nil
}
diff --git a/enums/ad_group_ad_status.pb.go b/enums/ad_group_ad_status.pb.go
index 6a7a8e5d..bea99164 100644
--- a/enums/ad_group_ad_status.pb.go
+++ b/enums/ad_group_ad_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/ad_group_ad_status.proto
+// source: google/ads/googleads/v17/enums/ad_group_ad_status.proto
package enums
@@ -81,11 +81,11 @@ func (x AdGroupAdStatusEnum_AdGroupAdStatus) String() string {
}
func (AdGroupAdStatusEnum_AdGroupAdStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_enumTypes[0].Descriptor()
}
func (AdGroupAdStatusEnum_AdGroupAdStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_enumTypes[0]
}
func (x AdGroupAdStatusEnum_AdGroupAdStatus) Number() protoreflect.EnumNumber {
@@ -94,7 +94,7 @@ func (x AdGroupAdStatusEnum_AdGroupAdStatus) Number() protoreflect.EnumNumber {
// Deprecated: Use AdGroupAdStatusEnum_AdGroupAdStatus.Descriptor instead.
func (AdGroupAdStatusEnum_AdGroupAdStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of an AdGroupAd.
@@ -107,7 +107,7 @@ type AdGroupAdStatusEnum struct {
func (x *AdGroupAdStatusEnum) Reset() {
*x = AdGroupAdStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -120,7 +120,7 @@ func (x *AdGroupAdStatusEnum) String() string {
func (*AdGroupAdStatusEnum) ProtoMessage() {}
func (x *AdGroupAdStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -133,18 +133,18 @@ func (x *AdGroupAdStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroupAdStatusEnum.ProtoReflect.Descriptor instead.
func (*AdGroupAdStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_ad_group_ad_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_ad_group_ad_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x73, 0x74, 0x61,
0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6c, 0x0a, 0x13, 0x41, 0x64, 0x47,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6c, 0x0a, 0x13, 0x41, 0x64, 0x47,
0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x55, 0x0a, 0x0f, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
@@ -153,41 +153,41 @@ var file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_rawDesc = []byt
0x0a, 0x06, 0x50, 0x41, 0x55, 0x53, 0x45, 0x44, 0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45,
0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x04, 0x42, 0xee, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x14,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x14,
0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_rawDescData = file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_rawDescData = file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_goTypes = []interface{}{
- (AdGroupAdStatusEnum_AdGroupAdStatus)(0), // 0: google.ads.googleads.v16.enums.AdGroupAdStatusEnum.AdGroupAdStatus
- (*AdGroupAdStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AdGroupAdStatusEnum
+var file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_goTypes = []interface{}{
+ (AdGroupAdStatusEnum_AdGroupAdStatus)(0), // 0: google.ads.googleads.v17.enums.AdGroupAdStatusEnum.AdGroupAdStatus
+ (*AdGroupAdStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AdGroupAdStatusEnum
}
-var file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -195,13 +195,13 @@ var file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_depIdxs = []int
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_init() }
-func file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_init() {
- if File_google_ads_googleads_v16_enums_ad_group_ad_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_init() }
+func file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_ad_group_ad_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupAdStatusEnum); i {
case 0:
return &v.state
@@ -218,19 +218,19 @@ func file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_ad_group_ad_status_proto = out.File
- file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_ad_group_ad_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_ad_group_ad_status_proto = out.File
+ file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_ad_group_ad_status_proto_depIdxs = nil
}
diff --git a/enums/ad_group_criterion_approval_status.pb.go b/enums/ad_group_criterion_approval_status.pb.go
index 4f6ad4a2..5bada5bd 100644
--- a/enums/ad_group_criterion_approval_status.pb.go
+++ b/enums/ad_group_criterion_approval_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/ad_group_criterion_approval_status.proto
+// source: google/ads/googleads/v17/enums/ad_group_criterion_approval_status.proto
package enums
@@ -83,11 +83,11 @@ func (x AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus) Strin
}
func (AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_enumTypes[0].Descriptor()
}
func (AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_enumTypes[0]
}
func (x AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus) Number() protoreflect.EnumNumber {
@@ -96,7 +96,7 @@ func (x AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus) Numbe
// Deprecated: Use AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus.Descriptor instead.
func (AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible AdGroupCriterion approval statuses.
@@ -109,7 +109,7 @@ type AdGroupCriterionApprovalStatusEnum struct {
func (x *AdGroupCriterionApprovalStatusEnum) Reset() {
*x = AdGroupCriterionApprovalStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -122,7 +122,7 @@ func (x *AdGroupCriterionApprovalStatusEnum) String() string {
func (*AdGroupCriterionApprovalStatusEnum) ProtoMessage() {}
func (x *AdGroupCriterionApprovalStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -135,19 +135,19 @@ func (x *AdGroupCriterionApprovalStatusEnum) ProtoReflect() protoreflect.Message
// Deprecated: Use AdGroupCriterionApprovalStatusEnum.ProtoReflect.Descriptor instead.
func (*AdGroupCriterionApprovalStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_rawDesc = []byte{
0x0a, 0x47, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72,
0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61,
0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xaa, 0x01, 0x0a, 0x22, 0x41, 0x64,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xaa, 0x01, 0x0a, 0x22, 0x41, 0x64,
0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x41, 0x70,
0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x83, 0x01, 0x0a, 0x1e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74,
@@ -160,42 +160,42 @@ var file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto
0x45, 0x57, 0x10, 0x04, 0x12, 0x10, 0x0a, 0x0c, 0x55, 0x4e, 0x44, 0x45, 0x52, 0x5f, 0x52, 0x45,
0x56, 0x49, 0x45, 0x57, 0x10, 0x05, 0x42, 0xfd, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23, 0x41,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23, 0x41,
0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x41,
0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_rawDescData = file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_rawDescData = file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_goTypes = []interface{}{
- (AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus)(0), // 0: google.ads.googleads.v16.enums.AdGroupCriterionApprovalStatusEnum.AdGroupCriterionApprovalStatus
- (*AdGroupCriterionApprovalStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AdGroupCriterionApprovalStatusEnum
+var file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_goTypes = []interface{}{
+ (AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus)(0), // 0: google.ads.googleads.v17.enums.AdGroupCriterionApprovalStatusEnum.AdGroupCriterionApprovalStatus
+ (*AdGroupCriterionApprovalStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AdGroupCriterionApprovalStatusEnum
}
-var file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -203,13 +203,13 @@ var file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_init() }
-func file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_init() {
- if File_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_init() }
+func file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupCriterionApprovalStatusEnum); i {
case 0:
return &v.state
@@ -226,19 +226,19 @@ func file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_prot
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto = out.File
- file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_ad_group_criterion_approval_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto = out.File
+ file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_ad_group_criterion_approval_status_proto_depIdxs = nil
}
diff --git a/enums/ad_group_criterion_primary_status.pb.go b/enums/ad_group_criterion_primary_status.pb.go
new file mode 100644
index 00000000..e657d402
--- /dev/null
+++ b/enums/ad_group_criterion_primary_status.pb.go
@@ -0,0 +1,250 @@
+// Copyright 2024 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+// Code generated by protoc-gen-go. DO NOT EDIT.
+// versions:
+// protoc-gen-go v1.34.1
+// protoc v4.24.4
+// source: google/ads/googleads/v17/enums/ad_group_criterion_primary_status.proto
+
+package enums
+
+import (
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
+ reflect "reflect"
+ sync "sync"
+)
+
+const (
+ // Verify that this generated code is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
+ // Verify that runtime/protoimpl is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
+)
+
+// Enum describing the possible ad group criterion primary status. Provides
+// insight into why an ad group criterion is not serving or not serving
+// optimally.
+type AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus int32
+
+const (
+ // Not specified.
+ AdGroupCriterionPrimaryStatusEnum_UNSPECIFIED AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus = 0
+ // Used for return value only. Represents value unknown in this version.
+ AdGroupCriterionPrimaryStatusEnum_UNKNOWN AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus = 1
+ // The ad group criterion is eligible to serve.
+ AdGroupCriterionPrimaryStatusEnum_ELIGIBLE AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus = 2
+ // The ad group criterion is paused.
+ AdGroupCriterionPrimaryStatusEnum_PAUSED AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus = 3
+ // The ad group criterion is removed.
+ AdGroupCriterionPrimaryStatusEnum_REMOVED AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus = 4
+ // The ad group criterion is pending.
+ AdGroupCriterionPrimaryStatusEnum_PENDING AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus = 5
+ // The ad group criterion is not eligible to serve.
+ AdGroupCriterionPrimaryStatusEnum_NOT_ELIGIBLE AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus = 6
+)
+
+// Enum value maps for AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus.
+var (
+ AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus_name = map[int32]string{
+ 0: "UNSPECIFIED",
+ 1: "UNKNOWN",
+ 2: "ELIGIBLE",
+ 3: "PAUSED",
+ 4: "REMOVED",
+ 5: "PENDING",
+ 6: "NOT_ELIGIBLE",
+ }
+ AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus_value = map[string]int32{
+ "UNSPECIFIED": 0,
+ "UNKNOWN": 1,
+ "ELIGIBLE": 2,
+ "PAUSED": 3,
+ "REMOVED": 4,
+ "PENDING": 5,
+ "NOT_ELIGIBLE": 6,
+ }
+)
+
+func (x AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus) Enum() *AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus {
+ p := new(AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus)
+ *p = x
+ return p
+}
+
+func (x AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus) String() string {
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+}
+
+func (AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus) Descriptor() protoreflect.EnumDescriptor {
+ return file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_enumTypes[0].Descriptor()
+}
+
+func (AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus) Type() protoreflect.EnumType {
+ return &file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_enumTypes[0]
+}
+
+func (x AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
+// Deprecated: Use AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus.Descriptor instead.
+func (AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus) EnumDescriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_rawDescGZIP(), []int{0, 0}
+}
+
+// Container for enum describing possible ad group criterion primary status.
+type AdGroupCriterionPrimaryStatusEnum struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+}
+
+func (x *AdGroupCriterionPrimaryStatusEnum) Reset() {
+ *x = AdGroupCriterionPrimaryStatusEnum{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_msgTypes[0]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *AdGroupCriterionPrimaryStatusEnum) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*AdGroupCriterionPrimaryStatusEnum) ProtoMessage() {}
+
+func (x *AdGroupCriterionPrimaryStatusEnum) ProtoReflect() protoreflect.Message {
+ mi := &file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_msgTypes[0]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use AdGroupCriterionPrimaryStatusEnum.ProtoReflect.Descriptor instead.
+func (*AdGroupCriterionPrimaryStatusEnum) Descriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_rawDescGZIP(), []int{0}
+}
+
+var File_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto protoreflect.FileDescriptor
+
+var file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_rawDesc = []byte{
+ 0x0a, 0x46, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74,
+ 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa9, 0x01, 0x0a, 0x21, 0x41, 0x64, 0x47,
+ 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x69,
+ 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x83,
+ 0x01, 0x0a, 0x1d, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72,
+ 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
+ 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
+ 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x0c,
+ 0x0a, 0x08, 0x45, 0x4c, 0x49, 0x47, 0x49, 0x42, 0x4c, 0x45, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06,
+ 0x50, 0x41, 0x55, 0x53, 0x45, 0x44, 0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f,
+ 0x56, 0x45, 0x44, 0x10, 0x04, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x45, 0x4e, 0x44, 0x49, 0x4e, 0x47,
+ 0x10, 0x05, 0x12, 0x10, 0x0a, 0x0c, 0x4e, 0x4f, 0x54, 0x5f, 0x45, 0x4c, 0x49, 0x47, 0x49, 0x42,
+ 0x4c, 0x45, 0x10, 0x06, 0x42, 0xfc, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x22, 0x41, 0x64, 0x47,
+ 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x69,
+ 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
+ 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
+ 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+}
+
+var (
+ file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_rawDescData = file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_rawDesc
+)
+
+func file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_rawDescData)
+ })
+ return file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_goTypes = []interface{}{
+ (AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus)(0), // 0: google.ads.googleads.v17.enums.AdGroupCriterionPrimaryStatusEnum.AdGroupCriterionPrimaryStatus
+ (*AdGroupCriterionPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AdGroupCriterionPrimaryStatusEnum
+}
+var file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_depIdxs = []int32{
+ 0, // [0:0] is the sub-list for method output_type
+ 0, // [0:0] is the sub-list for method input_type
+ 0, // [0:0] is the sub-list for extension type_name
+ 0, // [0:0] is the sub-list for extension extendee
+ 0, // [0:0] is the sub-list for field type_name
+}
+
+func init() { file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_init() }
+func file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto != nil {
+ return
+ }
+ if !protoimpl.UnsafeEnabled {
+ file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*AdGroupCriterionPrimaryStatusEnum); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ }
+ type x struct{}
+ out := protoimpl.TypeBuilder{
+ File: protoimpl.DescBuilder{
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
+ RawDescriptor: file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_rawDesc,
+ NumEnums: 1,
+ NumMessages: 1,
+ NumExtensions: 0,
+ NumServices: 0,
+ },
+ GoTypes: file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_msgTypes,
+ }.Build()
+ File_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto = out.File
+ file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_proto_depIdxs = nil
+}
diff --git a/enums/ad_group_criterion_primary_status_reason.pb.go b/enums/ad_group_criterion_primary_status_reason.pb.go
new file mode 100644
index 00000000..a3e912ef
--- /dev/null
+++ b/enums/ad_group_criterion_primary_status_reason.pb.go
@@ -0,0 +1,357 @@
+// Copyright 2024 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+// Code generated by protoc-gen-go. DO NOT EDIT.
+// versions:
+// protoc-gen-go v1.34.1
+// protoc v4.24.4
+// source: google/ads/googleads/v17/enums/ad_group_criterion_primary_status_reason.proto
+
+package enums
+
+import (
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
+ reflect "reflect"
+ sync "sync"
+)
+
+const (
+ // Verify that this generated code is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
+ // Verify that runtime/protoimpl is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
+)
+
+// Enum describing the possible Ad Group Criterion primary status reasons.
+// Provides insight into why an Ad Group Criterion is not serving or not
+// serving optimally. These reasons are aggregated to determine an overall
+// Ad Group Criterion primary status.
+type AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason int32
+
+const (
+ // Not specified.
+ AdGroupCriterionPrimaryStatusReasonEnum_UNSPECIFIED AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 0
+ // Used for return value only. Represents unknown value in this version.
+ AdGroupCriterionPrimaryStatusReasonEnum_UNKNOWN AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 1
+ // The user-specified time for this campaign to start is in the future.
+ // Contributes to AdGroupCriterionPrimaryStatus.PENDING.
+ AdGroupCriterionPrimaryStatusReasonEnum_CAMPAIGN_PENDING AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 2
+ // The ad group criterion is overridden by negative campaign criterion.
+ // Contributes to AdGroupCriterionPrimaryStatus.NOT_ELIGIBLE.
+ AdGroupCriterionPrimaryStatusReasonEnum_CAMPAIGN_CRITERION_NEGATIVE AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 3
+ // The user-specified campaign status is paused. Contributes to
+ // AdGroupCriterionPrimaryStatus.PAUSED.
+ AdGroupCriterionPrimaryStatusReasonEnum_CAMPAIGN_PAUSED AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 4
+ // The user-specified campaign status is removed. Contributes to
+ // AdGroupCriterionPrimaryStatus.REMOVED.
+ AdGroupCriterionPrimaryStatusReasonEnum_CAMPAIGN_REMOVED AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 5
+ // The user-specified time for this campaign to end has passed. Contributes
+ // to AdGroupCriterionPrimaryStatus.ENDED.
+ AdGroupCriterionPrimaryStatusReasonEnum_CAMPAIGN_ENDED AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 6
+ // The user-specified ad group status is paused. Contributes to
+ // AdGroupCriterionPrimaryStatus.PAUSED.
+ AdGroupCriterionPrimaryStatusReasonEnum_AD_GROUP_PAUSED AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 7
+ // The user-specified ad group status is removed. Contributes to
+ // AdGroupCriterionPrimaryStatus.REMOVED.
+ AdGroupCriterionPrimaryStatusReasonEnum_AD_GROUP_REMOVED AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 8
+ // The ad group criterion is disapproved by the ads approval system.
+ // Contributes to AdGroupCriterionPrimaryStatus.NOT_ELIGIBLE.
+ AdGroupCriterionPrimaryStatusReasonEnum_AD_GROUP_CRITERION_DISAPPROVED AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 9
+ // The ad group criterion is rarely served. Contributes to
+ // AdGroupCriterionPrimaryStatus.NOT_ELIGIBLE.
+ AdGroupCriterionPrimaryStatusReasonEnum_AD_GROUP_CRITERION_RARELY_SERVED AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 10
+ // The ad group criterion has a low quality score. Contributes to
+ // AdGroupCriterionPrimaryStatus.LIMITED.
+ AdGroupCriterionPrimaryStatusReasonEnum_AD_GROUP_CRITERION_LOW_QUALITY AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 11
+ // The ad group criterion is under review. Contributes to
+ // AdGroupCriterionPrimaryStatus.PENDING.
+ AdGroupCriterionPrimaryStatusReasonEnum_AD_GROUP_CRITERION_UNDER_REVIEW AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 12
+ // The ad group criterion is pending review. Contributes to
+ // AdGroupCriterionPrimaryStatus.NOT_ELIGIBLE.
+ AdGroupCriterionPrimaryStatusReasonEnum_AD_GROUP_CRITERION_PENDING_REVIEW AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 13
+ // The ad group criterion's bid is below the value necessary to serve on the
+ // first page. Contributes to AdGroupCriterionPrimaryStatus.LIMITED.
+ AdGroupCriterionPrimaryStatusReasonEnum_AD_GROUP_CRITERION_BELOW_FIRST_PAGE_BID AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 14
+ // The ad group criterion is negative. Contributes to
+ // AdGroupCriterionPrimaryStatus.NOT_ELIGIBLE.
+ AdGroupCriterionPrimaryStatusReasonEnum_AD_GROUP_CRITERION_NEGATIVE AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 15
+ // The ad group criterion is restricted. Contributes to
+ // AdGroupCriterionPrimaryStatus.NOT_ELIGIBLE.
+ AdGroupCriterionPrimaryStatusReasonEnum_AD_GROUP_CRITERION_RESTRICTED AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 16
+ // The user-specified ad group criterion status is paused. Contributes to
+ // AdGroupCriterionPrimaryStatus.PAUSED.
+ AdGroupCriterionPrimaryStatusReasonEnum_AD_GROUP_CRITERION_PAUSED AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 17
+ // The ad group criterion has been paused due to prolonged low activity in
+ // serving. Contributes to AdGroupCriterionPrimaryStatus.PAUSED.
+ AdGroupCriterionPrimaryStatusReasonEnum_AD_GROUP_CRITERION_PAUSED_DUE_TO_LOW_ACTIVITY AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 18
+ // The user-specified ad group criterion status is removed. Contributes to
+ // AdGroupCriterionPrimaryStatus.REMOVED.
+ AdGroupCriterionPrimaryStatusReasonEnum_AD_GROUP_CRITERION_REMOVED AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason = 19
+)
+
+// Enum value maps for AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason.
+var (
+ AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason_name = map[int32]string{
+ 0: "UNSPECIFIED",
+ 1: "UNKNOWN",
+ 2: "CAMPAIGN_PENDING",
+ 3: "CAMPAIGN_CRITERION_NEGATIVE",
+ 4: "CAMPAIGN_PAUSED",
+ 5: "CAMPAIGN_REMOVED",
+ 6: "CAMPAIGN_ENDED",
+ 7: "AD_GROUP_PAUSED",
+ 8: "AD_GROUP_REMOVED",
+ 9: "AD_GROUP_CRITERION_DISAPPROVED",
+ 10: "AD_GROUP_CRITERION_RARELY_SERVED",
+ 11: "AD_GROUP_CRITERION_LOW_QUALITY",
+ 12: "AD_GROUP_CRITERION_UNDER_REVIEW",
+ 13: "AD_GROUP_CRITERION_PENDING_REVIEW",
+ 14: "AD_GROUP_CRITERION_BELOW_FIRST_PAGE_BID",
+ 15: "AD_GROUP_CRITERION_NEGATIVE",
+ 16: "AD_GROUP_CRITERION_RESTRICTED",
+ 17: "AD_GROUP_CRITERION_PAUSED",
+ 18: "AD_GROUP_CRITERION_PAUSED_DUE_TO_LOW_ACTIVITY",
+ 19: "AD_GROUP_CRITERION_REMOVED",
+ }
+ AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason_value = map[string]int32{
+ "UNSPECIFIED": 0,
+ "UNKNOWN": 1,
+ "CAMPAIGN_PENDING": 2,
+ "CAMPAIGN_CRITERION_NEGATIVE": 3,
+ "CAMPAIGN_PAUSED": 4,
+ "CAMPAIGN_REMOVED": 5,
+ "CAMPAIGN_ENDED": 6,
+ "AD_GROUP_PAUSED": 7,
+ "AD_GROUP_REMOVED": 8,
+ "AD_GROUP_CRITERION_DISAPPROVED": 9,
+ "AD_GROUP_CRITERION_RARELY_SERVED": 10,
+ "AD_GROUP_CRITERION_LOW_QUALITY": 11,
+ "AD_GROUP_CRITERION_UNDER_REVIEW": 12,
+ "AD_GROUP_CRITERION_PENDING_REVIEW": 13,
+ "AD_GROUP_CRITERION_BELOW_FIRST_PAGE_BID": 14,
+ "AD_GROUP_CRITERION_NEGATIVE": 15,
+ "AD_GROUP_CRITERION_RESTRICTED": 16,
+ "AD_GROUP_CRITERION_PAUSED": 17,
+ "AD_GROUP_CRITERION_PAUSED_DUE_TO_LOW_ACTIVITY": 18,
+ "AD_GROUP_CRITERION_REMOVED": 19,
+ }
+)
+
+func (x AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason) Enum() *AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason {
+ p := new(AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason)
+ *p = x
+ return p
+}
+
+func (x AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason) String() string {
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+}
+
+func (AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason) Descriptor() protoreflect.EnumDescriptor {
+ return file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_enumTypes[0].Descriptor()
+}
+
+func (AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason) Type() protoreflect.EnumType {
+ return &file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_enumTypes[0]
+}
+
+func (x AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
+// Deprecated: Use AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason.Descriptor instead.
+func (AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason) EnumDescriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_rawDescGZIP(), []int{0, 0}
+}
+
+// Container for enum describing possible ad group criterion primary status
+// reasons.
+type AdGroupCriterionPrimaryStatusReasonEnum struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+}
+
+func (x *AdGroupCriterionPrimaryStatusReasonEnum) Reset() {
+ *x = AdGroupCriterionPrimaryStatusReasonEnum{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_msgTypes[0]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *AdGroupCriterionPrimaryStatusReasonEnum) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*AdGroupCriterionPrimaryStatusReasonEnum) ProtoMessage() {}
+
+func (x *AdGroupCriterionPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message {
+ mi := &file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_msgTypes[0]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use AdGroupCriterionPrimaryStatusReasonEnum.ProtoReflect.Descriptor instead.
+func (*AdGroupCriterionPrimaryStatusReasonEnum) Descriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_rawDescGZIP(), []int{0}
+}
+
+var File_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto protoreflect.FileDescriptor
+
+var file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_rawDesc = []byte{
+ 0x0a, 0x4d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74,
+ 0x75, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
+ 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0xad, 0x05, 0x0a, 0x27, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65,
+ 0x72, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75,
+ 0x73, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x81, 0x05, 0x0a, 0x23,
+ 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e,
+ 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x61,
+ 0x73, 0x6f, 0x6e, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
+ 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10,
+ 0x01, 0x12, 0x14, 0x0a, 0x10, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x5f, 0x50, 0x45,
+ 0x4e, 0x44, 0x49, 0x4e, 0x47, 0x10, 0x02, 0x12, 0x1f, 0x0a, 0x1b, 0x43, 0x41, 0x4d, 0x50, 0x41,
+ 0x49, 0x47, 0x4e, 0x5f, 0x43, 0x52, 0x49, 0x54, 0x45, 0x52, 0x49, 0x4f, 0x4e, 0x5f, 0x4e, 0x45,
+ 0x47, 0x41, 0x54, 0x49, 0x56, 0x45, 0x10, 0x03, 0x12, 0x13, 0x0a, 0x0f, 0x43, 0x41, 0x4d, 0x50,
+ 0x41, 0x49, 0x47, 0x4e, 0x5f, 0x50, 0x41, 0x55, 0x53, 0x45, 0x44, 0x10, 0x04, 0x12, 0x14, 0x0a,
+ 0x10, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45,
+ 0x44, 0x10, 0x05, 0x12, 0x12, 0x0a, 0x0e, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x5f,
+ 0x45, 0x4e, 0x44, 0x45, 0x44, 0x10, 0x06, 0x12, 0x13, 0x0a, 0x0f, 0x41, 0x44, 0x5f, 0x47, 0x52,
+ 0x4f, 0x55, 0x50, 0x5f, 0x50, 0x41, 0x55, 0x53, 0x45, 0x44, 0x10, 0x07, 0x12, 0x14, 0x0a, 0x10,
+ 0x41, 0x44, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44,
+ 0x10, 0x08, 0x12, 0x22, 0x0a, 0x1e, 0x41, 0x44, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x5f, 0x43,
+ 0x52, 0x49, 0x54, 0x45, 0x52, 0x49, 0x4f, 0x4e, 0x5f, 0x44, 0x49, 0x53, 0x41, 0x50, 0x50, 0x52,
+ 0x4f, 0x56, 0x45, 0x44, 0x10, 0x09, 0x12, 0x24, 0x0a, 0x20, 0x41, 0x44, 0x5f, 0x47, 0x52, 0x4f,
+ 0x55, 0x50, 0x5f, 0x43, 0x52, 0x49, 0x54, 0x45, 0x52, 0x49, 0x4f, 0x4e, 0x5f, 0x52, 0x41, 0x52,
+ 0x45, 0x4c, 0x59, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x45, 0x44, 0x10, 0x0a, 0x12, 0x22, 0x0a, 0x1e,
+ 0x41, 0x44, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x5f, 0x43, 0x52, 0x49, 0x54, 0x45, 0x52, 0x49,
+ 0x4f, 0x4e, 0x5f, 0x4c, 0x4f, 0x57, 0x5f, 0x51, 0x55, 0x41, 0x4c, 0x49, 0x54, 0x59, 0x10, 0x0b,
+ 0x12, 0x23, 0x0a, 0x1f, 0x41, 0x44, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x5f, 0x43, 0x52, 0x49,
+ 0x54, 0x45, 0x52, 0x49, 0x4f, 0x4e, 0x5f, 0x55, 0x4e, 0x44, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x56,
+ 0x49, 0x45, 0x57, 0x10, 0x0c, 0x12, 0x25, 0x0a, 0x21, 0x41, 0x44, 0x5f, 0x47, 0x52, 0x4f, 0x55,
+ 0x50, 0x5f, 0x43, 0x52, 0x49, 0x54, 0x45, 0x52, 0x49, 0x4f, 0x4e, 0x5f, 0x50, 0x45, 0x4e, 0x44,
+ 0x49, 0x4e, 0x47, 0x5f, 0x52, 0x45, 0x56, 0x49, 0x45, 0x57, 0x10, 0x0d, 0x12, 0x2b, 0x0a, 0x27,
+ 0x41, 0x44, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x5f, 0x43, 0x52, 0x49, 0x54, 0x45, 0x52, 0x49,
+ 0x4f, 0x4e, 0x5f, 0x42, 0x45, 0x4c, 0x4f, 0x57, 0x5f, 0x46, 0x49, 0x52, 0x53, 0x54, 0x5f, 0x50,
+ 0x41, 0x47, 0x45, 0x5f, 0x42, 0x49, 0x44, 0x10, 0x0e, 0x12, 0x1f, 0x0a, 0x1b, 0x41, 0x44, 0x5f,
+ 0x47, 0x52, 0x4f, 0x55, 0x50, 0x5f, 0x43, 0x52, 0x49, 0x54, 0x45, 0x52, 0x49, 0x4f, 0x4e, 0x5f,
+ 0x4e, 0x45, 0x47, 0x41, 0x54, 0x49, 0x56, 0x45, 0x10, 0x0f, 0x12, 0x21, 0x0a, 0x1d, 0x41, 0x44,
+ 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x5f, 0x43, 0x52, 0x49, 0x54, 0x45, 0x52, 0x49, 0x4f, 0x4e,
+ 0x5f, 0x52, 0x45, 0x53, 0x54, 0x52, 0x49, 0x43, 0x54, 0x45, 0x44, 0x10, 0x10, 0x12, 0x1d, 0x0a,
+ 0x19, 0x41, 0x44, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x5f, 0x43, 0x52, 0x49, 0x54, 0x45, 0x52,
+ 0x49, 0x4f, 0x4e, 0x5f, 0x50, 0x41, 0x55, 0x53, 0x45, 0x44, 0x10, 0x11, 0x12, 0x31, 0x0a, 0x2d,
+ 0x41, 0x44, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x5f, 0x43, 0x52, 0x49, 0x54, 0x45, 0x52, 0x49,
+ 0x4f, 0x4e, 0x5f, 0x50, 0x41, 0x55, 0x53, 0x45, 0x44, 0x5f, 0x44, 0x55, 0x45, 0x5f, 0x54, 0x4f,
+ 0x5f, 0x4c, 0x4f, 0x57, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56, 0x49, 0x54, 0x59, 0x10, 0x12, 0x12,
+ 0x1e, 0x0a, 0x1a, 0x41, 0x44, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x5f, 0x43, 0x52, 0x49, 0x54,
+ 0x45, 0x52, 0x49, 0x4f, 0x4e, 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x13, 0x42,
+ 0x82, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
+ 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x28, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43,
+ 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53,
+ 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f,
+ 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
+ 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
+ 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+}
+
+var (
+ file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_rawDescData = file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_rawDesc
+)
+
+func file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_rawDescData)
+ })
+ return file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_goTypes = []interface{}{
+ (AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason)(0), // 0: google.ads.googleads.v17.enums.AdGroupCriterionPrimaryStatusReasonEnum.AdGroupCriterionPrimaryStatusReason
+ (*AdGroupCriterionPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v17.enums.AdGroupCriterionPrimaryStatusReasonEnum
+}
+var file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_depIdxs = []int32{
+ 0, // [0:0] is the sub-list for method output_type
+ 0, // [0:0] is the sub-list for method input_type
+ 0, // [0:0] is the sub-list for extension type_name
+ 0, // [0:0] is the sub-list for extension extendee
+ 0, // [0:0] is the sub-list for field type_name
+}
+
+func init() {
+ file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_init()
+}
+func file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_init() {
+ if File_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto != nil {
+ return
+ }
+ if !protoimpl.UnsafeEnabled {
+ file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*AdGroupCriterionPrimaryStatusReasonEnum); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ }
+ type x struct{}
+ out := protoimpl.TypeBuilder{
+ File: protoimpl.DescBuilder{
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
+ RawDescriptor: file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_rawDesc,
+ NumEnums: 1,
+ NumMessages: 1,
+ NumExtensions: 0,
+ NumServices: 0,
+ },
+ GoTypes: file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_msgTypes,
+ }.Build()
+ File_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto = out.File
+ file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_ad_group_criterion_primary_status_reason_proto_depIdxs = nil
+}
diff --git a/enums/ad_group_criterion_status.pb.go b/enums/ad_group_criterion_status.pb.go
index 046b7753..217ca502 100644
--- a/enums/ad_group_criterion_status.pb.go
+++ b/enums/ad_group_criterion_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/ad_group_criterion_status.proto
+// source: google/ads/googleads/v17/enums/ad_group_criterion_status.proto
package enums
@@ -81,11 +81,11 @@ func (x AdGroupCriterionStatusEnum_AdGroupCriterionStatus) String() string {
}
func (AdGroupCriterionStatusEnum_AdGroupCriterionStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_enumTypes[0].Descriptor()
}
func (AdGroupCriterionStatusEnum_AdGroupCriterionStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_enumTypes[0]
}
func (x AdGroupCriterionStatusEnum_AdGroupCriterionStatus) Number() protoreflect.EnumNumber {
@@ -94,7 +94,7 @@ func (x AdGroupCriterionStatusEnum_AdGroupCriterionStatus) Number() protoreflect
// Deprecated: Use AdGroupCriterionStatusEnum_AdGroupCriterionStatus.Descriptor instead.
func (AdGroupCriterionStatusEnum_AdGroupCriterionStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing AdGroupCriterion statuses.
@@ -107,7 +107,7 @@ type AdGroupCriterionStatusEnum struct {
func (x *AdGroupCriterionStatusEnum) Reset() {
*x = AdGroupCriterionStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -120,7 +120,7 @@ func (x *AdGroupCriterionStatusEnum) String() string {
func (*AdGroupCriterionStatusEnum) ProtoMessage() {}
func (x *AdGroupCriterionStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -133,18 +133,18 @@ func (x *AdGroupCriterionStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroupCriterionStatusEnum.ProtoReflect.Descriptor instead.
func (*AdGroupCriterionStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_ad_group_criterion_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_ad_group_criterion_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72,
0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0x7a, 0x0a, 0x1a, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65,
0x72, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5c,
0x0a, 0x16, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69,
@@ -154,42 +154,42 @@ var file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_rawDesc
0x44, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x50, 0x41, 0x55, 0x53, 0x45, 0x44, 0x10, 0x03, 0x12,
0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x04, 0x42, 0xf5, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x1b, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74,
0x65, 0x72, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_rawDescData = file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_rawDescData = file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_goTypes = []interface{}{
- (AdGroupCriterionStatusEnum_AdGroupCriterionStatus)(0), // 0: google.ads.googleads.v16.enums.AdGroupCriterionStatusEnum.AdGroupCriterionStatus
- (*AdGroupCriterionStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AdGroupCriterionStatusEnum
+var file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_goTypes = []interface{}{
+ (AdGroupCriterionStatusEnum_AdGroupCriterionStatus)(0), // 0: google.ads.googleads.v17.enums.AdGroupCriterionStatusEnum.AdGroupCriterionStatus
+ (*AdGroupCriterionStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AdGroupCriterionStatusEnum
}
-var file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_init() }
-func file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_init() {
- if File_google_ads_googleads_v16_enums_ad_group_criterion_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_init() }
+func file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_ad_group_criterion_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupCriterionStatusEnum); i {
case 0:
return &v.state
@@ -220,19 +220,19 @@ func file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_ad_group_criterion_status_proto = out.File
- file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_ad_group_criterion_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_ad_group_criterion_status_proto = out.File
+ file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_ad_group_criterion_status_proto_depIdxs = nil
}
diff --git a/enums/ad_group_primary_status.pb.go b/enums/ad_group_primary_status.pb.go
index f2ab06eb..a8373493 100644
--- a/enums/ad_group_primary_status.pb.go
+++ b/enums/ad_group_primary_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/ad_group_primary_status.proto
+// source: google/ads/googleads/v17/enums/ad_group_primary_status.proto
package enums
@@ -91,11 +91,11 @@ func (x AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus) String() string {
}
func (AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_enumTypes[0].Descriptor()
}
func (AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_enumTypes[0]
}
func (x AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus) Number() protoreflect.EnumNumber {
@@ -104,7 +104,7 @@ func (x AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus) Number() protoreflect.Enu
// Deprecated: Use AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus.Descriptor instead.
func (AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_rawDescGZIP(), []int{0, 0}
}
// Ad Group Primary Status. Provides insight into why an ad group is not serving
@@ -118,7 +118,7 @@ type AdGroupPrimaryStatusEnum struct {
func (x *AdGroupPrimaryStatusEnum) Reset() {
*x = AdGroupPrimaryStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -131,7 +131,7 @@ func (x *AdGroupPrimaryStatusEnum) String() string {
func (*AdGroupPrimaryStatusEnum) ProtoMessage() {}
func (x *AdGroupPrimaryStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -144,18 +144,18 @@ func (x *AdGroupPrimaryStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroupPrimaryStatusEnum.ProtoReflect.Descriptor instead.
func (*AdGroupPrimaryStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_ad_group_primary_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_ad_group_primary_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72,
0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa4,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa4,
0x01, 0x0a, 0x18, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72,
0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x87, 0x01, 0x0a, 0x14,
0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74,
@@ -168,42 +168,42 @@ var file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_rawDesc =
0x49, 0x47, 0x49, 0x42, 0x4c, 0x45, 0x10, 0x06, 0x12, 0x0b, 0x0a, 0x07, 0x4c, 0x49, 0x4d, 0x49,
0x54, 0x45, 0x44, 0x10, 0x07, 0x42, 0xf3, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x41, 0x64,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x41, 0x64,
0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_rawDescData = file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_rawDescData = file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_goTypes = []interface{}{
- (AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus)(0), // 0: google.ads.googleads.v16.enums.AdGroupPrimaryStatusEnum.AdGroupPrimaryStatus
- (*AdGroupPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AdGroupPrimaryStatusEnum
+var file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_goTypes = []interface{}{
+ (AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus)(0), // 0: google.ads.googleads.v17.enums.AdGroupPrimaryStatusEnum.AdGroupPrimaryStatus
+ (*AdGroupPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AdGroupPrimaryStatusEnum
}
-var file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -211,13 +211,13 @@ var file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_init() }
-func file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_init() {
- if File_google_ads_googleads_v16_enums_ad_group_primary_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_init() }
+func file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_ad_group_primary_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupPrimaryStatusEnum); i {
case 0:
return &v.state
@@ -234,19 +234,19 @@ func file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_ad_group_primary_status_proto = out.File
- file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_ad_group_primary_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_ad_group_primary_status_proto = out.File
+ file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_ad_group_primary_status_proto_depIdxs = nil
}
diff --git a/enums/ad_group_primary_status_reason.pb.go b/enums/ad_group_primary_status_reason.pb.go
index 1b4d6643..8bcbdc8c 100644
--- a/enums/ad_group_primary_status_reason.pb.go
+++ b/enums/ad_group_primary_status_reason.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/ad_group_primary_status_reason.proto
+// source: google/ads/googleads/v17/enums/ad_group_primary_status_reason.proto
package enums
@@ -147,11 +147,11 @@ func (x AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason) String() stri
}
func (AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_enumTypes[0].Descriptor()
}
func (AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_enumTypes[0]
}
func (x AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason) Number() protoreflect.EnumNumber {
@@ -160,7 +160,7 @@ func (x AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason) Number() prot
// Deprecated: Use AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason.Descriptor instead.
func (AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_rawDescGZIP(), []int{0, 0}
}
// Ad Group Primary Status Reason. Provides insight into why an ad group is not
@@ -175,7 +175,7 @@ type AdGroupPrimaryStatusReasonEnum struct {
func (x *AdGroupPrimaryStatusReasonEnum) Reset() {
*x = AdGroupPrimaryStatusReasonEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -188,7 +188,7 @@ func (x *AdGroupPrimaryStatusReasonEnum) String() string {
func (*AdGroupPrimaryStatusReasonEnum) ProtoMessage() {}
func (x *AdGroupPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -201,18 +201,18 @@ func (x *AdGroupPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroupPrimaryStatusReasonEnum.ProtoReflect.Descriptor instead.
func (*AdGroupPrimaryStatusReasonEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72,
0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xda, 0x03, 0x0a, 0x1e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75,
0x70, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb7, 0x03, 0x0a, 0x1a, 0x41, 0x64, 0x47,
@@ -245,42 +245,42 @@ var file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_raw
0x5f, 0x54, 0x4f, 0x5f, 0x4c, 0x4f, 0x57, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56, 0x49, 0x54, 0x59,
0x10, 0x13, 0x42, 0xf9, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1f, 0x41, 0x64, 0x47, 0x72, 0x6f,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1f, 0x41, 0x64, 0x47, 0x72, 0x6f,
0x75, 0x70, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
0x65, 0x61, 0x73, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_rawDescData = file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_rawDesc
+ file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_rawDescData = file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_goTypes = []interface{}{
- (AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason)(0), // 0: google.ads.googleads.v16.enums.AdGroupPrimaryStatusReasonEnum.AdGroupPrimaryStatusReason
- (*AdGroupPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v16.enums.AdGroupPrimaryStatusReasonEnum
+var file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_goTypes = []interface{}{
+ (AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason)(0), // 0: google.ads.googleads.v17.enums.AdGroupPrimaryStatusReasonEnum.AdGroupPrimaryStatusReason
+ (*AdGroupPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v17.enums.AdGroupPrimaryStatusReasonEnum
}
-var file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -288,13 +288,13 @@ var file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_init() }
-func file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_init() {
- if File_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_init() }
+func file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_init() {
+ if File_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupPrimaryStatusReasonEnum); i {
case 0:
return &v.state
@@ -311,19 +311,19 @@ func file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto = out.File
- file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_ad_group_primary_status_reason_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto = out.File
+ file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_ad_group_primary_status_reason_proto_depIdxs = nil
}
diff --git a/enums/ad_group_status.pb.go b/enums/ad_group_status.pb.go
index f6481dcd..f0b032e2 100644
--- a/enums/ad_group_status.pb.go
+++ b/enums/ad_group_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/ad_group_status.proto
+// source: google/ads/googleads/v17/enums/ad_group_status.proto
package enums
@@ -81,11 +81,11 @@ func (x AdGroupStatusEnum_AdGroupStatus) String() string {
}
func (AdGroupStatusEnum_AdGroupStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_ad_group_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_ad_group_status_proto_enumTypes[0].Descriptor()
}
func (AdGroupStatusEnum_AdGroupStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_ad_group_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_ad_group_status_proto_enumTypes[0]
}
func (x AdGroupStatusEnum_AdGroupStatus) Number() protoreflect.EnumNumber {
@@ -94,7 +94,7 @@ func (x AdGroupStatusEnum_AdGroupStatus) Number() protoreflect.EnumNumber {
// Deprecated: Use AdGroupStatusEnum_AdGroupStatus.Descriptor instead.
func (AdGroupStatusEnum_AdGroupStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_ad_group_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of an ad group.
@@ -107,7 +107,7 @@ type AdGroupStatusEnum struct {
func (x *AdGroupStatusEnum) Reset() {
*x = AdGroupStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_ad_group_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -120,7 +120,7 @@ func (x *AdGroupStatusEnum) String() string {
func (*AdGroupStatusEnum) ProtoMessage() {}
func (x *AdGroupStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_ad_group_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -133,17 +133,17 @@ func (x *AdGroupStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroupStatusEnum.ProtoReflect.Descriptor instead.
func (*AdGroupStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_ad_group_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_ad_group_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_ad_group_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_ad_group_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_ad_group_status_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x68, 0x0a, 0x11, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75,
0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x53, 0x0a, 0x0d, 0x41,
0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f, 0x0a, 0x0b,
@@ -153,41 +153,41 @@ var file_google_ads_googleads_v16_enums_ad_group_status_proto_rawDesc = []byte{
0x44, 0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x04,
0x42, 0xec, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_ad_group_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_ad_group_status_proto_rawDescData = file_google_ads_googleads_v16_enums_ad_group_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_ad_group_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_ad_group_status_proto_rawDescData = file_google_ads_googleads_v17_enums_ad_group_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_ad_group_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_ad_group_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_ad_group_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_ad_group_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_ad_group_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_ad_group_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_ad_group_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_ad_group_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_ad_group_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_ad_group_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_ad_group_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_status_proto_goTypes = []interface{}{
- (AdGroupStatusEnum_AdGroupStatus)(0), // 0: google.ads.googleads.v16.enums.AdGroupStatusEnum.AdGroupStatus
- (*AdGroupStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AdGroupStatusEnum
+var file_google_ads_googleads_v17_enums_ad_group_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_status_proto_goTypes = []interface{}{
+ (AdGroupStatusEnum_AdGroupStatus)(0), // 0: google.ads.googleads.v17.enums.AdGroupStatusEnum.AdGroupStatus
+ (*AdGroupStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AdGroupStatusEnum
}
-var file_google_ads_googleads_v16_enums_ad_group_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_ad_group_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -195,13 +195,13 @@ var file_google_ads_googleads_v16_enums_ad_group_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_ad_group_status_proto_init() }
-func file_google_ads_googleads_v16_enums_ad_group_status_proto_init() {
- if File_google_ads_googleads_v16_enums_ad_group_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_ad_group_status_proto_init() }
+func file_google_ads_googleads_v17_enums_ad_group_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_ad_group_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_ad_group_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_ad_group_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupStatusEnum); i {
case 0:
return &v.state
@@ -218,19 +218,19 @@ func file_google_ads_googleads_v16_enums_ad_group_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_ad_group_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_ad_group_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_ad_group_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_ad_group_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_ad_group_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_ad_group_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_ad_group_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_ad_group_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_ad_group_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_ad_group_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_ad_group_status_proto = out.File
- file_google_ads_googleads_v16_enums_ad_group_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_ad_group_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_ad_group_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_ad_group_status_proto = out.File
+ file_google_ads_googleads_v17_enums_ad_group_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_ad_group_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_ad_group_status_proto_depIdxs = nil
}
diff --git a/enums/ad_group_type.pb.go b/enums/ad_group_type.pb.go
index ff88ec36..f8d18be7 100644
--- a/enums/ad_group_type.pb.go
+++ b/enums/ad_group_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/ad_group_type.proto
+// source: google/ads/googleads/v17/enums/ad_group_type.proto
package enums
@@ -137,11 +137,11 @@ func (x AdGroupTypeEnum_AdGroupType) String() string {
}
func (AdGroupTypeEnum_AdGroupType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_ad_group_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_ad_group_type_proto_enumTypes[0].Descriptor()
}
func (AdGroupTypeEnum_AdGroupType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_ad_group_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_ad_group_type_proto_enumTypes[0]
}
func (x AdGroupTypeEnum_AdGroupType) Number() protoreflect.EnumNumber {
@@ -150,7 +150,7 @@ func (x AdGroupTypeEnum_AdGroupType) Number() protoreflect.EnumNumber {
// Deprecated: Use AdGroupTypeEnum_AdGroupType.Descriptor instead.
func (AdGroupTypeEnum_AdGroupType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_ad_group_type_proto_rawDescGZIP(), []int{0, 0}
}
// Defines types of an ad group, specific to a particular campaign channel
@@ -165,7 +165,7 @@ type AdGroupTypeEnum struct {
func (x *AdGroupTypeEnum) Reset() {
*x = AdGroupTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_ad_group_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -178,7 +178,7 @@ func (x *AdGroupTypeEnum) String() string {
func (*AdGroupTypeEnum) ProtoMessage() {}
func (x *AdGroupTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_ad_group_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_group_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -191,17 +191,17 @@ func (x *AdGroupTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroupTypeEnum.ProtoReflect.Descriptor instead.
func (*AdGroupTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_group_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_ad_group_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_ad_group_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_ad_group_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_ad_group_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_ad_group_type_proto_rawDesc = []byte{
0x0a, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe2, 0x03, 0x0a, 0x0f, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70,
0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xce, 0x03, 0x0a, 0x0b, 0x41, 0x64, 0x47,
0x72, 0x6f, 0x75, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50,
@@ -234,41 +234,41 @@ var file_google_ads_googleads_v16_enums_ad_group_type_proto_rawDesc = []byte{
0x49, 0x47, 0x4e, 0x5f, 0x41, 0x44, 0x53, 0x10, 0x12, 0x12, 0x0e, 0x0a, 0x0a, 0x54, 0x52, 0x41,
0x56, 0x45, 0x4c, 0x5f, 0x41, 0x44, 0x53, 0x10, 0x13, 0x42, 0xea, 0x01, 0x0a, 0x22, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x42, 0x10, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_ad_group_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_ad_group_type_proto_rawDescData = file_google_ads_googleads_v16_enums_ad_group_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_ad_group_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_ad_group_type_proto_rawDescData = file_google_ads_googleads_v17_enums_ad_group_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_ad_group_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_ad_group_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_ad_group_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_ad_group_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_ad_group_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_ad_group_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_ad_group_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_ad_group_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_ad_group_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_ad_group_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_ad_group_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_group_type_proto_goTypes = []interface{}{
- (AdGroupTypeEnum_AdGroupType)(0), // 0: google.ads.googleads.v16.enums.AdGroupTypeEnum.AdGroupType
- (*AdGroupTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.AdGroupTypeEnum
+var file_google_ads_googleads_v17_enums_ad_group_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_group_type_proto_goTypes = []interface{}{
+ (AdGroupTypeEnum_AdGroupType)(0), // 0: google.ads.googleads.v17.enums.AdGroupTypeEnum.AdGroupType
+ (*AdGroupTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.AdGroupTypeEnum
}
-var file_google_ads_googleads_v16_enums_ad_group_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_ad_group_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -276,13 +276,13 @@ var file_google_ads_googleads_v16_enums_ad_group_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_ad_group_type_proto_init() }
-func file_google_ads_googleads_v16_enums_ad_group_type_proto_init() {
- if File_google_ads_googleads_v16_enums_ad_group_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_ad_group_type_proto_init() }
+func file_google_ads_googleads_v17_enums_ad_group_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_ad_group_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_ad_group_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_ad_group_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupTypeEnum); i {
case 0:
return &v.state
@@ -299,19 +299,19 @@ func file_google_ads_googleads_v16_enums_ad_group_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_ad_group_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_ad_group_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_ad_group_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_ad_group_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_ad_group_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_ad_group_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_ad_group_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_ad_group_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_ad_group_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_ad_group_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_ad_group_type_proto = out.File
- file_google_ads_googleads_v16_enums_ad_group_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_ad_group_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_ad_group_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_ad_group_type_proto = out.File
+ file_google_ads_googleads_v17_enums_ad_group_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_ad_group_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_ad_group_type_proto_depIdxs = nil
}
diff --git a/enums/ad_network_type.pb.go b/enums/ad_network_type.pb.go
index 4b9259fd..2d2ebc4d 100644
--- a/enums/ad_network_type.pb.go
+++ b/enums/ad_network_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/ad_network_type.proto
+// source: google/ads/googleads/v17/enums/ad_network_type.proto
package enums
@@ -91,11 +91,11 @@ func (x AdNetworkTypeEnum_AdNetworkType) String() string {
}
func (AdNetworkTypeEnum_AdNetworkType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_ad_network_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_ad_network_type_proto_enumTypes[0].Descriptor()
}
func (AdNetworkTypeEnum_AdNetworkType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_ad_network_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_ad_network_type_proto_enumTypes[0]
}
func (x AdNetworkTypeEnum_AdNetworkType) Number() protoreflect.EnumNumber {
@@ -104,7 +104,7 @@ func (x AdNetworkTypeEnum_AdNetworkType) Number() protoreflect.EnumNumber {
// Deprecated: Use AdNetworkTypeEnum_AdNetworkType.Descriptor instead.
func (AdNetworkTypeEnum_AdNetworkType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_network_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_ad_network_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enumeration of Google Ads network types.
@@ -117,7 +117,7 @@ type AdNetworkTypeEnum struct {
func (x *AdNetworkTypeEnum) Reset() {
*x = AdNetworkTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_ad_network_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_network_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -130,7 +130,7 @@ func (x *AdNetworkTypeEnum) String() string {
func (*AdNetworkTypeEnum) ProtoMessage() {}
func (x *AdNetworkTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_ad_network_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_network_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -143,17 +143,17 @@ func (x *AdNetworkTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdNetworkTypeEnum.ProtoReflect.Descriptor instead.
func (*AdNetworkTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_network_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_ad_network_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_ad_network_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_ad_network_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_ad_network_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_ad_network_type_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x98, 0x01, 0x0a, 0x11, 0x41, 0x64, 0x4e, 0x65, 0x74,
0x77, 0x6f, 0x72, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x82, 0x01, 0x0a,
0x0d, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f,
@@ -166,41 +166,41 @@ var file_google_ads_googleads_v16_enums_ad_network_type_proto_rawDesc = []byte{
0x10, 0x08, 0x12, 0x0d, 0x0a, 0x09, 0x47, 0x4f, 0x4f, 0x47, 0x4c, 0x45, 0x5f, 0x54, 0x56, 0x10,
0x09, 0x42, 0xec, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77,
0x6f, 0x72, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_ad_network_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_ad_network_type_proto_rawDescData = file_google_ads_googleads_v16_enums_ad_network_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_ad_network_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_ad_network_type_proto_rawDescData = file_google_ads_googleads_v17_enums_ad_network_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_ad_network_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_ad_network_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_ad_network_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_ad_network_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_ad_network_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_ad_network_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_ad_network_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_ad_network_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_ad_network_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_ad_network_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_ad_network_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_network_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_network_type_proto_goTypes = []interface{}{
- (AdNetworkTypeEnum_AdNetworkType)(0), // 0: google.ads.googleads.v16.enums.AdNetworkTypeEnum.AdNetworkType
- (*AdNetworkTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.AdNetworkTypeEnum
+var file_google_ads_googleads_v17_enums_ad_network_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_network_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_network_type_proto_goTypes = []interface{}{
+ (AdNetworkTypeEnum_AdNetworkType)(0), // 0: google.ads.googleads.v17.enums.AdNetworkTypeEnum.AdNetworkType
+ (*AdNetworkTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.AdNetworkTypeEnum
}
-var file_google_ads_googleads_v16_enums_ad_network_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_ad_network_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -208,13 +208,13 @@ var file_google_ads_googleads_v16_enums_ad_network_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_ad_network_type_proto_init() }
-func file_google_ads_googleads_v16_enums_ad_network_type_proto_init() {
- if File_google_ads_googleads_v16_enums_ad_network_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_ad_network_type_proto_init() }
+func file_google_ads_googleads_v17_enums_ad_network_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_ad_network_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_ad_network_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_ad_network_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdNetworkTypeEnum); i {
case 0:
return &v.state
@@ -231,19 +231,19 @@ func file_google_ads_googleads_v16_enums_ad_network_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_ad_network_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_ad_network_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_ad_network_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_ad_network_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_ad_network_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_ad_network_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_ad_network_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_ad_network_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_ad_network_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_ad_network_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_ad_network_type_proto = out.File
- file_google_ads_googleads_v16_enums_ad_network_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_ad_network_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_ad_network_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_ad_network_type_proto = out.File
+ file_google_ads_googleads_v17_enums_ad_network_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_ad_network_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_ad_network_type_proto_depIdxs = nil
}
diff --git a/enums/ad_serving_optimization_status.pb.go b/enums/ad_serving_optimization_status.pb.go
index 0ab0af8b..61c1bde5 100644
--- a/enums/ad_serving_optimization_status.pb.go
+++ b/enums/ad_serving_optimization_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/ad_serving_optimization_status.proto
+// source: google/ads/googleads/v17/enums/ad_serving_optimization_status.proto
package enums
@@ -92,11 +92,11 @@ func (x AdServingOptimizationStatusEnum_AdServingOptimizationStatus) String() st
}
func (AdServingOptimizationStatusEnum_AdServingOptimizationStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_enumTypes[0].Descriptor()
}
func (AdServingOptimizationStatusEnum_AdServingOptimizationStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_enumTypes[0]
}
func (x AdServingOptimizationStatusEnum_AdServingOptimizationStatus) Number() protoreflect.EnumNumber {
@@ -105,7 +105,7 @@ func (x AdServingOptimizationStatusEnum_AdServingOptimizationStatus) Number() pr
// Deprecated: Use AdServingOptimizationStatusEnum_AdServingOptimizationStatus.Descriptor instead.
func (AdServingOptimizationStatusEnum_AdServingOptimizationStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_rawDescGZIP(), []int{0, 0}
}
// Possible ad serving statuses of a campaign.
@@ -118,7 +118,7 @@ type AdServingOptimizationStatusEnum struct {
func (x *AdServingOptimizationStatusEnum) Reset() {
*x = AdServingOptimizationStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -131,7 +131,7 @@ func (x *AdServingOptimizationStatusEnum) String() string {
func (*AdServingOptimizationStatusEnum) ProtoMessage() {}
func (x *AdServingOptimizationStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -144,18 +144,18 @@ func (x *AdServingOptimizationStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdServingOptimizationStatusEnum.ProtoReflect.Descriptor instead.
func (*AdServingOptimizationStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x64, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x5f, 0x6f, 0x70, 0x74, 0x69,
0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xbc, 0x01, 0x0a, 0x1f, 0x41, 0x64, 0x53, 0x65, 0x72, 0x76,
0x69, 0x6e, 0x67, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x98, 0x01, 0x0a, 0x1b, 0x41, 0x64,
@@ -170,42 +170,42 @@ var file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_raw
0x59, 0x10, 0x05, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x41, 0x56, 0x41, 0x49, 0x4c, 0x41, 0x42,
0x4c, 0x45, 0x10, 0x06, 0x42, 0xfa, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x41, 0x64, 0x53,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x41, 0x64, 0x53,
0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_rawDescData = file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_rawDescData = file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_goTypes = []interface{}{
- (AdServingOptimizationStatusEnum_AdServingOptimizationStatus)(0), // 0: google.ads.googleads.v16.enums.AdServingOptimizationStatusEnum.AdServingOptimizationStatus
- (*AdServingOptimizationStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AdServingOptimizationStatusEnum
+var file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_goTypes = []interface{}{
+ (AdServingOptimizationStatusEnum_AdServingOptimizationStatus)(0), // 0: google.ads.googleads.v17.enums.AdServingOptimizationStatusEnum.AdServingOptimizationStatus
+ (*AdServingOptimizationStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AdServingOptimizationStatusEnum
}
-var file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -213,13 +213,13 @@ var file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_init() }
-func file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_init() {
- if File_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_init() }
+func file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdServingOptimizationStatusEnum); i {
case 0:
return &v.state
@@ -236,19 +236,19 @@ func file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto = out.File
- file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_ad_serving_optimization_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto = out.File
+ file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_ad_serving_optimization_status_proto_depIdxs = nil
}
diff --git a/enums/ad_strength.pb.go b/enums/ad_strength.pb.go
index 42a07fbc..0f1102f0 100644
--- a/enums/ad_strength.pb.go
+++ b/enums/ad_strength.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/ad_strength.proto
+// source: google/ads/googleads/v17/enums/ad_strength.proto
package enums
@@ -91,11 +91,11 @@ func (x AdStrengthEnum_AdStrength) String() string {
}
func (AdStrengthEnum_AdStrength) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_ad_strength_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_ad_strength_proto_enumTypes[0].Descriptor()
}
func (AdStrengthEnum_AdStrength) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_ad_strength_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_ad_strength_proto_enumTypes[0]
}
func (x AdStrengthEnum_AdStrength) Number() protoreflect.EnumNumber {
@@ -104,7 +104,7 @@ func (x AdStrengthEnum_AdStrength) Number() protoreflect.EnumNumber {
// Deprecated: Use AdStrengthEnum_AdStrength.Descriptor instead.
func (AdStrengthEnum_AdStrength) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_strength_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_ad_strength_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible ad strengths.
@@ -117,7 +117,7 @@ type AdStrengthEnum struct {
func (x *AdStrengthEnum) Reset() {
*x = AdStrengthEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_ad_strength_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_strength_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -130,7 +130,7 @@ func (x *AdStrengthEnum) String() string {
func (*AdStrengthEnum) ProtoMessage() {}
func (x *AdStrengthEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_ad_strength_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_strength_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -143,17 +143,17 @@ func (x *AdStrengthEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdStrengthEnum.ProtoReflect.Descriptor instead.
func (*AdStrengthEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_strength_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_ad_strength_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_ad_strength_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_ad_strength_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_ad_strength_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_ad_strength_proto_rawDesc = []byte{
0x0a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x85, 0x01, 0x0a, 0x0e, 0x41, 0x64, 0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74,
0x68, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x73, 0x0a, 0x0a, 0x41, 0x64, 0x53, 0x74, 0x72, 0x65, 0x6e,
0x67, 0x74, 0x68, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
@@ -164,41 +164,41 @@ var file_google_ads_googleads_v16_enums_ad_strength_proto_rawDesc = []byte{
0x05, 0x12, 0x08, 0x0a, 0x04, 0x47, 0x4f, 0x4f, 0x44, 0x10, 0x06, 0x12, 0x0d, 0x0a, 0x09, 0x45,
0x58, 0x43, 0x45, 0x4c, 0x4c, 0x45, 0x4e, 0x54, 0x10, 0x07, 0x42, 0xe9, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x0f, 0x41, 0x64, 0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_ad_strength_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_ad_strength_proto_rawDescData = file_google_ads_googleads_v16_enums_ad_strength_proto_rawDesc
+ file_google_ads_googleads_v17_enums_ad_strength_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_ad_strength_proto_rawDescData = file_google_ads_googleads_v17_enums_ad_strength_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_ad_strength_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_ad_strength_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_ad_strength_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_ad_strength_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_ad_strength_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_ad_strength_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_ad_strength_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_ad_strength_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_ad_strength_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_ad_strength_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_ad_strength_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_strength_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_strength_proto_goTypes = []interface{}{
- (AdStrengthEnum_AdStrength)(0), // 0: google.ads.googleads.v16.enums.AdStrengthEnum.AdStrength
- (*AdStrengthEnum)(nil), // 1: google.ads.googleads.v16.enums.AdStrengthEnum
+var file_google_ads_googleads_v17_enums_ad_strength_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_strength_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_strength_proto_goTypes = []interface{}{
+ (AdStrengthEnum_AdStrength)(0), // 0: google.ads.googleads.v17.enums.AdStrengthEnum.AdStrength
+ (*AdStrengthEnum)(nil), // 1: google.ads.googleads.v17.enums.AdStrengthEnum
}
-var file_google_ads_googleads_v16_enums_ad_strength_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_ad_strength_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -206,13 +206,13 @@ var file_google_ads_googleads_v16_enums_ad_strength_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_ad_strength_proto_init() }
-func file_google_ads_googleads_v16_enums_ad_strength_proto_init() {
- if File_google_ads_googleads_v16_enums_ad_strength_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_ad_strength_proto_init() }
+func file_google_ads_googleads_v17_enums_ad_strength_proto_init() {
+ if File_google_ads_googleads_v17_enums_ad_strength_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_ad_strength_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_ad_strength_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdStrengthEnum); i {
case 0:
return &v.state
@@ -229,19 +229,19 @@ func file_google_ads_googleads_v16_enums_ad_strength_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_ad_strength_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_ad_strength_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_ad_strength_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_ad_strength_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_ad_strength_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_ad_strength_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_ad_strength_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_ad_strength_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_ad_strength_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_ad_strength_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_ad_strength_proto = out.File
- file_google_ads_googleads_v16_enums_ad_strength_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_ad_strength_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_ad_strength_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_ad_strength_proto = out.File
+ file_google_ads_googleads_v17_enums_ad_strength_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_ad_strength_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_ad_strength_proto_depIdxs = nil
}
diff --git a/enums/ad_type.pb.go b/enums/ad_type.pb.go
index a4b1623b..d8b087ba 100644
--- a/enums/ad_type.pb.go
+++ b/enums/ad_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/ad_type.proto
+// source: google/ads/googleads/v17/enums/ad_type.proto
package enums
@@ -99,14 +99,14 @@ const (
AdTypeEnum_APP_PRE_REGISTRATION_AD AdTypeEnum_AdType = 33
// In-feed video ad.
AdTypeEnum_IN_FEED_VIDEO_AD AdTypeEnum_AdType = 34
- // Discovery multi asset ad.
- AdTypeEnum_DISCOVERY_MULTI_ASSET_AD AdTypeEnum_AdType = 35
- // Discovery carousel ad.
- AdTypeEnum_DISCOVERY_CAROUSEL_AD AdTypeEnum_AdType = 36
+ // Demand Gen multi asset ad.
+ AdTypeEnum_DEMAND_GEN_MULTI_ASSET_AD AdTypeEnum_AdType = 40
+ // Demand Gen carousel ad.
+ AdTypeEnum_DEMAND_GEN_CAROUSEL_AD AdTypeEnum_AdType = 41
// Travel ad.
AdTypeEnum_TRAVEL_AD AdTypeEnum_AdType = 37
- // Discovery video responsive ad.
- AdTypeEnum_DISCOVERY_VIDEO_RESPONSIVE_AD AdTypeEnum_AdType = 38
+ // Demand Gen video responsive ad.
+ AdTypeEnum_DEMAND_GEN_VIDEO_RESPONSIVE_AD AdTypeEnum_AdType = 42
// Demand Gen product ad.
AdTypeEnum_DEMAND_GEN_PRODUCT_AD AdTypeEnum_AdType = 39
)
@@ -143,10 +143,10 @@ var (
32: "CALL_AD",
33: "APP_PRE_REGISTRATION_AD",
34: "IN_FEED_VIDEO_AD",
- 35: "DISCOVERY_MULTI_ASSET_AD",
- 36: "DISCOVERY_CAROUSEL_AD",
+ 40: "DEMAND_GEN_MULTI_ASSET_AD",
+ 41: "DEMAND_GEN_CAROUSEL_AD",
37: "TRAVEL_AD",
- 38: "DISCOVERY_VIDEO_RESPONSIVE_AD",
+ 42: "DEMAND_GEN_VIDEO_RESPONSIVE_AD",
39: "DEMAND_GEN_PRODUCT_AD",
}
AdTypeEnum_AdType_value = map[string]int32{
@@ -179,10 +179,10 @@ var (
"CALL_AD": 32,
"APP_PRE_REGISTRATION_AD": 33,
"IN_FEED_VIDEO_AD": 34,
- "DISCOVERY_MULTI_ASSET_AD": 35,
- "DISCOVERY_CAROUSEL_AD": 36,
+ "DEMAND_GEN_MULTI_ASSET_AD": 40,
+ "DEMAND_GEN_CAROUSEL_AD": 41,
"TRAVEL_AD": 37,
- "DISCOVERY_VIDEO_RESPONSIVE_AD": 38,
+ "DEMAND_GEN_VIDEO_RESPONSIVE_AD": 42,
"DEMAND_GEN_PRODUCT_AD": 39,
}
)
@@ -198,11 +198,11 @@ func (x AdTypeEnum_AdType) String() string {
}
func (AdTypeEnum_AdType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_ad_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_ad_type_proto_enumTypes[0].Descriptor()
}
func (AdTypeEnum_AdType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_ad_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_ad_type_proto_enumTypes[0]
}
func (x AdTypeEnum_AdType) Number() protoreflect.EnumNumber {
@@ -211,7 +211,7 @@ func (x AdTypeEnum_AdType) Number() protoreflect.EnumNumber {
// Deprecated: Use AdTypeEnum_AdType.Descriptor instead.
func (AdTypeEnum_AdType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_ad_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible types of an ad.
@@ -224,7 +224,7 @@ type AdTypeEnum struct {
func (x *AdTypeEnum) Reset() {
*x = AdTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_ad_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -237,7 +237,7 @@ func (x *AdTypeEnum) String() string {
func (*AdTypeEnum) ProtoMessage() {}
func (x *AdTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_ad_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_ad_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -250,18 +250,18 @@ func (x *AdTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdTypeEnum.ProtoReflect.Descriptor instead.
func (*AdTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_ad_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_ad_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_ad_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_ad_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_ad_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_ad_type_proto_rawDesc = []byte{
0x0a, 0x2c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xae,
- 0x06, 0x0a, 0x0a, 0x41, 0x64, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x9f, 0x06,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xb1,
+ 0x06, 0x0a, 0x0a, 0x41, 0x64, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xa2, 0x06,
0x0a, 0x06, 0x41, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50,
0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b,
0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x54, 0x45, 0x58, 0x54, 0x5f, 0x41,
@@ -303,51 +303,52 @@ var file_google_ads_googleads_v16_enums_ad_type_proto_rawDesc = []byte{
0x4c, 0x5f, 0x41, 0x44, 0x10, 0x20, 0x12, 0x1b, 0x0a, 0x17, 0x41, 0x50, 0x50, 0x5f, 0x50, 0x52,
0x45, 0x5f, 0x52, 0x45, 0x47, 0x49, 0x53, 0x54, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x41,
0x44, 0x10, 0x21, 0x12, 0x14, 0x0a, 0x10, 0x49, 0x4e, 0x5f, 0x46, 0x45, 0x45, 0x44, 0x5f, 0x56,
- 0x49, 0x44, 0x45, 0x4f, 0x5f, 0x41, 0x44, 0x10, 0x22, 0x12, 0x1c, 0x0a, 0x18, 0x44, 0x49, 0x53,
- 0x43, 0x4f, 0x56, 0x45, 0x52, 0x59, 0x5f, 0x4d, 0x55, 0x4c, 0x54, 0x49, 0x5f, 0x41, 0x53, 0x53,
- 0x45, 0x54, 0x5f, 0x41, 0x44, 0x10, 0x23, 0x12, 0x19, 0x0a, 0x15, 0x44, 0x49, 0x53, 0x43, 0x4f,
- 0x56, 0x45, 0x52, 0x59, 0x5f, 0x43, 0x41, 0x52, 0x4f, 0x55, 0x53, 0x45, 0x4c, 0x5f, 0x41, 0x44,
- 0x10, 0x24, 0x12, 0x0d, 0x0a, 0x09, 0x54, 0x52, 0x41, 0x56, 0x45, 0x4c, 0x5f, 0x41, 0x44, 0x10,
- 0x25, 0x12, 0x21, 0x0a, 0x1d, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x59, 0x5f, 0x56,
- 0x49, 0x44, 0x45, 0x4f, 0x5f, 0x52, 0x45, 0x53, 0x50, 0x4f, 0x4e, 0x53, 0x49, 0x56, 0x45, 0x5f,
- 0x41, 0x44, 0x10, 0x26, 0x12, 0x19, 0x0a, 0x15, 0x44, 0x45, 0x4d, 0x41, 0x4e, 0x44, 0x5f, 0x47,
- 0x45, 0x4e, 0x5f, 0x50, 0x52, 0x4f, 0x44, 0x55, 0x43, 0x54, 0x5f, 0x41, 0x44, 0x10, 0x27, 0x42,
- 0xe5, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
- 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0b, 0x41, 0x64, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72,
- 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
- 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
- 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
- 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
- 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
- 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
- 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x49, 0x44, 0x45, 0x4f, 0x5f, 0x41, 0x44, 0x10, 0x22, 0x12, 0x1d, 0x0a, 0x19, 0x44, 0x45, 0x4d,
+ 0x41, 0x4e, 0x44, 0x5f, 0x47, 0x45, 0x4e, 0x5f, 0x4d, 0x55, 0x4c, 0x54, 0x49, 0x5f, 0x41, 0x53,
+ 0x53, 0x45, 0x54, 0x5f, 0x41, 0x44, 0x10, 0x28, 0x12, 0x1a, 0x0a, 0x16, 0x44, 0x45, 0x4d, 0x41,
+ 0x4e, 0x44, 0x5f, 0x47, 0x45, 0x4e, 0x5f, 0x43, 0x41, 0x52, 0x4f, 0x55, 0x53, 0x45, 0x4c, 0x5f,
+ 0x41, 0x44, 0x10, 0x29, 0x12, 0x0d, 0x0a, 0x09, 0x54, 0x52, 0x41, 0x56, 0x45, 0x4c, 0x5f, 0x41,
+ 0x44, 0x10, 0x25, 0x12, 0x22, 0x0a, 0x1e, 0x44, 0x45, 0x4d, 0x41, 0x4e, 0x44, 0x5f, 0x47, 0x45,
+ 0x4e, 0x5f, 0x56, 0x49, 0x44, 0x45, 0x4f, 0x5f, 0x52, 0x45, 0x53, 0x50, 0x4f, 0x4e, 0x53, 0x49,
+ 0x56, 0x45, 0x5f, 0x41, 0x44, 0x10, 0x2a, 0x12, 0x19, 0x0a, 0x15, 0x44, 0x45, 0x4d, 0x41, 0x4e,
+ 0x44, 0x5f, 0x47, 0x45, 0x4e, 0x5f, 0x50, 0x52, 0x4f, 0x44, 0x55, 0x43, 0x54, 0x5f, 0x41, 0x44,
+ 0x10, 0x27, 0x42, 0xe5, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0b, 0x41, 0x64, 0x54, 0x79, 0x70,
+ 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
+ 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
+ 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
+ 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73,
+ 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45,
+ 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
+ 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_ad_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_ad_type_proto_rawDescData = file_google_ads_googleads_v16_enums_ad_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_ad_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_ad_type_proto_rawDescData = file_google_ads_googleads_v17_enums_ad_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_ad_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_ad_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_ad_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_ad_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_ad_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_ad_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_ad_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_ad_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_ad_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_ad_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_ad_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_ad_type_proto_goTypes = []interface{}{
- (AdTypeEnum_AdType)(0), // 0: google.ads.googleads.v16.enums.AdTypeEnum.AdType
- (*AdTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.AdTypeEnum
+var file_google_ads_googleads_v17_enums_ad_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_ad_type_proto_goTypes = []interface{}{
+ (AdTypeEnum_AdType)(0), // 0: google.ads.googleads.v17.enums.AdTypeEnum.AdType
+ (*AdTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.AdTypeEnum
}
-var file_google_ads_googleads_v16_enums_ad_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_ad_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -355,13 +356,13 @@ var file_google_ads_googleads_v16_enums_ad_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_ad_type_proto_init() }
-func file_google_ads_googleads_v16_enums_ad_type_proto_init() {
- if File_google_ads_googleads_v16_enums_ad_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_ad_type_proto_init() }
+func file_google_ads_googleads_v17_enums_ad_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_ad_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_ad_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_ad_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdTypeEnum); i {
case 0:
return &v.state
@@ -378,19 +379,19 @@ func file_google_ads_googleads_v16_enums_ad_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_ad_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_ad_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_ad_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_ad_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_ad_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_ad_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_ad_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_ad_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_ad_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_ad_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_ad_type_proto = out.File
- file_google_ads_googleads_v16_enums_ad_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_ad_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_ad_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_ad_type_proto = out.File
+ file_google_ads_googleads_v17_enums_ad_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_ad_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_ad_type_proto_depIdxs = nil
}
diff --git a/enums/advertising_channel_sub_type.pb.go b/enums/advertising_channel_sub_type.pb.go
index 60b3de9c..e74e3beb 100644
--- a/enums/advertising_channel_sub_type.pb.go
+++ b/enums/advertising_channel_sub_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/advertising_channel_sub_type.proto
+// source: google/ads/googleads/v17/enums/advertising_channel_sub_type.proto
package enums
@@ -151,11 +151,11 @@ func (x AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType) String() string
}
func (AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_enumTypes[0].Descriptor()
}
func (AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_enumTypes[0]
}
func (x AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType) Number() protoreflect.EnumNumber {
@@ -164,7 +164,7 @@ func (x AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType) Number() protor
// Deprecated: Use AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType.Descriptor instead.
func (AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_rawDescGZIP(), []int{0, 0}
}
// An immutable specialization of an Advertising Channel.
@@ -177,7 +177,7 @@ type AdvertisingChannelSubTypeEnum struct {
func (x *AdvertisingChannelSubTypeEnum) Reset() {
*x = AdvertisingChannelSubTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -190,7 +190,7 @@ func (x *AdvertisingChannelSubTypeEnum) String() string {
func (*AdvertisingChannelSubTypeEnum) ProtoMessage() {}
func (x *AdvertisingChannelSubTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -203,18 +203,18 @@ func (x *AdvertisingChannelSubTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdvertisingChannelSubTypeEnum.ProtoReflect.Descriptor instead.
func (*AdvertisingChannelSubTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_rawDesc = []byte{
0x0a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x68, 0x61,
0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x73, 0x75, 0x62, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x22, 0xb1, 0x04, 0x0a, 0x1d, 0x41, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73,
0x69, 0x6e, 0x67, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70,
0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x8f, 0x04, 0x0a, 0x19, 0x41, 0x64, 0x76, 0x65, 0x72, 0x74,
@@ -252,42 +252,42 @@ var file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_rawDe
0x12, 0x15, 0x0a, 0x11, 0x54, 0x52, 0x41, 0x56, 0x45, 0x4c, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56,
0x49, 0x54, 0x49, 0x45, 0x53, 0x10, 0x14, 0x42, 0xf8, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e,
0x41, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x61, 0x6e, 0x6e,
0x65, 0x6c, 0x53, 0x75, 0x62, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_rawDescData = file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_rawDescData = file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_goTypes = []interface{}{
- (AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType)(0), // 0: google.ads.googleads.v16.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType
- (*AdvertisingChannelSubTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.AdvertisingChannelSubTypeEnum
+var file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_goTypes = []interface{}{
+ (AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType)(0), // 0: google.ads.googleads.v17.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType
+ (*AdvertisingChannelSubTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.AdvertisingChannelSubTypeEnum
}
-var file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -295,13 +295,13 @@ var file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_depId
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_init() }
-func file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_init() {
- if File_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_init() }
+func file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdvertisingChannelSubTypeEnum); i {
case 0:
return &v.state
@@ -318,19 +318,19 @@ func file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_init
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto = out.File
- file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_advertising_channel_sub_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto = out.File
+ file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_advertising_channel_sub_type_proto_depIdxs = nil
}
diff --git a/enums/advertising_channel_type.pb.go b/enums/advertising_channel_type.pb.go
index ac13f4b2..eed8f839 100644
--- a/enums/advertising_channel_type.pb.go
+++ b/enums/advertising_channel_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/advertising_channel_type.proto
+// source: google/ads/googleads/v17/enums/advertising_channel_type.proto
package enums
@@ -64,10 +64,10 @@ const (
AdvertisingChannelTypeEnum_PERFORMANCE_MAX AdvertisingChannelTypeEnum_AdvertisingChannelType = 10
// Local services campaigns.
AdvertisingChannelTypeEnum_LOCAL_SERVICES AdvertisingChannelTypeEnum_AdvertisingChannelType = 11
- // Discovery campaigns.
- AdvertisingChannelTypeEnum_DISCOVERY AdvertisingChannelTypeEnum_AdvertisingChannelType = 12
// Travel campaigns.
AdvertisingChannelTypeEnum_TRAVEL AdvertisingChannelTypeEnum_AdvertisingChannelType = 13
+ // Demand Gen campaigns.
+ AdvertisingChannelTypeEnum_DEMAND_GEN AdvertisingChannelTypeEnum_AdvertisingChannelType = 14
)
// Enum value maps for AdvertisingChannelTypeEnum_AdvertisingChannelType.
@@ -85,8 +85,8 @@ var (
9: "SMART",
10: "PERFORMANCE_MAX",
11: "LOCAL_SERVICES",
- 12: "DISCOVERY",
13: "TRAVEL",
+ 14: "DEMAND_GEN",
}
AdvertisingChannelTypeEnum_AdvertisingChannelType_value = map[string]int32{
"UNSPECIFIED": 0,
@@ -101,8 +101,8 @@ var (
"SMART": 9,
"PERFORMANCE_MAX": 10,
"LOCAL_SERVICES": 11,
- "DISCOVERY": 12,
"TRAVEL": 13,
+ "DEMAND_GEN": 14,
}
)
@@ -117,11 +117,11 @@ func (x AdvertisingChannelTypeEnum_AdvertisingChannelType) String() string {
}
func (AdvertisingChannelTypeEnum_AdvertisingChannelType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_advertising_channel_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_advertising_channel_type_proto_enumTypes[0].Descriptor()
}
func (AdvertisingChannelTypeEnum_AdvertisingChannelType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_advertising_channel_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_advertising_channel_type_proto_enumTypes[0]
}
func (x AdvertisingChannelTypeEnum_AdvertisingChannelType) Number() protoreflect.EnumNumber {
@@ -130,7 +130,7 @@ func (x AdvertisingChannelTypeEnum_AdvertisingChannelType) Number() protoreflect
// Deprecated: Use AdvertisingChannelTypeEnum_AdvertisingChannelType.Descriptor instead.
func (AdvertisingChannelTypeEnum_AdvertisingChannelType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_advertising_channel_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_advertising_channel_type_proto_rawDescGZIP(), []int{0, 0}
}
// The channel type a campaign may target to serve on.
@@ -143,7 +143,7 @@ type AdvertisingChannelTypeEnum struct {
func (x *AdvertisingChannelTypeEnum) Reset() {
*x = AdvertisingChannelTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_advertising_channel_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_advertising_channel_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -156,7 +156,7 @@ func (x *AdvertisingChannelTypeEnum) String() string {
func (*AdvertisingChannelTypeEnum) ProtoMessage() {}
func (x *AdvertisingChannelTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_advertising_channel_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_advertising_channel_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -169,20 +169,20 @@ func (x *AdvertisingChannelTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdvertisingChannelTypeEnum.ProtoReflect.Descriptor instead.
func (*AdvertisingChannelTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_advertising_channel_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_advertising_channel_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_advertising_channel_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_advertising_channel_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_advertising_channel_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_advertising_channel_type_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x68, 0x61,
0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
- 0xff, 0x01, 0x0a, 0x1a, 0x41, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x43,
- 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xe0,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x80, 0x02, 0x0a, 0x1a, 0x41, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x43,
+ 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xe1,
0x01, 0x0a, 0x16, 0x41, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x43, 0x68,
0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53,
0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e,
@@ -195,46 +195,46 @@ var file_google_ads_googleads_v16_enums_advertising_channel_type_proto_rawDesc =
0x10, 0x08, 0x12, 0x09, 0x0a, 0x05, 0x53, 0x4d, 0x41, 0x52, 0x54, 0x10, 0x09, 0x12, 0x13, 0x0a,
0x0f, 0x50, 0x45, 0x52, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x4e, 0x43, 0x45, 0x5f, 0x4d, 0x41, 0x58,
0x10, 0x0a, 0x12, 0x12, 0x0a, 0x0e, 0x4c, 0x4f, 0x43, 0x41, 0x4c, 0x5f, 0x53, 0x45, 0x52, 0x56,
- 0x49, 0x43, 0x45, 0x53, 0x10, 0x0b, 0x12, 0x0d, 0x0a, 0x09, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56,
- 0x45, 0x52, 0x59, 0x10, 0x0c, 0x12, 0x0a, 0x0a, 0x06, 0x54, 0x52, 0x41, 0x56, 0x45, 0x4c, 0x10,
- 0x0d, 0x42, 0xf5, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x41, 0x64, 0x76, 0x65, 0x72, 0x74,
- 0x69, 0x73, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x54, 0x79, 0x70, 0x65,
- 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
- 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47,
- 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e,
- 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
- 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x33,
+ 0x49, 0x43, 0x45, 0x53, 0x10, 0x0b, 0x12, 0x0a, 0x0a, 0x06, 0x54, 0x52, 0x41, 0x56, 0x45, 0x4c,
+ 0x10, 0x0d, 0x12, 0x0e, 0x0a, 0x0a, 0x44, 0x45, 0x4d, 0x41, 0x4e, 0x44, 0x5f, 0x47, 0x45, 0x4e,
+ 0x10, 0x0e, 0x42, 0xf5, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x41, 0x64, 0x76, 0x65, 0x72,
+ 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x54, 0x79, 0x70,
+ 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
+ 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
+ 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
+ 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73,
+ 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45,
+ 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
+ 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_advertising_channel_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_advertising_channel_type_proto_rawDescData = file_google_ads_googleads_v16_enums_advertising_channel_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_advertising_channel_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_advertising_channel_type_proto_rawDescData = file_google_ads_googleads_v17_enums_advertising_channel_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_advertising_channel_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_advertising_channel_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_advertising_channel_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_advertising_channel_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_advertising_channel_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_advertising_channel_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_advertising_channel_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_advertising_channel_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_advertising_channel_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_advertising_channel_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_advertising_channel_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_advertising_channel_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_advertising_channel_type_proto_goTypes = []interface{}{
- (AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 0: google.ads.googleads.v16.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType
- (*AdvertisingChannelTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.AdvertisingChannelTypeEnum
+var file_google_ads_googleads_v17_enums_advertising_channel_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_advertising_channel_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_advertising_channel_type_proto_goTypes = []interface{}{
+ (AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 0: google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType
+ (*AdvertisingChannelTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.AdvertisingChannelTypeEnum
}
-var file_google_ads_googleads_v16_enums_advertising_channel_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_advertising_channel_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -242,13 +242,13 @@ var file_google_ads_googleads_v16_enums_advertising_channel_type_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_advertising_channel_type_proto_init() }
-func file_google_ads_googleads_v16_enums_advertising_channel_type_proto_init() {
- if File_google_ads_googleads_v16_enums_advertising_channel_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_advertising_channel_type_proto_init() }
+func file_google_ads_googleads_v17_enums_advertising_channel_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_advertising_channel_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_advertising_channel_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_advertising_channel_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdvertisingChannelTypeEnum); i {
case 0:
return &v.state
@@ -265,19 +265,19 @@ func file_google_ads_googleads_v16_enums_advertising_channel_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_advertising_channel_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_advertising_channel_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_advertising_channel_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_advertising_channel_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_advertising_channel_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_advertising_channel_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_advertising_channel_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_advertising_channel_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_advertising_channel_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_advertising_channel_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_advertising_channel_type_proto = out.File
- file_google_ads_googleads_v16_enums_advertising_channel_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_advertising_channel_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_advertising_channel_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_advertising_channel_type_proto = out.File
+ file_google_ads_googleads_v17_enums_advertising_channel_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_advertising_channel_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_advertising_channel_type_proto_depIdxs = nil
}
diff --git a/enums/affiliate_location_feed_relationship_type.pb.go b/enums/affiliate_location_feed_relationship_type.pb.go
index d4139f34..0e140624 100644
--- a/enums/affiliate_location_feed_relationship_type.pb.go
+++ b/enums/affiliate_location_feed_relationship_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/affiliate_location_feed_relationship_type.proto
+// source: google/ads/googleads/v17/enums/affiliate_location_feed_relationship_type.proto
package enums
@@ -71,11 +71,11 @@ func (x AffiliateLocationFeedRelationshipTypeEnum_AffiliateLocationFeedRelations
}
func (AffiliateLocationFeedRelationshipTypeEnum_AffiliateLocationFeedRelationshipType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_enumTypes[0].Descriptor()
}
func (AffiliateLocationFeedRelationshipTypeEnum_AffiliateLocationFeedRelationshipType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_enumTypes[0]
}
func (x AffiliateLocationFeedRelationshipTypeEnum_AffiliateLocationFeedRelationshipType) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x AffiliateLocationFeedRelationshipTypeEnum_AffiliateLocationFeedRelations
// Deprecated: Use AffiliateLocationFeedRelationshipTypeEnum_AffiliateLocationFeedRelationshipType.Descriptor instead.
func (AffiliateLocationFeedRelationshipTypeEnum_AffiliateLocationFeedRelationshipType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible values for a relationship type for
@@ -98,7 +98,7 @@ type AffiliateLocationFeedRelationshipTypeEnum struct {
func (x *AffiliateLocationFeedRelationshipTypeEnum) Reset() {
*x = AffiliateLocationFeedRelationshipTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -111,7 +111,7 @@ func (x *AffiliateLocationFeedRelationshipTypeEnum) String() string {
func (*AffiliateLocationFeedRelationshipTypeEnum) ProtoMessage() {}
func (x *AffiliateLocationFeedRelationshipTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -124,19 +124,19 @@ func (x *AffiliateLocationFeedRelationshipTypeEnum) ProtoReflect() protoreflect.
// Deprecated: Use AffiliateLocationFeedRelationshipTypeEnum.ProtoReflect.Descriptor instead.
func (*AffiliateLocationFeedRelationshipTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_rawDesc = []byte{
0x0a, 0x4e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x66, 0x66, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x73, 0x68, 0x69, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0x88, 0x01, 0x0a, 0x29, 0x41, 0x66, 0x66, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x65, 0x4c, 0x6f,
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5b,
@@ -147,43 +147,43 @@ var file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_typ
0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x14, 0x0a, 0x10, 0x47, 0x45, 0x4e, 0x45, 0x52, 0x41, 0x4c,
0x5f, 0x52, 0x45, 0x54, 0x41, 0x49, 0x4c, 0x45, 0x52, 0x10, 0x02, 0x42, 0x84, 0x02, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x2a, 0x41, 0x66, 0x66, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x65, 0x4c, 0x6f, 0x63,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x73, 0x68, 0x69, 0x70, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_rawDescData = file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_rawDescData = file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_goTypes = []interface{}{
- (AffiliateLocationFeedRelationshipTypeEnum_AffiliateLocationFeedRelationshipType)(0), // 0: google.ads.googleads.v16.enums.AffiliateLocationFeedRelationshipTypeEnum.AffiliateLocationFeedRelationshipType
- (*AffiliateLocationFeedRelationshipTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.AffiliateLocationFeedRelationshipTypeEnum
+var file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_goTypes = []interface{}{
+ (AffiliateLocationFeedRelationshipTypeEnum_AffiliateLocationFeedRelationshipType)(0), // 0: google.ads.googleads.v17.enums.AffiliateLocationFeedRelationshipTypeEnum.AffiliateLocationFeedRelationshipType
+ (*AffiliateLocationFeedRelationshipTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.AffiliateLocationFeedRelationshipTypeEnum
}
-var file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -192,14 +192,14 @@ var file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_typ
}
func init() {
- file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_init()
+ file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_init()
}
-func file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_init() {
- if File_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto != nil {
+func file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AffiliateLocationFeedRelationshipTypeEnum); i {
case 0:
return &v.state
@@ -216,19 +216,19 @@ func file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_ty
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto = out.File
- file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_affiliate_location_feed_relationship_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto = out.File
+ file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_affiliate_location_feed_relationship_type_proto_depIdxs = nil
}
diff --git a/enums/affiliate_location_placeholder_field.pb.go b/enums/affiliate_location_placeholder_field.pb.go
index ade0bd17..b5c32744 100644
--- a/enums/affiliate_location_placeholder_field.pb.go
+++ b/enums/affiliate_location_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/affiliate_location_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/affiliate_location_placeholder_field.proto
package enums
@@ -111,11 +111,11 @@ func (x AffiliateLocationPlaceholderFieldEnum_AffiliateLocationPlaceholderField)
}
func (AffiliateLocationPlaceholderFieldEnum_AffiliateLocationPlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (AffiliateLocationPlaceholderFieldEnum_AffiliateLocationPlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_enumTypes[0]
}
func (x AffiliateLocationPlaceholderFieldEnum_AffiliateLocationPlaceholderField) Number() protoreflect.EnumNumber {
@@ -124,7 +124,7 @@ func (x AffiliateLocationPlaceholderFieldEnum_AffiliateLocationPlaceholderField)
// Deprecated: Use AffiliateLocationPlaceholderFieldEnum_AffiliateLocationPlaceholderField.Descriptor instead.
func (AffiliateLocationPlaceholderFieldEnum_AffiliateLocationPlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Affiliate Location placeholder fields.
@@ -137,7 +137,7 @@ type AffiliateLocationPlaceholderFieldEnum struct {
func (x *AffiliateLocationPlaceholderFieldEnum) Reset() {
*x = AffiliateLocationPlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -150,7 +150,7 @@ func (x *AffiliateLocationPlaceholderFieldEnum) String() string {
func (*AffiliateLocationPlaceholderFieldEnum) ProtoMessage() {}
func (x *AffiliateLocationPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -163,19 +163,19 @@ func (x *AffiliateLocationPlaceholderFieldEnum) ProtoReflect() protoreflect.Mess
// Deprecated: Use AffiliateLocationPlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*AffiliateLocationPlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x66, 0x66, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f,
0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa4, 0x02, 0x0a, 0x25,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa4, 0x02, 0x0a, 0x25,
0x41, 0x66, 0x66, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c,
0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xfa, 0x01, 0x0a, 0x21, 0x41, 0x66, 0x66, 0x69, 0x6c, 0x69,
@@ -196,42 +196,42 @@ var file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_pro
0x10, 0x0b, 0x12, 0x0e, 0x0a, 0x0a, 0x43, 0x48, 0x41, 0x49, 0x4e, 0x5f, 0x4e, 0x41, 0x4d, 0x45,
0x10, 0x0c, 0x42, 0x80, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x26, 0x41, 0x66, 0x66, 0x69, 0x6c,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x26, 0x41, 0x66, 0x66, 0x69, 0x6c,
0x69, 0x61, 0x74, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6c, 0x61, 0x63,
0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_goTypes = []interface{}{
- (AffiliateLocationPlaceholderFieldEnum_AffiliateLocationPlaceholderField)(0), // 0: google.ads.googleads.v16.enums.AffiliateLocationPlaceholderFieldEnum.AffiliateLocationPlaceholderField
- (*AffiliateLocationPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.AffiliateLocationPlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_goTypes = []interface{}{
+ (AffiliateLocationPlaceholderFieldEnum_AffiliateLocationPlaceholderField)(0), // 0: google.ads.googleads.v17.enums.AffiliateLocationPlaceholderFieldEnum.AffiliateLocationPlaceholderField
+ (*AffiliateLocationPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.AffiliateLocationPlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -239,13 +239,13 @@ var file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_pro
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AffiliateLocationPlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -262,19 +262,19 @@ func file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_pr
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_affiliate_location_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_affiliate_location_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/age_range_type.pb.go b/enums/age_range_type.pb.go
index c3eb5c71..76970f0d 100644
--- a/enums/age_range_type.pb.go
+++ b/enums/age_range_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/age_range_type.proto
+// source: google/ads/googleads/v17/enums/age_range_type.proto
package enums
@@ -96,11 +96,11 @@ func (x AgeRangeTypeEnum_AgeRangeType) String() string {
}
func (AgeRangeTypeEnum_AgeRangeType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_age_range_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_age_range_type_proto_enumTypes[0].Descriptor()
}
func (AgeRangeTypeEnum_AgeRangeType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_age_range_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_age_range_type_proto_enumTypes[0]
}
func (x AgeRangeTypeEnum_AgeRangeType) Number() protoreflect.EnumNumber {
@@ -109,7 +109,7 @@ func (x AgeRangeTypeEnum_AgeRangeType) Number() protoreflect.EnumNumber {
// Deprecated: Use AgeRangeTypeEnum_AgeRangeType.Descriptor instead.
func (AgeRangeTypeEnum_AgeRangeType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_age_range_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_age_range_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the type of demographic age ranges.
@@ -122,7 +122,7 @@ type AgeRangeTypeEnum struct {
func (x *AgeRangeTypeEnum) Reset() {
*x = AgeRangeTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_age_range_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_age_range_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -135,7 +135,7 @@ func (x *AgeRangeTypeEnum) String() string {
func (*AgeRangeTypeEnum) ProtoMessage() {}
func (x *AgeRangeTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_age_range_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_age_range_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -148,17 +148,17 @@ func (x *AgeRangeTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AgeRangeTypeEnum.ProtoReflect.Descriptor instead.
func (*AgeRangeTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_age_range_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_age_range_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_age_range_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_age_range_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_age_range_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_age_range_type_proto_rawDesc = []byte{
0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe9, 0x01, 0x0a, 0x10, 0x41, 0x67, 0x65, 0x52, 0x61, 0x6e,
0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xd4, 0x01, 0x0a, 0x0c, 0x41,
0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55,
@@ -176,41 +176,41 @@ var file_google_ads_googleads_v16_enums_age_range_type_proto_rawDesc = []byte{
0x5f, 0x55, 0x4e, 0x44, 0x45, 0x54, 0x45, 0x52, 0x4d, 0x49, 0x4e, 0x45, 0x44, 0x10, 0xbf, 0xe1,
0x1e, 0x42, 0xeb, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x11, 0x41, 0x67, 0x65, 0x52, 0x61, 0x6e,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x11, 0x41, 0x67, 0x65, 0x52, 0x61, 0x6e,
0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_age_range_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_age_range_type_proto_rawDescData = file_google_ads_googleads_v16_enums_age_range_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_age_range_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_age_range_type_proto_rawDescData = file_google_ads_googleads_v17_enums_age_range_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_age_range_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_age_range_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_age_range_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_age_range_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_age_range_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_age_range_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_age_range_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_age_range_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_age_range_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_age_range_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_age_range_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_age_range_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_age_range_type_proto_goTypes = []interface{}{
- (AgeRangeTypeEnum_AgeRangeType)(0), // 0: google.ads.googleads.v16.enums.AgeRangeTypeEnum.AgeRangeType
- (*AgeRangeTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.AgeRangeTypeEnum
+var file_google_ads_googleads_v17_enums_age_range_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_age_range_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_age_range_type_proto_goTypes = []interface{}{
+ (AgeRangeTypeEnum_AgeRangeType)(0), // 0: google.ads.googleads.v17.enums.AgeRangeTypeEnum.AgeRangeType
+ (*AgeRangeTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.AgeRangeTypeEnum
}
-var file_google_ads_googleads_v16_enums_age_range_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_age_range_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -218,13 +218,13 @@ var file_google_ads_googleads_v16_enums_age_range_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_age_range_type_proto_init() }
-func file_google_ads_googleads_v16_enums_age_range_type_proto_init() {
- if File_google_ads_googleads_v16_enums_age_range_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_age_range_type_proto_init() }
+func file_google_ads_googleads_v17_enums_age_range_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_age_range_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_age_range_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_age_range_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AgeRangeTypeEnum); i {
case 0:
return &v.state
@@ -241,19 +241,19 @@ func file_google_ads_googleads_v16_enums_age_range_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_age_range_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_age_range_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_age_range_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_age_range_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_age_range_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_age_range_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_age_range_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_age_range_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_age_range_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_age_range_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_age_range_type_proto = out.File
- file_google_ads_googleads_v16_enums_age_range_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_age_range_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_age_range_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_age_range_type_proto = out.File
+ file_google_ads_googleads_v17_enums_age_range_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_age_range_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_age_range_type_proto_depIdxs = nil
}
diff --git a/enums/android_privacy_interaction_type.pb.go b/enums/android_privacy_interaction_type.pb.go
index 83c03d56..7e361182 100644
--- a/enums/android_privacy_interaction_type.pb.go
+++ b/enums/android_privacy_interaction_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/android_privacy_interaction_type.proto
+// source: google/ads/googleads/v17/enums/android_privacy_interaction_type.proto
package enums
@@ -79,11 +79,11 @@ func (x AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType) String(
}
func (AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_enumTypes[0].Descriptor()
}
func (AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_enumTypes[0]
}
func (x AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType) Number(
// Deprecated: Use AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType.Descriptor instead.
func (AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_rawDescGZIP(), []int{0, 0}
}
// The interaction type enum for Android privacy shared key.
@@ -105,7 +105,7 @@ type AndroidPrivacyInteractionTypeEnum struct {
func (x *AndroidPrivacyInteractionTypeEnum) Reset() {
*x = AndroidPrivacyInteractionTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *AndroidPrivacyInteractionTypeEnum) String() string {
func (*AndroidPrivacyInteractionTypeEnum) ProtoMessage() {}
func (x *AndroidPrivacyInteractionTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,19 +131,19 @@ func (x *AndroidPrivacyInteractionTypeEnum) ProtoReflect() protoreflect.Message
// Deprecated: Use AndroidPrivacyInteractionTypeEnum.ProtoReflect.Descriptor instead.
func (*AndroidPrivacyInteractionTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_rawDesc = []byte{
0x0a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x5f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79,
0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70,
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x89, 0x01, 0x0a, 0x21, 0x41, 0x6e, 0x64, 0x72,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x89, 0x01, 0x0a, 0x21, 0x41, 0x6e, 0x64, 0x72,
0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x64, 0x0a,
0x1d, 0x41, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x49,
@@ -154,42 +154,42 @@ var file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_r
0x45, 0x44, 0x5f, 0x56, 0x49, 0x45, 0x57, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x56, 0x49, 0x45,
0x57, 0x10, 0x04, 0x42, 0xfc, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x22, 0x41, 0x6e, 0x64, 0x72,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x22, 0x41, 0x6e, 0x64, 0x72,
0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_rawDescData = file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_rawDescData = file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_goTypes = []interface{}{
- (AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType)(0), // 0: google.ads.googleads.v16.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType
- (*AndroidPrivacyInteractionTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.AndroidPrivacyInteractionTypeEnum
+var file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_goTypes = []interface{}{
+ (AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType)(0), // 0: google.ads.googleads.v17.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType
+ (*AndroidPrivacyInteractionTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.AndroidPrivacyInteractionTypeEnum
}
-var file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_d
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_init() }
-func file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_init() {
- if File_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_init() }
+func file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AndroidPrivacyInteractionTypeEnum); i {
case 0:
return &v.state
@@ -220,19 +220,19 @@ func file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto = out.File
- file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_android_privacy_interaction_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto = out.File
+ file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_android_privacy_interaction_type_proto_depIdxs = nil
}
diff --git a/enums/android_privacy_network_type.pb.go b/enums/android_privacy_network_type.pb.go
index 11eebeee..2fb6a33b 100644
--- a/enums/android_privacy_network_type.pb.go
+++ b/enums/android_privacy_network_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/android_privacy_network_type.proto
+// source: google/ads/googleads/v17/enums/android_privacy_network_type.proto
package enums
@@ -79,11 +79,11 @@ func (x AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType) String() string
}
func (AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_enumTypes[0].Descriptor()
}
func (AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_enumTypes[0]
}
func (x AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType) Number() protor
// Deprecated: Use AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType.Descriptor instead.
func (AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_rawDescGZIP(), []int{0, 0}
}
// The network type enum for Android privacy shared key.
@@ -105,7 +105,7 @@ type AndroidPrivacyNetworkTypeEnum struct {
func (x *AndroidPrivacyNetworkTypeEnum) Reset() {
*x = AndroidPrivacyNetworkTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *AndroidPrivacyNetworkTypeEnum) String() string {
func (*AndroidPrivacyNetworkTypeEnum) ProtoMessage() {}
func (x *AndroidPrivacyNetworkTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *AndroidPrivacyNetworkTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AndroidPrivacyNetworkTypeEnum.ProtoReflect.Descriptor instead.
func (*AndroidPrivacyNetworkTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_android_privacy_network_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_android_privacy_network_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_rawDesc = []byte{
0x0a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x5f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79,
0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x22, 0x80, 0x01, 0x0a, 0x1d, 0x41, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50,
0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x54, 0x79, 0x70,
0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5f, 0x0a, 0x19, 0x41, 0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64,
@@ -153,42 +153,42 @@ var file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_rawDe
0x44, 0x49, 0x53, 0x50, 0x4c, 0x41, 0x59, 0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07, 0x59, 0x4f, 0x55,
0x54, 0x55, 0x42, 0x45, 0x10, 0x04, 0x42, 0xf8, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x41,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x41,
0x6e, 0x64, 0x72, 0x6f, 0x69, 0x64, 0x50, 0x72, 0x69, 0x76, 0x61, 0x63, 0x79, 0x4e, 0x65, 0x74,
0x77, 0x6f, 0x72, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_rawDescData = file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_rawDescData = file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_goTypes = []interface{}{
- (AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType)(0), // 0: google.ads.googleads.v16.enums.AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType
- (*AndroidPrivacyNetworkTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.AndroidPrivacyNetworkTypeEnum
+var file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_goTypes = []interface{}{
+ (AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType)(0), // 0: google.ads.googleads.v17.enums.AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType
+ (*AndroidPrivacyNetworkTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.AndroidPrivacyNetworkTypeEnum
}
-var file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -196,13 +196,13 @@ var file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_depId
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_init() }
-func file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_init() {
- if File_google_ads_googleads_v16_enums_android_privacy_network_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_init() }
+func file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_android_privacy_network_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AndroidPrivacyNetworkTypeEnum); i {
case 0:
return &v.state
@@ -219,19 +219,19 @@ func file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_init
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_android_privacy_network_type_proto = out.File
- file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_android_privacy_network_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_android_privacy_network_type_proto = out.File
+ file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_android_privacy_network_type_proto_depIdxs = nil
}
diff --git a/enums/app_bidding_goal.pb.go b/enums/app_bidding_goal.pb.go
index 9ec93944..400ea51a 100644
--- a/enums/app_bidding_goal.pb.go
+++ b/enums/app_bidding_goal.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/app_bidding_goal.proto
+// source: google/ads/googleads/v17/enums/app_bidding_goal.proto
package enums
@@ -106,11 +106,11 @@ func (x AppBiddingGoalEnum_AppBiddingGoal) String() string {
}
func (AppBiddingGoalEnum_AppBiddingGoal) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_app_bidding_goal_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_app_bidding_goal_proto_enumTypes[0].Descriptor()
}
func (AppBiddingGoalEnum_AppBiddingGoal) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_app_bidding_goal_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_app_bidding_goal_proto_enumTypes[0]
}
func (x AppBiddingGoalEnum_AppBiddingGoal) Number() protoreflect.EnumNumber {
@@ -119,7 +119,7 @@ func (x AppBiddingGoalEnum_AppBiddingGoal) Number() protoreflect.EnumNumber {
// Deprecated: Use AppBiddingGoalEnum_AppBiddingGoal.Descriptor instead.
func (AppBiddingGoalEnum_AppBiddingGoal) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_app_bidding_goal_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_app_bidding_goal_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing an app bidding goal for raise Target CPA
@@ -133,7 +133,7 @@ type AppBiddingGoalEnum struct {
func (x *AppBiddingGoalEnum) Reset() {
*x = AppBiddingGoalEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_app_bidding_goal_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_app_bidding_goal_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -146,7 +146,7 @@ func (x *AppBiddingGoalEnum) String() string {
func (*AppBiddingGoalEnum) ProtoMessage() {}
func (x *AppBiddingGoalEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_app_bidding_goal_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_app_bidding_goal_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -159,18 +159,18 @@ func (x *AppBiddingGoalEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AppBiddingGoalEnum.ProtoReflect.Descriptor instead.
func (*AppBiddingGoalEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_app_bidding_goal_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_app_bidding_goal_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_app_bidding_goal_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_app_bidding_goal_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_app_bidding_goal_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_app_bidding_goal_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x70, 0x70, 0x5f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x67, 0x6f, 0x61,
0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x92, 0x03, 0x0a, 0x12, 0x41, 0x70, 0x70, 0x42,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x92, 0x03, 0x0a, 0x12, 0x41, 0x70, 0x70, 0x42,
0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xfb,
0x02, 0x0a, 0x0e, 0x41, 0x70, 0x70, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x47, 0x6f, 0x61,
0x6c, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44,
@@ -197,42 +197,42 @@ var file_google_ads_googleads_v16_enums_app_bidding_goal_proto_rawDesc = []byte{
0x53, 0x54, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x43, 0x4f, 0x4e, 0x56, 0x45, 0x52, 0x53,
0x49, 0x4f, 0x4e, 0x5f, 0x56, 0x4f, 0x4c, 0x55, 0x4d, 0x45, 0x10, 0x08, 0x42, 0xed, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x13, 0x41, 0x70, 0x70, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x47,
0x6f, 0x61, 0x6c, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_app_bidding_goal_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_app_bidding_goal_proto_rawDescData = file_google_ads_googleads_v16_enums_app_bidding_goal_proto_rawDesc
+ file_google_ads_googleads_v17_enums_app_bidding_goal_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_app_bidding_goal_proto_rawDescData = file_google_ads_googleads_v17_enums_app_bidding_goal_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_app_bidding_goal_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_app_bidding_goal_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_app_bidding_goal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_app_bidding_goal_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_app_bidding_goal_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_app_bidding_goal_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_app_bidding_goal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_app_bidding_goal_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_app_bidding_goal_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_app_bidding_goal_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_app_bidding_goal_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_app_bidding_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_app_bidding_goal_proto_goTypes = []interface{}{
- (AppBiddingGoalEnum_AppBiddingGoal)(0), // 0: google.ads.googleads.v16.enums.AppBiddingGoalEnum.AppBiddingGoal
- (*AppBiddingGoalEnum)(nil), // 1: google.ads.googleads.v16.enums.AppBiddingGoalEnum
+var file_google_ads_googleads_v17_enums_app_bidding_goal_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_app_bidding_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_app_bidding_goal_proto_goTypes = []interface{}{
+ (AppBiddingGoalEnum_AppBiddingGoal)(0), // 0: google.ads.googleads.v17.enums.AppBiddingGoalEnum.AppBiddingGoal
+ (*AppBiddingGoalEnum)(nil), // 1: google.ads.googleads.v17.enums.AppBiddingGoalEnum
}
-var file_google_ads_googleads_v16_enums_app_bidding_goal_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_app_bidding_goal_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -240,13 +240,13 @@ var file_google_ads_googleads_v16_enums_app_bidding_goal_proto_depIdxs = []int32
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_app_bidding_goal_proto_init() }
-func file_google_ads_googleads_v16_enums_app_bidding_goal_proto_init() {
- if File_google_ads_googleads_v16_enums_app_bidding_goal_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_app_bidding_goal_proto_init() }
+func file_google_ads_googleads_v17_enums_app_bidding_goal_proto_init() {
+ if File_google_ads_googleads_v17_enums_app_bidding_goal_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_app_bidding_goal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_app_bidding_goal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AppBiddingGoalEnum); i {
case 0:
return &v.state
@@ -263,19 +263,19 @@ func file_google_ads_googleads_v16_enums_app_bidding_goal_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_app_bidding_goal_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_app_bidding_goal_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_app_bidding_goal_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_app_bidding_goal_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_app_bidding_goal_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_app_bidding_goal_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_app_bidding_goal_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_app_bidding_goal_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_app_bidding_goal_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_app_bidding_goal_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_app_bidding_goal_proto = out.File
- file_google_ads_googleads_v16_enums_app_bidding_goal_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_app_bidding_goal_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_app_bidding_goal_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_app_bidding_goal_proto = out.File
+ file_google_ads_googleads_v17_enums_app_bidding_goal_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_app_bidding_goal_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_app_bidding_goal_proto_depIdxs = nil
}
diff --git a/enums/app_campaign_app_store.pb.go b/enums/app_campaign_app_store.pb.go
index f3e106e3..c13c2bfa 100644
--- a/enums/app_campaign_app_store.pb.go
+++ b/enums/app_campaign_app_store.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/app_campaign_app_store.proto
+// source: google/ads/googleads/v17/enums/app_campaign_app_store.proto
package enums
@@ -75,11 +75,11 @@ func (x AppCampaignAppStoreEnum_AppCampaignAppStore) String() string {
}
func (AppCampaignAppStoreEnum_AppCampaignAppStore) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_enumTypes[0].Descriptor()
}
func (AppCampaignAppStoreEnum_AppCampaignAppStore) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_enumTypes[0]
}
func (x AppCampaignAppStoreEnum_AppCampaignAppStore) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x AppCampaignAppStoreEnum_AppCampaignAppStore) Number() protoreflect.EnumN
// Deprecated: Use AppCampaignAppStoreEnum_AppCampaignAppStore.Descriptor instead.
func (AppCampaignAppStoreEnum_AppCampaignAppStore) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_rawDescGZIP(), []int{0, 0}
}
// The application store that distributes mobile applications.
@@ -101,7 +101,7 @@ type AppCampaignAppStoreEnum struct {
func (x *AppCampaignAppStoreEnum) Reset() {
*x = AppCampaignAppStoreEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *AppCampaignAppStoreEnum) String() string {
func (*AppCampaignAppStoreEnum) ProtoMessage() {}
func (x *AppCampaignAppStoreEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *AppCampaignAppStoreEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AppCampaignAppStoreEnum.ProtoReflect.Descriptor instead.
func (*AppCampaignAppStoreEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_app_campaign_app_store_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_app_campaign_app_store_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x70, 0x70, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x70,
0x70, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x79, 0x0a,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x79, 0x0a,
0x17, 0x41, 0x70, 0x70, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x70, 0x70, 0x53,
0x74, 0x6f, 0x72, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5e, 0x0a, 0x13, 0x41, 0x70, 0x70, 0x43,
0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x70, 0x70, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x12,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_rawDesc = [
0x10, 0x02, 0x12, 0x14, 0x0a, 0x10, 0x47, 0x4f, 0x4f, 0x47, 0x4c, 0x45, 0x5f, 0x41, 0x50, 0x50,
0x5f, 0x53, 0x54, 0x4f, 0x52, 0x45, 0x10, 0x03, 0x42, 0xf2, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
0x18, 0x41, 0x70, 0x70, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x70, 0x70, 0x53,
0x74, 0x6f, 0x72, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_rawDescData = file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_rawDesc
+ file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_rawDescData = file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_goTypes = []interface{}{
- (AppCampaignAppStoreEnum_AppCampaignAppStore)(0), // 0: google.ads.googleads.v16.enums.AppCampaignAppStoreEnum.AppCampaignAppStore
- (*AppCampaignAppStoreEnum)(nil), // 1: google.ads.googleads.v16.enums.AppCampaignAppStoreEnum
+var file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_goTypes = []interface{}{
+ (AppCampaignAppStoreEnum_AppCampaignAppStore)(0), // 0: google.ads.googleads.v17.enums.AppCampaignAppStoreEnum.AppCampaignAppStore
+ (*AppCampaignAppStoreEnum)(nil), // 1: google.ads.googleads.v17.enums.AppCampaignAppStoreEnum
}
-var file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_init() }
-func file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_init() {
- if File_google_ads_googleads_v16_enums_app_campaign_app_store_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_init() }
+func file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_init() {
+ if File_google_ads_googleads_v17_enums_app_campaign_app_store_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AppCampaignAppStoreEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_app_campaign_app_store_proto = out.File
- file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_app_campaign_app_store_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_app_campaign_app_store_proto = out.File
+ file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_app_campaign_app_store_proto_depIdxs = nil
}
diff --git a/enums/app_campaign_bidding_strategy_goal_type.pb.go b/enums/app_campaign_bidding_strategy_goal_type.pb.go
index 8b8c159e..156d76f9 100644
--- a/enums/app_campaign_bidding_strategy_goal_type.pb.go
+++ b/enums/app_campaign_bidding_strategy_goal_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/app_campaign_bidding_strategy_goal_type.proto
+// source: google/ads/googleads/v17/enums/app_campaign_bidding_strategy_goal_type.proto
package enums
@@ -98,11 +98,11 @@ func (x AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalTyp
}
func (AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_enumTypes[0].Descriptor()
}
func (AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_enumTypes[0]
}
func (x AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType) Number() protoreflect.EnumNumber {
@@ -111,7 +111,7 @@ func (x AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalTyp
// Deprecated: Use AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType.Descriptor instead.
func (AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing goal towards which the bidding strategy of an
@@ -125,7 +125,7 @@ type AppCampaignBiddingStrategyGoalTypeEnum struct {
func (x *AppCampaignBiddingStrategyGoalTypeEnum) Reset() {
*x = AppCampaignBiddingStrategyGoalTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -138,7 +138,7 @@ func (x *AppCampaignBiddingStrategyGoalTypeEnum) String() string {
func (*AppCampaignBiddingStrategyGoalTypeEnum) ProtoMessage() {}
func (x *AppCampaignBiddingStrategyGoalTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -151,19 +151,19 @@ func (x *AppCampaignBiddingStrategyGoalTypeEnum) ProtoReflect() protoreflect.Mes
// Deprecated: Use AppCampaignBiddingStrategyGoalTypeEnum.ProtoReflect.Descriptor instead.
func (*AppCampaignBiddingStrategyGoalTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_rawDesc = []byte{
0x0a, 0x4c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x70, 0x70, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x69,
0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x5f, 0x67,
0x6f, 0x61, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x93,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x93,
0x03, 0x0a, 0x26, 0x41, 0x70, 0x70, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69,
0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x47, 0x6f, 0x61,
0x6c, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xe8, 0x02, 0x0a, 0x22, 0x41, 0x70,
@@ -191,42 +191,42 @@ var file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_
0x41, 0x52, 0x47, 0x45, 0x54, 0x5f, 0x49, 0x4e, 0x53, 0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x43, 0x4f,
0x53, 0x54, 0x10, 0x07, 0x42, 0x81, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x27, 0x41, 0x70, 0x70,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x27, 0x41, 0x70, 0x70,
0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53,
0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x47, 0x6f, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescData = file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescData = file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_goTypes = []interface{}{
- (AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType)(0), // 0: google.ads.googleads.v16.enums.AppCampaignBiddingStrategyGoalTypeEnum.AppCampaignBiddingStrategyGoalType
- (*AppCampaignBiddingStrategyGoalTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.AppCampaignBiddingStrategyGoalTypeEnum
+var file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_goTypes = []interface{}{
+ (AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType)(0), // 0: google.ads.googleads.v17.enums.AppCampaignBiddingStrategyGoalTypeEnum.AppCampaignBiddingStrategyGoalType
+ (*AppCampaignBiddingStrategyGoalTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.AppCampaignBiddingStrategyGoalTypeEnum
}
-var file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -234,13 +234,13 @@ var file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_init() }
-func file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_init() {
- if File_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_init() }
+func file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AppCampaignBiddingStrategyGoalTypeEnum); i {
case 0:
return &v.state
@@ -257,19 +257,19 @@ func file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto = out.File
- file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_app_campaign_bidding_strategy_goal_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto = out.File
+ file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_app_campaign_bidding_strategy_goal_type_proto_depIdxs = nil
}
diff --git a/enums/app_payment_model_type.pb.go b/enums/app_payment_model_type.pb.go
index 737c5f23..9f1c027f 100644
--- a/enums/app_payment_model_type.pb.go
+++ b/enums/app_payment_model_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/app_payment_model_type.proto
+// source: google/ads/googleads/v17/enums/app_payment_model_type.proto
package enums
@@ -71,11 +71,11 @@ func (x AppPaymentModelTypeEnum_AppPaymentModelType) String() string {
}
func (AppPaymentModelTypeEnum_AppPaymentModelType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_app_payment_model_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_app_payment_model_type_proto_enumTypes[0].Descriptor()
}
func (AppPaymentModelTypeEnum_AppPaymentModelType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_app_payment_model_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_app_payment_model_type_proto_enumTypes[0]
}
func (x AppPaymentModelTypeEnum_AppPaymentModelType) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x AppPaymentModelTypeEnum_AppPaymentModelType) Number() protoreflect.EnumN
// Deprecated: Use AppPaymentModelTypeEnum_AppPaymentModelType.Descriptor instead.
func (AppPaymentModelTypeEnum_AppPaymentModelType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_app_payment_model_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_app_payment_model_type_proto_rawDescGZIP(), []int{0, 0}
}
// Represents a criterion for targeting paid apps.
@@ -97,7 +97,7 @@ type AppPaymentModelTypeEnum struct {
func (x *AppPaymentModelTypeEnum) Reset() {
*x = AppPaymentModelTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_app_payment_model_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_app_payment_model_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *AppPaymentModelTypeEnum) String() string {
func (*AppPaymentModelTypeEnum) ProtoMessage() {}
func (x *AppPaymentModelTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_app_payment_model_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_app_payment_model_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,18 +123,18 @@ func (x *AppPaymentModelTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AppPaymentModelTypeEnum.ProtoReflect.Descriptor instead.
func (*AppPaymentModelTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_app_payment_model_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_app_payment_model_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_app_payment_model_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_app_payment_model_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_app_payment_model_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_app_payment_model_type_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x70, 0x70, 0x5f, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64,
0x65, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x58, 0x0a,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x58, 0x0a,
0x17, 0x41, 0x70, 0x70, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c,
0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x3d, 0x0a, 0x13, 0x41, 0x70, 0x70, 0x50,
0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12,
@@ -142,42 +142,42 @@ var file_google_ads_googleads_v16_enums_app_payment_model_type_proto_rawDesc = [
0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x08, 0x0a,
0x04, 0x50, 0x41, 0x49, 0x44, 0x10, 0x1e, 0x42, 0xf2, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18,
0x41, 0x70, 0x70, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x54,
0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_app_payment_model_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_app_payment_model_type_proto_rawDescData = file_google_ads_googleads_v16_enums_app_payment_model_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_app_payment_model_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_app_payment_model_type_proto_rawDescData = file_google_ads_googleads_v17_enums_app_payment_model_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_app_payment_model_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_app_payment_model_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_app_payment_model_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_app_payment_model_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_app_payment_model_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_app_payment_model_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_app_payment_model_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_app_payment_model_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_app_payment_model_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_app_payment_model_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_app_payment_model_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_app_payment_model_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_app_payment_model_type_proto_goTypes = []interface{}{
- (AppPaymentModelTypeEnum_AppPaymentModelType)(0), // 0: google.ads.googleads.v16.enums.AppPaymentModelTypeEnum.AppPaymentModelType
- (*AppPaymentModelTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.AppPaymentModelTypeEnum
+var file_google_ads_googleads_v17_enums_app_payment_model_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_app_payment_model_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_app_payment_model_type_proto_goTypes = []interface{}{
+ (AppPaymentModelTypeEnum_AppPaymentModelType)(0), // 0: google.ads.googleads.v17.enums.AppPaymentModelTypeEnum.AppPaymentModelType
+ (*AppPaymentModelTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.AppPaymentModelTypeEnum
}
-var file_google_ads_googleads_v16_enums_app_payment_model_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_app_payment_model_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -185,13 +185,13 @@ var file_google_ads_googleads_v16_enums_app_payment_model_type_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_app_payment_model_type_proto_init() }
-func file_google_ads_googleads_v16_enums_app_payment_model_type_proto_init() {
- if File_google_ads_googleads_v16_enums_app_payment_model_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_app_payment_model_type_proto_init() }
+func file_google_ads_googleads_v17_enums_app_payment_model_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_app_payment_model_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_app_payment_model_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_app_payment_model_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AppPaymentModelTypeEnum); i {
case 0:
return &v.state
@@ -208,19 +208,19 @@ func file_google_ads_googleads_v16_enums_app_payment_model_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_app_payment_model_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_app_payment_model_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_app_payment_model_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_app_payment_model_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_app_payment_model_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_app_payment_model_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_app_payment_model_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_app_payment_model_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_app_payment_model_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_app_payment_model_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_app_payment_model_type_proto = out.File
- file_google_ads_googleads_v16_enums_app_payment_model_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_app_payment_model_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_app_payment_model_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_app_payment_model_type_proto = out.File
+ file_google_ads_googleads_v17_enums_app_payment_model_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_app_payment_model_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_app_payment_model_type_proto_depIdxs = nil
}
diff --git a/enums/app_placeholder_field.pb.go b/enums/app_placeholder_field.pb.go
index 148fcfb3..fd0efe12 100644
--- a/enums/app_placeholder_field.pb.go
+++ b/enums/app_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/app_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/app_placeholder_field.proto
package enums
@@ -106,11 +106,11 @@ func (x AppPlaceholderFieldEnum_AppPlaceholderField) String() string {
}
func (AppPlaceholderFieldEnum_AppPlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_app_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_app_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (AppPlaceholderFieldEnum_AppPlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_app_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_app_placeholder_field_proto_enumTypes[0]
}
func (x AppPlaceholderFieldEnum_AppPlaceholderField) Number() protoreflect.EnumNumber {
@@ -119,7 +119,7 @@ func (x AppPlaceholderFieldEnum_AppPlaceholderField) Number() protoreflect.EnumN
// Deprecated: Use AppPlaceholderFieldEnum_AppPlaceholderField.Descriptor instead.
func (AppPlaceholderFieldEnum_AppPlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_app_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_app_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for App placeholder fields.
@@ -132,7 +132,7 @@ type AppPlaceholderFieldEnum struct {
func (x *AppPlaceholderFieldEnum) Reset() {
*x = AppPlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_app_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_app_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -145,7 +145,7 @@ func (x *AppPlaceholderFieldEnum) String() string {
func (*AppPlaceholderFieldEnum) ProtoMessage() {}
func (x *AppPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_app_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_app_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -158,18 +158,18 @@ func (x *AppPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AppPlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*AppPlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_app_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_app_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_app_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_app_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_app_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_app_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x70, 0x70, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72,
0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc9, 0x01, 0x0a,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc9, 0x01, 0x0a,
0x17, 0x41, 0x70, 0x70, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46,
0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xad, 0x01, 0x0a, 0x13, 0x41, 0x70, 0x70,
0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64,
@@ -184,42 +184,42 @@ var file_google_ads_googleads_v16_enums_app_placeholder_field_proto_rawDesc = []
0x10, 0x08, 0x12, 0x14, 0x0a, 0x10, 0x46, 0x49, 0x4e, 0x41, 0x4c, 0x5f, 0x55, 0x52, 0x4c, 0x5f,
0x53, 0x55, 0x46, 0x46, 0x49, 0x58, 0x10, 0x09, 0x42, 0xf2, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
0x18, 0x41, 0x70, 0x70, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46,
0x69, 0x65, 0x6c, 0x64, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_app_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_app_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_app_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_app_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_app_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_app_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_app_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_app_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_app_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_app_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_app_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_app_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_app_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_app_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_app_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_app_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_app_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_app_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_app_placeholder_field_proto_goTypes = []interface{}{
- (AppPlaceholderFieldEnum_AppPlaceholderField)(0), // 0: google.ads.googleads.v16.enums.AppPlaceholderFieldEnum.AppPlaceholderField
- (*AppPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.AppPlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_app_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_app_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_app_placeholder_field_proto_goTypes = []interface{}{
+ (AppPlaceholderFieldEnum_AppPlaceholderField)(0), // 0: google.ads.googleads.v17.enums.AppPlaceholderFieldEnum.AppPlaceholderField
+ (*AppPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.AppPlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_app_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_app_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -227,13 +227,13 @@ var file_google_ads_googleads_v16_enums_app_placeholder_field_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_app_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_app_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_app_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_app_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_app_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_app_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_app_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_app_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AppPlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -250,19 +250,19 @@ func file_google_ads_googleads_v16_enums_app_placeholder_field_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_app_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_app_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_app_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_app_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_app_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_app_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_app_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_app_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_app_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_app_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_app_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_app_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_app_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_app_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_app_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_app_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_app_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_app_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/app_store.pb.go b/enums/app_store.pb.go
index 684922ef..687e478f 100644
--- a/enums/app_store.pb.go
+++ b/enums/app_store.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/app_store.proto
+// source: google/ads/googleads/v17/enums/app_store.proto
package enums
@@ -75,11 +75,11 @@ func (x AppStoreEnum_AppStore) String() string {
}
func (AppStoreEnum_AppStore) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_app_store_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_app_store_proto_enumTypes[0].Descriptor()
}
func (AppStoreEnum_AppStore) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_app_store_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_app_store_proto_enumTypes[0]
}
func (x AppStoreEnum_AppStore) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x AppStoreEnum_AppStore) Number() protoreflect.EnumNumber {
// Deprecated: Use AppStoreEnum_AppStore.Descriptor instead.
func (AppStoreEnum_AppStore) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_app_store_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_app_store_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing app store type in an app extension.
@@ -101,7 +101,7 @@ type AppStoreEnum struct {
func (x *AppStoreEnum) Reset() {
*x = AppStoreEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_app_store_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_app_store_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *AppStoreEnum) String() string {
func (*AppStoreEnum) ProtoMessage() {}
func (x *AppStoreEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_app_store_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_app_store_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,17 +127,17 @@ func (x *AppStoreEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AppStoreEnum.ProtoReflect.Descriptor instead.
func (*AppStoreEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_app_store_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_app_store_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_app_store_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_app_store_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_app_store_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_app_store_proto_rawDesc = []byte{
0x0a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x70, 0x70, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0x5b, 0x0a, 0x0c, 0x41, 0x70, 0x70, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x4b, 0x0a, 0x08, 0x41, 0x70, 0x70, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x12, 0x0f, 0x0a, 0x0b,
0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a,
@@ -145,41 +145,41 @@ var file_google_ads_googleads_v16_enums_app_store_proto_rawDesc = []byte{
0x50, 0x4c, 0x45, 0x5f, 0x49, 0x54, 0x55, 0x4e, 0x45, 0x53, 0x10, 0x02, 0x12, 0x0f, 0x0a, 0x0b,
0x47, 0x4f, 0x4f, 0x47, 0x4c, 0x45, 0x5f, 0x50, 0x4c, 0x41, 0x59, 0x10, 0x03, 0x42, 0xe7, 0x01,
0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0d, 0x41, 0x70, 0x70, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_app_store_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_app_store_proto_rawDescData = file_google_ads_googleads_v16_enums_app_store_proto_rawDesc
+ file_google_ads_googleads_v17_enums_app_store_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_app_store_proto_rawDescData = file_google_ads_googleads_v17_enums_app_store_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_app_store_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_app_store_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_app_store_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_app_store_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_app_store_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_app_store_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_app_store_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_app_store_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_app_store_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_app_store_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_app_store_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_app_store_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_app_store_proto_goTypes = []interface{}{
- (AppStoreEnum_AppStore)(0), // 0: google.ads.googleads.v16.enums.AppStoreEnum.AppStore
- (*AppStoreEnum)(nil), // 1: google.ads.googleads.v16.enums.AppStoreEnum
+var file_google_ads_googleads_v17_enums_app_store_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_app_store_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_app_store_proto_goTypes = []interface{}{
+ (AppStoreEnum_AppStore)(0), // 0: google.ads.googleads.v17.enums.AppStoreEnum.AppStore
+ (*AppStoreEnum)(nil), // 1: google.ads.googleads.v17.enums.AppStoreEnum
}
-var file_google_ads_googleads_v16_enums_app_store_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_app_store_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -187,13 +187,13 @@ var file_google_ads_googleads_v16_enums_app_store_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_app_store_proto_init() }
-func file_google_ads_googleads_v16_enums_app_store_proto_init() {
- if File_google_ads_googleads_v16_enums_app_store_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_app_store_proto_init() }
+func file_google_ads_googleads_v17_enums_app_store_proto_init() {
+ if File_google_ads_googleads_v17_enums_app_store_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_app_store_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_app_store_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AppStoreEnum); i {
case 0:
return &v.state
@@ -210,19 +210,19 @@ func file_google_ads_googleads_v16_enums_app_store_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_app_store_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_app_store_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_app_store_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_app_store_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_app_store_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_app_store_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_app_store_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_app_store_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_app_store_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_app_store_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_app_store_proto = out.File
- file_google_ads_googleads_v16_enums_app_store_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_app_store_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_app_store_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_app_store_proto = out.File
+ file_google_ads_googleads_v17_enums_app_store_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_app_store_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_app_store_proto_depIdxs = nil
}
diff --git a/enums/app_url_operating_system_type.pb.go b/enums/app_url_operating_system_type.pb.go
index 3ed875e7..292718b6 100644
--- a/enums/app_url_operating_system_type.pb.go
+++ b/enums/app_url_operating_system_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/app_url_operating_system_type.proto
+// source: google/ads/googleads/v17/enums/app_url_operating_system_type.proto
package enums
@@ -75,11 +75,11 @@ func (x AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType) String() string
}
func (AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_enumTypes[0].Descriptor()
}
func (AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_enumTypes[0]
}
func (x AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType) Number() protor
// Deprecated: Use AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType.Descriptor instead.
func (AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_rawDescGZIP(), []int{0, 0}
}
// The possible OS types for a deeplink AppUrl.
@@ -101,7 +101,7 @@ type AppUrlOperatingSystemTypeEnum struct {
func (x *AppUrlOperatingSystemTypeEnum) Reset() {
*x = AppUrlOperatingSystemTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *AppUrlOperatingSystemTypeEnum) String() string {
func (*AppUrlOperatingSystemTypeEnum) ProtoMessage() {}
func (x *AppUrlOperatingSystemTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *AppUrlOperatingSystemTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AppUrlOperatingSystemTypeEnum.ProtoReflect.Descriptor instead.
func (*AppUrlOperatingSystemTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_app_url_operating_system_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_app_url_operating_system_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_rawDesc = []byte{
0x0a, 0x42, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x70, 0x70, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
0x6e, 0x67, 0x5f, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x22, 0x70, 0x0a, 0x1d, 0x41, 0x70, 0x70, 0x55, 0x72, 0x6c, 0x4f, 0x70,
0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x54, 0x79, 0x70,
0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4f, 0x0a, 0x19, 0x41, 0x70, 0x70, 0x55, 0x72, 0x6c, 0x4f,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_rawD
0x12, 0x07, 0x0a, 0x03, 0x49, 0x4f, 0x53, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x41, 0x4e, 0x44,
0x52, 0x4f, 0x49, 0x44, 0x10, 0x03, 0x42, 0xf8, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x41,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x41,
0x70, 0x70, 0x55, 0x72, 0x6c, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79,
0x73, 0x74, 0x65, 0x6d, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_rawDescData = file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_rawDescData = file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_goTypes = []interface{}{
- (AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType)(0), // 0: google.ads.googleads.v16.enums.AppUrlOperatingSystemTypeEnum.AppUrlOperatingSystemType
- (*AppUrlOperatingSystemTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.AppUrlOperatingSystemTypeEnum
+var file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_goTypes = []interface{}{
+ (AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType)(0), // 0: google.ads.googleads.v17.enums.AppUrlOperatingSystemTypeEnum.AppUrlOperatingSystemType
+ (*AppUrlOperatingSystemTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.AppUrlOperatingSystemTypeEnum
}
-var file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_depI
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_init() }
-func file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_init() {
- if File_google_ads_googleads_v16_enums_app_url_operating_system_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_init() }
+func file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_app_url_operating_system_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AppUrlOperatingSystemTypeEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_ini
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_app_url_operating_system_type_proto = out.File
- file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_app_url_operating_system_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_app_url_operating_system_type_proto = out.File
+ file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_app_url_operating_system_type_proto_depIdxs = nil
}
diff --git a/enums/asset_automation_status.pb.go b/enums/asset_automation_status.pb.go
index a10acc02..8cdbe7a0 100644
--- a/enums/asset_automation_status.pb.go
+++ b/enums/asset_automation_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/asset_automation_status.proto
+// source: google/ads/googleads/v17/enums/asset_automation_status.proto
package enums
@@ -77,11 +77,11 @@ func (x AssetAutomationStatusEnum_AssetAutomationStatus) String() string {
}
func (AssetAutomationStatusEnum_AssetAutomationStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_asset_automation_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_asset_automation_status_proto_enumTypes[0].Descriptor()
}
func (AssetAutomationStatusEnum_AssetAutomationStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_asset_automation_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_asset_automation_status_proto_enumTypes[0]
}
func (x AssetAutomationStatusEnum_AssetAutomationStatus) Number() protoreflect.EnumNumber {
@@ -90,7 +90,7 @@ func (x AssetAutomationStatusEnum_AssetAutomationStatus) Number() protoreflect.E
// Deprecated: Use AssetAutomationStatusEnum_AssetAutomationStatus.Descriptor instead.
func (AssetAutomationStatusEnum_AssetAutomationStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_automation_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_asset_automation_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the status of asset automation.
@@ -103,7 +103,7 @@ type AssetAutomationStatusEnum struct {
func (x *AssetAutomationStatusEnum) Reset() {
*x = AssetAutomationStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_asset_automation_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_automation_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -116,7 +116,7 @@ func (x *AssetAutomationStatusEnum) String() string {
func (*AssetAutomationStatusEnum) ProtoMessage() {}
func (x *AssetAutomationStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_asset_automation_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_automation_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -129,18 +129,18 @@ func (x *AssetAutomationStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetAutomationStatusEnum.ProtoReflect.Descriptor instead.
func (*AssetAutomationStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_automation_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_asset_automation_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_asset_automation_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_asset_automation_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_asset_automation_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_asset_automation_status_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6f,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6f,
0x0a, 0x19, 0x41, 0x73, 0x73, 0x65, 0x74, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x52, 0x0a, 0x15, 0x41,
0x73, 0x73, 0x65, 0x74, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,
@@ -149,42 +149,42 @@ var file_google_ads_googleads_v16_enums_asset_automation_status_proto_rawDesc =
0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x4f, 0x50, 0x54, 0x45, 0x44, 0x5f, 0x49, 0x4e, 0x10, 0x02,
0x12, 0x0d, 0x0a, 0x09, 0x4f, 0x50, 0x54, 0x45, 0x44, 0x5f, 0x4f, 0x55, 0x54, 0x10, 0x03, 0x42,
0xf4, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x41, 0x73, 0x73, 0x65, 0x74, 0x41, 0x75, 0x74,
0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_asset_automation_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_asset_automation_status_proto_rawDescData = file_google_ads_googleads_v16_enums_asset_automation_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_asset_automation_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_asset_automation_status_proto_rawDescData = file_google_ads_googleads_v17_enums_asset_automation_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_asset_automation_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_asset_automation_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_asset_automation_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_asset_automation_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_asset_automation_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_asset_automation_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_asset_automation_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_asset_automation_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_asset_automation_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_asset_automation_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_asset_automation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_automation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_automation_status_proto_goTypes = []interface{}{
- (AssetAutomationStatusEnum_AssetAutomationStatus)(0), // 0: google.ads.googleads.v16.enums.AssetAutomationStatusEnum.AssetAutomationStatus
- (*AssetAutomationStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AssetAutomationStatusEnum
+var file_google_ads_googleads_v17_enums_asset_automation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_automation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_automation_status_proto_goTypes = []interface{}{
+ (AssetAutomationStatusEnum_AssetAutomationStatus)(0), // 0: google.ads.googleads.v17.enums.AssetAutomationStatusEnum.AssetAutomationStatus
+ (*AssetAutomationStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AssetAutomationStatusEnum
}
-var file_google_ads_googleads_v16_enums_asset_automation_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_asset_automation_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -192,13 +192,13 @@ var file_google_ads_googleads_v16_enums_asset_automation_status_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_asset_automation_status_proto_init() }
-func file_google_ads_googleads_v16_enums_asset_automation_status_proto_init() {
- if File_google_ads_googleads_v16_enums_asset_automation_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_asset_automation_status_proto_init() }
+func file_google_ads_googleads_v17_enums_asset_automation_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_asset_automation_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_asset_automation_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_asset_automation_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetAutomationStatusEnum); i {
case 0:
return &v.state
@@ -215,19 +215,19 @@ func file_google_ads_googleads_v16_enums_asset_automation_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_asset_automation_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_asset_automation_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_asset_automation_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_asset_automation_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_asset_automation_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_asset_automation_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_asset_automation_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_asset_automation_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_asset_automation_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_asset_automation_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_asset_automation_status_proto = out.File
- file_google_ads_googleads_v16_enums_asset_automation_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_asset_automation_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_asset_automation_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_asset_automation_status_proto = out.File
+ file_google_ads_googleads_v17_enums_asset_automation_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_asset_automation_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_asset_automation_status_proto_depIdxs = nil
}
diff --git a/enums/asset_automation_type.pb.go b/enums/asset_automation_type.pb.go
index b46088b8..a9dab613 100644
--- a/enums/asset_automation_type.pb.go
+++ b/enums/asset_automation_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/asset_automation_type.proto
+// source: google/ads/googleads/v17/enums/asset_automation_type.proto
package enums
@@ -73,11 +73,11 @@ func (x AssetAutomationTypeEnum_AssetAutomationType) String() string {
}
func (AssetAutomationTypeEnum_AssetAutomationType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_asset_automation_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_asset_automation_type_proto_enumTypes[0].Descriptor()
}
func (AssetAutomationTypeEnum_AssetAutomationType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_asset_automation_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_asset_automation_type_proto_enumTypes[0]
}
func (x AssetAutomationTypeEnum_AssetAutomationType) Number() protoreflect.EnumNumber {
@@ -86,7 +86,7 @@ func (x AssetAutomationTypeEnum_AssetAutomationType) Number() protoreflect.EnumN
// Deprecated: Use AssetAutomationTypeEnum_AssetAutomationType.Descriptor instead.
func (AssetAutomationTypeEnum_AssetAutomationType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_automation_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_asset_automation_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the type of asset automation.
@@ -99,7 +99,7 @@ type AssetAutomationTypeEnum struct {
func (x *AssetAutomationTypeEnum) Reset() {
*x = AssetAutomationTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_asset_automation_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_automation_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -112,7 +112,7 @@ func (x *AssetAutomationTypeEnum) String() string {
func (*AssetAutomationTypeEnum) ProtoMessage() {}
func (x *AssetAutomationTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_asset_automation_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_automation_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -125,18 +125,18 @@ func (x *AssetAutomationTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetAutomationTypeEnum.ProtoReflect.Descriptor instead.
func (*AssetAutomationTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_automation_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_asset_automation_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_asset_automation_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_asset_automation_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_asset_automation_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_asset_automation_type_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x69, 0x0a, 0x17,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x69, 0x0a, 0x17,
0x41, 0x73, 0x73, 0x65, 0x74, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54,
0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4e, 0x0a, 0x13, 0x41, 0x73, 0x73, 0x65, 0x74,
0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f,
@@ -145,42 +145,42 @@ var file_google_ads_googleads_v16_enums_asset_automation_type_proto_rawDesc = []
0x54, 0x45, 0x58, 0x54, 0x5f, 0x41, 0x53, 0x53, 0x45, 0x54, 0x5f, 0x41, 0x55, 0x54, 0x4f, 0x4d,
0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x02, 0x42, 0xf2, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18,
0x41, 0x73, 0x73, 0x65, 0x74, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54,
0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_asset_automation_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_asset_automation_type_proto_rawDescData = file_google_ads_googleads_v16_enums_asset_automation_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_asset_automation_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_asset_automation_type_proto_rawDescData = file_google_ads_googleads_v17_enums_asset_automation_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_asset_automation_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_asset_automation_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_asset_automation_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_asset_automation_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_asset_automation_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_asset_automation_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_asset_automation_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_asset_automation_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_asset_automation_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_asset_automation_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_asset_automation_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_automation_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_automation_type_proto_goTypes = []interface{}{
- (AssetAutomationTypeEnum_AssetAutomationType)(0), // 0: google.ads.googleads.v16.enums.AssetAutomationTypeEnum.AssetAutomationType
- (*AssetAutomationTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.AssetAutomationTypeEnum
+var file_google_ads_googleads_v17_enums_asset_automation_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_automation_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_automation_type_proto_goTypes = []interface{}{
+ (AssetAutomationTypeEnum_AssetAutomationType)(0), // 0: google.ads.googleads.v17.enums.AssetAutomationTypeEnum.AssetAutomationType
+ (*AssetAutomationTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.AssetAutomationTypeEnum
}
-var file_google_ads_googleads_v16_enums_asset_automation_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_asset_automation_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -188,13 +188,13 @@ var file_google_ads_googleads_v16_enums_asset_automation_type_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_asset_automation_type_proto_init() }
-func file_google_ads_googleads_v16_enums_asset_automation_type_proto_init() {
- if File_google_ads_googleads_v16_enums_asset_automation_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_asset_automation_type_proto_init() }
+func file_google_ads_googleads_v17_enums_asset_automation_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_asset_automation_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_asset_automation_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_asset_automation_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetAutomationTypeEnum); i {
case 0:
return &v.state
@@ -211,19 +211,19 @@ func file_google_ads_googleads_v16_enums_asset_automation_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_asset_automation_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_asset_automation_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_asset_automation_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_asset_automation_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_asset_automation_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_asset_automation_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_asset_automation_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_asset_automation_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_asset_automation_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_asset_automation_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_asset_automation_type_proto = out.File
- file_google_ads_googleads_v16_enums_asset_automation_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_asset_automation_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_asset_automation_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_asset_automation_type_proto = out.File
+ file_google_ads_googleads_v17_enums_asset_automation_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_asset_automation_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_asset_automation_type_proto_depIdxs = nil
}
diff --git a/enums/asset_field_type.pb.go b/enums/asset_field_type.pb.go
index 05b0ddac..ac029726 100644
--- a/enums/asset_field_type.pb.go
+++ b/enums/asset_field_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/asset_field_type.proto
+// source: google/ads/googleads/v17/enums/asset_field_type.proto
package enums
@@ -98,8 +98,8 @@ const (
// The asset is linked for use as a hotel property in a Performance Max for
// travel goals campaign.
AssetFieldTypeEnum_HOTEL_PROPERTY AssetFieldTypeEnum_AssetFieldType = 28
- // The asset is linked for use as a discovery carousel card.
- AssetFieldTypeEnum_DISCOVERY_CAROUSEL_CARD AssetFieldTypeEnum_AssetFieldType = 29
+ // The asset is linked for use as a Demand Gen carousel card.
+ AssetFieldTypeEnum_DEMAND_GEN_CAROUSEL_CARD AssetFieldTypeEnum_AssetFieldType = 30
)
// Enum value maps for AssetFieldTypeEnum_AssetFieldType.
@@ -134,7 +134,7 @@ var (
26: "AD_IMAGE",
27: "BUSINESS_LOGO",
28: "HOTEL_PROPERTY",
- 29: "DISCOVERY_CAROUSEL_CARD",
+ 30: "DEMAND_GEN_CAROUSEL_CARD",
}
AssetFieldTypeEnum_AssetFieldType_value = map[string]int32{
"UNSPECIFIED": 0,
@@ -166,7 +166,7 @@ var (
"AD_IMAGE": 26,
"BUSINESS_LOGO": 27,
"HOTEL_PROPERTY": 28,
- "DISCOVERY_CAROUSEL_CARD": 29,
+ "DEMAND_GEN_CAROUSEL_CARD": 30,
}
)
@@ -181,11 +181,11 @@ func (x AssetFieldTypeEnum_AssetFieldType) String() string {
}
func (AssetFieldTypeEnum_AssetFieldType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_asset_field_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_asset_field_type_proto_enumTypes[0].Descriptor()
}
func (AssetFieldTypeEnum_AssetFieldType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_asset_field_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_asset_field_type_proto_enumTypes[0]
}
func (x AssetFieldTypeEnum_AssetFieldType) Number() protoreflect.EnumNumber {
@@ -194,7 +194,7 @@ func (x AssetFieldTypeEnum_AssetFieldType) Number() protoreflect.EnumNumber {
// Deprecated: Use AssetFieldTypeEnum_AssetFieldType.Descriptor instead.
func (AssetFieldTypeEnum_AssetFieldType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_field_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_asset_field_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the possible placements of an asset.
@@ -207,7 +207,7 @@ type AssetFieldTypeEnum struct {
func (x *AssetFieldTypeEnum) Reset() {
*x = AssetFieldTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_asset_field_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_field_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -220,7 +220,7 @@ func (x *AssetFieldTypeEnum) String() string {
func (*AssetFieldTypeEnum) ProtoMessage() {}
func (x *AssetFieldTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_asset_field_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_field_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -233,19 +233,19 @@ func (x *AssetFieldTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetFieldTypeEnum.ProtoReflect.Descriptor instead.
func (*AssetFieldTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_field_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_asset_field_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_asset_field_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_asset_field_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_asset_field_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_asset_field_type_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70,
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xcb, 0x04, 0x0a, 0x12, 0x41, 0x73, 0x73, 0x65,
- 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb4,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xcc, 0x04, 0x0a, 0x12, 0x41, 0x73, 0x73, 0x65,
+ 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb5,
0x04, 0x0a, 0x0e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70,
0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44,
0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12,
@@ -279,45 +279,45 @@ var file_google_ads_googleads_v16_enums_asset_field_type_proto_rawDesc = []byte{
0x4e, 0x10, 0x19, 0x12, 0x0c, 0x0a, 0x08, 0x41, 0x44, 0x5f, 0x49, 0x4d, 0x41, 0x47, 0x45, 0x10,
0x1a, 0x12, 0x11, 0x0a, 0x0d, 0x42, 0x55, 0x53, 0x49, 0x4e, 0x45, 0x53, 0x53, 0x5f, 0x4c, 0x4f,
0x47, 0x4f, 0x10, 0x1b, 0x12, 0x12, 0x0a, 0x0e, 0x48, 0x4f, 0x54, 0x45, 0x4c, 0x5f, 0x50, 0x52,
- 0x4f, 0x50, 0x45, 0x52, 0x54, 0x59, 0x10, 0x1c, 0x12, 0x1b, 0x0a, 0x17, 0x44, 0x49, 0x53, 0x43,
- 0x4f, 0x56, 0x45, 0x52, 0x59, 0x5f, 0x43, 0x41, 0x52, 0x4f, 0x55, 0x53, 0x45, 0x4c, 0x5f, 0x43,
- 0x41, 0x52, 0x44, 0x10, 0x1d, 0x42, 0xed, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x41, 0x73,
- 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74,
- 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
- 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
- 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
- 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
- 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
- 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
- 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x4f, 0x50, 0x45, 0x52, 0x54, 0x59, 0x10, 0x1c, 0x12, 0x1c, 0x0a, 0x18, 0x44, 0x45, 0x4d, 0x41,
+ 0x4e, 0x44, 0x5f, 0x47, 0x45, 0x4e, 0x5f, 0x43, 0x41, 0x52, 0x4f, 0x55, 0x53, 0x45, 0x4c, 0x5f,
+ 0x43, 0x41, 0x52, 0x44, 0x10, 0x1e, 0x42, 0xed, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x41,
+ 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f,
+ 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
+ 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
+ 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
+ 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
+ 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_asset_field_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_asset_field_type_proto_rawDescData = file_google_ads_googleads_v16_enums_asset_field_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_asset_field_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_asset_field_type_proto_rawDescData = file_google_ads_googleads_v17_enums_asset_field_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_asset_field_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_asset_field_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_asset_field_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_asset_field_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_asset_field_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_asset_field_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_asset_field_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_asset_field_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_asset_field_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_asset_field_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_asset_field_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_field_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_field_type_proto_goTypes = []interface{}{
- (AssetFieldTypeEnum_AssetFieldType)(0), // 0: google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType
- (*AssetFieldTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.AssetFieldTypeEnum
+var file_google_ads_googleads_v17_enums_asset_field_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_field_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_field_type_proto_goTypes = []interface{}{
+ (AssetFieldTypeEnum_AssetFieldType)(0), // 0: google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType
+ (*AssetFieldTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.AssetFieldTypeEnum
}
-var file_google_ads_googleads_v16_enums_asset_field_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_asset_field_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -325,13 +325,13 @@ var file_google_ads_googleads_v16_enums_asset_field_type_proto_depIdxs = []int32
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_asset_field_type_proto_init() }
-func file_google_ads_googleads_v16_enums_asset_field_type_proto_init() {
- if File_google_ads_googleads_v16_enums_asset_field_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_asset_field_type_proto_init() }
+func file_google_ads_googleads_v17_enums_asset_field_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_asset_field_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_asset_field_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_asset_field_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetFieldTypeEnum); i {
case 0:
return &v.state
@@ -348,19 +348,19 @@ func file_google_ads_googleads_v16_enums_asset_field_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_asset_field_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_asset_field_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_asset_field_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_asset_field_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_asset_field_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_asset_field_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_asset_field_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_asset_field_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_asset_field_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_asset_field_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_asset_field_type_proto = out.File
- file_google_ads_googleads_v16_enums_asset_field_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_asset_field_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_asset_field_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_asset_field_type_proto = out.File
+ file_google_ads_googleads_v17_enums_asset_field_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_asset_field_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_asset_field_type_proto_depIdxs = nil
}
diff --git a/enums/asset_group_primary_status.pb.go b/enums/asset_group_primary_status.pb.go
index 3c2e1e37..7cf16537 100644
--- a/enums/asset_group_primary_status.pb.go
+++ b/enums/asset_group_primary_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/asset_group_primary_status.proto
+// source: google/ads/googleads/v17/enums/asset_group_primary_status.proto
package enums
@@ -92,11 +92,11 @@ func (x AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus) String() string {
}
func (AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_enumTypes[0].Descriptor()
}
func (AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_enumTypes[0]
}
func (x AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus) Number() protoreflect.EnumNumber {
@@ -105,7 +105,7 @@ func (x AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus) Number() protorefle
// Deprecated: Use AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus.Descriptor instead.
func (AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible asset group primary status.
@@ -118,7 +118,7 @@ type AssetGroupPrimaryStatusEnum struct {
func (x *AssetGroupPrimaryStatusEnum) Reset() {
*x = AssetGroupPrimaryStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -131,7 +131,7 @@ func (x *AssetGroupPrimaryStatusEnum) String() string {
func (*AssetGroupPrimaryStatusEnum) ProtoMessage() {}
func (x *AssetGroupPrimaryStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -144,18 +144,18 @@ func (x *AssetGroupPrimaryStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetGroupPrimaryStatusEnum.ProtoReflect.Descriptor instead.
func (*AssetGroupPrimaryStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_asset_group_primary_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_asset_group_primary_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x70, 0x72, 0x69,
0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x22, 0xaa, 0x01, 0x0a, 0x1b, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70,
0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x8a, 0x01, 0x0a, 0x17, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70,
@@ -168,42 +168,42 @@ var file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_rawDesc
0x4c, 0x45, 0x10, 0x05, 0x12, 0x0b, 0x0a, 0x07, 0x4c, 0x49, 0x4d, 0x49, 0x54, 0x45, 0x44, 0x10,
0x06, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x45, 0x4e, 0x44, 0x49, 0x4e, 0x47, 0x10, 0x07, 0x42, 0xf6,
0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75,
0x70, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_rawDescData = file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_rawDescData = file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_goTypes = []interface{}{
- (AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus)(0), // 0: google.ads.googleads.v16.enums.AssetGroupPrimaryStatusEnum.AssetGroupPrimaryStatus
- (*AssetGroupPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AssetGroupPrimaryStatusEnum
+var file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_goTypes = []interface{}{
+ (AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus)(0), // 0: google.ads.googleads.v17.enums.AssetGroupPrimaryStatusEnum.AssetGroupPrimaryStatus
+ (*AssetGroupPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AssetGroupPrimaryStatusEnum
}
-var file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -211,13 +211,13 @@ var file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_init() }
-func file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_init() {
- if File_google_ads_googleads_v16_enums_asset_group_primary_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_init() }
+func file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_asset_group_primary_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetGroupPrimaryStatusEnum); i {
case 0:
return &v.state
@@ -234,19 +234,19 @@ func file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_asset_group_primary_status_proto = out.File
- file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_asset_group_primary_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_asset_group_primary_status_proto = out.File
+ file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_asset_group_primary_status_proto_depIdxs = nil
}
diff --git a/enums/asset_group_primary_status_reason.pb.go b/enums/asset_group_primary_status_reason.pb.go
index 6a39f68f..74e5877b 100644
--- a/enums/asset_group_primary_status_reason.pb.go
+++ b/enums/asset_group_primary_status_reason.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/asset_group_primary_status_reason.proto
+// source: google/ads/googleads/v17/enums/asset_group_primary_status_reason.proto
package enums
@@ -44,24 +44,32 @@ const (
AssetGroupPrimaryStatusReasonEnum_UNSPECIFIED AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason = 0
// Used for return value only. Represents value unknown in this version.
AssetGroupPrimaryStatusReasonEnum_UNKNOWN AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason = 1
- // The user-specified asset group status is paused.
+ // The user-specified asset group status is paused. Contributes to
+ // AssetGroupPrimaryStatus.PAUSED
AssetGroupPrimaryStatusReasonEnum_ASSET_GROUP_PAUSED AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason = 2
- // The user-specified asset group status is removed.
+ // The user-specified asset group status is removed. Contributes to
+ // AssetGroupPrimaryStatus.REMOVED.
AssetGroupPrimaryStatusReasonEnum_ASSET_GROUP_REMOVED AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason = 3
- // The user-specified campaign status is removed.
+ // The user-specified campaign status is removed. Contributes to
+ // AssetGroupPrimaryStatus.NOT_ELIGIBLE.
AssetGroupPrimaryStatusReasonEnum_CAMPAIGN_REMOVED AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason = 4
- // The user-specified campaign status is paused.
+ // The user-specified campaign status is paused. Contributes to
+ // AssetGroupPrimaryStatus.NOT_ELIGIBLE.
AssetGroupPrimaryStatusReasonEnum_CAMPAIGN_PAUSED AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason = 5
// The user-specified time for this campaign to start is in the future.
+ // Contributes to AssetGroupPrimaryStatus.NOT_ELIGIBLE.
AssetGroupPrimaryStatusReasonEnum_CAMPAIGN_PENDING AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason = 6
- // The user-specified time for this campaign to end has passed.
+ // The user-specified time for this campaign to end has passed. Contributes
+ // to AssetGroupPrimaryStatus.NOT_ELIGIBLE.
AssetGroupPrimaryStatusReasonEnum_CAMPAIGN_ENDED AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason = 7
// The asset group is approved but only serves in limited capacity due to
- // policies.
+ // policies. Contributes to AssetGroupPrimaryStatus.LIMITED.
AssetGroupPrimaryStatusReasonEnum_ASSET_GROUP_LIMITED AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason = 8
- // The asset group has been marked as disapproved.
+ // The asset group has been marked as disapproved. Contributes to
+ // AssetGroupPrimaryStatus.NOT_ELIGIBLE.
AssetGroupPrimaryStatusReasonEnum_ASSET_GROUP_DISAPPROVED AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason = 9
- // The asset group has not completed policy review.
+ // The asset group has not completed policy review. Contributes to
+ // AssetGroupPrimaryStatus.PENDING.
AssetGroupPrimaryStatusReasonEnum_ASSET_GROUP_UNDER_REVIEW AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason = 10
)
@@ -106,11 +114,11 @@ func (x AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason) String(
}
func (AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_enumTypes[0].Descriptor()
}
func (AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_enumTypes[0]
}
func (x AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason) Number() protoreflect.EnumNumber {
@@ -119,7 +127,7 @@ func (x AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason) Number(
// Deprecated: Use AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason.Descriptor instead.
func (AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible asset group primary status reasons.
@@ -132,7 +140,7 @@ type AssetGroupPrimaryStatusReasonEnum struct {
func (x *AssetGroupPrimaryStatusReasonEnum) Reset() {
*x = AssetGroupPrimaryStatusReasonEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -145,7 +153,7 @@ func (x *AssetGroupPrimaryStatusReasonEnum) String() string {
func (*AssetGroupPrimaryStatusReasonEnum) ProtoMessage() {}
func (x *AssetGroupPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -158,19 +166,19 @@ func (x *AssetGroupPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message
// Deprecated: Use AssetGroupPrimaryStatusReasonEnum.ProtoReflect.Descriptor instead.
func (*AssetGroupPrimaryStatusReasonEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_rawDesc = []byte{
0x0a, 0x46, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x70, 0x72, 0x69,
0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x73,
0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xbd, 0x02, 0x0a, 0x21, 0x41, 0x73, 0x73,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xbd, 0x02, 0x0a, 0x21, 0x41, 0x73, 0x73,
0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74,
0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x97,
0x02, 0x0a, 0x1d, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x72, 0x69,
@@ -192,42 +200,42 @@ var file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_
0x53, 0x45, 0x54, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x5f, 0x55, 0x4e, 0x44, 0x45, 0x52, 0x5f,
0x52, 0x45, 0x56, 0x49, 0x45, 0x57, 0x10, 0x0a, 0x42, 0xfc, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
0x22, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x72, 0x69, 0x6d, 0x61,
0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_rawDescData = file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_rawDesc
+ file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_rawDescData = file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_goTypes = []interface{}{
- (AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason)(0), // 0: google.ads.googleads.v16.enums.AssetGroupPrimaryStatusReasonEnum.AssetGroupPrimaryStatusReason
- (*AssetGroupPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v16.enums.AssetGroupPrimaryStatusReasonEnum
+var file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_goTypes = []interface{}{
+ (AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason)(0), // 0: google.ads.googleads.v17.enums.AssetGroupPrimaryStatusReasonEnum.AssetGroupPrimaryStatusReason
+ (*AssetGroupPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v17.enums.AssetGroupPrimaryStatusReasonEnum
}
-var file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -235,13 +243,13 @@ var file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_init() }
-func file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_init() {
- if File_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_init() }
+func file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_init() {
+ if File_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetGroupPrimaryStatusReasonEnum); i {
case 0:
return &v.state
@@ -258,19 +266,19 @@ func file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto = out.File
- file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_asset_group_primary_status_reason_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto = out.File
+ file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_asset_group_primary_status_reason_proto_depIdxs = nil
}
diff --git a/enums/asset_group_signal_approval_status.pb.go b/enums/asset_group_signal_approval_status.pb.go
index 27a7b03e..dedf0adb 100644
--- a/enums/asset_group_signal_approval_status.pb.go
+++ b/enums/asset_group_signal_approval_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/asset_group_signal_approval_status.proto
+// source: google/ads/googleads/v17/enums/asset_group_signal_approval_status.proto
package enums
@@ -87,11 +87,11 @@ func (x AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus) Strin
}
func (AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_enumTypes[0].Descriptor()
}
func (AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_enumTypes[0]
}
func (x AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus) Numbe
// Deprecated: Use AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus.Descriptor instead.
func (AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible AssetGroupSignal approval statuses.
@@ -114,7 +114,7 @@ type AssetGroupSignalApprovalStatusEnum struct {
func (x *AssetGroupSignalApprovalStatusEnum) Reset() {
*x = AssetGroupSignalApprovalStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -127,7 +127,7 @@ func (x *AssetGroupSignalApprovalStatusEnum) String() string {
func (*AssetGroupSignalApprovalStatusEnum) ProtoMessage() {}
func (x *AssetGroupSignalApprovalStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -140,19 +140,19 @@ func (x *AssetGroupSignalApprovalStatusEnum) ProtoReflect() protoreflect.Message
// Deprecated: Use AssetGroupSignalApprovalStatusEnum.ProtoReflect.Descriptor instead.
func (*AssetGroupSignalApprovalStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_rawDesc = []byte{
0x0a, 0x47, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x69, 0x67,
0x6e, 0x61, 0x6c, 0x5f, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61,
0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa2, 0x01, 0x0a, 0x22, 0x41, 0x73,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa2, 0x01, 0x0a, 0x22, 0x41, 0x73,
0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x41, 0x70,
0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x7c, 0x0a, 0x1e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69,
@@ -164,43 +164,43 @@ var file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto
0x49, 0x53, 0x41, 0x50, 0x50, 0x52, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x04, 0x12, 0x10, 0x0a, 0x0c,
0x55, 0x4e, 0x44, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x56, 0x49, 0x45, 0x57, 0x10, 0x05, 0x42, 0xfd,
0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75,
0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_rawDescData = file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_rawDescData = file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_goTypes = []interface{}{
- (AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus)(0), // 0: google.ads.googleads.v16.enums.AssetGroupSignalApprovalStatusEnum.AssetGroupSignalApprovalStatus
- (*AssetGroupSignalApprovalStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AssetGroupSignalApprovalStatusEnum
+var file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_goTypes = []interface{}{
+ (AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus)(0), // 0: google.ads.googleads.v17.enums.AssetGroupSignalApprovalStatusEnum.AssetGroupSignalApprovalStatus
+ (*AssetGroupSignalApprovalStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AssetGroupSignalApprovalStatusEnum
}
-var file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -208,13 +208,13 @@ var file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_init() }
-func file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_init() {
- if File_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_init() }
+func file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetGroupSignalApprovalStatusEnum); i {
case 0:
return &v.state
@@ -231,19 +231,19 @@ func file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_prot
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto = out.File
- file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_asset_group_signal_approval_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto = out.File
+ file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_asset_group_signal_approval_status_proto_depIdxs = nil
}
diff --git a/enums/asset_group_status.pb.go b/enums/asset_group_status.pb.go
index f4c5b638..49ba70b3 100644
--- a/enums/asset_group_status.pb.go
+++ b/enums/asset_group_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/asset_group_status.proto
+// source: google/ads/googleads/v17/enums/asset_group_status.proto
package enums
@@ -79,11 +79,11 @@ func (x AssetGroupStatusEnum_AssetGroupStatus) String() string {
}
func (AssetGroupStatusEnum_AssetGroupStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_asset_group_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_asset_group_status_proto_enumTypes[0].Descriptor()
}
func (AssetGroupStatusEnum_AssetGroupStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_asset_group_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_asset_group_status_proto_enumTypes[0]
}
func (x AssetGroupStatusEnum_AssetGroupStatus) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x AssetGroupStatusEnum_AssetGroupStatus) Number() protoreflect.EnumNumber
// Deprecated: Use AssetGroupStatusEnum_AssetGroupStatus.Descriptor instead.
func (AssetGroupStatusEnum_AssetGroupStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_group_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_asset_group_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of an asset group.
@@ -105,7 +105,7 @@ type AssetGroupStatusEnum struct {
func (x *AssetGroupStatusEnum) Reset() {
*x = AssetGroupStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_asset_group_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_group_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *AssetGroupStatusEnum) String() string {
func (*AssetGroupStatusEnum) ProtoMessage() {}
func (x *AssetGroupStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_asset_group_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_group_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *AssetGroupStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetGroupStatusEnum.ProtoReflect.Descriptor instead.
func (*AssetGroupStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_group_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_asset_group_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_asset_group_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_asset_group_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_asset_group_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_asset_group_status_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x74, 0x61,
0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6e, 0x0a, 0x14, 0x41, 0x73, 0x73,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6e, 0x0a, 0x14, 0x41, 0x73, 0x73,
0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x56, 0x0a, 0x10, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49,
@@ -151,42 +151,42 @@ var file_google_ads_googleads_v16_enums_asset_group_status_proto_rawDesc = []byt
0x12, 0x0a, 0x0a, 0x06, 0x50, 0x41, 0x55, 0x53, 0x45, 0x44, 0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07,
0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x04, 0x42, 0xef, 0x01, 0x0a, 0x22, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x42, 0x15, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_asset_group_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_asset_group_status_proto_rawDescData = file_google_ads_googleads_v16_enums_asset_group_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_asset_group_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_asset_group_status_proto_rawDescData = file_google_ads_googleads_v17_enums_asset_group_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_asset_group_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_asset_group_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_asset_group_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_asset_group_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_asset_group_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_asset_group_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_asset_group_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_asset_group_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_asset_group_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_asset_group_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_asset_group_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_group_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_group_status_proto_goTypes = []interface{}{
- (AssetGroupStatusEnum_AssetGroupStatus)(0), // 0: google.ads.googleads.v16.enums.AssetGroupStatusEnum.AssetGroupStatus
- (*AssetGroupStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AssetGroupStatusEnum
+var file_google_ads_googleads_v17_enums_asset_group_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_group_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_group_status_proto_goTypes = []interface{}{
+ (AssetGroupStatusEnum_AssetGroupStatus)(0), // 0: google.ads.googleads.v17.enums.AssetGroupStatusEnum.AssetGroupStatus
+ (*AssetGroupStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AssetGroupStatusEnum
}
-var file_google_ads_googleads_v16_enums_asset_group_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_asset_group_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -194,13 +194,13 @@ var file_google_ads_googleads_v16_enums_asset_group_status_proto_depIdxs = []int
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_asset_group_status_proto_init() }
-func file_google_ads_googleads_v16_enums_asset_group_status_proto_init() {
- if File_google_ads_googleads_v16_enums_asset_group_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_asset_group_status_proto_init() }
+func file_google_ads_googleads_v17_enums_asset_group_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_asset_group_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_asset_group_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_asset_group_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetGroupStatusEnum); i {
case 0:
return &v.state
@@ -217,19 +217,19 @@ func file_google_ads_googleads_v16_enums_asset_group_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_asset_group_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_asset_group_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_asset_group_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_asset_group_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_asset_group_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_asset_group_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_asset_group_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_asset_group_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_asset_group_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_asset_group_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_asset_group_status_proto = out.File
- file_google_ads_googleads_v16_enums_asset_group_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_asset_group_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_asset_group_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_asset_group_status_proto = out.File
+ file_google_ads_googleads_v17_enums_asset_group_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_asset_group_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_asset_group_status_proto_depIdxs = nil
}
diff --git a/enums/asset_link_primary_status.pb.go b/enums/asset_link_primary_status.pb.go
index 59bfd158..d4d66989 100644
--- a/enums/asset_link_primary_status.pb.go
+++ b/enums/asset_link_primary_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/asset_link_primary_status.proto
+// source: google/ads/googleads/v17/enums/asset_link_primary_status.proto
package enums
@@ -96,11 +96,11 @@ func (x AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus) String() string {
}
func (AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_enumTypes[0].Descriptor()
}
func (AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_enumTypes[0]
}
func (x AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus) Number() protoreflect.EnumNumber {
@@ -109,7 +109,7 @@ func (x AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus) Number() protoreflect
// Deprecated: Use AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus.Descriptor instead.
func (AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_rawDescGZIP(), []int{0, 0}
}
// Provides the primary status of an asset link.
@@ -123,7 +123,7 @@ type AssetLinkPrimaryStatusEnum struct {
func (x *AssetLinkPrimaryStatusEnum) Reset() {
*x = AssetLinkPrimaryStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -136,7 +136,7 @@ func (x *AssetLinkPrimaryStatusEnum) String() string {
func (*AssetLinkPrimaryStatusEnum) ProtoMessage() {}
func (x *AssetLinkPrimaryStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -149,18 +149,18 @@ func (x *AssetLinkPrimaryStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetLinkPrimaryStatusEnum.ProtoReflect.Descriptor instead.
func (*AssetLinkPrimaryStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_asset_link_primary_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_asset_link_primary_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x70, 0x72, 0x69, 0x6d,
0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0xa8, 0x01, 0x0a, 0x1a, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72,
0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x89, 0x01, 0x0a, 0x16, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x69,
@@ -173,42 +173,42 @@ var file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_rawDesc
0x4c, 0x49, 0x4d, 0x49, 0x54, 0x45, 0x44, 0x10, 0x06, 0x12, 0x10, 0x0a, 0x0c, 0x4e, 0x4f, 0x54,
0x5f, 0x45, 0x4c, 0x49, 0x47, 0x49, 0x42, 0x4c, 0x45, 0x10, 0x07, 0x42, 0xf5, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x1b, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x69,
0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_rawDescData = file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_rawDescData = file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_goTypes = []interface{}{
- (AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 0: google.ads.googleads.v16.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus
- (*AssetLinkPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AssetLinkPrimaryStatusEnum
+var file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_goTypes = []interface{}{
+ (AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 0: google.ads.googleads.v17.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus
+ (*AssetLinkPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AssetLinkPrimaryStatusEnum
}
-var file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -216,13 +216,13 @@ var file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_init() }
-func file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_init() {
- if File_google_ads_googleads_v16_enums_asset_link_primary_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_init() }
+func file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_asset_link_primary_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetLinkPrimaryStatusEnum); i {
case 0:
return &v.state
@@ -239,19 +239,19 @@ func file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_asset_link_primary_status_proto = out.File
- file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_asset_link_primary_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_asset_link_primary_status_proto = out.File
+ file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_asset_link_primary_status_proto_depIdxs = nil
}
diff --git a/enums/asset_link_primary_status_reason.pb.go b/enums/asset_link_primary_status_reason.pb.go
index 08faa8e1..4ed69244 100644
--- a/enums/asset_link_primary_status_reason.pb.go
+++ b/enums/asset_link_primary_status_reason.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/asset_link_primary_status_reason.proto
+// source: google/ads/googleads/v17/enums/asset_link_primary_status_reason.proto
package enums
@@ -98,11 +98,11 @@ func (x AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason) String()
}
func (AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_enumTypes[0].Descriptor()
}
func (AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_enumTypes[0]
}
func (x AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason) Number() protoreflect.EnumNumber {
@@ -111,7 +111,7 @@ func (x AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason) Number()
// Deprecated: Use AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason.Descriptor instead.
func (AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_rawDescGZIP(), []int{0, 0}
}
// Provides the reason of a primary status.
@@ -125,7 +125,7 @@ type AssetLinkPrimaryStatusReasonEnum struct {
func (x *AssetLinkPrimaryStatusReasonEnum) Reset() {
*x = AssetLinkPrimaryStatusReasonEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -138,7 +138,7 @@ func (x *AssetLinkPrimaryStatusReasonEnum) String() string {
func (*AssetLinkPrimaryStatusReasonEnum) ProtoMessage() {}
func (x *AssetLinkPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -151,19 +151,19 @@ func (x *AssetLinkPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetLinkPrimaryStatusReasonEnum.ProtoReflect.Descriptor instead.
func (*AssetLinkPrimaryStatusReasonEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_rawDesc = []byte{
0x0a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x70, 0x72, 0x69, 0x6d,
0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f,
0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xdb, 0x01, 0x0a, 0x20, 0x41, 0x73, 0x73, 0x65,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xdb, 0x01, 0x0a, 0x20, 0x41, 0x73, 0x73, 0x65,
0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb6, 0x01, 0x0a,
0x1c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72,
@@ -179,42 +179,42 @@ var file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_r
0x45, 0x54, 0x5f, 0x41, 0x50, 0x50, 0x52, 0x4f, 0x56, 0x45, 0x44, 0x5f, 0x4c, 0x41, 0x42, 0x45,
0x4c, 0x45, 0x44, 0x10, 0x06, 0x42, 0xfb, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x41, 0x73,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x41, 0x73,
0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74,
0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_rawDescData = file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_rawDesc
+ file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_rawDescData = file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_goTypes = []interface{}{
- (AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 0: google.ads.googleads.v16.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason
- (*AssetLinkPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v16.enums.AssetLinkPrimaryStatusReasonEnum
+var file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_goTypes = []interface{}{
+ (AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 0: google.ads.googleads.v17.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason
+ (*AssetLinkPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v17.enums.AssetLinkPrimaryStatusReasonEnum
}
-var file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -222,13 +222,13 @@ var file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_d
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_init() }
-func file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_init() {
- if File_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_init() }
+func file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_init() {
+ if File_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetLinkPrimaryStatusReasonEnum); i {
case 0:
return &v.state
@@ -245,19 +245,19 @@ func file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto = out.File
- file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_asset_link_primary_status_reason_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto = out.File
+ file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_asset_link_primary_status_reason_proto_depIdxs = nil
}
diff --git a/enums/asset_link_status.pb.go b/enums/asset_link_status.pb.go
index ffda89a9..3690c793 100644
--- a/enums/asset_link_status.pb.go
+++ b/enums/asset_link_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/asset_link_status.proto
+// source: google/ads/googleads/v17/enums/asset_link_status.proto
package enums
@@ -79,11 +79,11 @@ func (x AssetLinkStatusEnum_AssetLinkStatus) String() string {
}
func (AssetLinkStatusEnum_AssetLinkStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_asset_link_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_asset_link_status_proto_enumTypes[0].Descriptor()
}
func (AssetLinkStatusEnum_AssetLinkStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_asset_link_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_asset_link_status_proto_enumTypes[0]
}
func (x AssetLinkStatusEnum_AssetLinkStatus) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x AssetLinkStatusEnum_AssetLinkStatus) Number() protoreflect.EnumNumber {
// Deprecated: Use AssetLinkStatusEnum_AssetLinkStatus.Descriptor instead.
func (AssetLinkStatusEnum_AssetLinkStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_link_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_asset_link_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of an asset link.
@@ -105,7 +105,7 @@ type AssetLinkStatusEnum struct {
func (x *AssetLinkStatusEnum) Reset() {
*x = AssetLinkStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_asset_link_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_link_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *AssetLinkStatusEnum) String() string {
func (*AssetLinkStatusEnum) ProtoMessage() {}
func (x *AssetLinkStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_asset_link_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_link_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *AssetLinkStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetLinkStatusEnum.ProtoReflect.Descriptor instead.
func (*AssetLinkStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_link_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_asset_link_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_asset_link_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_asset_link_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_asset_link_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_asset_link_status_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74,
0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6c, 0x0a, 0x13, 0x41, 0x73, 0x73, 0x65,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6c, 0x0a, 0x13, 0x41, 0x73, 0x73, 0x65,
0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x55, 0x0a, 0x0f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45,
@@ -151,41 +151,41 @@ var file_google_ads_googleads_v16_enums_asset_link_status_proto_rawDesc = []byte
0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x12, 0x0a, 0x0a, 0x06, 0x50, 0x41,
0x55, 0x53, 0x45, 0x44, 0x10, 0x04, 0x42, 0xee, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x14, 0x41,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x14, 0x41,
0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_asset_link_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_asset_link_status_proto_rawDescData = file_google_ads_googleads_v16_enums_asset_link_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_asset_link_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_asset_link_status_proto_rawDescData = file_google_ads_googleads_v17_enums_asset_link_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_asset_link_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_asset_link_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_asset_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_asset_link_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_asset_link_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_asset_link_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_asset_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_asset_link_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_asset_link_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_asset_link_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_asset_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_link_status_proto_goTypes = []interface{}{
- (AssetLinkStatusEnum_AssetLinkStatus)(0), // 0: google.ads.googleads.v16.enums.AssetLinkStatusEnum.AssetLinkStatus
- (*AssetLinkStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AssetLinkStatusEnum
+var file_google_ads_googleads_v17_enums_asset_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_link_status_proto_goTypes = []interface{}{
+ (AssetLinkStatusEnum_AssetLinkStatus)(0), // 0: google.ads.googleads.v17.enums.AssetLinkStatusEnum.AssetLinkStatus
+ (*AssetLinkStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AssetLinkStatusEnum
}
-var file_google_ads_googleads_v16_enums_asset_link_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_asset_link_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -193,13 +193,13 @@ var file_google_ads_googleads_v16_enums_asset_link_status_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_asset_link_status_proto_init() }
-func file_google_ads_googleads_v16_enums_asset_link_status_proto_init() {
- if File_google_ads_googleads_v16_enums_asset_link_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_asset_link_status_proto_init() }
+func file_google_ads_googleads_v17_enums_asset_link_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_asset_link_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_asset_link_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_asset_link_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetLinkStatusEnum); i {
case 0:
return &v.state
@@ -216,19 +216,19 @@ func file_google_ads_googleads_v16_enums_asset_link_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_asset_link_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_asset_link_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_asset_link_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_asset_link_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_asset_link_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_asset_link_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_asset_link_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_asset_link_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_asset_link_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_asset_link_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_asset_link_status_proto = out.File
- file_google_ads_googleads_v16_enums_asset_link_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_asset_link_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_asset_link_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_asset_link_status_proto = out.File
+ file_google_ads_googleads_v17_enums_asset_link_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_asset_link_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_asset_link_status_proto_depIdxs = nil
}
diff --git a/enums/asset_offline_evaluation_error_reasons.pb.go b/enums/asset_offline_evaluation_error_reasons.pb.go
index 154939ff..2b3b11b0 100644
--- a/enums/asset_offline_evaluation_error_reasons.pb.go
+++ b/enums/asset_offline_evaluation_error_reasons.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/asset_offline_evaluation_error_reasons.proto
+// source: google/ads/googleads/v17/enums/asset_offline_evaluation_error_reasons.proto
package enums
@@ -97,11 +97,11 @@ func (x AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReason
}
func (AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_enumTypes[0].Descriptor()
}
func (AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_enumTypes[0]
}
func (x AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons) Number() protoreflect.EnumNumber {
@@ -110,7 +110,7 @@ func (x AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReason
// Deprecated: Use AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons.Descriptor instead.
func (AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_rawDescGZIP(), []int{0, 0}
}
// Provides the quality evaluation disapproval reason of an asset.
@@ -123,7 +123,7 @@ type AssetOfflineEvaluationErrorReasonsEnum struct {
func (x *AssetOfflineEvaluationErrorReasonsEnum) Reset() {
*x = AssetOfflineEvaluationErrorReasonsEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -136,7 +136,7 @@ func (x *AssetOfflineEvaluationErrorReasonsEnum) String() string {
func (*AssetOfflineEvaluationErrorReasonsEnum) ProtoMessage() {}
func (x *AssetOfflineEvaluationErrorReasonsEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -149,19 +149,19 @@ func (x *AssetOfflineEvaluationErrorReasonsEnum) ProtoReflect() protoreflect.Mes
// Deprecated: Use AssetOfflineEvaluationErrorReasonsEnum.ProtoReflect.Descriptor instead.
func (*AssetOfflineEvaluationErrorReasonsEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_rawDesc = []byte{
0x0a, 0x4b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x65,
0x76, 0x61, 0x6c, 0x75, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f,
0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa5, 0x03,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa5, 0x03,
0x0a, 0x26, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x45, 0x76,
0x61, 0x6c, 0x75, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x65, 0x61,
0x73, 0x6f, 0x6e, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xfa, 0x02, 0x0a, 0x22, 0x41, 0x73, 0x73,
@@ -190,43 +190,43 @@ var file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_p
0x45, 0x5f, 0x41, 0x53, 0x53, 0x45, 0x54, 0x5f, 0x4f, 0x54, 0x48, 0x45, 0x52, 0x5f, 0x45, 0x52,
0x52, 0x4f, 0x52, 0x10, 0x08, 0x42, 0x81, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x27, 0x41, 0x73,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x27, 0x41, 0x73,
0x73, 0x65, 0x74, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x45, 0x76, 0x61, 0x6c, 0x75, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_rawDescData = file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_rawDesc
+ file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_rawDescData = file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_goTypes = []interface{}{
- (AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons)(0), // 0: google.ads.googleads.v16.enums.AssetOfflineEvaluationErrorReasonsEnum.AssetOfflineEvaluationErrorReasons
- (*AssetOfflineEvaluationErrorReasonsEnum)(nil), // 1: google.ads.googleads.v16.enums.AssetOfflineEvaluationErrorReasonsEnum
+var file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_goTypes = []interface{}{
+ (AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons)(0), // 0: google.ads.googleads.v17.enums.AssetOfflineEvaluationErrorReasonsEnum.AssetOfflineEvaluationErrorReasons
+ (*AssetOfflineEvaluationErrorReasonsEnum)(nil), // 1: google.ads.googleads.v17.enums.AssetOfflineEvaluationErrorReasonsEnum
}
-var file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -234,13 +234,13 @@ var file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_p
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_init() }
-func file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_init() {
- if File_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_init() }
+func file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_init() {
+ if File_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetOfflineEvaluationErrorReasonsEnum); i {
case 0:
return &v.state
@@ -257,19 +257,19 @@ func file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto = out.File
- file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_asset_offline_evaluation_error_reasons_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto = out.File
+ file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_asset_offline_evaluation_error_reasons_proto_depIdxs = nil
}
diff --git a/enums/asset_performance_label.pb.go b/enums/asset_performance_label.pb.go
index 8ca96cc6..8ca197ce 100644
--- a/enums/asset_performance_label.pb.go
+++ b/enums/asset_performance_label.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/asset_performance_label.proto
+// source: google/ads/googleads/v17/enums/asset_performance_label.proto
package enums
@@ -90,11 +90,11 @@ func (x AssetPerformanceLabelEnum_AssetPerformanceLabel) String() string {
}
func (AssetPerformanceLabelEnum_AssetPerformanceLabel) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_asset_performance_label_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_asset_performance_label_proto_enumTypes[0].Descriptor()
}
func (AssetPerformanceLabelEnum_AssetPerformanceLabel) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_asset_performance_label_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_asset_performance_label_proto_enumTypes[0]
}
func (x AssetPerformanceLabelEnum_AssetPerformanceLabel) Number() protoreflect.EnumNumber {
@@ -103,7 +103,7 @@ func (x AssetPerformanceLabelEnum_AssetPerformanceLabel) Number() protoreflect.E
// Deprecated: Use AssetPerformanceLabelEnum_AssetPerformanceLabel.Descriptor instead.
func (AssetPerformanceLabelEnum_AssetPerformanceLabel) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_performance_label_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_asset_performance_label_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the performance label of an asset.
@@ -116,7 +116,7 @@ type AssetPerformanceLabelEnum struct {
func (x *AssetPerformanceLabelEnum) Reset() {
*x = AssetPerformanceLabelEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_asset_performance_label_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_performance_label_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -129,7 +129,7 @@ func (x *AssetPerformanceLabelEnum) String() string {
func (*AssetPerformanceLabelEnum) ProtoMessage() {}
func (x *AssetPerformanceLabelEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_asset_performance_label_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_performance_label_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -142,18 +142,18 @@ func (x *AssetPerformanceLabelEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetPerformanceLabelEnum.ProtoReflect.Descriptor instead.
func (*AssetPerformanceLabelEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_performance_label_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_asset_performance_label_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_asset_performance_label_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_asset_performance_label_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_asset_performance_label_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_asset_performance_label_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e,
0x63, 0x65, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8a,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8a,
0x01, 0x0a, 0x19, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61,
0x6e, 0x63, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x6d, 0x0a, 0x15,
0x41, 0x73, 0x73, 0x65, 0x74, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65,
@@ -164,42 +164,42 @@ var file_google_ads_googleads_v16_enums_asset_performance_label_proto_rawDesc =
0x0a, 0x03, 0x4c, 0x4f, 0x57, 0x10, 0x04, 0x12, 0x08, 0x0a, 0x04, 0x47, 0x4f, 0x4f, 0x44, 0x10,
0x05, 0x12, 0x08, 0x0a, 0x04, 0x42, 0x45, 0x53, 0x54, 0x10, 0x06, 0x42, 0xf4, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x1a, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d,
0x61, 0x6e, 0x63, 0x65, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_asset_performance_label_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_asset_performance_label_proto_rawDescData = file_google_ads_googleads_v16_enums_asset_performance_label_proto_rawDesc
+ file_google_ads_googleads_v17_enums_asset_performance_label_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_asset_performance_label_proto_rawDescData = file_google_ads_googleads_v17_enums_asset_performance_label_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_asset_performance_label_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_asset_performance_label_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_asset_performance_label_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_asset_performance_label_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_asset_performance_label_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_asset_performance_label_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_asset_performance_label_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_asset_performance_label_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_asset_performance_label_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_asset_performance_label_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_asset_performance_label_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_performance_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_performance_label_proto_goTypes = []interface{}{
- (AssetPerformanceLabelEnum_AssetPerformanceLabel)(0), // 0: google.ads.googleads.v16.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel
- (*AssetPerformanceLabelEnum)(nil), // 1: google.ads.googleads.v16.enums.AssetPerformanceLabelEnum
+var file_google_ads_googleads_v17_enums_asset_performance_label_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_performance_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_performance_label_proto_goTypes = []interface{}{
+ (AssetPerformanceLabelEnum_AssetPerformanceLabel)(0), // 0: google.ads.googleads.v17.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel
+ (*AssetPerformanceLabelEnum)(nil), // 1: google.ads.googleads.v17.enums.AssetPerformanceLabelEnum
}
-var file_google_ads_googleads_v16_enums_asset_performance_label_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_asset_performance_label_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -207,13 +207,13 @@ var file_google_ads_googleads_v16_enums_asset_performance_label_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_asset_performance_label_proto_init() }
-func file_google_ads_googleads_v16_enums_asset_performance_label_proto_init() {
- if File_google_ads_googleads_v16_enums_asset_performance_label_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_asset_performance_label_proto_init() }
+func file_google_ads_googleads_v17_enums_asset_performance_label_proto_init() {
+ if File_google_ads_googleads_v17_enums_asset_performance_label_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_asset_performance_label_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_asset_performance_label_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetPerformanceLabelEnum); i {
case 0:
return &v.state
@@ -230,19 +230,19 @@ func file_google_ads_googleads_v16_enums_asset_performance_label_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_asset_performance_label_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_asset_performance_label_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_asset_performance_label_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_asset_performance_label_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_asset_performance_label_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_asset_performance_label_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_asset_performance_label_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_asset_performance_label_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_asset_performance_label_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_asset_performance_label_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_asset_performance_label_proto = out.File
- file_google_ads_googleads_v16_enums_asset_performance_label_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_asset_performance_label_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_asset_performance_label_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_asset_performance_label_proto = out.File
+ file_google_ads_googleads_v17_enums_asset_performance_label_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_asset_performance_label_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_asset_performance_label_proto_depIdxs = nil
}
diff --git a/enums/asset_set_asset_status.pb.go b/enums/asset_set_asset_status.pb.go
index e29de9cd..09db5ddf 100644
--- a/enums/asset_set_asset_status.pb.go
+++ b/enums/asset_set_asset_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/asset_set_asset_status.proto
+// source: google/ads/googleads/v17/enums/asset_set_asset_status.proto
package enums
@@ -76,11 +76,11 @@ func (x AssetSetAssetStatusEnum_AssetSetAssetStatus) String() string {
}
func (AssetSetAssetStatusEnum_AssetSetAssetStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_enumTypes[0].Descriptor()
}
func (AssetSetAssetStatusEnum_AssetSetAssetStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_enumTypes[0]
}
func (x AssetSetAssetStatusEnum_AssetSetAssetStatus) Number() protoreflect.EnumNumber {
@@ -89,7 +89,7 @@ func (x AssetSetAssetStatusEnum_AssetSetAssetStatus) Number() protoreflect.EnumN
// Deprecated: Use AssetSetAssetStatusEnum_AssetSetAssetStatus.Descriptor instead.
func (AssetSetAssetStatusEnum_AssetSetAssetStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of an asset set asset.
@@ -102,7 +102,7 @@ type AssetSetAssetStatusEnum struct {
func (x *AssetSetAssetStatusEnum) Reset() {
*x = AssetSetAssetStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -115,7 +115,7 @@ func (x *AssetSetAssetStatusEnum) String() string {
func (*AssetSetAssetStatusEnum) ProtoMessage() {}
func (x *AssetSetAssetStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -128,18 +128,18 @@ func (x *AssetSetAssetStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetSetAssetStatusEnum.ProtoReflect.Descriptor instead.
func (*AssetSetAssetStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_asset_set_asset_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_asset_set_asset_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74,
0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x68, 0x0a,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x68, 0x0a,
0x17, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x74,
0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4d, 0x0a, 0x13, 0x41, 0x73, 0x73, 0x65,
0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_rawDesc = [
0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45,
0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42, 0xf2, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18,
0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_rawDescData = file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_rawDescData = file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_goTypes = []interface{}{
- (AssetSetAssetStatusEnum_AssetSetAssetStatus)(0), // 0: google.ads.googleads.v16.enums.AssetSetAssetStatusEnum.AssetSetAssetStatus
- (*AssetSetAssetStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AssetSetAssetStatusEnum
+var file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_goTypes = []interface{}{
+ (AssetSetAssetStatusEnum_AssetSetAssetStatus)(0), // 0: google.ads.googleads.v17.enums.AssetSetAssetStatusEnum.AssetSetAssetStatus
+ (*AssetSetAssetStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AssetSetAssetStatusEnum
}
-var file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_init() }
-func file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_init() {
- if File_google_ads_googleads_v16_enums_asset_set_asset_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_init() }
+func file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_asset_set_asset_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetSetAssetStatusEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_asset_set_asset_status_proto = out.File
- file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_asset_set_asset_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_asset_set_asset_status_proto = out.File
+ file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_asset_set_asset_status_proto_depIdxs = nil
}
diff --git a/enums/asset_set_link_status.pb.go b/enums/asset_set_link_status.pb.go
index 368e23df..a0228608 100644
--- a/enums/asset_set_link_status.pb.go
+++ b/enums/asset_set_link_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/asset_set_link_status.proto
+// source: google/ads/googleads/v17/enums/asset_set_link_status.proto
package enums
@@ -76,11 +76,11 @@ func (x AssetSetLinkStatusEnum_AssetSetLinkStatus) String() string {
}
func (AssetSetLinkStatusEnum_AssetSetLinkStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_asset_set_link_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_asset_set_link_status_proto_enumTypes[0].Descriptor()
}
func (AssetSetLinkStatusEnum_AssetSetLinkStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_asset_set_link_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_asset_set_link_status_proto_enumTypes[0]
}
func (x AssetSetLinkStatusEnum_AssetSetLinkStatus) Number() protoreflect.EnumNumber {
@@ -89,7 +89,7 @@ func (x AssetSetLinkStatusEnum_AssetSetLinkStatus) Number() protoreflect.EnumNum
// Deprecated: Use AssetSetLinkStatusEnum_AssetSetLinkStatus.Descriptor instead.
func (AssetSetLinkStatusEnum_AssetSetLinkStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_set_link_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_asset_set_link_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of the linkage between asset
@@ -103,7 +103,7 @@ type AssetSetLinkStatusEnum struct {
func (x *AssetSetLinkStatusEnum) Reset() {
*x = AssetSetLinkStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_asset_set_link_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_set_link_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -116,7 +116,7 @@ func (x *AssetSetLinkStatusEnum) String() string {
func (*AssetSetLinkStatusEnum) ProtoMessage() {}
func (x *AssetSetLinkStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_asset_set_link_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_set_link_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -129,18 +129,18 @@ func (x *AssetSetLinkStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetSetLinkStatusEnum.ProtoReflect.Descriptor instead.
func (*AssetSetLinkStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_set_link_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_asset_set_link_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_asset_set_link_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_asset_set_link_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_asset_set_link_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_asset_set_link_status_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f,
0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x66, 0x0a, 0x16,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x66, 0x0a, 0x16,
0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4c, 0x0a, 0x12, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53,
0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f, 0x0a, 0x0b,
@@ -149,41 +149,41 @@ var file_google_ads_googleads_v16_enums_asset_set_link_status_proto_rawDesc = []
0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56,
0x45, 0x44, 0x10, 0x03, 0x42, 0xf1, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x41, 0x73, 0x73,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x41, 0x73, 0x73,
0x65, 0x74, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_asset_set_link_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_asset_set_link_status_proto_rawDescData = file_google_ads_googleads_v16_enums_asset_set_link_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_asset_set_link_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_asset_set_link_status_proto_rawDescData = file_google_ads_googleads_v17_enums_asset_set_link_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_asset_set_link_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_asset_set_link_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_asset_set_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_asset_set_link_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_asset_set_link_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_asset_set_link_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_asset_set_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_asset_set_link_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_asset_set_link_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_asset_set_link_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_asset_set_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_set_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_set_link_status_proto_goTypes = []interface{}{
- (AssetSetLinkStatusEnum_AssetSetLinkStatus)(0), // 0: google.ads.googleads.v16.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus
- (*AssetSetLinkStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AssetSetLinkStatusEnum
+var file_google_ads_googleads_v17_enums_asset_set_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_set_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_set_link_status_proto_goTypes = []interface{}{
+ (AssetSetLinkStatusEnum_AssetSetLinkStatus)(0), // 0: google.ads.googleads.v17.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus
+ (*AssetSetLinkStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AssetSetLinkStatusEnum
}
-var file_google_ads_googleads_v16_enums_asset_set_link_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_asset_set_link_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_asset_set_link_status_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_asset_set_link_status_proto_init() }
-func file_google_ads_googleads_v16_enums_asset_set_link_status_proto_init() {
- if File_google_ads_googleads_v16_enums_asset_set_link_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_asset_set_link_status_proto_init() }
+func file_google_ads_googleads_v17_enums_asset_set_link_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_asset_set_link_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_asset_set_link_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_asset_set_link_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetSetLinkStatusEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_asset_set_link_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_asset_set_link_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_asset_set_link_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_asset_set_link_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_asset_set_link_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_asset_set_link_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_asset_set_link_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_asset_set_link_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_asset_set_link_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_asset_set_link_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_asset_set_link_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_asset_set_link_status_proto = out.File
- file_google_ads_googleads_v16_enums_asset_set_link_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_asset_set_link_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_asset_set_link_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_asset_set_link_status_proto = out.File
+ file_google_ads_googleads_v17_enums_asset_set_link_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_asset_set_link_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_asset_set_link_status_proto_depIdxs = nil
}
diff --git a/enums/asset_set_status.pb.go b/enums/asset_set_status.pb.go
index 0ac3c44f..7b6780e9 100644
--- a/enums/asset_set_status.pb.go
+++ b/enums/asset_set_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/asset_set_status.proto
+// source: google/ads/googleads/v17/enums/asset_set_status.proto
package enums
@@ -76,11 +76,11 @@ func (x AssetSetStatusEnum_AssetSetStatus) String() string {
}
func (AssetSetStatusEnum_AssetSetStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_asset_set_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_asset_set_status_proto_enumTypes[0].Descriptor()
}
func (AssetSetStatusEnum_AssetSetStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_asset_set_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_asset_set_status_proto_enumTypes[0]
}
func (x AssetSetStatusEnum_AssetSetStatus) Number() protoreflect.EnumNumber {
@@ -89,7 +89,7 @@ func (x AssetSetStatusEnum_AssetSetStatus) Number() protoreflect.EnumNumber {
// Deprecated: Use AssetSetStatusEnum_AssetSetStatus.Descriptor instead.
func (AssetSetStatusEnum_AssetSetStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_set_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_asset_set_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of an asset set.
@@ -102,7 +102,7 @@ type AssetSetStatusEnum struct {
func (x *AssetSetStatusEnum) Reset() {
*x = AssetSetStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_asset_set_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_set_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -115,7 +115,7 @@ func (x *AssetSetStatusEnum) String() string {
func (*AssetSetStatusEnum) ProtoMessage() {}
func (x *AssetSetStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_asset_set_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_set_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -128,18 +128,18 @@ func (x *AssetSetStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetSetStatusEnum.ProtoReflect.Descriptor instead.
func (*AssetSetStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_set_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_asset_set_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_asset_set_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_asset_set_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_asset_set_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_asset_set_status_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75,
0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x5e, 0x0a, 0x12, 0x41, 0x73, 0x73, 0x65, 0x74,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x5e, 0x0a, 0x12, 0x41, 0x73, 0x73, 0x65, 0x74,
0x53, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x48, 0x0a,
0x0e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00,
@@ -147,41 +147,41 @@ var file_google_ads_googleads_v16_enums_asset_set_status_proto_rawDesc = []byte{
0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45,
0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42, 0xed, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13,
0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_asset_set_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_asset_set_status_proto_rawDescData = file_google_ads_googleads_v16_enums_asset_set_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_asset_set_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_asset_set_status_proto_rawDescData = file_google_ads_googleads_v17_enums_asset_set_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_asset_set_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_asset_set_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_asset_set_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_asset_set_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_asset_set_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_asset_set_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_asset_set_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_asset_set_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_asset_set_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_asset_set_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_asset_set_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_set_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_set_status_proto_goTypes = []interface{}{
- (AssetSetStatusEnum_AssetSetStatus)(0), // 0: google.ads.googleads.v16.enums.AssetSetStatusEnum.AssetSetStatus
- (*AssetSetStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AssetSetStatusEnum
+var file_google_ads_googleads_v17_enums_asset_set_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_set_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_set_status_proto_goTypes = []interface{}{
+ (AssetSetStatusEnum_AssetSetStatus)(0), // 0: google.ads.googleads.v17.enums.AssetSetStatusEnum.AssetSetStatus
+ (*AssetSetStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AssetSetStatusEnum
}
-var file_google_ads_googleads_v16_enums_asset_set_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_asset_set_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -189,13 +189,13 @@ var file_google_ads_googleads_v16_enums_asset_set_status_proto_depIdxs = []int32
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_asset_set_status_proto_init() }
-func file_google_ads_googleads_v16_enums_asset_set_status_proto_init() {
- if File_google_ads_googleads_v16_enums_asset_set_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_asset_set_status_proto_init() }
+func file_google_ads_googleads_v17_enums_asset_set_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_asset_set_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_asset_set_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_asset_set_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetSetStatusEnum); i {
case 0:
return &v.state
@@ -212,19 +212,19 @@ func file_google_ads_googleads_v16_enums_asset_set_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_asset_set_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_asset_set_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_asset_set_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_asset_set_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_asset_set_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_asset_set_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_asset_set_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_asset_set_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_asset_set_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_asset_set_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_asset_set_status_proto = out.File
- file_google_ads_googleads_v16_enums_asset_set_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_asset_set_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_asset_set_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_asset_set_status_proto = out.File
+ file_google_ads_googleads_v17_enums_asset_set_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_asset_set_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_asset_set_status_proto_depIdxs = nil
}
diff --git a/enums/asset_set_type.pb.go b/enums/asset_set_type.pb.go
index a4373d86..b16ffd28 100644
--- a/enums/asset_set_type.pb.go
+++ b/enums/asset_set_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/asset_set_type.proto
+// source: google/ads/googleads/v17/enums/asset_set_type.proto
package enums
@@ -130,11 +130,11 @@ func (x AssetSetTypeEnum_AssetSetType) String() string {
}
func (AssetSetTypeEnum_AssetSetType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_asset_set_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_asset_set_type_proto_enumTypes[0].Descriptor()
}
func (AssetSetTypeEnum_AssetSetType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_asset_set_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_asset_set_type_proto_enumTypes[0]
}
func (x AssetSetTypeEnum_AssetSetType) Number() protoreflect.EnumNumber {
@@ -143,7 +143,7 @@ func (x AssetSetTypeEnum_AssetSetType) Number() protoreflect.EnumNumber {
// Deprecated: Use AssetSetTypeEnum_AssetSetType.Descriptor instead.
func (AssetSetTypeEnum_AssetSetType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_set_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_asset_set_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible types of an asset set.
@@ -156,7 +156,7 @@ type AssetSetTypeEnum struct {
func (x *AssetSetTypeEnum) Reset() {
*x = AssetSetTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_asset_set_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_set_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -169,7 +169,7 @@ func (x *AssetSetTypeEnum) String() string {
func (*AssetSetTypeEnum) ProtoMessage() {}
func (x *AssetSetTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_asset_set_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_set_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -182,17 +182,17 @@ func (x *AssetSetTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetSetTypeEnum.ProtoReflect.Descriptor instead.
func (*AssetSetTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_set_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_asset_set_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_asset_set_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_asset_set_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_asset_set_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_asset_set_type_proto_rawDesc = []byte{
0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xad, 0x03, 0x0a, 0x10, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53,
0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x98, 0x03, 0x0a, 0x0c, 0x41,
0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55,
@@ -222,41 +222,41 @@ var file_google_ads_googleads_v16_enums_asset_set_type_proto_rawDesc = []byte{
0x0f, 0x12, 0x12, 0x0a, 0x0e, 0x48, 0x4f, 0x54, 0x45, 0x4c, 0x5f, 0x50, 0x52, 0x4f, 0x50, 0x45,
0x52, 0x54, 0x59, 0x10, 0x10, 0x42, 0xeb, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x11, 0x41, 0x73,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x11, 0x41, 0x73,
0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_asset_set_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_asset_set_type_proto_rawDescData = file_google_ads_googleads_v16_enums_asset_set_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_asset_set_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_asset_set_type_proto_rawDescData = file_google_ads_googleads_v17_enums_asset_set_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_asset_set_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_asset_set_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_asset_set_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_asset_set_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_asset_set_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_asset_set_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_asset_set_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_asset_set_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_asset_set_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_asset_set_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_asset_set_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_set_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_set_type_proto_goTypes = []interface{}{
- (AssetSetTypeEnum_AssetSetType)(0), // 0: google.ads.googleads.v16.enums.AssetSetTypeEnum.AssetSetType
- (*AssetSetTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.AssetSetTypeEnum
+var file_google_ads_googleads_v17_enums_asset_set_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_set_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_set_type_proto_goTypes = []interface{}{
+ (AssetSetTypeEnum_AssetSetType)(0), // 0: google.ads.googleads.v17.enums.AssetSetTypeEnum.AssetSetType
+ (*AssetSetTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.AssetSetTypeEnum
}
-var file_google_ads_googleads_v16_enums_asset_set_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_asset_set_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -264,13 +264,13 @@ var file_google_ads_googleads_v16_enums_asset_set_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_asset_set_type_proto_init() }
-func file_google_ads_googleads_v16_enums_asset_set_type_proto_init() {
- if File_google_ads_googleads_v16_enums_asset_set_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_asset_set_type_proto_init() }
+func file_google_ads_googleads_v17_enums_asset_set_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_asset_set_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_asset_set_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_asset_set_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetSetTypeEnum); i {
case 0:
return &v.state
@@ -287,19 +287,19 @@ func file_google_ads_googleads_v16_enums_asset_set_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_asset_set_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_asset_set_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_asset_set_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_asset_set_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_asset_set_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_asset_set_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_asset_set_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_asset_set_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_asset_set_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_asset_set_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_asset_set_type_proto = out.File
- file_google_ads_googleads_v16_enums_asset_set_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_asset_set_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_asset_set_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_asset_set_type_proto = out.File
+ file_google_ads_googleads_v17_enums_asset_set_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_asset_set_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_asset_set_type_proto_depIdxs = nil
}
diff --git a/enums/asset_source.pb.go b/enums/asset_source.pb.go
index 88e4d5c4..4bfa4145 100644
--- a/enums/asset_source.pb.go
+++ b/enums/asset_source.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/asset_source.proto
+// source: google/ads/googleads/v17/enums/asset_source.proto
package enums
@@ -75,11 +75,11 @@ func (x AssetSourceEnum_AssetSource) String() string {
}
func (AssetSourceEnum_AssetSource) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_asset_source_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_asset_source_proto_enumTypes[0].Descriptor()
}
func (AssetSourceEnum_AssetSource) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_asset_source_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_asset_source_proto_enumTypes[0]
}
func (x AssetSourceEnum_AssetSource) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x AssetSourceEnum_AssetSource) Number() protoreflect.EnumNumber {
// Deprecated: Use AssetSourceEnum_AssetSource.Descriptor instead.
func (AssetSourceEnum_AssetSource) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_source_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_asset_source_proto_rawDescGZIP(), []int{0, 0}
}
// Source of the asset or asset link for who generated the entity.
@@ -102,7 +102,7 @@ type AssetSourceEnum struct {
func (x *AssetSourceEnum) Reset() {
*x = AssetSourceEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_asset_source_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_source_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -115,7 +115,7 @@ func (x *AssetSourceEnum) String() string {
func (*AssetSourceEnum) ProtoMessage() {}
func (x *AssetSourceEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_asset_source_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_source_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -128,17 +128,17 @@ func (x *AssetSourceEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetSourceEnum.ProtoReflect.Descriptor instead.
func (*AssetSourceEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_source_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_asset_source_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_asset_source_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_asset_source_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_asset_source_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_asset_source_proto_rawDesc = []byte{
0x0a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x22, 0x69, 0x0a, 0x0f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72,
0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x56, 0x0a, 0x0b, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53,
0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49,
@@ -147,42 +147,42 @@ var file_google_ads_googleads_v16_enums_asset_source_proto_rawDesc = []byte{
0x52, 0x10, 0x02, 0x12, 0x19, 0x0a, 0x15, 0x41, 0x55, 0x54, 0x4f, 0x4d, 0x41, 0x54, 0x49, 0x43,
0x41, 0x4c, 0x4c, 0x59, 0x5f, 0x43, 0x52, 0x45, 0x41, 0x54, 0x45, 0x44, 0x10, 0x03, 0x42, 0xea,
0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x10, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x6f, 0x75, 0x72,
0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_asset_source_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_asset_source_proto_rawDescData = file_google_ads_googleads_v16_enums_asset_source_proto_rawDesc
+ file_google_ads_googleads_v17_enums_asset_source_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_asset_source_proto_rawDescData = file_google_ads_googleads_v17_enums_asset_source_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_asset_source_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_asset_source_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_asset_source_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_asset_source_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_asset_source_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_asset_source_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_asset_source_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_asset_source_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_asset_source_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_asset_source_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_asset_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_source_proto_goTypes = []interface{}{
- (AssetSourceEnum_AssetSource)(0), // 0: google.ads.googleads.v16.enums.AssetSourceEnum.AssetSource
- (*AssetSourceEnum)(nil), // 1: google.ads.googleads.v16.enums.AssetSourceEnum
+var file_google_ads_googleads_v17_enums_asset_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_source_proto_goTypes = []interface{}{
+ (AssetSourceEnum_AssetSource)(0), // 0: google.ads.googleads.v17.enums.AssetSourceEnum.AssetSource
+ (*AssetSourceEnum)(nil), // 1: google.ads.googleads.v17.enums.AssetSourceEnum
}
-var file_google_ads_googleads_v16_enums_asset_source_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_asset_source_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_enums_asset_source_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_asset_source_proto_init() }
-func file_google_ads_googleads_v16_enums_asset_source_proto_init() {
- if File_google_ads_googleads_v16_enums_asset_source_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_asset_source_proto_init() }
+func file_google_ads_googleads_v17_enums_asset_source_proto_init() {
+ if File_google_ads_googleads_v17_enums_asset_source_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_asset_source_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_asset_source_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetSourceEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_enums_asset_source_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_asset_source_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_asset_source_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_asset_source_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_asset_source_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_asset_source_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_asset_source_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_asset_source_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_asset_source_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_asset_source_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_asset_source_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_asset_source_proto = out.File
- file_google_ads_googleads_v16_enums_asset_source_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_asset_source_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_asset_source_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_asset_source_proto = out.File
+ file_google_ads_googleads_v17_enums_asset_source_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_asset_source_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_asset_source_proto_depIdxs = nil
}
diff --git a/enums/asset_type.pb.go b/enums/asset_type.pb.go
index 53b21654..2483ee07 100644
--- a/enums/asset_type.pb.go
+++ b/enums/asset_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/asset_type.proto
+// source: google/ads/googleads/v17/enums/asset_type.proto
package enums
@@ -175,11 +175,11 @@ func (x AssetTypeEnum_AssetType) String() string {
}
func (AssetTypeEnum_AssetType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_asset_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_asset_type_proto_enumTypes[0].Descriptor()
}
func (AssetTypeEnum_AssetType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_asset_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_asset_type_proto_enumTypes[0]
}
func (x AssetTypeEnum_AssetType) Number() protoreflect.EnumNumber {
@@ -188,7 +188,7 @@ func (x AssetTypeEnum_AssetType) Number() protoreflect.EnumNumber {
// Deprecated: Use AssetTypeEnum_AssetType.Descriptor instead.
func (AssetTypeEnum_AssetType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_asset_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the types of asset.
@@ -201,7 +201,7 @@ type AssetTypeEnum struct {
func (x *AssetTypeEnum) Reset() {
*x = AssetTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_asset_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -214,7 +214,7 @@ func (x *AssetTypeEnum) String() string {
func (*AssetTypeEnum) ProtoMessage() {}
func (x *AssetTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_asset_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_asset_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -227,17 +227,17 @@ func (x *AssetTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetTypeEnum.ProtoReflect.Descriptor instead.
func (*AssetTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_asset_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_asset_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_asset_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_asset_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_asset_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_asset_type_proto_rawDesc = []byte{
0x0a, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x22, 0xa6, 0x04, 0x0a, 0x0d, 0x41, 0x73, 0x73, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0x94, 0x04, 0x0a, 0x09, 0x41, 0x73, 0x73, 0x65, 0x74, 0x54, 0x79, 0x70,
0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44,
@@ -274,41 +274,41 @@ var file_google_ads_googleads_v16_enums_asset_type_proto_rawDesc = []byte{
0x54, 0x49, 0x4f, 0x4e, 0x10, 0x1b, 0x12, 0x12, 0x0a, 0x0e, 0x48, 0x4f, 0x54, 0x45, 0x4c, 0x5f,
0x50, 0x52, 0x4f, 0x50, 0x45, 0x52, 0x54, 0x59, 0x10, 0x1c, 0x42, 0xe8, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x0e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_asset_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_asset_type_proto_rawDescData = file_google_ads_googleads_v16_enums_asset_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_asset_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_asset_type_proto_rawDescData = file_google_ads_googleads_v17_enums_asset_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_asset_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_asset_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_asset_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_asset_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_asset_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_asset_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_asset_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_asset_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_asset_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_asset_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_asset_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_asset_type_proto_goTypes = []interface{}{
- (AssetTypeEnum_AssetType)(0), // 0: google.ads.googleads.v16.enums.AssetTypeEnum.AssetType
- (*AssetTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.AssetTypeEnum
+var file_google_ads_googleads_v17_enums_asset_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_asset_type_proto_goTypes = []interface{}{
+ (AssetTypeEnum_AssetType)(0), // 0: google.ads.googleads.v17.enums.AssetTypeEnum.AssetType
+ (*AssetTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.AssetTypeEnum
}
-var file_google_ads_googleads_v16_enums_asset_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_asset_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -316,13 +316,13 @@ var file_google_ads_googleads_v16_enums_asset_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_asset_type_proto_init() }
-func file_google_ads_googleads_v16_enums_asset_type_proto_init() {
- if File_google_ads_googleads_v16_enums_asset_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_asset_type_proto_init() }
+func file_google_ads_googleads_v17_enums_asset_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_asset_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_asset_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_asset_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetTypeEnum); i {
case 0:
return &v.state
@@ -339,19 +339,19 @@ func file_google_ads_googleads_v16_enums_asset_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_asset_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_asset_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_asset_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_asset_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_asset_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_asset_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_asset_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_asset_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_asset_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_asset_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_asset_type_proto = out.File
- file_google_ads_googleads_v16_enums_asset_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_asset_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_asset_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_asset_type_proto = out.File
+ file_google_ads_googleads_v17_enums_asset_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_asset_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_asset_type_proto_depIdxs = nil
}
diff --git a/enums/async_action_status.pb.go b/enums/async_action_status.pb.go
index 5da56af0..d1818846 100644
--- a/enums/async_action_status.pb.go
+++ b/enums/async_action_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/async_action_status.proto
+// source: google/ads/googleads/v17/enums/async_action_status.proto
package enums
@@ -87,11 +87,11 @@ func (x AsyncActionStatusEnum_AsyncActionStatus) String() string {
}
func (AsyncActionStatusEnum_AsyncActionStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_async_action_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_async_action_status_proto_enumTypes[0].Descriptor()
}
func (AsyncActionStatusEnum_AsyncActionStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_async_action_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_async_action_status_proto_enumTypes[0]
}
func (x AsyncActionStatusEnum_AsyncActionStatus) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x AsyncActionStatusEnum_AsyncActionStatus) Number() protoreflect.EnumNumbe
// Deprecated: Use AsyncActionStatusEnum_AsyncActionStatus.Descriptor instead.
func (AsyncActionStatusEnum_AsyncActionStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_async_action_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_async_action_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the experiment async action status.
@@ -113,7 +113,7 @@ type AsyncActionStatusEnum struct {
func (x *AsyncActionStatusEnum) Reset() {
*x = AsyncActionStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_async_action_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_async_action_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +126,7 @@ func (x *AsyncActionStatusEnum) String() string {
func (*AsyncActionStatusEnum) ProtoMessage() {}
func (x *AsyncActionStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_async_action_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_async_action_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,18 +139,18 @@ func (x *AsyncActionStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AsyncActionStatusEnum.ProtoReflect.Descriptor instead.
func (*AsyncActionStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_async_action_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_async_action_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_async_action_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_async_action_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_async_action_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_async_action_status_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x73, 0x79, 0x6e, 0x63, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74,
0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa4, 0x01, 0x0a, 0x15, 0x41,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa4, 0x01, 0x0a, 0x15, 0x41,
0x73, 0x79, 0x6e, 0x63, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x8a, 0x01, 0x0a, 0x11, 0x41, 0x73, 0x79, 0x6e, 0x63, 0x41, 0x63,
0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e,
@@ -163,41 +163,41 @@ var file_google_ads_googleads_v16_enums_async_action_status_proto_rawDesc = []by
0x45, 0x44, 0x5f, 0x57, 0x49, 0x54, 0x48, 0x5f, 0x57, 0x41, 0x52, 0x4e, 0x49, 0x4e, 0x47, 0x10,
0x06, 0x42, 0xf0, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x41, 0x73, 0x79, 0x6e, 0x63, 0x41,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x41, 0x73, 0x79, 0x6e, 0x63, 0x41,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_async_action_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_async_action_status_proto_rawDescData = file_google_ads_googleads_v16_enums_async_action_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_async_action_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_async_action_status_proto_rawDescData = file_google_ads_googleads_v17_enums_async_action_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_async_action_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_async_action_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_async_action_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_async_action_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_async_action_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_async_action_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_async_action_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_async_action_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_async_action_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_async_action_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_async_action_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_async_action_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_async_action_status_proto_goTypes = []interface{}{
- (AsyncActionStatusEnum_AsyncActionStatus)(0), // 0: google.ads.googleads.v16.enums.AsyncActionStatusEnum.AsyncActionStatus
- (*AsyncActionStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AsyncActionStatusEnum
+var file_google_ads_googleads_v17_enums_async_action_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_async_action_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_async_action_status_proto_goTypes = []interface{}{
+ (AsyncActionStatusEnum_AsyncActionStatus)(0), // 0: google.ads.googleads.v17.enums.AsyncActionStatusEnum.AsyncActionStatus
+ (*AsyncActionStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AsyncActionStatusEnum
}
-var file_google_ads_googleads_v16_enums_async_action_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_async_action_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -205,13 +205,13 @@ var file_google_ads_googleads_v16_enums_async_action_status_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_async_action_status_proto_init() }
-func file_google_ads_googleads_v16_enums_async_action_status_proto_init() {
- if File_google_ads_googleads_v16_enums_async_action_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_async_action_status_proto_init() }
+func file_google_ads_googleads_v17_enums_async_action_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_async_action_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_async_action_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_async_action_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AsyncActionStatusEnum); i {
case 0:
return &v.state
@@ -228,19 +228,19 @@ func file_google_ads_googleads_v16_enums_async_action_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_async_action_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_async_action_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_async_action_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_async_action_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_async_action_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_async_action_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_async_action_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_async_action_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_async_action_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_async_action_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_async_action_status_proto = out.File
- file_google_ads_googleads_v16_enums_async_action_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_async_action_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_async_action_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_async_action_status_proto = out.File
+ file_google_ads_googleads_v17_enums_async_action_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_async_action_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_async_action_status_proto_depIdxs = nil
}
diff --git a/enums/attribution_model.pb.go b/enums/attribution_model.pb.go
index 4a4c95e6..b5ef7156 100644
--- a/enums/attribution_model.pb.go
+++ b/enums/attribution_model.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/attribution_model.proto
+// source: google/ads/googleads/v17/enums/attribution_model.proto
package enums
@@ -102,11 +102,11 @@ func (x AttributionModelEnum_AttributionModel) String() string {
}
func (AttributionModelEnum_AttributionModel) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_attribution_model_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_attribution_model_proto_enumTypes[0].Descriptor()
}
func (AttributionModelEnum_AttributionModel) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_attribution_model_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_attribution_model_proto_enumTypes[0]
}
func (x AttributionModelEnum_AttributionModel) Number() protoreflect.EnumNumber {
@@ -115,7 +115,7 @@ func (x AttributionModelEnum_AttributionModel) Number() protoreflect.EnumNumber
// Deprecated: Use AttributionModelEnum_AttributionModel.Descriptor instead.
func (AttributionModelEnum_AttributionModel) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_attribution_model_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_attribution_model_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum representing the attribution model that describes how to
@@ -130,7 +130,7 @@ type AttributionModelEnum struct {
func (x *AttributionModelEnum) Reset() {
*x = AttributionModelEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_attribution_model_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_attribution_model_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -143,7 +143,7 @@ func (x *AttributionModelEnum) String() string {
func (*AttributionModelEnum) ProtoMessage() {}
func (x *AttributionModelEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_attribution_model_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_attribution_model_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -156,18 +156,18 @@ func (x *AttributionModelEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AttributionModelEnum.ProtoReflect.Descriptor instead.
func (*AttributionModelEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_attribution_model_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_attribution_model_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_attribution_model_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_attribution_model_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_attribution_model_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_attribution_model_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x6f, 0x64,
0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc6, 0x02, 0x0a, 0x14, 0x41, 0x74, 0x74,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc6, 0x02, 0x0a, 0x14, 0x41, 0x74, 0x74,
0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0xad, 0x02, 0x0a, 0x10, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f,
0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
@@ -190,41 +190,41 @@ var file_google_ads_googleads_v16_enums_attribution_model_proto_rawDesc = []byte
0x49, 0x4f, 0x4e, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x5f, 0x44, 0x52, 0x49, 0x56, 0x45, 0x4e, 0x10,
0x6a, 0x42, 0xef, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62,
0x75, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_attribution_model_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_attribution_model_proto_rawDescData = file_google_ads_googleads_v16_enums_attribution_model_proto_rawDesc
+ file_google_ads_googleads_v17_enums_attribution_model_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_attribution_model_proto_rawDescData = file_google_ads_googleads_v17_enums_attribution_model_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_attribution_model_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_attribution_model_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_attribution_model_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_attribution_model_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_attribution_model_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_attribution_model_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_attribution_model_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_attribution_model_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_attribution_model_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_attribution_model_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_attribution_model_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_attribution_model_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_attribution_model_proto_goTypes = []interface{}{
- (AttributionModelEnum_AttributionModel)(0), // 0: google.ads.googleads.v16.enums.AttributionModelEnum.AttributionModel
- (*AttributionModelEnum)(nil), // 1: google.ads.googleads.v16.enums.AttributionModelEnum
+var file_google_ads_googleads_v17_enums_attribution_model_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_attribution_model_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_attribution_model_proto_goTypes = []interface{}{
+ (AttributionModelEnum_AttributionModel)(0), // 0: google.ads.googleads.v17.enums.AttributionModelEnum.AttributionModel
+ (*AttributionModelEnum)(nil), // 1: google.ads.googleads.v17.enums.AttributionModelEnum
}
-var file_google_ads_googleads_v16_enums_attribution_model_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_attribution_model_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -232,13 +232,13 @@ var file_google_ads_googleads_v16_enums_attribution_model_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_attribution_model_proto_init() }
-func file_google_ads_googleads_v16_enums_attribution_model_proto_init() {
- if File_google_ads_googleads_v16_enums_attribution_model_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_attribution_model_proto_init() }
+func file_google_ads_googleads_v17_enums_attribution_model_proto_init() {
+ if File_google_ads_googleads_v17_enums_attribution_model_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_attribution_model_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_attribution_model_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AttributionModelEnum); i {
case 0:
return &v.state
@@ -255,19 +255,19 @@ func file_google_ads_googleads_v16_enums_attribution_model_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_attribution_model_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_attribution_model_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_attribution_model_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_attribution_model_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_attribution_model_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_attribution_model_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_attribution_model_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_attribution_model_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_attribution_model_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_attribution_model_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_attribution_model_proto = out.File
- file_google_ads_googleads_v16_enums_attribution_model_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_attribution_model_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_attribution_model_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_attribution_model_proto = out.File
+ file_google_ads_googleads_v17_enums_attribution_model_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_attribution_model_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_attribution_model_proto_depIdxs = nil
}
diff --git a/enums/audience_insights_dimension.pb.go b/enums/audience_insights_dimension.pb.go
index eaaa879d..8b8fc31a 100644
--- a/enums/audience_insights_dimension.pb.go
+++ b/enums/audience_insights_dimension.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/audience_insights_dimension.proto
+// source: google/ads/googleads/v17/enums/audience_insights_dimension.proto
package enums
@@ -115,11 +115,11 @@ func (x AudienceInsightsDimensionEnum_AudienceInsightsDimension) String() string
}
func (AudienceInsightsDimensionEnum_AudienceInsightsDimension) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_enumTypes[0].Descriptor()
}
func (AudienceInsightsDimensionEnum_AudienceInsightsDimension) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_enumTypes[0]
}
func (x AudienceInsightsDimensionEnum_AudienceInsightsDimension) Number() protoreflect.EnumNumber {
@@ -128,7 +128,7 @@ func (x AudienceInsightsDimensionEnum_AudienceInsightsDimension) Number() protor
// Deprecated: Use AudienceInsightsDimensionEnum_AudienceInsightsDimension.Descriptor instead.
func (AudienceInsightsDimensionEnum_AudienceInsightsDimension) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing insights dimensions.
@@ -141,7 +141,7 @@ type AudienceInsightsDimensionEnum struct {
func (x *AudienceInsightsDimensionEnum) Reset() {
*x = AudienceInsightsDimensionEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -154,7 +154,7 @@ func (x *AudienceInsightsDimensionEnum) String() string {
func (*AudienceInsightsDimensionEnum) ProtoMessage() {}
func (x *AudienceInsightsDimensionEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -167,18 +167,18 @@ func (x *AudienceInsightsDimensionEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AudienceInsightsDimensionEnum.ProtoReflect.Descriptor instead.
func (*AudienceInsightsDimensionEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_audience_insights_dimension_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_audience_insights_dimension_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68,
0x74, 0x73, 0x5f, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0xdc, 0x02, 0x0a, 0x1d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49,
0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0xba, 0x02, 0x0a, 0x19, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63,
@@ -203,42 +203,42 @@ var file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_rawDes
0x4e, 0x47, 0x45, 0x10, 0x0c, 0x12, 0x0a, 0x0a, 0x06, 0x47, 0x45, 0x4e, 0x44, 0x45, 0x52, 0x10,
0x0d, 0x42, 0xf8, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e,
0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73,
0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_rawDescData = file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_rawDesc
+ file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_rawDescData = file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_goTypes = []interface{}{
- (AudienceInsightsDimensionEnum_AudienceInsightsDimension)(0), // 0: google.ads.googleads.v16.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension
- (*AudienceInsightsDimensionEnum)(nil), // 1: google.ads.googleads.v16.enums.AudienceInsightsDimensionEnum
+var file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_goTypes = []interface{}{
+ (AudienceInsightsDimensionEnum_AudienceInsightsDimension)(0), // 0: google.ads.googleads.v17.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension
+ (*AudienceInsightsDimensionEnum)(nil), // 1: google.ads.googleads.v17.enums.AudienceInsightsDimensionEnum
}
-var file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -246,13 +246,13 @@ var file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_init() }
-func file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_init() {
- if File_google_ads_googleads_v16_enums_audience_insights_dimension_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_init() }
+func file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_init() {
+ if File_google_ads_googleads_v17_enums_audience_insights_dimension_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AudienceInsightsDimensionEnum); i {
case 0:
return &v.state
@@ -269,19 +269,19 @@ func file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_audience_insights_dimension_proto = out.File
- file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_audience_insights_dimension_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_audience_insights_dimension_proto = out.File
+ file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_audience_insights_dimension_proto_depIdxs = nil
}
diff --git a/enums/audience_scope.pb.go b/enums/audience_scope.pb.go
index 2f7b9f0a..5b481e91 100644
--- a/enums/audience_scope.pb.go
+++ b/enums/audience_scope.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/audience_scope.proto
+// source: google/ads/googleads/v17/enums/audience_scope.proto
package enums
@@ -75,11 +75,11 @@ func (x AudienceScopeEnum_AudienceScope) String() string {
}
func (AudienceScopeEnum_AudienceScope) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_audience_scope_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_audience_scope_proto_enumTypes[0].Descriptor()
}
func (AudienceScopeEnum_AudienceScope) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_audience_scope_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_audience_scope_proto_enumTypes[0]
}
func (x AudienceScopeEnum_AudienceScope) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x AudienceScopeEnum_AudienceScope) Number() protoreflect.EnumNumber {
// Deprecated: Use AudienceScopeEnum_AudienceScope.Descriptor instead.
func (AudienceScopeEnum_AudienceScope) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_audience_scope_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_audience_scope_proto_rawDescGZIP(), []int{0, 0}
}
// Defines the scope an audience can be used in.
@@ -101,7 +101,7 @@ type AudienceScopeEnum struct {
func (x *AudienceScopeEnum) Reset() {
*x = AudienceScopeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_audience_scope_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_audience_scope_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *AudienceScopeEnum) String() string {
func (*AudienceScopeEnum) ProtoMessage() {}
func (x *AudienceScopeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_audience_scope_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_audience_scope_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,17 +127,17 @@ func (x *AudienceScopeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AudienceScopeEnum.ProtoReflect.Descriptor instead.
func (*AudienceScopeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_audience_scope_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_audience_scope_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_audience_scope_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_audience_scope_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_audience_scope_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_audience_scope_proto_rawDesc = []byte{
0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x61, 0x0a, 0x11, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63,
0x65, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4c, 0x0a, 0x0d, 0x41, 0x75,
0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55,
@@ -146,41 +146,41 @@ var file_google_ads_googleads_v16_enums_audience_scope_proto_rawDesc = []byte{
0x54, 0x4f, 0x4d, 0x45, 0x52, 0x10, 0x02, 0x12, 0x0f, 0x0a, 0x0b, 0x41, 0x53, 0x53, 0x45, 0x54,
0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x10, 0x03, 0x42, 0xec, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
0x12, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_audience_scope_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_audience_scope_proto_rawDescData = file_google_ads_googleads_v16_enums_audience_scope_proto_rawDesc
+ file_google_ads_googleads_v17_enums_audience_scope_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_audience_scope_proto_rawDescData = file_google_ads_googleads_v17_enums_audience_scope_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_audience_scope_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_audience_scope_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_audience_scope_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_audience_scope_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_audience_scope_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_audience_scope_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_audience_scope_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_audience_scope_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_audience_scope_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_audience_scope_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_audience_scope_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_audience_scope_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_audience_scope_proto_goTypes = []interface{}{
- (AudienceScopeEnum_AudienceScope)(0), // 0: google.ads.googleads.v16.enums.AudienceScopeEnum.AudienceScope
- (*AudienceScopeEnum)(nil), // 1: google.ads.googleads.v16.enums.AudienceScopeEnum
+var file_google_ads_googleads_v17_enums_audience_scope_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_audience_scope_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_audience_scope_proto_goTypes = []interface{}{
+ (AudienceScopeEnum_AudienceScope)(0), // 0: google.ads.googleads.v17.enums.AudienceScopeEnum.AudienceScope
+ (*AudienceScopeEnum)(nil), // 1: google.ads.googleads.v17.enums.AudienceScopeEnum
}
-var file_google_ads_googleads_v16_enums_audience_scope_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_audience_scope_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -188,13 +188,13 @@ var file_google_ads_googleads_v16_enums_audience_scope_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_audience_scope_proto_init() }
-func file_google_ads_googleads_v16_enums_audience_scope_proto_init() {
- if File_google_ads_googleads_v16_enums_audience_scope_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_audience_scope_proto_init() }
+func file_google_ads_googleads_v17_enums_audience_scope_proto_init() {
+ if File_google_ads_googleads_v17_enums_audience_scope_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_audience_scope_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_audience_scope_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AudienceScopeEnum); i {
case 0:
return &v.state
@@ -211,19 +211,19 @@ func file_google_ads_googleads_v16_enums_audience_scope_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_audience_scope_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_audience_scope_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_audience_scope_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_audience_scope_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_audience_scope_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_audience_scope_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_audience_scope_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_audience_scope_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_audience_scope_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_audience_scope_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_audience_scope_proto = out.File
- file_google_ads_googleads_v16_enums_audience_scope_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_audience_scope_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_audience_scope_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_audience_scope_proto = out.File
+ file_google_ads_googleads_v17_enums_audience_scope_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_audience_scope_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_audience_scope_proto_depIdxs = nil
}
diff --git a/enums/audience_status.pb.go b/enums/audience_status.pb.go
index 3272d8a8..1ceeb352 100644
--- a/enums/audience_status.pb.go
+++ b/enums/audience_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/audience_status.proto
+// source: google/ads/googleads/v17/enums/audience_status.proto
package enums
@@ -76,11 +76,11 @@ func (x AudienceStatusEnum_AudienceStatus) String() string {
}
func (AudienceStatusEnum_AudienceStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_audience_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_audience_status_proto_enumTypes[0].Descriptor()
}
func (AudienceStatusEnum_AudienceStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_audience_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_audience_status_proto_enumTypes[0]
}
func (x AudienceStatusEnum_AudienceStatus) Number() protoreflect.EnumNumber {
@@ -89,7 +89,7 @@ func (x AudienceStatusEnum_AudienceStatus) Number() protoreflect.EnumNumber {
// Deprecated: Use AudienceStatusEnum_AudienceStatus.Descriptor instead.
func (AudienceStatusEnum_AudienceStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_audience_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_audience_status_proto_rawDescGZIP(), []int{0, 0}
}
// The status of audience.
@@ -102,7 +102,7 @@ type AudienceStatusEnum struct {
func (x *AudienceStatusEnum) Reset() {
*x = AudienceStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_audience_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_audience_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -115,7 +115,7 @@ func (x *AudienceStatusEnum) String() string {
func (*AudienceStatusEnum) ProtoMessage() {}
func (x *AudienceStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_audience_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_audience_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -128,17 +128,17 @@ func (x *AudienceStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AudienceStatusEnum.ProtoReflect.Descriptor instead.
func (*AudienceStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_audience_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_audience_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_audience_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_audience_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_audience_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_audience_status_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x5e, 0x0a, 0x12, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e,
0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x48, 0x0a, 0x0e,
0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f,
@@ -147,41 +147,41 @@ var file_google_ads_googleads_v16_enums_audience_status_proto_rawDesc = []byte{
0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d,
0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42, 0xed, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x41,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x41,
0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_audience_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_audience_status_proto_rawDescData = file_google_ads_googleads_v16_enums_audience_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_audience_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_audience_status_proto_rawDescData = file_google_ads_googleads_v17_enums_audience_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_audience_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_audience_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_audience_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_audience_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_audience_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_audience_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_audience_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_audience_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_audience_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_audience_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_audience_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_audience_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_audience_status_proto_goTypes = []interface{}{
- (AudienceStatusEnum_AudienceStatus)(0), // 0: google.ads.googleads.v16.enums.AudienceStatusEnum.AudienceStatus
- (*AudienceStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.AudienceStatusEnum
+var file_google_ads_googleads_v17_enums_audience_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_audience_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_audience_status_proto_goTypes = []interface{}{
+ (AudienceStatusEnum_AudienceStatus)(0), // 0: google.ads.googleads.v17.enums.AudienceStatusEnum.AudienceStatus
+ (*AudienceStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.AudienceStatusEnum
}
-var file_google_ads_googleads_v16_enums_audience_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_audience_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -189,13 +189,13 @@ var file_google_ads_googleads_v16_enums_audience_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_audience_status_proto_init() }
-func file_google_ads_googleads_v16_enums_audience_status_proto_init() {
- if File_google_ads_googleads_v16_enums_audience_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_audience_status_proto_init() }
+func file_google_ads_googleads_v17_enums_audience_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_audience_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_audience_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_audience_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AudienceStatusEnum); i {
case 0:
return &v.state
@@ -212,19 +212,19 @@ func file_google_ads_googleads_v16_enums_audience_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_audience_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_audience_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_audience_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_audience_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_audience_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_audience_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_audience_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_audience_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_audience_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_audience_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_audience_status_proto = out.File
- file_google_ads_googleads_v16_enums_audience_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_audience_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_audience_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_audience_status_proto = out.File
+ file_google_ads_googleads_v17_enums_audience_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_audience_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_audience_status_proto_depIdxs = nil
}
diff --git a/enums/batch_job_status.pb.go b/enums/batch_job_status.pb.go
index 1d49ed8d..1f2dd0ad 100644
--- a/enums/batch_job_status.pb.go
+++ b/enums/batch_job_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/batch_job_status.proto
+// source: google/ads/googleads/v17/enums/batch_job_status.proto
package enums
@@ -79,11 +79,11 @@ func (x BatchJobStatusEnum_BatchJobStatus) String() string {
}
func (BatchJobStatusEnum_BatchJobStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_batch_job_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_batch_job_status_proto_enumTypes[0].Descriptor()
}
func (BatchJobStatusEnum_BatchJobStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_batch_job_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_batch_job_status_proto_enumTypes[0]
}
func (x BatchJobStatusEnum_BatchJobStatus) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x BatchJobStatusEnum_BatchJobStatus) Number() protoreflect.EnumNumber {
// Deprecated: Use BatchJobStatusEnum_BatchJobStatus.Descriptor instead.
func (BatchJobStatusEnum_BatchJobStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_batch_job_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_batch_job_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible batch job statuses.
@@ -105,7 +105,7 @@ type BatchJobStatusEnum struct {
func (x *BatchJobStatusEnum) Reset() {
*x = BatchJobStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_batch_job_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_batch_job_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *BatchJobStatusEnum) String() string {
func (*BatchJobStatusEnum) ProtoMessage() {}
func (x *BatchJobStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_batch_job_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_batch_job_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *BatchJobStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use BatchJobStatusEnum.ProtoReflect.Descriptor instead.
func (*BatchJobStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_batch_job_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_batch_job_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_batch_job_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_batch_job_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_batch_job_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_batch_job_status_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x62, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x6a, 0x6f, 0x62, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75,
0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x68, 0x0a, 0x12, 0x42, 0x61, 0x74, 0x63, 0x68,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x68, 0x0a, 0x12, 0x42, 0x61, 0x74, 0x63, 0x68,
0x4a, 0x6f, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x52, 0x0a,
0x0e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00,
@@ -151,41 +151,41 @@ var file_google_ads_googleads_v16_enums_batch_job_status_proto_rawDesc = []byte{
0x4e, 0x4e, 0x49, 0x4e, 0x47, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x44, 0x4f, 0x4e, 0x45, 0x10,
0x04, 0x42, 0xed, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a,
0x6f, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_batch_job_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_batch_job_status_proto_rawDescData = file_google_ads_googleads_v16_enums_batch_job_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_batch_job_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_batch_job_status_proto_rawDescData = file_google_ads_googleads_v17_enums_batch_job_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_batch_job_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_batch_job_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_batch_job_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_batch_job_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_batch_job_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_batch_job_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_batch_job_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_batch_job_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_batch_job_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_batch_job_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_batch_job_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_batch_job_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_batch_job_status_proto_goTypes = []interface{}{
- (BatchJobStatusEnum_BatchJobStatus)(0), // 0: google.ads.googleads.v16.enums.BatchJobStatusEnum.BatchJobStatus
- (*BatchJobStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.BatchJobStatusEnum
+var file_google_ads_googleads_v17_enums_batch_job_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_batch_job_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_batch_job_status_proto_goTypes = []interface{}{
+ (BatchJobStatusEnum_BatchJobStatus)(0), // 0: google.ads.googleads.v17.enums.BatchJobStatusEnum.BatchJobStatus
+ (*BatchJobStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.BatchJobStatusEnum
}
-var file_google_ads_googleads_v16_enums_batch_job_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_batch_job_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -193,13 +193,13 @@ var file_google_ads_googleads_v16_enums_batch_job_status_proto_depIdxs = []int32
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_batch_job_status_proto_init() }
-func file_google_ads_googleads_v16_enums_batch_job_status_proto_init() {
- if File_google_ads_googleads_v16_enums_batch_job_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_batch_job_status_proto_init() }
+func file_google_ads_googleads_v17_enums_batch_job_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_batch_job_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_batch_job_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_batch_job_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BatchJobStatusEnum); i {
case 0:
return &v.state
@@ -216,19 +216,19 @@ func file_google_ads_googleads_v16_enums_batch_job_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_batch_job_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_batch_job_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_batch_job_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_batch_job_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_batch_job_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_batch_job_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_batch_job_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_batch_job_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_batch_job_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_batch_job_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_batch_job_status_proto = out.File
- file_google_ads_googleads_v16_enums_batch_job_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_batch_job_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_batch_job_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_batch_job_status_proto = out.File
+ file_google_ads_googleads_v17_enums_batch_job_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_batch_job_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_batch_job_status_proto_depIdxs = nil
}
diff --git a/enums/bid_modifier_source.pb.go b/enums/bid_modifier_source.pb.go
index 55af5de1..e04dceb1 100644
--- a/enums/bid_modifier_source.pb.go
+++ b/enums/bid_modifier_source.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/bid_modifier_source.proto
+// source: google/ads/googleads/v17/enums/bid_modifier_source.proto
package enums
@@ -76,11 +76,11 @@ func (x BidModifierSourceEnum_BidModifierSource) String() string {
}
func (BidModifierSourceEnum_BidModifierSource) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_bid_modifier_source_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_bid_modifier_source_proto_enumTypes[0].Descriptor()
}
func (BidModifierSourceEnum_BidModifierSource) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_bid_modifier_source_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_bid_modifier_source_proto_enumTypes[0]
}
func (x BidModifierSourceEnum_BidModifierSource) Number() protoreflect.EnumNumber {
@@ -89,7 +89,7 @@ func (x BidModifierSourceEnum_BidModifierSource) Number() protoreflect.EnumNumbe
// Deprecated: Use BidModifierSourceEnum_BidModifierSource.Descriptor instead.
func (BidModifierSourceEnum_BidModifierSource) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_bid_modifier_source_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_bid_modifier_source_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible bid modifier sources.
@@ -102,7 +102,7 @@ type BidModifierSourceEnum struct {
func (x *BidModifierSourceEnum) Reset() {
*x = BidModifierSourceEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_bid_modifier_source_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_bid_modifier_source_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -115,7 +115,7 @@ func (x *BidModifierSourceEnum) String() string {
func (*BidModifierSourceEnum) ProtoMessage() {}
func (x *BidModifierSourceEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_bid_modifier_source_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_bid_modifier_source_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -128,18 +128,18 @@ func (x *BidModifierSourceEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use BidModifierSourceEnum.ProtoReflect.Descriptor instead.
func (*BidModifierSourceEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_bid_modifier_source_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_bid_modifier_source_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_bid_modifier_source_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_bid_modifier_source_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_bid_modifier_source_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_bid_modifier_source_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x73, 0x6f,
0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x66, 0x0a, 0x15, 0x42, 0x69,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x66, 0x0a, 0x15, 0x42, 0x69,
0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0x4d, 0x0a, 0x11, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69,
0x65, 0x72, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50,
@@ -148,41 +148,41 @@ var file_google_ads_googleads_v16_enums_bid_modifier_source_proto_rawDesc = []by
0x47, 0x4e, 0x10, 0x02, 0x12, 0x0c, 0x0a, 0x08, 0x41, 0x44, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50,
0x10, 0x03, 0x42, 0xf0, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x42, 0x69, 0x64, 0x4d, 0x6f,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x42, 0x69, 0x64, 0x4d, 0x6f,
0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_bid_modifier_source_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_bid_modifier_source_proto_rawDescData = file_google_ads_googleads_v16_enums_bid_modifier_source_proto_rawDesc
+ file_google_ads_googleads_v17_enums_bid_modifier_source_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_bid_modifier_source_proto_rawDescData = file_google_ads_googleads_v17_enums_bid_modifier_source_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_bid_modifier_source_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_bid_modifier_source_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_bid_modifier_source_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_bid_modifier_source_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_bid_modifier_source_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_bid_modifier_source_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_bid_modifier_source_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_bid_modifier_source_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_bid_modifier_source_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_bid_modifier_source_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_bid_modifier_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_bid_modifier_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_bid_modifier_source_proto_goTypes = []interface{}{
- (BidModifierSourceEnum_BidModifierSource)(0), // 0: google.ads.googleads.v16.enums.BidModifierSourceEnum.BidModifierSource
- (*BidModifierSourceEnum)(nil), // 1: google.ads.googleads.v16.enums.BidModifierSourceEnum
+var file_google_ads_googleads_v17_enums_bid_modifier_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_bid_modifier_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_bid_modifier_source_proto_goTypes = []interface{}{
+ (BidModifierSourceEnum_BidModifierSource)(0), // 0: google.ads.googleads.v17.enums.BidModifierSourceEnum.BidModifierSource
+ (*BidModifierSourceEnum)(nil), // 1: google.ads.googleads.v17.enums.BidModifierSourceEnum
}
-var file_google_ads_googleads_v16_enums_bid_modifier_source_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_bid_modifier_source_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_enums_bid_modifier_source_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_bid_modifier_source_proto_init() }
-func file_google_ads_googleads_v16_enums_bid_modifier_source_proto_init() {
- if File_google_ads_googleads_v16_enums_bid_modifier_source_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_bid_modifier_source_proto_init() }
+func file_google_ads_googleads_v17_enums_bid_modifier_source_proto_init() {
+ if File_google_ads_googleads_v17_enums_bid_modifier_source_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_bid_modifier_source_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_bid_modifier_source_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BidModifierSourceEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_enums_bid_modifier_source_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_bid_modifier_source_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_bid_modifier_source_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_bid_modifier_source_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_bid_modifier_source_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_bid_modifier_source_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_bid_modifier_source_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_bid_modifier_source_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_bid_modifier_source_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_bid_modifier_source_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_bid_modifier_source_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_bid_modifier_source_proto = out.File
- file_google_ads_googleads_v16_enums_bid_modifier_source_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_bid_modifier_source_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_bid_modifier_source_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_bid_modifier_source_proto = out.File
+ file_google_ads_googleads_v17_enums_bid_modifier_source_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_bid_modifier_source_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_bid_modifier_source_proto_depIdxs = nil
}
diff --git a/enums/bidding_source.pb.go b/enums/bidding_source.pb.go
index 6b2c9550..c16e5dee 100644
--- a/enums/bidding_source.pb.go
+++ b/enums/bidding_source.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/bidding_source.proto
+// source: google/ads/googleads/v17/enums/bidding_source.proto
package enums
@@ -81,11 +81,11 @@ func (x BiddingSourceEnum_BiddingSource) String() string {
}
func (BiddingSourceEnum_BiddingSource) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_bidding_source_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_bidding_source_proto_enumTypes[0].Descriptor()
}
func (BiddingSourceEnum_BiddingSource) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_bidding_source_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_bidding_source_proto_enumTypes[0]
}
func (x BiddingSourceEnum_BiddingSource) Number() protoreflect.EnumNumber {
@@ -94,7 +94,7 @@ func (x BiddingSourceEnum_BiddingSource) Number() protoreflect.EnumNumber {
// Deprecated: Use BiddingSourceEnum_BiddingSource.Descriptor instead.
func (BiddingSourceEnum_BiddingSource) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_bidding_source_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_bidding_source_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible bidding sources.
@@ -107,7 +107,7 @@ type BiddingSourceEnum struct {
func (x *BiddingSourceEnum) Reset() {
*x = BiddingSourceEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_bidding_source_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_bidding_source_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -120,7 +120,7 @@ func (x *BiddingSourceEnum) String() string {
func (*BiddingSourceEnum) ProtoMessage() {}
func (x *BiddingSourceEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_bidding_source_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_bidding_source_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -133,17 +133,17 @@ func (x *BiddingSourceEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use BiddingSourceEnum.ProtoReflect.Descriptor instead.
func (*BiddingSourceEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_bidding_source_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_bidding_source_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_bidding_source_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_bidding_source_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_bidding_source_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_bidding_source_proto_rawDesc = []byte{
0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x87, 0x01, 0x0a, 0x11, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e,
0x67, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x72, 0x0a, 0x0d, 0x42,
0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x0f, 0x0a, 0x0b,
@@ -154,42 +154,42 @@ var file_google_ads_googleads_v16_enums_bidding_source_proto_rawDesc = []byte{
0x47, 0x52, 0x4f, 0x55, 0x50, 0x10, 0x06, 0x12, 0x16, 0x0a, 0x12, 0x41, 0x44, 0x5f, 0x47, 0x52,
0x4f, 0x55, 0x50, 0x5f, 0x43, 0x52, 0x49, 0x54, 0x45, 0x52, 0x49, 0x4f, 0x4e, 0x10, 0x07, 0x42,
0xec, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53,
0x6f, 0x75, 0x72, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_bidding_source_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_bidding_source_proto_rawDescData = file_google_ads_googleads_v16_enums_bidding_source_proto_rawDesc
+ file_google_ads_googleads_v17_enums_bidding_source_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_bidding_source_proto_rawDescData = file_google_ads_googleads_v17_enums_bidding_source_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_bidding_source_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_bidding_source_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_bidding_source_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_bidding_source_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_bidding_source_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_bidding_source_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_bidding_source_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_bidding_source_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_bidding_source_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_bidding_source_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_bidding_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_bidding_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_bidding_source_proto_goTypes = []interface{}{
- (BiddingSourceEnum_BiddingSource)(0), // 0: google.ads.googleads.v16.enums.BiddingSourceEnum.BiddingSource
- (*BiddingSourceEnum)(nil), // 1: google.ads.googleads.v16.enums.BiddingSourceEnum
+var file_google_ads_googleads_v17_enums_bidding_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_bidding_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_bidding_source_proto_goTypes = []interface{}{
+ (BiddingSourceEnum_BiddingSource)(0), // 0: google.ads.googleads.v17.enums.BiddingSourceEnum.BiddingSource
+ (*BiddingSourceEnum)(nil), // 1: google.ads.googleads.v17.enums.BiddingSourceEnum
}
-var file_google_ads_googleads_v16_enums_bidding_source_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_bidding_source_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_enums_bidding_source_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_bidding_source_proto_init() }
-func file_google_ads_googleads_v16_enums_bidding_source_proto_init() {
- if File_google_ads_googleads_v16_enums_bidding_source_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_bidding_source_proto_init() }
+func file_google_ads_googleads_v17_enums_bidding_source_proto_init() {
+ if File_google_ads_googleads_v17_enums_bidding_source_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_bidding_source_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_bidding_source_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BiddingSourceEnum); i {
case 0:
return &v.state
@@ -220,19 +220,19 @@ func file_google_ads_googleads_v16_enums_bidding_source_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_bidding_source_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_bidding_source_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_bidding_source_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_bidding_source_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_bidding_source_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_bidding_source_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_bidding_source_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_bidding_source_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_bidding_source_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_bidding_source_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_bidding_source_proto = out.File
- file_google_ads_googleads_v16_enums_bidding_source_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_bidding_source_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_bidding_source_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_bidding_source_proto = out.File
+ file_google_ads_googleads_v17_enums_bidding_source_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_bidding_source_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_bidding_source_proto_depIdxs = nil
}
diff --git a/enums/bidding_strategy_status.pb.go b/enums/bidding_strategy_status.pb.go
index 134d0a9f..ce679736 100644
--- a/enums/bidding_strategy_status.pb.go
+++ b/enums/bidding_strategy_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/bidding_strategy_status.proto
+// source: google/ads/googleads/v17/enums/bidding_strategy_status.proto
package enums
@@ -77,11 +77,11 @@ func (x BiddingStrategyStatusEnum_BiddingStrategyStatus) String() string {
}
func (BiddingStrategyStatusEnum_BiddingStrategyStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_enumTypes[0].Descriptor()
}
func (BiddingStrategyStatusEnum_BiddingStrategyStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_enumTypes[0]
}
func (x BiddingStrategyStatusEnum_BiddingStrategyStatus) Number() protoreflect.EnumNumber {
@@ -90,7 +90,7 @@ func (x BiddingStrategyStatusEnum_BiddingStrategyStatus) Number() protoreflect.E
// Deprecated: Use BiddingStrategyStatusEnum_BiddingStrategyStatus.Descriptor instead.
func (BiddingStrategyStatusEnum_BiddingStrategyStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing BiddingStrategy statuses.
@@ -103,7 +103,7 @@ type BiddingStrategyStatusEnum struct {
func (x *BiddingStrategyStatusEnum) Reset() {
*x = BiddingStrategyStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -116,7 +116,7 @@ func (x *BiddingStrategyStatusEnum) String() string {
func (*BiddingStrategyStatusEnum) ProtoMessage() {}
func (x *BiddingStrategyStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -129,18 +129,18 @@ func (x *BiddingStrategyStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use BiddingStrategyStatusEnum.ProtoReflect.Descriptor instead.
func (*BiddingStrategyStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_bidding_strategy_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_bidding_strategy_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67,
0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6c,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6c,
0x0a, 0x19, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67,
0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4f, 0x0a, 0x15, 0x42,
0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x53, 0x74,
@@ -149,42 +149,42 @@ var file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_rawDesc =
0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12,
0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x04, 0x42, 0xf4, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x1a, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61,
0x74, 0x65, 0x67, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_rawDescData = file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_rawDescData = file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_goTypes = []interface{}{
- (BiddingStrategyStatusEnum_BiddingStrategyStatus)(0), // 0: google.ads.googleads.v16.enums.BiddingStrategyStatusEnum.BiddingStrategyStatus
- (*BiddingStrategyStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.BiddingStrategyStatusEnum
+var file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_goTypes = []interface{}{
+ (BiddingStrategyStatusEnum_BiddingStrategyStatus)(0), // 0: google.ads.googleads.v17.enums.BiddingStrategyStatusEnum.BiddingStrategyStatus
+ (*BiddingStrategyStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.BiddingStrategyStatusEnum
}
-var file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -192,13 +192,13 @@ var file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_init() }
-func file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_init() {
- if File_google_ads_googleads_v16_enums_bidding_strategy_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_init() }
+func file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_bidding_strategy_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BiddingStrategyStatusEnum); i {
case 0:
return &v.state
@@ -215,19 +215,19 @@ func file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_bidding_strategy_status_proto = out.File
- file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_bidding_strategy_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_bidding_strategy_status_proto = out.File
+ file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_bidding_strategy_status_proto_depIdxs = nil
}
diff --git a/enums/bidding_strategy_system_status.pb.go b/enums/bidding_strategy_system_status.pb.go
index a0c724dd..97cc96d6 100644
--- a/enums/bidding_strategy_system_status.pb.go
+++ b/enums/bidding_strategy_system_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/bidding_strategy_system_status.proto
+// source: google/ads/googleads/v17/enums/bidding_strategy_system_status.proto
package enums
@@ -189,11 +189,11 @@ func (x BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus) String() st
}
func (BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_enumTypes[0].Descriptor()
}
func (BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_enumTypes[0]
}
func (x BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus) Number() protoreflect.EnumNumber {
@@ -202,7 +202,7 @@ func (x BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus) Number() pr
// Deprecated: Use BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus.Descriptor instead.
func (BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing BiddingStrategy system statuses.
@@ -215,7 +215,7 @@ type BiddingStrategySystemStatusEnum struct {
func (x *BiddingStrategySystemStatusEnum) Reset() {
*x = BiddingStrategySystemStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -228,7 +228,7 @@ func (x *BiddingStrategySystemStatusEnum) String() string {
func (*BiddingStrategySystemStatusEnum) ProtoMessage() {}
func (x *BiddingStrategySystemStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -241,18 +241,18 @@ func (x *BiddingStrategySystemStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use BiddingStrategySystemStatusEnum.ProtoReflect.Descriptor instead.
func (*BiddingStrategySystemStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67,
0x79, 0x5f, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8d, 0x06, 0x0a, 0x1f, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e,
0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xe9, 0x05, 0x0a, 0x1b, 0x42, 0x69,
@@ -304,42 +304,42 @@ var file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_raw
0x47, 0x55, 0x52, 0x45, 0x44, 0x10, 0x19, 0x12, 0x0c, 0x0a, 0x08, 0x4d, 0x55, 0x4c, 0x54, 0x49,
0x50, 0x4c, 0x45, 0x10, 0x1a, 0x42, 0xfa, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x42, 0x69,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x42, 0x69,
0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x53, 0x79, 0x73,
0x74, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_rawDescData = file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_rawDescData = file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_goTypes = []interface{}{
- (BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus)(0), // 0: google.ads.googleads.v16.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus
- (*BiddingStrategySystemStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.BiddingStrategySystemStatusEnum
+var file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_goTypes = []interface{}{
+ (BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus)(0), // 0: google.ads.googleads.v17.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus
+ (*BiddingStrategySystemStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.BiddingStrategySystemStatusEnum
}
-var file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -347,13 +347,13 @@ var file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_init() }
-func file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_init() {
- if File_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_init() }
+func file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BiddingStrategySystemStatusEnum); i {
case 0:
return &v.state
@@ -370,19 +370,19 @@ func file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto = out.File
- file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_bidding_strategy_system_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto = out.File
+ file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_bidding_strategy_system_status_proto_depIdxs = nil
}
diff --git a/enums/bidding_strategy_type.pb.go b/enums/bidding_strategy_type.pb.go
index bab7186d..6c898447 100644
--- a/enums/bidding_strategy_type.pb.go
+++ b/enums/bidding_strategy_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/bidding_strategy_type.proto
+// source: google/ads/googleads/v17/enums/bidding_strategy_type.proto
package enums
@@ -163,11 +163,11 @@ func (x BiddingStrategyTypeEnum_BiddingStrategyType) String() string {
}
func (BiddingStrategyTypeEnum_BiddingStrategyType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_enumTypes[0].Descriptor()
}
func (BiddingStrategyTypeEnum_BiddingStrategyType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_enumTypes[0]
}
func (x BiddingStrategyTypeEnum_BiddingStrategyType) Number() protoreflect.EnumNumber {
@@ -176,7 +176,7 @@ func (x BiddingStrategyTypeEnum_BiddingStrategyType) Number() protoreflect.EnumN
// Deprecated: Use BiddingStrategyTypeEnum_BiddingStrategyType.Descriptor instead.
func (BiddingStrategyTypeEnum_BiddingStrategyType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible bidding strategy types.
@@ -189,7 +189,7 @@ type BiddingStrategyTypeEnum struct {
func (x *BiddingStrategyTypeEnum) Reset() {
*x = BiddingStrategyTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -202,7 +202,7 @@ func (x *BiddingStrategyTypeEnum) String() string {
func (*BiddingStrategyTypeEnum) ProtoMessage() {}
func (x *BiddingStrategyTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -215,18 +215,18 @@ func (x *BiddingStrategyTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use BiddingStrategyTypeEnum.ProtoReflect.Descriptor instead.
func (*BiddingStrategyTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_bidding_strategy_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_bidding_strategy_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67,
0x79, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x99, 0x03, 0x0a,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x99, 0x03, 0x0a,
0x17, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79,
0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xfd, 0x02, 0x0a, 0x13, 0x42, 0x69, 0x64,
0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x54, 0x79, 0x70, 0x65,
@@ -254,42 +254,42 @@ var file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_rawDesc = []
0x52, 0x4f, 0x41, 0x53, 0x10, 0x08, 0x12, 0x10, 0x0a, 0x0c, 0x54, 0x41, 0x52, 0x47, 0x45, 0x54,
0x5f, 0x53, 0x50, 0x45, 0x4e, 0x44, 0x10, 0x09, 0x42, 0xf2, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
0x18, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79,
0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_rawDescData = file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_rawDescData = file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_goTypes = []interface{}{
- (BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 0: google.ads.googleads.v16.enums.BiddingStrategyTypeEnum.BiddingStrategyType
- (*BiddingStrategyTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.BiddingStrategyTypeEnum
+var file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_goTypes = []interface{}{
+ (BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 0: google.ads.googleads.v17.enums.BiddingStrategyTypeEnum.BiddingStrategyType
+ (*BiddingStrategyTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.BiddingStrategyTypeEnum
}
-var file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -297,13 +297,13 @@ var file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_init() }
-func file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_init() {
- if File_google_ads_googleads_v16_enums_bidding_strategy_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_init() }
+func file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_bidding_strategy_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BiddingStrategyTypeEnum); i {
case 0:
return &v.state
@@ -320,19 +320,19 @@ func file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_bidding_strategy_type_proto = out.File
- file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_bidding_strategy_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_bidding_strategy_type_proto = out.File
+ file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_bidding_strategy_type_proto_depIdxs = nil
}
diff --git a/enums/billing_setup_status.pb.go b/enums/billing_setup_status.pb.go
index 0410b771..4dadf4bb 100644
--- a/enums/billing_setup_status.pb.go
+++ b/enums/billing_setup_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/billing_setup_status.proto
+// source: google/ads/googleads/v17/enums/billing_setup_status.proto
package enums
@@ -85,11 +85,11 @@ func (x BillingSetupStatusEnum_BillingSetupStatus) String() string {
}
func (BillingSetupStatusEnum_BillingSetupStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_billing_setup_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_billing_setup_status_proto_enumTypes[0].Descriptor()
}
func (BillingSetupStatusEnum_BillingSetupStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_billing_setup_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_billing_setup_status_proto_enumTypes[0]
}
func (x BillingSetupStatusEnum_BillingSetupStatus) Number() protoreflect.EnumNumber {
@@ -98,7 +98,7 @@ func (x BillingSetupStatusEnum_BillingSetupStatus) Number() protoreflect.EnumNum
// Deprecated: Use BillingSetupStatusEnum_BillingSetupStatus.Descriptor instead.
func (BillingSetupStatusEnum_BillingSetupStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_billing_setup_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_billing_setup_status_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing BillingSetup statuses.
@@ -111,7 +111,7 @@ type BillingSetupStatusEnum struct {
func (x *BillingSetupStatusEnum) Reset() {
*x = BillingSetupStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_billing_setup_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_billing_setup_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -124,7 +124,7 @@ func (x *BillingSetupStatusEnum) String() string {
func (*BillingSetupStatusEnum) ProtoMessage() {}
func (x *BillingSetupStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_billing_setup_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_billing_setup_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -137,18 +137,18 @@ func (x *BillingSetupStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use BillingSetupStatusEnum.ProtoReflect.Descriptor instead.
func (*BillingSetupStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_billing_setup_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_billing_setup_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_billing_setup_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_billing_setup_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_billing_setup_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_billing_setup_status_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x75, 0x70, 0x5f, 0x73,
0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x89, 0x01, 0x0a, 0x16,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x89, 0x01, 0x0a, 0x16,
0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x6f, 0x0a, 0x12, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e,
0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f, 0x0a, 0x0b,
@@ -159,42 +159,42 @@ var file_google_ads_googleads_v16_enums_billing_setup_status_proto_rawDesc = []b
0x50, 0x52, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x04, 0x12, 0x0d, 0x0a, 0x09, 0x43, 0x41, 0x4e, 0x43,
0x45, 0x4c, 0x4c, 0x45, 0x44, 0x10, 0x05, 0x42, 0xf1, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17,
0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_billing_setup_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_billing_setup_status_proto_rawDescData = file_google_ads_googleads_v16_enums_billing_setup_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_billing_setup_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_billing_setup_status_proto_rawDescData = file_google_ads_googleads_v17_enums_billing_setup_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_billing_setup_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_billing_setup_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_billing_setup_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_billing_setup_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_billing_setup_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_billing_setup_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_billing_setup_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_billing_setup_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_billing_setup_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_billing_setup_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_billing_setup_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_billing_setup_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_billing_setup_status_proto_goTypes = []interface{}{
- (BillingSetupStatusEnum_BillingSetupStatus)(0), // 0: google.ads.googleads.v16.enums.BillingSetupStatusEnum.BillingSetupStatus
- (*BillingSetupStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.BillingSetupStatusEnum
+var file_google_ads_googleads_v17_enums_billing_setup_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_billing_setup_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_billing_setup_status_proto_goTypes = []interface{}{
+ (BillingSetupStatusEnum_BillingSetupStatus)(0), // 0: google.ads.googleads.v17.enums.BillingSetupStatusEnum.BillingSetupStatus
+ (*BillingSetupStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.BillingSetupStatusEnum
}
-var file_google_ads_googleads_v16_enums_billing_setup_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_billing_setup_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -202,13 +202,13 @@ var file_google_ads_googleads_v16_enums_billing_setup_status_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_billing_setup_status_proto_init() }
-func file_google_ads_googleads_v16_enums_billing_setup_status_proto_init() {
- if File_google_ads_googleads_v16_enums_billing_setup_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_billing_setup_status_proto_init() }
+func file_google_ads_googleads_v17_enums_billing_setup_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_billing_setup_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_billing_setup_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_billing_setup_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BillingSetupStatusEnum); i {
case 0:
return &v.state
@@ -225,19 +225,19 @@ func file_google_ads_googleads_v16_enums_billing_setup_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_billing_setup_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_billing_setup_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_billing_setup_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_billing_setup_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_billing_setup_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_billing_setup_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_billing_setup_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_billing_setup_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_billing_setup_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_billing_setup_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_billing_setup_status_proto = out.File
- file_google_ads_googleads_v16_enums_billing_setup_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_billing_setup_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_billing_setup_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_billing_setup_status_proto = out.File
+ file_google_ads_googleads_v17_enums_billing_setup_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_billing_setup_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_billing_setup_status_proto_depIdxs = nil
}
diff --git a/enums/brand_request_rejection_reason.pb.go b/enums/brand_request_rejection_reason.pb.go
index 04630e5e..6d69a671 100644
--- a/enums/brand_request_rejection_reason.pb.go
+++ b/enums/brand_request_rejection_reason.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/brand_request_rejection_reason.proto
+// source: google/ads/googleads/v17/enums/brand_request_rejection_reason.proto
package enums
@@ -83,11 +83,11 @@ func (x BrandRequestRejectionReasonEnum_BrandRequestRejectionReason) String() st
}
func (BrandRequestRejectionReasonEnum_BrandRequestRejectionReason) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_enumTypes[0].Descriptor()
}
func (BrandRequestRejectionReasonEnum_BrandRequestRejectionReason) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_enumTypes[0]
}
func (x BrandRequestRejectionReasonEnum_BrandRequestRejectionReason) Number() protoreflect.EnumNumber {
@@ -96,7 +96,7 @@ func (x BrandRequestRejectionReasonEnum_BrandRequestRejectionReason) Number() pr
// Deprecated: Use BrandRequestRejectionReasonEnum_BrandRequestRejectionReason.Descriptor instead.
func (BrandRequestRejectionReasonEnum_BrandRequestRejectionReason) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing rejection reasons for the customer brand
@@ -110,7 +110,7 @@ type BrandRequestRejectionReasonEnum struct {
func (x *BrandRequestRejectionReasonEnum) Reset() {
*x = BrandRequestRejectionReasonEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -123,7 +123,7 @@ func (x *BrandRequestRejectionReasonEnum) String() string {
func (*BrandRequestRejectionReasonEnum) ProtoMessage() {}
func (x *BrandRequestRejectionReasonEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -136,18 +136,18 @@ func (x *BrandRequestRejectionReasonEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use BrandRequestRejectionReasonEnum.ProtoReflect.Descriptor instead.
func (*BrandRequestRejectionReasonEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x72,
0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xbb, 0x01, 0x0a, 0x1f, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x52,
0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52,
0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x97, 0x01, 0x0a, 0x1b, 0x42, 0x72,
@@ -162,42 +162,42 @@ var file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_raw
0x10, 0x04, 0x12, 0x0f, 0x0a, 0x0b, 0x4e, 0x4f, 0x54, 0x5f, 0x41, 0x5f, 0x42, 0x52, 0x41, 0x4e,
0x44, 0x10, 0x05, 0x42, 0xfa, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x42, 0x72, 0x61, 0x6e,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x42, 0x72, 0x61, 0x6e,
0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f,
0x6e, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_rawDescData = file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_rawDesc
+ file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_rawDescData = file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_goTypes = []interface{}{
- (BrandRequestRejectionReasonEnum_BrandRequestRejectionReason)(0), // 0: google.ads.googleads.v16.enums.BrandRequestRejectionReasonEnum.BrandRequestRejectionReason
- (*BrandRequestRejectionReasonEnum)(nil), // 1: google.ads.googleads.v16.enums.BrandRequestRejectionReasonEnum
+var file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_goTypes = []interface{}{
+ (BrandRequestRejectionReasonEnum_BrandRequestRejectionReason)(0), // 0: google.ads.googleads.v17.enums.BrandRequestRejectionReasonEnum.BrandRequestRejectionReason
+ (*BrandRequestRejectionReasonEnum)(nil), // 1: google.ads.googleads.v17.enums.BrandRequestRejectionReasonEnum
}
-var file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -205,13 +205,13 @@ var file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_init() }
-func file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_init() {
- if File_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_init() }
+func file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_init() {
+ if File_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BrandRequestRejectionReasonEnum); i {
case 0:
return &v.state
@@ -228,19 +228,19 @@ func file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto = out.File
- file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_brand_request_rejection_reason_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto = out.File
+ file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_brand_request_rejection_reason_proto_depIdxs = nil
}
diff --git a/enums/brand_safety_suitability.pb.go b/enums/brand_safety_suitability.pb.go
index e6d7f5d2..d420509d 100644
--- a/enums/brand_safety_suitability.pb.go
+++ b/enums/brand_safety_suitability.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/brand_safety_suitability.proto
+// source: google/ads/googleads/v17/enums/brand_safety_suitability.proto
package enums
@@ -99,11 +99,11 @@ func (x BrandSafetySuitabilityEnum_BrandSafetySuitability) String() string {
}
func (BrandSafetySuitabilityEnum_BrandSafetySuitability) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_enumTypes[0].Descriptor()
}
func (BrandSafetySuitabilityEnum_BrandSafetySuitability) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_enumTypes[0]
}
func (x BrandSafetySuitabilityEnum_BrandSafetySuitability) Number() protoreflect.EnumNumber {
@@ -112,7 +112,7 @@ func (x BrandSafetySuitabilityEnum_BrandSafetySuitability) Number() protoreflect
// Deprecated: Use BrandSafetySuitabilityEnum_BrandSafetySuitability.Descriptor instead.
func (BrandSafetySuitabilityEnum_BrandSafetySuitability) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum with 3-Tier brand safety suitability control.
@@ -125,7 +125,7 @@ type BrandSafetySuitabilityEnum struct {
func (x *BrandSafetySuitabilityEnum) Reset() {
*x = BrandSafetySuitabilityEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -138,7 +138,7 @@ func (x *BrandSafetySuitabilityEnum) String() string {
func (*BrandSafetySuitabilityEnum) ProtoMessage() {}
func (x *BrandSafetySuitabilityEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -151,18 +151,18 @@ func (x *BrandSafetySuitabilityEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use BrandSafetySuitabilityEnum.ProtoReflect.Descriptor instead.
func (*BrandSafetySuitabilityEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_brand_safety_suitability_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_brand_safety_suitability_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x73, 0x61, 0x66, 0x65, 0x74, 0x79, 0x5f, 0x73, 0x75,
0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
0x9b, 0x01, 0x0a, 0x1a, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x61, 0x66, 0x65, 0x74, 0x79, 0x53,
0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x7d,
0x0a, 0x16, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x61, 0x66, 0x65, 0x74, 0x79, 0x53, 0x75, 0x69,
@@ -174,42 +174,42 @@ var file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_rawDesc =
0x54, 0x4f, 0x52, 0x59, 0x10, 0x03, 0x12, 0x15, 0x0a, 0x11, 0x4c, 0x49, 0x4d, 0x49, 0x54, 0x45,
0x44, 0x5f, 0x49, 0x4e, 0x56, 0x45, 0x4e, 0x54, 0x4f, 0x52, 0x59, 0x10, 0x04, 0x42, 0xf5, 0x01,
0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x61, 0x66, 0x65, 0x74,
0x79, 0x53, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_rawDescData = file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_rawDesc
+ file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_rawDescData = file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_goTypes = []interface{}{
- (BrandSafetySuitabilityEnum_BrandSafetySuitability)(0), // 0: google.ads.googleads.v16.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability
- (*BrandSafetySuitabilityEnum)(nil), // 1: google.ads.googleads.v16.enums.BrandSafetySuitabilityEnum
+var file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_goTypes = []interface{}{
+ (BrandSafetySuitabilityEnum_BrandSafetySuitability)(0), // 0: google.ads.googleads.v17.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability
+ (*BrandSafetySuitabilityEnum)(nil), // 1: google.ads.googleads.v17.enums.BrandSafetySuitabilityEnum
}
-var file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -217,13 +217,13 @@ var file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_init() }
-func file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_init() {
- if File_google_ads_googleads_v16_enums_brand_safety_suitability_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_init() }
+func file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_init() {
+ if File_google_ads_googleads_v17_enums_brand_safety_suitability_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BrandSafetySuitabilityEnum); i {
case 0:
return &v.state
@@ -240,19 +240,19 @@ func file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_brand_safety_suitability_proto = out.File
- file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_brand_safety_suitability_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_brand_safety_suitability_proto = out.File
+ file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_brand_safety_suitability_proto_depIdxs = nil
}
diff --git a/enums/brand_state.pb.go b/enums/brand_state.pb.go
index d0f2b7b6..c2af77c0 100644
--- a/enums/brand_state.pb.go
+++ b/enums/brand_state.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/brand_state.proto
+// source: google/ads/googleads/v17/enums/brand_state.proto
package enums
@@ -97,11 +97,11 @@ func (x BrandStateEnum_BrandState) String() string {
}
func (BrandStateEnum_BrandState) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_brand_state_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_brand_state_proto_enumTypes[0].Descriptor()
}
func (BrandStateEnum_BrandState) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_brand_state_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_brand_state_proto_enumTypes[0]
}
func (x BrandStateEnum_BrandState) Number() protoreflect.EnumNumber {
@@ -110,7 +110,7 @@ func (x BrandStateEnum_BrandState) Number() protoreflect.EnumNumber {
// Deprecated: Use BrandStateEnum_BrandState.Descriptor instead.
func (BrandStateEnum_BrandState) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_brand_state_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_brand_state_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible brand states.
@@ -123,7 +123,7 @@ type BrandStateEnum struct {
func (x *BrandStateEnum) Reset() {
*x = BrandStateEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_brand_state_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_brand_state_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -136,7 +136,7 @@ func (x *BrandStateEnum) String() string {
func (*BrandStateEnum) ProtoMessage() {}
func (x *BrandStateEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_brand_state_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_brand_state_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -149,17 +149,17 @@ func (x *BrandStateEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use BrandStateEnum.ProtoReflect.Descriptor instead.
func (*BrandStateEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_brand_state_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_brand_state_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_brand_state_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_brand_state_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_brand_state_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_brand_state_proto_rawDesc = []byte{
0x0a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x95, 0x01, 0x0a, 0x0e, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x74, 0x61, 0x74,
0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x82, 0x01, 0x0a, 0x0a, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53,
0x74, 0x61, 0x74, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46,
@@ -171,41 +171,41 @@ var file_google_ads_googleads_v16_enums_brand_state_proto_rawDesc = []byte{
0x09, 0x43, 0x41, 0x4e, 0x43, 0x45, 0x4c, 0x4c, 0x45, 0x44, 0x10, 0x06, 0x12, 0x0c, 0x0a, 0x08,
0x52, 0x45, 0x4a, 0x45, 0x43, 0x54, 0x45, 0x44, 0x10, 0x07, 0x42, 0xe9, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x0f, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x74, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_brand_state_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_brand_state_proto_rawDescData = file_google_ads_googleads_v16_enums_brand_state_proto_rawDesc
+ file_google_ads_googleads_v17_enums_brand_state_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_brand_state_proto_rawDescData = file_google_ads_googleads_v17_enums_brand_state_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_brand_state_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_brand_state_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_brand_state_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_brand_state_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_brand_state_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_brand_state_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_brand_state_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_brand_state_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_brand_state_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_brand_state_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_brand_state_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_brand_state_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_brand_state_proto_goTypes = []interface{}{
- (BrandStateEnum_BrandState)(0), // 0: google.ads.googleads.v16.enums.BrandStateEnum.BrandState
- (*BrandStateEnum)(nil), // 1: google.ads.googleads.v16.enums.BrandStateEnum
+var file_google_ads_googleads_v17_enums_brand_state_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_brand_state_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_brand_state_proto_goTypes = []interface{}{
+ (BrandStateEnum_BrandState)(0), // 0: google.ads.googleads.v17.enums.BrandStateEnum.BrandState
+ (*BrandStateEnum)(nil), // 1: google.ads.googleads.v17.enums.BrandStateEnum
}
-var file_google_ads_googleads_v16_enums_brand_state_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_brand_state_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -213,13 +213,13 @@ var file_google_ads_googleads_v16_enums_brand_state_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_brand_state_proto_init() }
-func file_google_ads_googleads_v16_enums_brand_state_proto_init() {
- if File_google_ads_googleads_v16_enums_brand_state_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_brand_state_proto_init() }
+func file_google_ads_googleads_v17_enums_brand_state_proto_init() {
+ if File_google_ads_googleads_v17_enums_brand_state_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_brand_state_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_brand_state_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BrandStateEnum); i {
case 0:
return &v.state
@@ -236,19 +236,19 @@ func file_google_ads_googleads_v16_enums_brand_state_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_brand_state_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_brand_state_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_brand_state_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_brand_state_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_brand_state_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_brand_state_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_brand_state_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_brand_state_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_brand_state_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_brand_state_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_brand_state_proto = out.File
- file_google_ads_googleads_v16_enums_brand_state_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_brand_state_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_brand_state_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_brand_state_proto = out.File
+ file_google_ads_googleads_v17_enums_brand_state_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_brand_state_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_brand_state_proto_depIdxs = nil
}
diff --git a/enums/budget_campaign_association_status.pb.go b/enums/budget_campaign_association_status.pb.go
index 5825f140..e0ae9f0a 100644
--- a/enums/budget_campaign_association_status.pb.go
+++ b/enums/budget_campaign_association_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/budget_campaign_association_status.proto
+// source: google/ads/googleads/v17/enums/budget_campaign_association_status.proto
package enums
@@ -75,11 +75,11 @@ func (x BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus) Str
}
func (BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_enumTypes[0].Descriptor()
}
func (BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_enumTypes[0]
}
func (x BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus) Num
// Deprecated: Use BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus.Descriptor instead.
func (BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing the status of the association between the Budget and the
@@ -102,7 +102,7 @@ type BudgetCampaignAssociationStatusEnum struct {
func (x *BudgetCampaignAssociationStatusEnum) Reset() {
*x = BudgetCampaignAssociationStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -115,7 +115,7 @@ func (x *BudgetCampaignAssociationStatusEnum) String() string {
func (*BudgetCampaignAssociationStatusEnum) ProtoMessage() {}
func (x *BudgetCampaignAssociationStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -128,19 +128,19 @@ func (x *BudgetCampaignAssociationStatusEnum) ProtoReflect() protoreflect.Messag
// Deprecated: Use BudgetCampaignAssociationStatusEnum.ProtoReflect.Descriptor instead.
func (*BudgetCampaignAssociationStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_budget_campaign_association_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_budget_campaign_association_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_rawDesc = []byte{
0x0a, 0x47, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e,
0x5f, 0x61, 0x73, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61,
0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x80, 0x01, 0x0a, 0x23, 0x42, 0x75,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x80, 0x01, 0x0a, 0x23, 0x42, 0x75,
0x64, 0x67, 0x65, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x6f,
0x63, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x59, 0x0a, 0x1f, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61,
@@ -150,43 +150,43 @@ var file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto
0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12,
0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42, 0xfe, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x24, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61,
0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x6f, 0x63, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,
0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_rawDescData = file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_rawDescData = file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_goTypes = []interface{}{
- (BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus)(0), // 0: google.ads.googleads.v16.enums.BudgetCampaignAssociationStatusEnum.BudgetCampaignAssociationStatus
- (*BudgetCampaignAssociationStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.BudgetCampaignAssociationStatusEnum
+var file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_goTypes = []interface{}{
+ (BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus)(0), // 0: google.ads.googleads.v17.enums.BudgetCampaignAssociationStatusEnum.BudgetCampaignAssociationStatus
+ (*BudgetCampaignAssociationStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.BudgetCampaignAssociationStatusEnum
}
-var file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -194,13 +194,13 @@ var file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_init() }
-func file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_init() {
- if File_google_ads_googleads_v16_enums_budget_campaign_association_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_init() }
+func file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_budget_campaign_association_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BudgetCampaignAssociationStatusEnum); i {
case 0:
return &v.state
@@ -217,19 +217,19 @@ func file_google_ads_googleads_v16_enums_budget_campaign_association_status_prot
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_budget_campaign_association_status_proto = out.File
- file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_budget_campaign_association_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_budget_campaign_association_status_proto = out.File
+ file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_budget_campaign_association_status_proto_depIdxs = nil
}
diff --git a/enums/budget_delivery_method.pb.go b/enums/budget_delivery_method.pb.go
index 6ac05fde..2eb3e4b8 100644
--- a/enums/budget_delivery_method.pb.go
+++ b/enums/budget_delivery_method.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/budget_delivery_method.proto
+// source: google/ads/googleads/v17/enums/budget_delivery_method.proto
package enums
@@ -77,11 +77,11 @@ func (x BudgetDeliveryMethodEnum_BudgetDeliveryMethod) String() string {
}
func (BudgetDeliveryMethodEnum_BudgetDeliveryMethod) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_budget_delivery_method_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_budget_delivery_method_proto_enumTypes[0].Descriptor()
}
func (BudgetDeliveryMethodEnum_BudgetDeliveryMethod) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_budget_delivery_method_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_budget_delivery_method_proto_enumTypes[0]
}
func (x BudgetDeliveryMethodEnum_BudgetDeliveryMethod) Number() protoreflect.EnumNumber {
@@ -90,7 +90,7 @@ func (x BudgetDeliveryMethodEnum_BudgetDeliveryMethod) Number() protoreflect.Enu
// Deprecated: Use BudgetDeliveryMethodEnum_BudgetDeliveryMethod.Descriptor instead.
func (BudgetDeliveryMethodEnum_BudgetDeliveryMethod) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_budget_delivery_method_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_budget_delivery_method_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing Budget delivery methods. A delivery method determines the
@@ -104,7 +104,7 @@ type BudgetDeliveryMethodEnum struct {
func (x *BudgetDeliveryMethodEnum) Reset() {
*x = BudgetDeliveryMethodEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_budget_delivery_method_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_budget_delivery_method_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -117,7 +117,7 @@ func (x *BudgetDeliveryMethodEnum) String() string {
func (*BudgetDeliveryMethodEnum) ProtoMessage() {}
func (x *BudgetDeliveryMethodEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_budget_delivery_method_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_budget_delivery_method_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -130,18 +130,18 @@ func (x *BudgetDeliveryMethodEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use BudgetDeliveryMethodEnum.ProtoReflect.Descriptor instead.
func (*BudgetDeliveryMethodEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_budget_delivery_method_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_budget_delivery_method_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_budget_delivery_method_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_budget_delivery_method_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_budget_delivery_method_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_budget_delivery_method_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x64, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79,
0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6f, 0x0a,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6f, 0x0a,
0x18, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x44, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x4d,
0x65, 0x74, 0x68, 0x6f, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x53, 0x0a, 0x14, 0x42, 0x75, 0x64,
0x67, 0x65, 0x74, 0x44, 0x65, 0x6c, 0x69, 0x76, 0x65, 0x72, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f,
@@ -150,42 +150,42 @@ var file_google_ads_googleads_v16_enums_budget_delivery_method_proto_rawDesc = [
0x0c, 0x0a, 0x08, 0x53, 0x54, 0x41, 0x4e, 0x44, 0x41, 0x52, 0x44, 0x10, 0x02, 0x12, 0x0f, 0x0a,
0x0b, 0x41, 0x43, 0x43, 0x45, 0x4c, 0x45, 0x52, 0x41, 0x54, 0x45, 0x44, 0x10, 0x03, 0x42, 0xf3,
0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x44, 0x65, 0x6c,
0x69, 0x76, 0x65, 0x72, 0x79, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_budget_delivery_method_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_budget_delivery_method_proto_rawDescData = file_google_ads_googleads_v16_enums_budget_delivery_method_proto_rawDesc
+ file_google_ads_googleads_v17_enums_budget_delivery_method_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_budget_delivery_method_proto_rawDescData = file_google_ads_googleads_v17_enums_budget_delivery_method_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_budget_delivery_method_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_budget_delivery_method_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_budget_delivery_method_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_budget_delivery_method_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_budget_delivery_method_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_budget_delivery_method_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_budget_delivery_method_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_budget_delivery_method_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_budget_delivery_method_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_budget_delivery_method_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_budget_delivery_method_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_budget_delivery_method_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_budget_delivery_method_proto_goTypes = []interface{}{
- (BudgetDeliveryMethodEnum_BudgetDeliveryMethod)(0), // 0: google.ads.googleads.v16.enums.BudgetDeliveryMethodEnum.BudgetDeliveryMethod
- (*BudgetDeliveryMethodEnum)(nil), // 1: google.ads.googleads.v16.enums.BudgetDeliveryMethodEnum
+var file_google_ads_googleads_v17_enums_budget_delivery_method_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_budget_delivery_method_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_budget_delivery_method_proto_goTypes = []interface{}{
+ (BudgetDeliveryMethodEnum_BudgetDeliveryMethod)(0), // 0: google.ads.googleads.v17.enums.BudgetDeliveryMethodEnum.BudgetDeliveryMethod
+ (*BudgetDeliveryMethodEnum)(nil), // 1: google.ads.googleads.v17.enums.BudgetDeliveryMethodEnum
}
-var file_google_ads_googleads_v16_enums_budget_delivery_method_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_budget_delivery_method_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -193,13 +193,13 @@ var file_google_ads_googleads_v16_enums_budget_delivery_method_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_budget_delivery_method_proto_init() }
-func file_google_ads_googleads_v16_enums_budget_delivery_method_proto_init() {
- if File_google_ads_googleads_v16_enums_budget_delivery_method_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_budget_delivery_method_proto_init() }
+func file_google_ads_googleads_v17_enums_budget_delivery_method_proto_init() {
+ if File_google_ads_googleads_v17_enums_budget_delivery_method_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_budget_delivery_method_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_budget_delivery_method_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BudgetDeliveryMethodEnum); i {
case 0:
return &v.state
@@ -216,19 +216,19 @@ func file_google_ads_googleads_v16_enums_budget_delivery_method_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_budget_delivery_method_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_budget_delivery_method_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_budget_delivery_method_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_budget_delivery_method_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_budget_delivery_method_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_budget_delivery_method_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_budget_delivery_method_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_budget_delivery_method_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_budget_delivery_method_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_budget_delivery_method_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_budget_delivery_method_proto = out.File
- file_google_ads_googleads_v16_enums_budget_delivery_method_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_budget_delivery_method_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_budget_delivery_method_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_budget_delivery_method_proto = out.File
+ file_google_ads_googleads_v17_enums_budget_delivery_method_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_budget_delivery_method_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_budget_delivery_method_proto_depIdxs = nil
}
diff --git a/enums/budget_period.pb.go b/enums/budget_period.pb.go
index a6452a72..ac4bac33 100644
--- a/enums/budget_period.pb.go
+++ b/enums/budget_period.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/budget_period.proto
+// source: google/ads/googleads/v17/enums/budget_period.proto
package enums
@@ -78,11 +78,11 @@ func (x BudgetPeriodEnum_BudgetPeriod) String() string {
}
func (BudgetPeriodEnum_BudgetPeriod) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_budget_period_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_budget_period_proto_enumTypes[0].Descriptor()
}
func (BudgetPeriodEnum_BudgetPeriod) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_budget_period_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_budget_period_proto_enumTypes[0]
}
func (x BudgetPeriodEnum_BudgetPeriod) Number() protoreflect.EnumNumber {
@@ -91,7 +91,7 @@ func (x BudgetPeriodEnum_BudgetPeriod) Number() protoreflect.EnumNumber {
// Deprecated: Use BudgetPeriodEnum_BudgetPeriod.Descriptor instead.
func (BudgetPeriodEnum_BudgetPeriod) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_budget_period_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_budget_period_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing Budget period.
@@ -104,7 +104,7 @@ type BudgetPeriodEnum struct {
func (x *BudgetPeriodEnum) Reset() {
*x = BudgetPeriodEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_budget_period_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_budget_period_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -117,7 +117,7 @@ func (x *BudgetPeriodEnum) String() string {
func (*BudgetPeriodEnum) ProtoMessage() {}
func (x *BudgetPeriodEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_budget_period_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_budget_period_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -130,17 +130,17 @@ func (x *BudgetPeriodEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use BudgetPeriodEnum.ProtoReflect.Descriptor instead.
func (*BudgetPeriodEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_budget_period_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_budget_period_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_budget_period_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_budget_period_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_budget_period_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_budget_period_proto_rawDesc = []byte{
0x0a, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x22, 0x5e, 0x0a, 0x10, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x65,
0x72, 0x69, 0x6f, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4a, 0x0a, 0x0c, 0x42, 0x75, 0x64, 0x67,
0x65, 0x74, 0x50, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50,
@@ -149,41 +149,41 @@ var file_google_ads_googleads_v16_enums_budget_period_proto_rawDesc = []byte{
0x02, 0x12, 0x11, 0x0a, 0x0d, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x5f, 0x50, 0x45, 0x52, 0x49,
0x4f, 0x44, 0x10, 0x05, 0x42, 0xeb, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x11, 0x42, 0x75, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x11, 0x42, 0x75, 0x64,
0x67, 0x65, 0x74, 0x50, 0x65, 0x72, 0x69, 0x6f, 0x64, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_budget_period_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_budget_period_proto_rawDescData = file_google_ads_googleads_v16_enums_budget_period_proto_rawDesc
+ file_google_ads_googleads_v17_enums_budget_period_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_budget_period_proto_rawDescData = file_google_ads_googleads_v17_enums_budget_period_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_budget_period_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_budget_period_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_budget_period_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_budget_period_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_budget_period_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_budget_period_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_budget_period_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_budget_period_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_budget_period_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_budget_period_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_budget_period_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_budget_period_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_budget_period_proto_goTypes = []interface{}{
- (BudgetPeriodEnum_BudgetPeriod)(0), // 0: google.ads.googleads.v16.enums.BudgetPeriodEnum.BudgetPeriod
- (*BudgetPeriodEnum)(nil), // 1: google.ads.googleads.v16.enums.BudgetPeriodEnum
+var file_google_ads_googleads_v17_enums_budget_period_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_budget_period_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_budget_period_proto_goTypes = []interface{}{
+ (BudgetPeriodEnum_BudgetPeriod)(0), // 0: google.ads.googleads.v17.enums.BudgetPeriodEnum.BudgetPeriod
+ (*BudgetPeriodEnum)(nil), // 1: google.ads.googleads.v17.enums.BudgetPeriodEnum
}
-var file_google_ads_googleads_v16_enums_budget_period_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_budget_period_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_budget_period_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_budget_period_proto_init() }
-func file_google_ads_googleads_v16_enums_budget_period_proto_init() {
- if File_google_ads_googleads_v16_enums_budget_period_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_budget_period_proto_init() }
+func file_google_ads_googleads_v17_enums_budget_period_proto_init() {
+ if File_google_ads_googleads_v17_enums_budget_period_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_budget_period_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_budget_period_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BudgetPeriodEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_budget_period_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_budget_period_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_budget_period_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_budget_period_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_budget_period_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_budget_period_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_budget_period_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_budget_period_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_budget_period_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_budget_period_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_budget_period_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_budget_period_proto = out.File
- file_google_ads_googleads_v16_enums_budget_period_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_budget_period_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_budget_period_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_budget_period_proto = out.File
+ file_google_ads_googleads_v17_enums_budget_period_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_budget_period_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_budget_period_proto_depIdxs = nil
}
diff --git a/enums/budget_status.pb.go b/enums/budget_status.pb.go
index e9cff7e1..9b3886c6 100644
--- a/enums/budget_status.pb.go
+++ b/enums/budget_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/budget_status.proto
+// source: google/ads/googleads/v17/enums/budget_status.proto
package enums
@@ -75,11 +75,11 @@ func (x BudgetStatusEnum_BudgetStatus) String() string {
}
func (BudgetStatusEnum_BudgetStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_budget_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_budget_status_proto_enumTypes[0].Descriptor()
}
func (BudgetStatusEnum_BudgetStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_budget_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_budget_status_proto_enumTypes[0]
}
func (x BudgetStatusEnum_BudgetStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x BudgetStatusEnum_BudgetStatus) Number() protoreflect.EnumNumber {
// Deprecated: Use BudgetStatusEnum_BudgetStatus.Descriptor instead.
func (BudgetStatusEnum_BudgetStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_budget_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_budget_status_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing a Budget status
@@ -101,7 +101,7 @@ type BudgetStatusEnum struct {
func (x *BudgetStatusEnum) Reset() {
*x = BudgetStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_budget_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_budget_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *BudgetStatusEnum) String() string {
func (*BudgetStatusEnum) ProtoMessage() {}
func (x *BudgetStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_budget_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_budget_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,17 +127,17 @@ func (x *BudgetStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use BudgetStatusEnum.ProtoReflect.Descriptor instead.
func (*BudgetStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_budget_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_budget_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_budget_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_budget_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_budget_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_budget_status_proto_rawDesc = []byte{
0x0a, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x22, 0x5a, 0x0a, 0x10, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x53, 0x74,
0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x46, 0x0a, 0x0c, 0x42, 0x75, 0x64, 0x67,
0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50,
@@ -146,41 +146,41 @@ var file_google_ads_googleads_v16_enums_budget_status_proto_rawDesc = []byte{
0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03,
0x42, 0xeb, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x11, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x53,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x11, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_budget_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_budget_status_proto_rawDescData = file_google_ads_googleads_v16_enums_budget_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_budget_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_budget_status_proto_rawDescData = file_google_ads_googleads_v17_enums_budget_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_budget_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_budget_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_budget_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_budget_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_budget_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_budget_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_budget_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_budget_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_budget_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_budget_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_budget_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_budget_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_budget_status_proto_goTypes = []interface{}{
- (BudgetStatusEnum_BudgetStatus)(0), // 0: google.ads.googleads.v16.enums.BudgetStatusEnum.BudgetStatus
- (*BudgetStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.BudgetStatusEnum
+var file_google_ads_googleads_v17_enums_budget_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_budget_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_budget_status_proto_goTypes = []interface{}{
+ (BudgetStatusEnum_BudgetStatus)(0), // 0: google.ads.googleads.v17.enums.BudgetStatusEnum.BudgetStatus
+ (*BudgetStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.BudgetStatusEnum
}
-var file_google_ads_googleads_v16_enums_budget_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_budget_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -188,13 +188,13 @@ var file_google_ads_googleads_v16_enums_budget_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_budget_status_proto_init() }
-func file_google_ads_googleads_v16_enums_budget_status_proto_init() {
- if File_google_ads_googleads_v16_enums_budget_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_budget_status_proto_init() }
+func file_google_ads_googleads_v17_enums_budget_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_budget_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_budget_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_budget_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BudgetStatusEnum); i {
case 0:
return &v.state
@@ -211,19 +211,19 @@ func file_google_ads_googleads_v16_enums_budget_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_budget_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_budget_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_budget_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_budget_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_budget_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_budget_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_budget_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_budget_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_budget_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_budget_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_budget_status_proto = out.File
- file_google_ads_googleads_v16_enums_budget_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_budget_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_budget_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_budget_status_proto = out.File
+ file_google_ads_googleads_v17_enums_budget_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_budget_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_budget_status_proto_depIdxs = nil
}
diff --git a/enums/budget_type.pb.go b/enums/budget_type.pb.go
index 0531158e..5b1c30c5 100644
--- a/enums/budget_type.pb.go
+++ b/enums/budget_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/budget_type.proto
+// source: google/ads/googleads/v17/enums/budget_type.proto
package enums
@@ -100,11 +100,11 @@ func (x BudgetTypeEnum_BudgetType) String() string {
}
func (BudgetTypeEnum_BudgetType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_budget_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_budget_type_proto_enumTypes[0].Descriptor()
}
func (BudgetTypeEnum_BudgetType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_budget_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_budget_type_proto_enumTypes[0]
}
func (x BudgetTypeEnum_BudgetType) Number() protoreflect.EnumNumber {
@@ -113,7 +113,7 @@ func (x BudgetTypeEnum_BudgetType) Number() protoreflect.EnumNumber {
// Deprecated: Use BudgetTypeEnum_BudgetType.Descriptor instead.
func (BudgetTypeEnum_BudgetType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_budget_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_budget_type_proto_rawDescGZIP(), []int{0, 0}
}
// Describes Budget types.
@@ -126,7 +126,7 @@ type BudgetTypeEnum struct {
func (x *BudgetTypeEnum) Reset() {
*x = BudgetTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_budget_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_budget_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -139,7 +139,7 @@ func (x *BudgetTypeEnum) String() string {
func (*BudgetTypeEnum) ProtoMessage() {}
func (x *BudgetTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_budget_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_budget_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -152,17 +152,17 @@ func (x *BudgetTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use BudgetTypeEnum.ProtoReflect.Descriptor instead.
func (*BudgetTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_budget_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_budget_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_budget_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_budget_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_budget_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_budget_type_proto_rawDesc = []byte{
0x0a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x81, 0x01, 0x0a, 0x0e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70,
0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x6f, 0x0a, 0x0a, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x54,
0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
@@ -173,41 +173,41 @@ var file_google_ads_googleads_v16_enums_budget_type_proto_rawDesc = []byte{
0x10, 0x05, 0x12, 0x12, 0x0a, 0x0e, 0x4c, 0x4f, 0x43, 0x41, 0x4c, 0x5f, 0x53, 0x45, 0x52, 0x56,
0x49, 0x43, 0x45, 0x53, 0x10, 0x06, 0x42, 0xe9, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0f, 0x42,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0f, 0x42,
0x75, 0x64, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_budget_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_budget_type_proto_rawDescData = file_google_ads_googleads_v16_enums_budget_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_budget_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_budget_type_proto_rawDescData = file_google_ads_googleads_v17_enums_budget_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_budget_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_budget_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_budget_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_budget_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_budget_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_budget_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_budget_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_budget_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_budget_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_budget_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_budget_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_budget_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_budget_type_proto_goTypes = []interface{}{
- (BudgetTypeEnum_BudgetType)(0), // 0: google.ads.googleads.v16.enums.BudgetTypeEnum.BudgetType
- (*BudgetTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.BudgetTypeEnum
+var file_google_ads_googleads_v17_enums_budget_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_budget_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_budget_type_proto_goTypes = []interface{}{
+ (BudgetTypeEnum_BudgetType)(0), // 0: google.ads.googleads.v17.enums.BudgetTypeEnum.BudgetType
+ (*BudgetTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.BudgetTypeEnum
}
-var file_google_ads_googleads_v16_enums_budget_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_budget_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -215,13 +215,13 @@ var file_google_ads_googleads_v16_enums_budget_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_budget_type_proto_init() }
-func file_google_ads_googleads_v16_enums_budget_type_proto_init() {
- if File_google_ads_googleads_v16_enums_budget_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_budget_type_proto_init() }
+func file_google_ads_googleads_v17_enums_budget_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_budget_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_budget_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_budget_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BudgetTypeEnum); i {
case 0:
return &v.state
@@ -238,19 +238,19 @@ func file_google_ads_googleads_v16_enums_budget_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_budget_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_budget_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_budget_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_budget_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_budget_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_budget_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_budget_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_budget_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_budget_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_budget_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_budget_type_proto = out.File
- file_google_ads_googleads_v16_enums_budget_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_budget_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_budget_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_budget_type_proto = out.File
+ file_google_ads_googleads_v17_enums_budget_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_budget_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_budget_type_proto_depIdxs = nil
}
diff --git a/enums/call_conversion_reporting_state.pb.go b/enums/call_conversion_reporting_state.pb.go
index 311946b4..33b5d6f7 100644
--- a/enums/call_conversion_reporting_state.pb.go
+++ b/enums/call_conversion_reporting_state.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/call_conversion_reporting_state.proto
+// source: google/ads/googleads/v17/enums/call_conversion_reporting_state.proto
package enums
@@ -81,11 +81,11 @@ func (x CallConversionReportingStateEnum_CallConversionReportingState) String()
}
func (CallConversionReportingStateEnum_CallConversionReportingState) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_enumTypes[0].Descriptor()
}
func (CallConversionReportingStateEnum_CallConversionReportingState) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_enumTypes[0]
}
func (x CallConversionReportingStateEnum_CallConversionReportingState) Number() protoreflect.EnumNumber {
@@ -94,7 +94,7 @@ func (x CallConversionReportingStateEnum_CallConversionReportingState) Number()
// Deprecated: Use CallConversionReportingStateEnum_CallConversionReportingState.Descriptor instead.
func (CallConversionReportingStateEnum_CallConversionReportingState) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible data types for call conversion
@@ -108,7 +108,7 @@ type CallConversionReportingStateEnum struct {
func (x *CallConversionReportingStateEnum) Reset() {
*x = CallConversionReportingStateEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -121,7 +121,7 @@ func (x *CallConversionReportingStateEnum) String() string {
func (*CallConversionReportingStateEnum) ProtoMessage() {}
func (x *CallConversionReportingStateEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -134,18 +134,18 @@ func (x *CallConversionReportingStateEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CallConversionReportingStateEnum.ProtoReflect.Descriptor instead.
func (*CallConversionReportingStateEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_rawDesc = []byte{
0x0a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
0x5f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xcc, 0x01, 0x0a, 0x20, 0x43, 0x61, 0x6c, 0x6c, 0x43,
0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69,
0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xa7, 0x01, 0x0a, 0x1c,
@@ -161,42 +161,42 @@ var file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_ra
0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x56, 0x45, 0x52, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x41, 0x43, 0x54,
0x49, 0x4f, 0x4e, 0x10, 0x04, 0x42, 0xfb, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x43, 0x61,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x43, 0x61,
0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6f,
0x72, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_rawDescData = file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_rawDesc
+ file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_rawDescData = file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_goTypes = []interface{}{
- (CallConversionReportingStateEnum_CallConversionReportingState)(0), // 0: google.ads.googleads.v16.enums.CallConversionReportingStateEnum.CallConversionReportingState
- (*CallConversionReportingStateEnum)(nil), // 1: google.ads.googleads.v16.enums.CallConversionReportingStateEnum
+var file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_goTypes = []interface{}{
+ (CallConversionReportingStateEnum_CallConversionReportingState)(0), // 0: google.ads.googleads.v17.enums.CallConversionReportingStateEnum.CallConversionReportingState
+ (*CallConversionReportingStateEnum)(nil), // 1: google.ads.googleads.v17.enums.CallConversionReportingStateEnum
}
-var file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -204,13 +204,13 @@ var file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_de
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_init() }
-func file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_init() {
- if File_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_init() }
+func file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_init() {
+ if File_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CallConversionReportingStateEnum); i {
case 0:
return &v.state
@@ -227,19 +227,19 @@ func file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_i
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto = out.File
- file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_call_conversion_reporting_state_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto = out.File
+ file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_call_conversion_reporting_state_proto_depIdxs = nil
}
diff --git a/enums/call_placeholder_field.pb.go b/enums/call_placeholder_field.pb.go
index acb74794..f2332187 100644
--- a/enums/call_placeholder_field.pb.go
+++ b/enums/call_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/call_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/call_placeholder_field.proto
package enums
@@ -94,11 +94,11 @@ func (x CallPlaceholderFieldEnum_CallPlaceholderField) String() string {
}
func (CallPlaceholderFieldEnum_CallPlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_call_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_call_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (CallPlaceholderFieldEnum_CallPlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_call_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_call_placeholder_field_proto_enumTypes[0]
}
func (x CallPlaceholderFieldEnum_CallPlaceholderField) Number() protoreflect.EnumNumber {
@@ -107,7 +107,7 @@ func (x CallPlaceholderFieldEnum_CallPlaceholderField) Number() protoreflect.Enu
// Deprecated: Use CallPlaceholderFieldEnum_CallPlaceholderField.Descriptor instead.
func (CallPlaceholderFieldEnum_CallPlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_call_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_call_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Call placeholder fields.
@@ -120,7 +120,7 @@ type CallPlaceholderFieldEnum struct {
func (x *CallPlaceholderFieldEnum) Reset() {
*x = CallPlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_call_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_call_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -133,7 +133,7 @@ func (x *CallPlaceholderFieldEnum) String() string {
func (*CallPlaceholderFieldEnum) ProtoMessage() {}
func (x *CallPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_call_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_call_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -146,18 +146,18 @@ func (x *CallPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CallPlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*CallPlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_call_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_call_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_call_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_call_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_call_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_call_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65,
0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xba, 0x01,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xba, 0x01,
0x0a, 0x18, 0x43, 0x61, 0x6c, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65,
0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x9d, 0x01, 0x0a, 0x14, 0x43,
0x61, 0x6c, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69,
@@ -171,42 +171,42 @@ var file_google_ads_googleads_v16_enums_call_placeholder_field_proto_rawDesc = [
0x4e, 0x56, 0x45, 0x52, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x52, 0x45, 0x50, 0x4f, 0x52, 0x54, 0x49,
0x4e, 0x47, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x45, 0x10, 0x06, 0x42, 0xf3, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x19, 0x43, 0x61, 0x6c, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64,
0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_call_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_call_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_call_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_call_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_call_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_call_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_call_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_call_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_call_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_call_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_call_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_call_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_call_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_call_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_call_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_call_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_call_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_call_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_call_placeholder_field_proto_goTypes = []interface{}{
- (CallPlaceholderFieldEnum_CallPlaceholderField)(0), // 0: google.ads.googleads.v16.enums.CallPlaceholderFieldEnum.CallPlaceholderField
- (*CallPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.CallPlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_call_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_call_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_call_placeholder_field_proto_goTypes = []interface{}{
+ (CallPlaceholderFieldEnum_CallPlaceholderField)(0), // 0: google.ads.googleads.v17.enums.CallPlaceholderFieldEnum.CallPlaceholderField
+ (*CallPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.CallPlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_call_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_call_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -214,13 +214,13 @@ var file_google_ads_googleads_v16_enums_call_placeholder_field_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_call_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_call_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_call_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_call_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_call_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_call_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_call_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_call_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CallPlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -237,19 +237,19 @@ func file_google_ads_googleads_v16_enums_call_placeholder_field_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_call_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_call_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_call_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_call_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_call_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_call_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_call_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_call_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_call_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_call_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_call_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_call_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_call_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_call_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_call_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_call_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_call_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_call_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/call_to_action_type.pb.go b/enums/call_to_action_type.pb.go
index c3b737fd..ec4014f9 100644
--- a/enums/call_to_action_type.pb.go
+++ b/enums/call_to_action_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/call_to_action_type.proto
+// source: google/ads/googleads/v17/enums/call_to_action_type.proto
package enums
@@ -135,11 +135,11 @@ func (x CallToActionTypeEnum_CallToActionType) String() string {
}
func (CallToActionTypeEnum_CallToActionType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_call_to_action_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_call_to_action_type_proto_enumTypes[0].Descriptor()
}
func (CallToActionTypeEnum_CallToActionType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_call_to_action_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_call_to_action_type_proto_enumTypes[0]
}
func (x CallToActionTypeEnum_CallToActionType) Number() protoreflect.EnumNumber {
@@ -148,7 +148,7 @@ func (x CallToActionTypeEnum_CallToActionType) Number() protoreflect.EnumNumber
// Deprecated: Use CallToActionTypeEnum_CallToActionType.Descriptor instead.
func (CallToActionTypeEnum_CallToActionType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_call_to_action_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_call_to_action_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the call to action types.
@@ -161,7 +161,7 @@ type CallToActionTypeEnum struct {
func (x *CallToActionTypeEnum) Reset() {
*x = CallToActionTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_call_to_action_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_call_to_action_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -174,7 +174,7 @@ func (x *CallToActionTypeEnum) String() string {
func (*CallToActionTypeEnum) ProtoMessage() {}
func (x *CallToActionTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_call_to_action_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_call_to_action_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -187,18 +187,18 @@ func (x *CallToActionTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CallToActionTypeEnum.ProtoReflect.Descriptor instead.
func (*CallToActionTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_call_to_action_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_call_to_action_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_call_to_action_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_call_to_action_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_call_to_action_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_call_to_action_type_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x6f, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc3, 0x02, 0x0a, 0x14, 0x43,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc3, 0x02, 0x0a, 0x14, 0x43,
0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0xaa, 0x02, 0x0a, 0x10, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63,
0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50,
@@ -221,41 +221,41 @@ var file_google_ads_googleads_v16_enums_call_to_action_type_proto_rawDesc = []by
0x11, 0x12, 0x0d, 0x0a, 0x09, 0x57, 0x41, 0x54, 0x43, 0x48, 0x5f, 0x4e, 0x4f, 0x57, 0x10, 0x12,
0x42, 0xef, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_call_to_action_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_call_to_action_type_proto_rawDescData = file_google_ads_googleads_v16_enums_call_to_action_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_call_to_action_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_call_to_action_type_proto_rawDescData = file_google_ads_googleads_v17_enums_call_to_action_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_call_to_action_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_call_to_action_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_call_to_action_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_call_to_action_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_call_to_action_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_call_to_action_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_call_to_action_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_call_to_action_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_call_to_action_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_call_to_action_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_call_to_action_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_call_to_action_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_call_to_action_type_proto_goTypes = []interface{}{
- (CallToActionTypeEnum_CallToActionType)(0), // 0: google.ads.googleads.v16.enums.CallToActionTypeEnum.CallToActionType
- (*CallToActionTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.CallToActionTypeEnum
+var file_google_ads_googleads_v17_enums_call_to_action_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_call_to_action_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_call_to_action_type_proto_goTypes = []interface{}{
+ (CallToActionTypeEnum_CallToActionType)(0), // 0: google.ads.googleads.v17.enums.CallToActionTypeEnum.CallToActionType
+ (*CallToActionTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.CallToActionTypeEnum
}
-var file_google_ads_googleads_v16_enums_call_to_action_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_call_to_action_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -263,13 +263,13 @@ var file_google_ads_googleads_v16_enums_call_to_action_type_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_call_to_action_type_proto_init() }
-func file_google_ads_googleads_v16_enums_call_to_action_type_proto_init() {
- if File_google_ads_googleads_v16_enums_call_to_action_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_call_to_action_type_proto_init() }
+func file_google_ads_googleads_v17_enums_call_to_action_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_call_to_action_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_call_to_action_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_call_to_action_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CallToActionTypeEnum); i {
case 0:
return &v.state
@@ -286,19 +286,19 @@ func file_google_ads_googleads_v16_enums_call_to_action_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_call_to_action_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_call_to_action_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_call_to_action_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_call_to_action_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_call_to_action_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_call_to_action_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_call_to_action_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_call_to_action_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_call_to_action_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_call_to_action_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_call_to_action_type_proto = out.File
- file_google_ads_googleads_v16_enums_call_to_action_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_call_to_action_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_call_to_action_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_call_to_action_type_proto = out.File
+ file_google_ads_googleads_v17_enums_call_to_action_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_call_to_action_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_call_to_action_type_proto_depIdxs = nil
}
diff --git a/enums/call_tracking_display_location.pb.go b/enums/call_tracking_display_location.pb.go
index 4e702d34..043eeb55 100644
--- a/enums/call_tracking_display_location.pb.go
+++ b/enums/call_tracking_display_location.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/call_tracking_display_location.proto
+// source: google/ads/googleads/v17/enums/call_tracking_display_location.proto
package enums
@@ -75,11 +75,11 @@ func (x CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation) String() st
}
func (CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_enumTypes[0].Descriptor()
}
func (CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_enumTypes[0]
}
func (x CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation) Number() pr
// Deprecated: Use CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation.Descriptor instead.
func (CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible call tracking display locations.
@@ -101,7 +101,7 @@ type CallTrackingDisplayLocationEnum struct {
func (x *CallTrackingDisplayLocationEnum) Reset() {
*x = CallTrackingDisplayLocationEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *CallTrackingDisplayLocationEnum) String() string {
func (*CallTrackingDisplayLocationEnum) ProtoMessage() {}
func (x *CallTrackingDisplayLocationEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *CallTrackingDisplayLocationEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CallTrackingDisplayLocationEnum.ProtoReflect.Descriptor instead.
func (*CallTrackingDisplayLocationEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_call_tracking_display_location_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_call_tracking_display_location_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x64,
0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x78, 0x0a, 0x1f, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x72, 0x61,
0x63, 0x6b, 0x69, 0x6e, 0x67, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4c, 0x6f, 0x63, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x55, 0x0a, 0x1b, 0x43, 0x61, 0x6c, 0x6c,
@@ -148,43 +148,43 @@ var file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_raw
0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x06, 0x0a, 0x02, 0x41, 0x44, 0x10, 0x02, 0x12, 0x10, 0x0a,
0x0c, 0x4c, 0x41, 0x4e, 0x44, 0x49, 0x4e, 0x47, 0x5f, 0x50, 0x41, 0x47, 0x45, 0x10, 0x03, 0x42,
0xfa, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x72, 0x61, 0x63,
0x6b, 0x69, 0x6e, 0x67, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4c, 0x6f, 0x63, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_rawDescData = file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_rawDesc
+ file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_rawDescData = file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_goTypes = []interface{}{
- (CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation)(0), // 0: google.ads.googleads.v16.enums.CallTrackingDisplayLocationEnum.CallTrackingDisplayLocation
- (*CallTrackingDisplayLocationEnum)(nil), // 1: google.ads.googleads.v16.enums.CallTrackingDisplayLocationEnum
+var file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_goTypes = []interface{}{
+ (CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation)(0), // 0: google.ads.googleads.v17.enums.CallTrackingDisplayLocationEnum.CallTrackingDisplayLocation
+ (*CallTrackingDisplayLocationEnum)(nil), // 1: google.ads.googleads.v17.enums.CallTrackingDisplayLocationEnum
}
-var file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -192,13 +192,13 @@ var file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_init() }
-func file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_init() {
- if File_google_ads_googleads_v16_enums_call_tracking_display_location_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_init() }
+func file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_init() {
+ if File_google_ads_googleads_v17_enums_call_tracking_display_location_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CallTrackingDisplayLocationEnum); i {
case 0:
return &v.state
@@ -215,19 +215,19 @@ func file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_call_tracking_display_location_proto = out.File
- file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_call_tracking_display_location_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_call_tracking_display_location_proto = out.File
+ file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_call_tracking_display_location_proto_depIdxs = nil
}
diff --git a/enums/call_type.pb.go b/enums/call_type.pb.go
index 6d1df6d3..345cdfe1 100644
--- a/enums/call_type.pb.go
+++ b/enums/call_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/call_type.proto
+// source: google/ads/googleads/v17/enums/call_type.proto
package enums
@@ -75,11 +75,11 @@ func (x CallTypeEnum_CallType) String() string {
}
func (CallTypeEnum_CallType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_call_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_call_type_proto_enumTypes[0].Descriptor()
}
func (CallTypeEnum_CallType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_call_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_call_type_proto_enumTypes[0]
}
func (x CallTypeEnum_CallType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x CallTypeEnum_CallType) Number() protoreflect.EnumNumber {
// Deprecated: Use CallTypeEnum_CallType.Descriptor instead.
func (CallTypeEnum_CallType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_call_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_call_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible types of property from where the call
@@ -102,7 +102,7 @@ type CallTypeEnum struct {
func (x *CallTypeEnum) Reset() {
*x = CallTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_call_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_call_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -115,7 +115,7 @@ func (x *CallTypeEnum) String() string {
func (*CallTypeEnum) ProtoMessage() {}
func (x *CallTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_call_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_call_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -128,17 +128,17 @@ func (x *CallTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CallTypeEnum.ProtoReflect.Descriptor instead.
func (*CallTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_call_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_call_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_call_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_call_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_call_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_call_type_proto_rawDesc = []byte{
0x0a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0x69, 0x0a, 0x0c, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x59, 0x0a, 0x08, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b,
0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a,
@@ -147,41 +147,41 @@ var file_google_ads_googleads_v16_enums_call_type_proto_rawDesc = []byte{
0x1a, 0x0a, 0x16, 0x48, 0x49, 0x47, 0x48, 0x5f, 0x45, 0x4e, 0x44, 0x5f, 0x4d, 0x4f, 0x42, 0x49,
0x4c, 0x45, 0x5f, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x10, 0x03, 0x42, 0xe7, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x0d, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_call_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_call_type_proto_rawDescData = file_google_ads_googleads_v16_enums_call_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_call_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_call_type_proto_rawDescData = file_google_ads_googleads_v17_enums_call_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_call_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_call_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_call_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_call_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_call_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_call_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_call_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_call_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_call_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_call_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_call_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_call_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_call_type_proto_goTypes = []interface{}{
- (CallTypeEnum_CallType)(0), // 0: google.ads.googleads.v16.enums.CallTypeEnum.CallType
- (*CallTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.CallTypeEnum
+var file_google_ads_googleads_v17_enums_call_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_call_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_call_type_proto_goTypes = []interface{}{
+ (CallTypeEnum_CallType)(0), // 0: google.ads.googleads.v17.enums.CallTypeEnum.CallType
+ (*CallTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.CallTypeEnum
}
-var file_google_ads_googleads_v16_enums_call_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_call_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -189,13 +189,13 @@ var file_google_ads_googleads_v16_enums_call_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_call_type_proto_init() }
-func file_google_ads_googleads_v16_enums_call_type_proto_init() {
- if File_google_ads_googleads_v16_enums_call_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_call_type_proto_init() }
+func file_google_ads_googleads_v17_enums_call_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_call_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_call_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_call_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CallTypeEnum); i {
case 0:
return &v.state
@@ -212,19 +212,19 @@ func file_google_ads_googleads_v16_enums_call_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_call_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_call_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_call_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_call_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_call_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_call_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_call_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_call_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_call_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_call_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_call_type_proto = out.File
- file_google_ads_googleads_v16_enums_call_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_call_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_call_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_call_type_proto = out.File
+ file_google_ads_googleads_v17_enums_call_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_call_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_call_type_proto_depIdxs = nil
}
diff --git a/enums/callout_placeholder_field.pb.go b/enums/callout_placeholder_field.pb.go
index 3c85a8ad..c4d3fe6f 100644
--- a/enums/callout_placeholder_field.pb.go
+++ b/enums/callout_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/callout_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/callout_placeholder_field.proto
package enums
@@ -71,11 +71,11 @@ func (x CalloutPlaceholderFieldEnum_CalloutPlaceholderField) String() string {
}
func (CalloutPlaceholderFieldEnum_CalloutPlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (CalloutPlaceholderFieldEnum_CalloutPlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_enumTypes[0]
}
func (x CalloutPlaceholderFieldEnum_CalloutPlaceholderField) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x CalloutPlaceholderFieldEnum_CalloutPlaceholderField) Number() protorefle
// Deprecated: Use CalloutPlaceholderFieldEnum_CalloutPlaceholderField.Descriptor instead.
func (CalloutPlaceholderFieldEnum_CalloutPlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Callout placeholder fields.
@@ -97,7 +97,7 @@ type CalloutPlaceholderFieldEnum struct {
func (x *CalloutPlaceholderFieldEnum) Reset() {
*x = CalloutPlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *CalloutPlaceholderFieldEnum) String() string {
func (*CalloutPlaceholderFieldEnum) ProtoMessage() {}
func (x *CalloutPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,18 +123,18 @@ func (x *CalloutPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CalloutPlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*CalloutPlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_callout_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_callout_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f,
0x6c, 0x64, 0x65, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0x68, 0x0a, 0x1b, 0x43, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x50, 0x6c, 0x61, 0x63, 0x65,
0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x49, 0x0a, 0x17, 0x43, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68,
@@ -143,42 +143,42 @@ var file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_rawDesc
0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x10, 0x0a, 0x0c, 0x43, 0x41, 0x4c, 0x4c,
0x4f, 0x55, 0x54, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x10, 0x02, 0x42, 0xf6, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x1c, 0x43, 0x61, 0x6c, 0x6c, 0x6f, 0x75, 0x74, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68,
0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_goTypes = []interface{}{
- (CalloutPlaceholderFieldEnum_CalloutPlaceholderField)(0), // 0: google.ads.googleads.v16.enums.CalloutPlaceholderFieldEnum.CalloutPlaceholderField
- (*CalloutPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.CalloutPlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_goTypes = []interface{}{
+ (CalloutPlaceholderFieldEnum_CalloutPlaceholderField)(0), // 0: google.ads.googleads.v17.enums.CalloutPlaceholderFieldEnum.CalloutPlaceholderField
+ (*CalloutPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.CalloutPlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -186,13 +186,13 @@ var file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_callout_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_callout_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CalloutPlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -209,19 +209,19 @@ func file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_callout_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_callout_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_callout_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_callout_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/campaign_criterion_status.pb.go b/enums/campaign_criterion_status.pb.go
index 4bd3e68d..a1a12fbb 100644
--- a/enums/campaign_criterion_status.pb.go
+++ b/enums/campaign_criterion_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/campaign_criterion_status.proto
+// source: google/ads/googleads/v17/enums/campaign_criterion_status.proto
package enums
@@ -81,11 +81,11 @@ func (x CampaignCriterionStatusEnum_CampaignCriterionStatus) String() string {
}
func (CampaignCriterionStatusEnum_CampaignCriterionStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_enumTypes[0].Descriptor()
}
func (CampaignCriterionStatusEnum_CampaignCriterionStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_enumTypes[0]
}
func (x CampaignCriterionStatusEnum_CampaignCriterionStatus) Number() protoreflect.EnumNumber {
@@ -94,7 +94,7 @@ func (x CampaignCriterionStatusEnum_CampaignCriterionStatus) Number() protorefle
// Deprecated: Use CampaignCriterionStatusEnum_CampaignCriterionStatus.Descriptor instead.
func (CampaignCriterionStatusEnum_CampaignCriterionStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing CampaignCriterion statuses.
@@ -107,7 +107,7 @@ type CampaignCriterionStatusEnum struct {
func (x *CampaignCriterionStatusEnum) Reset() {
*x = CampaignCriterionStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -120,7 +120,7 @@ func (x *CampaignCriterionStatusEnum) String() string {
func (*CampaignCriterionStatusEnum) ProtoMessage() {}
func (x *CampaignCriterionStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -133,18 +133,18 @@ func (x *CampaignCriterionStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CampaignCriterionStatusEnum.ProtoReflect.Descriptor instead.
func (*CampaignCriterionStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_campaign_criterion_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_campaign_criterion_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72,
0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0x7c, 0x0a, 0x1b, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74,
0x65, 0x72, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x5d, 0x0a, 0x17, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65,
@@ -154,42 +154,42 @@ var file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_rawDesc
0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x50, 0x41, 0x55, 0x53, 0x45, 0x44, 0x10,
0x03, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x04, 0x42, 0xf6,
0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43,
0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_rawDescData = file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_rawDescData = file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_goTypes = []interface{}{
- (CampaignCriterionStatusEnum_CampaignCriterionStatus)(0), // 0: google.ads.googleads.v16.enums.CampaignCriterionStatusEnum.CampaignCriterionStatus
- (*CampaignCriterionStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.CampaignCriterionStatusEnum
+var file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_goTypes = []interface{}{
+ (CampaignCriterionStatusEnum_CampaignCriterionStatus)(0), // 0: google.ads.googleads.v17.enums.CampaignCriterionStatusEnum.CampaignCriterionStatus
+ (*CampaignCriterionStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.CampaignCriterionStatusEnum
}
-var file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_init() }
-func file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_init() {
- if File_google_ads_googleads_v16_enums_campaign_criterion_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_init() }
+func file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_campaign_criterion_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CampaignCriterionStatusEnum); i {
case 0:
return &v.state
@@ -220,19 +220,19 @@ func file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_campaign_criterion_status_proto = out.File
- file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_campaign_criterion_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_campaign_criterion_status_proto = out.File
+ file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_campaign_criterion_status_proto_depIdxs = nil
}
diff --git a/enums/campaign_draft_status.pb.go b/enums/campaign_draft_status.pb.go
index e06fb038..664a345c 100644
--- a/enums/campaign_draft_status.pb.go
+++ b/enums/campaign_draft_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/campaign_draft_status.proto
+// source: google/ads/googleads/v17/enums/campaign_draft_status.proto
package enums
@@ -93,11 +93,11 @@ func (x CampaignDraftStatusEnum_CampaignDraftStatus) String() string {
}
func (CampaignDraftStatusEnum_CampaignDraftStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_campaign_draft_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_campaign_draft_status_proto_enumTypes[0].Descriptor()
}
func (CampaignDraftStatusEnum_CampaignDraftStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_campaign_draft_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_campaign_draft_status_proto_enumTypes[0]
}
func (x CampaignDraftStatusEnum_CampaignDraftStatus) Number() protoreflect.EnumNumber {
@@ -106,7 +106,7 @@ func (x CampaignDraftStatusEnum_CampaignDraftStatus) Number() protoreflect.EnumN
// Deprecated: Use CampaignDraftStatusEnum_CampaignDraftStatus.Descriptor instead.
func (CampaignDraftStatusEnum_CampaignDraftStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_campaign_draft_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_campaign_draft_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of a campaign draft.
@@ -119,7 +119,7 @@ type CampaignDraftStatusEnum struct {
func (x *CampaignDraftStatusEnum) Reset() {
*x = CampaignDraftStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_campaign_draft_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_campaign_draft_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -132,7 +132,7 @@ func (x *CampaignDraftStatusEnum) String() string {
func (*CampaignDraftStatusEnum) ProtoMessage() {}
func (x *CampaignDraftStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_campaign_draft_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_campaign_draft_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -145,18 +145,18 @@ func (x *CampaignDraftStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CampaignDraftStatusEnum.ProtoReflect.Descriptor instead.
func (*CampaignDraftStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_campaign_draft_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_campaign_draft_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_campaign_draft_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_campaign_draft_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_campaign_draft_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_campaign_draft_status_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x64, 0x72, 0x61, 0x66, 0x74, 0x5f,
0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x9a, 0x01, 0x0a,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x9a, 0x01, 0x0a,
0x17, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x53, 0x74,
0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x7f, 0x0a, 0x13, 0x43, 0x61, 0x6d, 0x70,
0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
@@ -168,42 +168,42 @@ var file_google_ads_googleads_v16_enums_campaign_draft_status_proto_rawDesc = []
0x54, 0x45, 0x44, 0x10, 0x04, 0x12, 0x12, 0x0a, 0x0e, 0x50, 0x52, 0x4f, 0x4d, 0x4f, 0x54, 0x45,
0x5f, 0x46, 0x41, 0x49, 0x4c, 0x45, 0x44, 0x10, 0x06, 0x42, 0xf2, 0x01, 0x0a, 0x22, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x42, 0x18, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_campaign_draft_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_campaign_draft_status_proto_rawDescData = file_google_ads_googleads_v16_enums_campaign_draft_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_campaign_draft_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_campaign_draft_status_proto_rawDescData = file_google_ads_googleads_v17_enums_campaign_draft_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_campaign_draft_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_campaign_draft_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_campaign_draft_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_campaign_draft_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_campaign_draft_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_campaign_draft_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_campaign_draft_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_campaign_draft_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_campaign_draft_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_campaign_draft_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_campaign_draft_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_campaign_draft_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_campaign_draft_status_proto_goTypes = []interface{}{
- (CampaignDraftStatusEnum_CampaignDraftStatus)(0), // 0: google.ads.googleads.v16.enums.CampaignDraftStatusEnum.CampaignDraftStatus
- (*CampaignDraftStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.CampaignDraftStatusEnum
+var file_google_ads_googleads_v17_enums_campaign_draft_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_draft_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_draft_status_proto_goTypes = []interface{}{
+ (CampaignDraftStatusEnum_CampaignDraftStatus)(0), // 0: google.ads.googleads.v17.enums.CampaignDraftStatusEnum.CampaignDraftStatus
+ (*CampaignDraftStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.CampaignDraftStatusEnum
}
-var file_google_ads_googleads_v16_enums_campaign_draft_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_campaign_draft_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -211,13 +211,13 @@ var file_google_ads_googleads_v16_enums_campaign_draft_status_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_campaign_draft_status_proto_init() }
-func file_google_ads_googleads_v16_enums_campaign_draft_status_proto_init() {
- if File_google_ads_googleads_v16_enums_campaign_draft_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_campaign_draft_status_proto_init() }
+func file_google_ads_googleads_v17_enums_campaign_draft_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_campaign_draft_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_campaign_draft_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_campaign_draft_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CampaignDraftStatusEnum); i {
case 0:
return &v.state
@@ -234,19 +234,19 @@ func file_google_ads_googleads_v16_enums_campaign_draft_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_campaign_draft_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_campaign_draft_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_campaign_draft_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_campaign_draft_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_campaign_draft_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_campaign_draft_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_campaign_draft_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_campaign_draft_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_campaign_draft_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_campaign_draft_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_campaign_draft_status_proto = out.File
- file_google_ads_googleads_v16_enums_campaign_draft_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_campaign_draft_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_campaign_draft_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_campaign_draft_status_proto = out.File
+ file_google_ads_googleads_v17_enums_campaign_draft_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_campaign_draft_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_campaign_draft_status_proto_depIdxs = nil
}
diff --git a/enums/campaign_experiment_type.pb.go b/enums/campaign_experiment_type.pb.go
index 50c9cd83..c6593322 100644
--- a/enums/campaign_experiment_type.pb.go
+++ b/enums/campaign_experiment_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/campaign_experiment_type.proto
+// source: google/ads/googleads/v17/enums/campaign_experiment_type.proto
package enums
@@ -85,11 +85,11 @@ func (x CampaignExperimentTypeEnum_CampaignExperimentType) String() string {
}
func (CampaignExperimentTypeEnum_CampaignExperimentType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_enumTypes[0].Descriptor()
}
func (CampaignExperimentTypeEnum_CampaignExperimentType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_enumTypes[0]
}
func (x CampaignExperimentTypeEnum_CampaignExperimentType) Number() protoreflect.EnumNumber {
@@ -98,7 +98,7 @@ func (x CampaignExperimentTypeEnum_CampaignExperimentType) Number() protoreflect
// Deprecated: Use CampaignExperimentTypeEnum_CampaignExperimentType.Descriptor instead.
func (CampaignExperimentTypeEnum_CampaignExperimentType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing campaign experiment type.
@@ -111,7 +111,7 @@ type CampaignExperimentTypeEnum struct {
func (x *CampaignExperimentTypeEnum) Reset() {
*x = CampaignExperimentTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -124,7 +124,7 @@ func (x *CampaignExperimentTypeEnum) String() string {
func (*CampaignExperimentTypeEnum) ProtoMessage() {}
func (x *CampaignExperimentTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -137,18 +137,18 @@ func (x *CampaignExperimentTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CampaignExperimentTypeEnum.ProtoReflect.Descriptor instead.
func (*CampaignExperimentTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_campaign_experiment_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_campaign_experiment_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69,
0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
0x79, 0x0a, 0x1a, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x70, 0x65, 0x72,
0x69, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5b, 0x0a,
0x16, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d,
@@ -158,42 +158,42 @@ var file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_rawDesc =
0x09, 0x0a, 0x05, 0x44, 0x52, 0x41, 0x46, 0x54, 0x10, 0x03, 0x12, 0x0e, 0x0a, 0x0a, 0x45, 0x58,
0x50, 0x45, 0x52, 0x49, 0x4d, 0x45, 0x4e, 0x54, 0x10, 0x04, 0x42, 0xf5, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x1b, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x70, 0x65, 0x72,
0x69, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_rawDescData = file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_rawDescData = file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_goTypes = []interface{}{
- (CampaignExperimentTypeEnum_CampaignExperimentType)(0), // 0: google.ads.googleads.v16.enums.CampaignExperimentTypeEnum.CampaignExperimentType
- (*CampaignExperimentTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.CampaignExperimentTypeEnum
+var file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_goTypes = []interface{}{
+ (CampaignExperimentTypeEnum_CampaignExperimentType)(0), // 0: google.ads.googleads.v17.enums.CampaignExperimentTypeEnum.CampaignExperimentType
+ (*CampaignExperimentTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.CampaignExperimentTypeEnum
}
-var file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -201,13 +201,13 @@ var file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_init() }
-func file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_init() {
- if File_google_ads_googleads_v16_enums_campaign_experiment_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_init() }
+func file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_campaign_experiment_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CampaignExperimentTypeEnum); i {
case 0:
return &v.state
@@ -224,19 +224,19 @@ func file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_campaign_experiment_type_proto = out.File
- file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_campaign_experiment_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_campaign_experiment_type_proto = out.File
+ file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_campaign_experiment_type_proto_depIdxs = nil
}
diff --git a/enums/campaign_group_status.pb.go b/enums/campaign_group_status.pb.go
index 6ef45951..2bd5f1c1 100644
--- a/enums/campaign_group_status.pb.go
+++ b/enums/campaign_group_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/campaign_group_status.proto
+// source: google/ads/googleads/v17/enums/campaign_group_status.proto
package enums
@@ -75,11 +75,11 @@ func (x CampaignGroupStatusEnum_CampaignGroupStatus) String() string {
}
func (CampaignGroupStatusEnum_CampaignGroupStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_campaign_group_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_campaign_group_status_proto_enumTypes[0].Descriptor()
}
func (CampaignGroupStatusEnum_CampaignGroupStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_campaign_group_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_campaign_group_status_proto_enumTypes[0]
}
func (x CampaignGroupStatusEnum_CampaignGroupStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x CampaignGroupStatusEnum_CampaignGroupStatus) Number() protoreflect.EnumN
// Deprecated: Use CampaignGroupStatusEnum_CampaignGroupStatus.Descriptor instead.
func (CampaignGroupStatusEnum_CampaignGroupStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_campaign_group_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_campaign_group_status_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing CampaignGroup statuses.
@@ -101,7 +101,7 @@ type CampaignGroupStatusEnum struct {
func (x *CampaignGroupStatusEnum) Reset() {
*x = CampaignGroupStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_campaign_group_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_campaign_group_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *CampaignGroupStatusEnum) String() string {
func (*CampaignGroupStatusEnum) ProtoMessage() {}
func (x *CampaignGroupStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_campaign_group_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_campaign_group_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *CampaignGroupStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CampaignGroupStatusEnum.ProtoReflect.Descriptor instead.
func (*CampaignGroupStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_campaign_group_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_campaign_group_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_campaign_group_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_campaign_group_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_campaign_group_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_campaign_group_status_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f,
0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x68, 0x0a, 0x17,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x68, 0x0a, 0x17,
0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4d, 0x0a, 0x13, 0x43, 0x61, 0x6d, 0x70, 0x61,
0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f,
@@ -147,42 +147,42 @@ var file_google_ads_googleads_v16_enums_campaign_group_status_proto_rawDesc = []
0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d,
0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42, 0xf2, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, 0x43,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, 0x43,
0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_campaign_group_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_campaign_group_status_proto_rawDescData = file_google_ads_googleads_v16_enums_campaign_group_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_campaign_group_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_campaign_group_status_proto_rawDescData = file_google_ads_googleads_v17_enums_campaign_group_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_campaign_group_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_campaign_group_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_campaign_group_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_campaign_group_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_campaign_group_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_campaign_group_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_campaign_group_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_campaign_group_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_campaign_group_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_campaign_group_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_campaign_group_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_campaign_group_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_campaign_group_status_proto_goTypes = []interface{}{
- (CampaignGroupStatusEnum_CampaignGroupStatus)(0), // 0: google.ads.googleads.v16.enums.CampaignGroupStatusEnum.CampaignGroupStatus
- (*CampaignGroupStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.CampaignGroupStatusEnum
+var file_google_ads_googleads_v17_enums_campaign_group_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_group_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_group_status_proto_goTypes = []interface{}{
+ (CampaignGroupStatusEnum_CampaignGroupStatus)(0), // 0: google.ads.googleads.v17.enums.CampaignGroupStatusEnum.CampaignGroupStatus
+ (*CampaignGroupStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.CampaignGroupStatusEnum
}
-var file_google_ads_googleads_v16_enums_campaign_group_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_campaign_group_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_enums_campaign_group_status_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_campaign_group_status_proto_init() }
-func file_google_ads_googleads_v16_enums_campaign_group_status_proto_init() {
- if File_google_ads_googleads_v16_enums_campaign_group_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_campaign_group_status_proto_init() }
+func file_google_ads_googleads_v17_enums_campaign_group_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_campaign_group_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_campaign_group_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_campaign_group_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CampaignGroupStatusEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_enums_campaign_group_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_campaign_group_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_campaign_group_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_campaign_group_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_campaign_group_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_campaign_group_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_campaign_group_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_campaign_group_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_campaign_group_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_campaign_group_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_campaign_group_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_campaign_group_status_proto = out.File
- file_google_ads_googleads_v16_enums_campaign_group_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_campaign_group_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_campaign_group_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_campaign_group_status_proto = out.File
+ file_google_ads_googleads_v17_enums_campaign_group_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_campaign_group_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_campaign_group_status_proto_depIdxs = nil
}
diff --git a/enums/campaign_keyword_match_type.pb.go b/enums/campaign_keyword_match_type.pb.go
new file mode 100644
index 00000000..00cacf9e
--- /dev/null
+++ b/enums/campaign_keyword_match_type.pb.go
@@ -0,0 +1,227 @@
+// Copyright 2024 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+// Code generated by protoc-gen-go. DO NOT EDIT.
+// versions:
+// protoc-gen-go v1.34.1
+// protoc v4.24.4
+// source: google/ads/googleads/v17/enums/campaign_keyword_match_type.proto
+
+package enums
+
+import (
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
+ reflect "reflect"
+ sync "sync"
+)
+
+const (
+ // Verify that this generated code is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
+ // Verify that runtime/protoimpl is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
+)
+
+// Enum describing keyword match type of Campaign.
+type CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType int32
+
+const (
+ // No value has been specified.
+ CampaignKeywordMatchTypeEnum_UNSPECIFIED CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType = 0
+ // Used for return value only. Represents value unknown in this version.
+ CampaignKeywordMatchTypeEnum_UNKNOWN CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType = 1
+ // Campaign level broad match.
+ CampaignKeywordMatchTypeEnum_BROAD CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType = 2
+)
+
+// Enum value maps for CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType.
+var (
+ CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType_name = map[int32]string{
+ 0: "UNSPECIFIED",
+ 1: "UNKNOWN",
+ 2: "BROAD",
+ }
+ CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType_value = map[string]int32{
+ "UNSPECIFIED": 0,
+ "UNKNOWN": 1,
+ "BROAD": 2,
+ }
+)
+
+func (x CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType) Enum() *CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType {
+ p := new(CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType)
+ *p = x
+ return p
+}
+
+func (x CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType) String() string {
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+}
+
+func (CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType) Descriptor() protoreflect.EnumDescriptor {
+ return file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_enumTypes[0].Descriptor()
+}
+
+func (CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType) Type() protoreflect.EnumType {
+ return &file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_enumTypes[0]
+}
+
+func (x CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
+// Deprecated: Use CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType.Descriptor instead.
+func (CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType) EnumDescriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_rawDescGZIP(), []int{0, 0}
+}
+
+// Container for enum describing keyword match type.
+type CampaignKeywordMatchTypeEnum struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+}
+
+func (x *CampaignKeywordMatchTypeEnum) Reset() {
+ *x = CampaignKeywordMatchTypeEnum{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_msgTypes[0]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *CampaignKeywordMatchTypeEnum) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*CampaignKeywordMatchTypeEnum) ProtoMessage() {}
+
+func (x *CampaignKeywordMatchTypeEnum) ProtoReflect() protoreflect.Message {
+ mi := &file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_msgTypes[0]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use CampaignKeywordMatchTypeEnum.ProtoReflect.Descriptor instead.
+func (*CampaignKeywordMatchTypeEnum) Descriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_rawDescGZIP(), []int{0}
+}
+
+var File_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto protoreflect.FileDescriptor
+
+var file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_rawDesc = []byte{
+ 0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72,
+ 0x64, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f,
+ 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6d, 0x73, 0x22, 0x63, 0x0a, 0x1c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4b, 0x65,
+ 0x79, 0x77, 0x6f, 0x72, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e,
+ 0x75, 0x6d, 0x22, 0x43, 0x0a, 0x18, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4b, 0x65,
+ 0x79, 0x77, 0x6f, 0x72, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f,
+ 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12,
+ 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05,
+ 0x42, 0x52, 0x4f, 0x41, 0x44, 0x10, 0x02, 0x42, 0xf7, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d,
+ 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x4d,
+ 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
+ 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
+ 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
+ 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
+ 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+}
+
+var (
+ file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_rawDescData = file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_rawDesc
+)
+
+func file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_rawDescData)
+ })
+ return file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_goTypes = []interface{}{
+ (CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType)(0), // 0: google.ads.googleads.v17.enums.CampaignKeywordMatchTypeEnum.CampaignKeywordMatchType
+ (*CampaignKeywordMatchTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.CampaignKeywordMatchTypeEnum
+}
+var file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_depIdxs = []int32{
+ 0, // [0:0] is the sub-list for method output_type
+ 0, // [0:0] is the sub-list for method input_type
+ 0, // [0:0] is the sub-list for extension type_name
+ 0, // [0:0] is the sub-list for extension extendee
+ 0, // [0:0] is the sub-list for field type_name
+}
+
+func init() { file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_init() }
+func file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto != nil {
+ return
+ }
+ if !protoimpl.UnsafeEnabled {
+ file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*CampaignKeywordMatchTypeEnum); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ }
+ type x struct{}
+ out := protoimpl.TypeBuilder{
+ File: protoimpl.DescBuilder{
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
+ RawDescriptor: file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_rawDesc,
+ NumEnums: 1,
+ NumMessages: 1,
+ NumExtensions: 0,
+ NumServices: 0,
+ },
+ GoTypes: file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_msgTypes,
+ }.Build()
+ File_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto = out.File
+ file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_campaign_keyword_match_type_proto_depIdxs = nil
+}
diff --git a/enums/campaign_primary_status.pb.go b/enums/campaign_primary_status.pb.go
index e9bbc396..42118bdd 100644
--- a/enums/campaign_primary_status.pb.go
+++ b/enums/campaign_primary_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/campaign_primary_status.proto
+// source: google/ads/googleads/v17/enums/campaign_primary_status.proto
package enums
@@ -109,11 +109,11 @@ func (x CampaignPrimaryStatusEnum_CampaignPrimaryStatus) String() string {
}
func (CampaignPrimaryStatusEnum_CampaignPrimaryStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_campaign_primary_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_campaign_primary_status_proto_enumTypes[0].Descriptor()
}
func (CampaignPrimaryStatusEnum_CampaignPrimaryStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_campaign_primary_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_campaign_primary_status_proto_enumTypes[0]
}
func (x CampaignPrimaryStatusEnum_CampaignPrimaryStatus) Number() protoreflect.EnumNumber {
@@ -122,7 +122,7 @@ func (x CampaignPrimaryStatusEnum_CampaignPrimaryStatus) Number() protoreflect.E
// Deprecated: Use CampaignPrimaryStatusEnum_CampaignPrimaryStatus.Descriptor instead.
func (CampaignPrimaryStatusEnum_CampaignPrimaryStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_campaign_primary_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_campaign_primary_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible campaign primary status.
@@ -135,7 +135,7 @@ type CampaignPrimaryStatusEnum struct {
func (x *CampaignPrimaryStatusEnum) Reset() {
*x = CampaignPrimaryStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_campaign_primary_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_campaign_primary_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -148,7 +148,7 @@ func (x *CampaignPrimaryStatusEnum) String() string {
func (*CampaignPrimaryStatusEnum) ProtoMessage() {}
func (x *CampaignPrimaryStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_campaign_primary_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_campaign_primary_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -161,18 +161,18 @@ func (x *CampaignPrimaryStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CampaignPrimaryStatusEnum.ProtoReflect.Descriptor instead.
func (*CampaignPrimaryStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_campaign_primary_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_campaign_primary_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_campaign_primary_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_campaign_primary_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_campaign_primary_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_campaign_primary_status_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72,
0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xd2,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xd2,
0x01, 0x0a, 0x19, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x50, 0x72, 0x69, 0x6d, 0x61,
0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb4, 0x01, 0x0a,
0x15, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79,
@@ -188,42 +188,42 @@ var file_google_ads_googleads_v16_enums_campaign_primary_status_proto_rawDesc =
0x09, 0x12, 0x10, 0x0a, 0x0c, 0x4e, 0x4f, 0x54, 0x5f, 0x45, 0x4c, 0x49, 0x47, 0x49, 0x42, 0x4c,
0x45, 0x10, 0x0a, 0x42, 0xf4, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x43, 0x61, 0x6d, 0x70,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x43, 0x61, 0x6d, 0x70,
0x61, 0x69, 0x67, 0x6e, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75,
0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73,
- 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45,
+ 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
- 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_campaign_primary_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_campaign_primary_status_proto_rawDescData = file_google_ads_googleads_v16_enums_campaign_primary_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_campaign_primary_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_campaign_primary_status_proto_rawDescData = file_google_ads_googleads_v17_enums_campaign_primary_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_campaign_primary_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_campaign_primary_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_campaign_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_campaign_primary_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_campaign_primary_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_campaign_primary_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_campaign_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_campaign_primary_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_campaign_primary_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_campaign_primary_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_campaign_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_campaign_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_campaign_primary_status_proto_goTypes = []interface{}{
- (CampaignPrimaryStatusEnum_CampaignPrimaryStatus)(0), // 0: google.ads.googleads.v16.enums.CampaignPrimaryStatusEnum.CampaignPrimaryStatus
- (*CampaignPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.CampaignPrimaryStatusEnum
+var file_google_ads_googleads_v17_enums_campaign_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_primary_status_proto_goTypes = []interface{}{
+ (CampaignPrimaryStatusEnum_CampaignPrimaryStatus)(0), // 0: google.ads.googleads.v17.enums.CampaignPrimaryStatusEnum.CampaignPrimaryStatus
+ (*CampaignPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.CampaignPrimaryStatusEnum
}
-var file_google_ads_googleads_v16_enums_campaign_primary_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_campaign_primary_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -231,13 +231,13 @@ var file_google_ads_googleads_v16_enums_campaign_primary_status_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_campaign_primary_status_proto_init() }
-func file_google_ads_googleads_v16_enums_campaign_primary_status_proto_init() {
- if File_google_ads_googleads_v16_enums_campaign_primary_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_campaign_primary_status_proto_init() }
+func file_google_ads_googleads_v17_enums_campaign_primary_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_campaign_primary_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_campaign_primary_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_campaign_primary_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CampaignPrimaryStatusEnum); i {
case 0:
return &v.state
@@ -254,19 +254,19 @@ func file_google_ads_googleads_v16_enums_campaign_primary_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_campaign_primary_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_campaign_primary_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_campaign_primary_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_campaign_primary_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_campaign_primary_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_campaign_primary_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_campaign_primary_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_campaign_primary_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_campaign_primary_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_campaign_primary_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_campaign_primary_status_proto = out.File
- file_google_ads_googleads_v16_enums_campaign_primary_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_campaign_primary_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_campaign_primary_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_campaign_primary_status_proto = out.File
+ file_google_ads_googleads_v17_enums_campaign_primary_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_campaign_primary_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_campaign_primary_status_proto_depIdxs = nil
}
diff --git a/enums/campaign_primary_status_reason.pb.go b/enums/campaign_primary_status_reason.pb.go
index 5e5ff85d..49186c5a 100644
--- a/enums/campaign_primary_status_reason.pb.go
+++ b/enums/campaign_primary_status_reason.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/campaign_primary_status_reason.proto
+// source: google/ads/googleads/v17/enums/campaign_primary_status_reason.proto
package enums
@@ -224,11 +224,11 @@ func (x CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason) String() st
}
func (CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_enumTypes[0].Descriptor()
}
func (CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_enumTypes[0]
}
func (x CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason) Number() protoreflect.EnumNumber {
@@ -237,7 +237,7 @@ func (x CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason) Number() pr
// Deprecated: Use CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason.Descriptor instead.
func (CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible campaign primary status reasons.
@@ -250,7 +250,7 @@ type CampaignPrimaryStatusReasonEnum struct {
func (x *CampaignPrimaryStatusReasonEnum) Reset() {
*x = CampaignPrimaryStatusReasonEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -263,7 +263,7 @@ func (x *CampaignPrimaryStatusReasonEnum) String() string {
func (*CampaignPrimaryStatusReasonEnum) ProtoMessage() {}
func (x *CampaignPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -276,18 +276,18 @@ func (x *CampaignPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CampaignPrimaryStatusReasonEnum.ProtoReflect.Descriptor instead.
func (*CampaignPrimaryStatusReasonEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72,
0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xf2, 0x08, 0x0a, 0x1f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69,
0x67, 0x6e, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52,
0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xce, 0x08, 0x0a, 0x1b, 0x43, 0x61,
@@ -361,42 +361,42 @@ var file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_raw
0x25, 0x12, 0x17, 0x0a, 0x13, 0x41, 0x53, 0x53, 0x45, 0x54, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50,
0x53, 0x5f, 0x50, 0x41, 0x55, 0x53, 0x45, 0x44, 0x10, 0x26, 0x42, 0xfa, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x20, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x50, 0x72, 0x69, 0x6d, 0x61,
0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_rawDescData = file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_rawDesc
+ file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_rawDescData = file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_goTypes = []interface{}{
- (CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason)(0), // 0: google.ads.googleads.v16.enums.CampaignPrimaryStatusReasonEnum.CampaignPrimaryStatusReason
- (*CampaignPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v16.enums.CampaignPrimaryStatusReasonEnum
+var file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_goTypes = []interface{}{
+ (CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason)(0), // 0: google.ads.googleads.v17.enums.CampaignPrimaryStatusReasonEnum.CampaignPrimaryStatusReason
+ (*CampaignPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v17.enums.CampaignPrimaryStatusReasonEnum
}
-var file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -404,13 +404,13 @@ var file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_init() }
-func file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_init() {
- if File_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_init() }
+func file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_init() {
+ if File_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CampaignPrimaryStatusReasonEnum); i {
case 0:
return &v.state
@@ -427,19 +427,19 @@ func file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto = out.File
- file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_campaign_primary_status_reason_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto = out.File
+ file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_campaign_primary_status_reason_proto_depIdxs = nil
}
diff --git a/enums/campaign_serving_status.pb.go b/enums/campaign_serving_status.pb.go
index 787f8e58..d2cc417e 100644
--- a/enums/campaign_serving_status.pb.go
+++ b/enums/campaign_serving_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/campaign_serving_status.proto
+// source: google/ads/googleads/v17/enums/campaign_serving_status.proto
package enums
@@ -89,11 +89,11 @@ func (x CampaignServingStatusEnum_CampaignServingStatus) String() string {
}
func (CampaignServingStatusEnum_CampaignServingStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_campaign_serving_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_campaign_serving_status_proto_enumTypes[0].Descriptor()
}
func (CampaignServingStatusEnum_CampaignServingStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_campaign_serving_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_campaign_serving_status_proto_enumTypes[0]
}
func (x CampaignServingStatusEnum_CampaignServingStatus) Number() protoreflect.EnumNumber {
@@ -102,7 +102,7 @@ func (x CampaignServingStatusEnum_CampaignServingStatus) Number() protoreflect.E
// Deprecated: Use CampaignServingStatusEnum_CampaignServingStatus.Descriptor instead.
func (CampaignServingStatusEnum_CampaignServingStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_campaign_serving_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_campaign_serving_status_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing Campaign serving statuses.
@@ -115,7 +115,7 @@ type CampaignServingStatusEnum struct {
func (x *CampaignServingStatusEnum) Reset() {
*x = CampaignServingStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_campaign_serving_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_campaign_serving_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -128,7 +128,7 @@ func (x *CampaignServingStatusEnum) String() string {
func (*CampaignServingStatusEnum) ProtoMessage() {}
func (x *CampaignServingStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_campaign_serving_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_campaign_serving_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -141,18 +141,18 @@ func (x *CampaignServingStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CampaignServingStatusEnum.ProtoReflect.Descriptor instead.
func (*CampaignServingStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_campaign_serving_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_campaign_serving_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_campaign_serving_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_campaign_serving_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_campaign_serving_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_campaign_serving_status_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x6e,
0x67, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x90,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x90,
0x01, 0x0a, 0x19, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69,
0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x73, 0x0a, 0x15,
0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x53,
@@ -164,41 +164,41 @@ var file_google_ads_googleads_v16_enums_campaign_serving_status_proto_rawDesc =
0x10, 0x05, 0x12, 0x0d, 0x0a, 0x09, 0x53, 0x55, 0x53, 0x50, 0x45, 0x4e, 0x44, 0x45, 0x44, 0x10,
0x06, 0x42, 0xf4, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69,
0x67, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_campaign_serving_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_campaign_serving_status_proto_rawDescData = file_google_ads_googleads_v16_enums_campaign_serving_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_campaign_serving_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_campaign_serving_status_proto_rawDescData = file_google_ads_googleads_v17_enums_campaign_serving_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_campaign_serving_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_campaign_serving_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_campaign_serving_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_campaign_serving_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_campaign_serving_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_campaign_serving_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_campaign_serving_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_campaign_serving_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_campaign_serving_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_campaign_serving_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_campaign_serving_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_campaign_serving_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_campaign_serving_status_proto_goTypes = []interface{}{
- (CampaignServingStatusEnum_CampaignServingStatus)(0), // 0: google.ads.googleads.v16.enums.CampaignServingStatusEnum.CampaignServingStatus
- (*CampaignServingStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.CampaignServingStatusEnum
+var file_google_ads_googleads_v17_enums_campaign_serving_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_serving_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_serving_status_proto_goTypes = []interface{}{
+ (CampaignServingStatusEnum_CampaignServingStatus)(0), // 0: google.ads.googleads.v17.enums.CampaignServingStatusEnum.CampaignServingStatus
+ (*CampaignServingStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.CampaignServingStatusEnum
}
-var file_google_ads_googleads_v16_enums_campaign_serving_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_campaign_serving_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -206,13 +206,13 @@ var file_google_ads_googleads_v16_enums_campaign_serving_status_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_campaign_serving_status_proto_init() }
-func file_google_ads_googleads_v16_enums_campaign_serving_status_proto_init() {
- if File_google_ads_googleads_v16_enums_campaign_serving_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_campaign_serving_status_proto_init() }
+func file_google_ads_googleads_v17_enums_campaign_serving_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_campaign_serving_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_campaign_serving_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_campaign_serving_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CampaignServingStatusEnum); i {
case 0:
return &v.state
@@ -229,19 +229,19 @@ func file_google_ads_googleads_v16_enums_campaign_serving_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_campaign_serving_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_campaign_serving_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_campaign_serving_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_campaign_serving_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_campaign_serving_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_campaign_serving_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_campaign_serving_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_campaign_serving_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_campaign_serving_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_campaign_serving_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_campaign_serving_status_proto = out.File
- file_google_ads_googleads_v16_enums_campaign_serving_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_campaign_serving_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_campaign_serving_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_campaign_serving_status_proto = out.File
+ file_google_ads_googleads_v17_enums_campaign_serving_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_campaign_serving_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_campaign_serving_status_proto_depIdxs = nil
}
diff --git a/enums/campaign_shared_set_status.pb.go b/enums/campaign_shared_set_status.pb.go
index 49e44bae..c40a8113 100644
--- a/enums/campaign_shared_set_status.pb.go
+++ b/enums/campaign_shared_set_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/campaign_shared_set_status.proto
+// source: google/ads/googleads/v17/enums/campaign_shared_set_status.proto
package enums
@@ -75,11 +75,11 @@ func (x CampaignSharedSetStatusEnum_CampaignSharedSetStatus) String() string {
}
func (CampaignSharedSetStatusEnum_CampaignSharedSetStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_enumTypes[0].Descriptor()
}
func (CampaignSharedSetStatusEnum_CampaignSharedSetStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_enumTypes[0]
}
func (x CampaignSharedSetStatusEnum_CampaignSharedSetStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x CampaignSharedSetStatusEnum_CampaignSharedSetStatus) Number() protorefle
// Deprecated: Use CampaignSharedSetStatusEnum_CampaignSharedSetStatus.Descriptor instead.
func (CampaignSharedSetStatusEnum_CampaignSharedSetStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing types of campaign shared set statuses.
@@ -101,7 +101,7 @@ type CampaignSharedSetStatusEnum struct {
func (x *CampaignSharedSetStatusEnum) Reset() {
*x = CampaignSharedSetStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *CampaignSharedSetStatusEnum) String() string {
func (*CampaignSharedSetStatusEnum) ProtoMessage() {}
func (x *CampaignSharedSetStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *CampaignSharedSetStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CampaignSharedSetStatusEnum.ProtoReflect.Descriptor instead.
func (*CampaignSharedSetStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_campaign_shared_set_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_campaign_shared_set_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64,
0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x22, 0x70, 0x0a, 0x1b, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61,
0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x51, 0x0a, 0x17, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_rawDesc
0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45,
0x44, 0x10, 0x03, 0x42, 0xf6, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x43, 0x61, 0x6d, 0x70,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x43, 0x61, 0x6d, 0x70,
0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_rawDescData = file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_rawDescData = file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_goTypes = []interface{}{
- (CampaignSharedSetStatusEnum_CampaignSharedSetStatus)(0), // 0: google.ads.googleads.v16.enums.CampaignSharedSetStatusEnum.CampaignSharedSetStatus
- (*CampaignSharedSetStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.CampaignSharedSetStatusEnum
+var file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_goTypes = []interface{}{
+ (CampaignSharedSetStatusEnum_CampaignSharedSetStatus)(0), // 0: google.ads.googleads.v17.enums.CampaignSharedSetStatusEnum.CampaignSharedSetStatus
+ (*CampaignSharedSetStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.CampaignSharedSetStatusEnum
}
-var file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_init() }
-func file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_init() {
- if File_google_ads_googleads_v16_enums_campaign_shared_set_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_init() }
+func file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_campaign_shared_set_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CampaignSharedSetStatusEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_campaign_shared_set_status_proto = out.File
- file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_campaign_shared_set_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_campaign_shared_set_status_proto = out.File
+ file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_campaign_shared_set_status_proto_depIdxs = nil
}
diff --git a/enums/campaign_status.pb.go b/enums/campaign_status.pb.go
index 3ed906d4..3ed39c07 100644
--- a/enums/campaign_status.pb.go
+++ b/enums/campaign_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/campaign_status.proto
+// source: google/ads/googleads/v17/enums/campaign_status.proto
package enums
@@ -79,11 +79,11 @@ func (x CampaignStatusEnum_CampaignStatus) String() string {
}
func (CampaignStatusEnum_CampaignStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_campaign_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_campaign_status_proto_enumTypes[0].Descriptor()
}
func (CampaignStatusEnum_CampaignStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_campaign_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_campaign_status_proto_enumTypes[0]
}
func (x CampaignStatusEnum_CampaignStatus) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x CampaignStatusEnum_CampaignStatus) Number() protoreflect.EnumNumber {
// Deprecated: Use CampaignStatusEnum_CampaignStatus.Descriptor instead.
func (CampaignStatusEnum_CampaignStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_campaign_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_campaign_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of a campaign.
@@ -105,7 +105,7 @@ type CampaignStatusEnum struct {
func (x *CampaignStatusEnum) Reset() {
*x = CampaignStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_campaign_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_campaign_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *CampaignStatusEnum) String() string {
func (*CampaignStatusEnum) ProtoMessage() {}
func (x *CampaignStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_campaign_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_campaign_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,17 +131,17 @@ func (x *CampaignStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CampaignStatusEnum.ProtoReflect.Descriptor instead.
func (*CampaignStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_campaign_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_campaign_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_campaign_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_campaign_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_campaign_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_campaign_status_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6a, 0x0a, 0x12, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69,
0x67, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x54, 0x0a, 0x0e,
0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f,
@@ -151,41 +151,41 @@ var file_google_ads_googleads_v16_enums_campaign_status_proto_rawDesc = []byte{
0x53, 0x45, 0x44, 0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44,
0x10, 0x04, 0x42, 0xed, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x43, 0x61, 0x6d, 0x70, 0x61,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x43, 0x61, 0x6d, 0x70, 0x61,
0x69, 0x67, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_campaign_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_campaign_status_proto_rawDescData = file_google_ads_googleads_v16_enums_campaign_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_campaign_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_campaign_status_proto_rawDescData = file_google_ads_googleads_v17_enums_campaign_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_campaign_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_campaign_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_campaign_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_campaign_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_campaign_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_campaign_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_campaign_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_campaign_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_campaign_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_campaign_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_campaign_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_campaign_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_campaign_status_proto_goTypes = []interface{}{
- (CampaignStatusEnum_CampaignStatus)(0), // 0: google.ads.googleads.v16.enums.CampaignStatusEnum.CampaignStatus
- (*CampaignStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.CampaignStatusEnum
+var file_google_ads_googleads_v17_enums_campaign_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_campaign_status_proto_goTypes = []interface{}{
+ (CampaignStatusEnum_CampaignStatus)(0), // 0: google.ads.googleads.v17.enums.CampaignStatusEnum.CampaignStatus
+ (*CampaignStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.CampaignStatusEnum
}
-var file_google_ads_googleads_v16_enums_campaign_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_campaign_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -193,13 +193,13 @@ var file_google_ads_googleads_v16_enums_campaign_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_campaign_status_proto_init() }
-func file_google_ads_googleads_v16_enums_campaign_status_proto_init() {
- if File_google_ads_googleads_v16_enums_campaign_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_campaign_status_proto_init() }
+func file_google_ads_googleads_v17_enums_campaign_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_campaign_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_campaign_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_campaign_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CampaignStatusEnum); i {
case 0:
return &v.state
@@ -216,19 +216,19 @@ func file_google_ads_googleads_v16_enums_campaign_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_campaign_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_campaign_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_campaign_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_campaign_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_campaign_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_campaign_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_campaign_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_campaign_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_campaign_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_campaign_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_campaign_status_proto = out.File
- file_google_ads_googleads_v16_enums_campaign_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_campaign_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_campaign_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_campaign_status_proto = out.File
+ file_google_ads_googleads_v17_enums_campaign_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_campaign_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_campaign_status_proto_depIdxs = nil
}
diff --git a/enums/chain_relationship_type.pb.go b/enums/chain_relationship_type.pb.go
index e9a08ea9..2f105d7a 100644
--- a/enums/chain_relationship_type.pb.go
+++ b/enums/chain_relationship_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/chain_relationship_type.proto
+// source: google/ads/googleads/v17/enums/chain_relationship_type.proto
package enums
@@ -75,11 +75,11 @@ func (x ChainRelationshipTypeEnum_ChainRelationshipType) String() string {
}
func (ChainRelationshipTypeEnum_ChainRelationshipType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_chain_relationship_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_chain_relationship_type_proto_enumTypes[0].Descriptor()
}
func (ChainRelationshipTypeEnum_ChainRelationshipType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_chain_relationship_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_chain_relationship_type_proto_enumTypes[0]
}
func (x ChainRelationshipTypeEnum_ChainRelationshipType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x ChainRelationshipTypeEnum_ChainRelationshipType) Number() protoreflect.E
// Deprecated: Use ChainRelationshipTypeEnum_ChainRelationshipType.Descriptor instead.
func (ChainRelationshipTypeEnum_ChainRelationshipType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_chain_relationship_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_chain_relationship_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible types of a relationship.
@@ -101,7 +101,7 @@ type ChainRelationshipTypeEnum struct {
func (x *ChainRelationshipTypeEnum) Reset() {
*x = ChainRelationshipTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_chain_relationship_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_chain_relationship_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *ChainRelationshipTypeEnum) String() string {
func (*ChainRelationshipTypeEnum) ProtoMessage() {}
func (x *ChainRelationshipTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_chain_relationship_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_chain_relationship_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *ChainRelationshipTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChainRelationshipTypeEnum.ProtoReflect.Descriptor instead.
func (*ChainRelationshipTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_chain_relationship_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_chain_relationship_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_chain_relationship_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_chain_relationship_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_chain_relationship_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_chain_relationship_type_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x5f, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73,
0x68, 0x69, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7b,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7b,
0x0a, 0x19, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73,
0x68, 0x69, 0x70, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5e, 0x0a, 0x15, 0x43,
0x68, 0x61, 0x69, 0x6e, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x68, 0x69, 0x70,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_enums_chain_relationship_type_proto_rawDesc =
0x52, 0x53, 0x10, 0x02, 0x12, 0x15, 0x0a, 0x11, 0x47, 0x45, 0x4e, 0x45, 0x52, 0x41, 0x4c, 0x5f,
0x52, 0x45, 0x54, 0x41, 0x49, 0x4c, 0x45, 0x52, 0x53, 0x10, 0x03, 0x42, 0xf4, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x1a, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x52, 0x65, 0x6c, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x73, 0x68, 0x69, 0x70, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_chain_relationship_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_chain_relationship_type_proto_rawDescData = file_google_ads_googleads_v16_enums_chain_relationship_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_chain_relationship_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_chain_relationship_type_proto_rawDescData = file_google_ads_googleads_v17_enums_chain_relationship_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_chain_relationship_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_chain_relationship_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_chain_relationship_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_chain_relationship_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_chain_relationship_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_chain_relationship_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_chain_relationship_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_chain_relationship_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_chain_relationship_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_chain_relationship_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_chain_relationship_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_chain_relationship_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_chain_relationship_type_proto_goTypes = []interface{}{
- (ChainRelationshipTypeEnum_ChainRelationshipType)(0), // 0: google.ads.googleads.v16.enums.ChainRelationshipTypeEnum.ChainRelationshipType
- (*ChainRelationshipTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ChainRelationshipTypeEnum
+var file_google_ads_googleads_v17_enums_chain_relationship_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_chain_relationship_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_chain_relationship_type_proto_goTypes = []interface{}{
+ (ChainRelationshipTypeEnum_ChainRelationshipType)(0), // 0: google.ads.googleads.v17.enums.ChainRelationshipTypeEnum.ChainRelationshipType
+ (*ChainRelationshipTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ChainRelationshipTypeEnum
}
-var file_google_ads_googleads_v16_enums_chain_relationship_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_chain_relationship_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_chain_relationship_type_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_chain_relationship_type_proto_init() }
-func file_google_ads_googleads_v16_enums_chain_relationship_type_proto_init() {
- if File_google_ads_googleads_v16_enums_chain_relationship_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_chain_relationship_type_proto_init() }
+func file_google_ads_googleads_v17_enums_chain_relationship_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_chain_relationship_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_chain_relationship_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_chain_relationship_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ChainRelationshipTypeEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_chain_relationship_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_chain_relationship_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_chain_relationship_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_chain_relationship_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_chain_relationship_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_chain_relationship_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_chain_relationship_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_chain_relationship_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_chain_relationship_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_chain_relationship_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_chain_relationship_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_chain_relationship_type_proto = out.File
- file_google_ads_googleads_v16_enums_chain_relationship_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_chain_relationship_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_chain_relationship_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_chain_relationship_type_proto = out.File
+ file_google_ads_googleads_v17_enums_chain_relationship_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_chain_relationship_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_chain_relationship_type_proto_depIdxs = nil
}
diff --git a/enums/change_client_type.pb.go b/enums/change_client_type.pb.go
index 31cf32d1..87fe9baf 100644
--- a/enums/change_client_type.pb.go
+++ b/enums/change_client_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/change_client_type.proto
+// source: google/ads/googleads/v17/enums/change_client_type.proto
package enums
@@ -125,11 +125,11 @@ func (x ChangeClientTypeEnum_ChangeClientType) String() string {
}
func (ChangeClientTypeEnum_ChangeClientType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_change_client_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_change_client_type_proto_enumTypes[0].Descriptor()
}
func (ChangeClientTypeEnum_ChangeClientType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_change_client_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_change_client_type_proto_enumTypes[0]
}
func (x ChangeClientTypeEnum_ChangeClientType) Number() protoreflect.EnumNumber {
@@ -138,7 +138,7 @@ func (x ChangeClientTypeEnum_ChangeClientType) Number() protoreflect.EnumNumber
// Deprecated: Use ChangeClientTypeEnum_ChangeClientType.Descriptor instead.
func (ChangeClientTypeEnum_ChangeClientType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_change_client_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_change_client_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the sources that the change event resource
@@ -152,7 +152,7 @@ type ChangeClientTypeEnum struct {
func (x *ChangeClientTypeEnum) Reset() {
*x = ChangeClientTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_change_client_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_change_client_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -165,7 +165,7 @@ func (x *ChangeClientTypeEnum) String() string {
func (*ChangeClientTypeEnum) ProtoMessage() {}
func (x *ChangeClientTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_change_client_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_change_client_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -178,18 +178,18 @@ func (x *ChangeClientTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChangeClientTypeEnum.ProtoReflect.Descriptor instead.
func (*ChangeClientTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_change_client_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_change_client_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_change_client_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_change_client_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_change_client_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_change_client_type_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x74,
0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x9a, 0x03, 0x0a, 0x14, 0x43, 0x68,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x9a, 0x03, 0x0a, 0x14, 0x43, 0x68,
0x61, 0x6e, 0x67, 0x65, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0x81, 0x03, 0x0a, 0x10, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6c, 0x69,
0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45,
@@ -217,41 +217,41 @@ var file_google_ads_googleads_v16_enums_change_client_type_proto_rawDesc = []byt
0x44, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x53, 0x5f, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x50,
0x54, 0x49, 0x4f, 0x4e, 0x10, 0x0e, 0x42, 0xef, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x43,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x43,
0x68, 0x61, 0x6e, 0x67, 0x65, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_change_client_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_change_client_type_proto_rawDescData = file_google_ads_googleads_v16_enums_change_client_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_change_client_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_change_client_type_proto_rawDescData = file_google_ads_googleads_v17_enums_change_client_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_change_client_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_change_client_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_change_client_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_change_client_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_change_client_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_change_client_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_change_client_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_change_client_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_change_client_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_change_client_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_change_client_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_change_client_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_change_client_type_proto_goTypes = []interface{}{
- (ChangeClientTypeEnum_ChangeClientType)(0), // 0: google.ads.googleads.v16.enums.ChangeClientTypeEnum.ChangeClientType
- (*ChangeClientTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ChangeClientTypeEnum
+var file_google_ads_googleads_v17_enums_change_client_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_change_client_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_change_client_type_proto_goTypes = []interface{}{
+ (ChangeClientTypeEnum_ChangeClientType)(0), // 0: google.ads.googleads.v17.enums.ChangeClientTypeEnum.ChangeClientType
+ (*ChangeClientTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ChangeClientTypeEnum
}
-var file_google_ads_googleads_v16_enums_change_client_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_change_client_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -259,13 +259,13 @@ var file_google_ads_googleads_v16_enums_change_client_type_proto_depIdxs = []int
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_change_client_type_proto_init() }
-func file_google_ads_googleads_v16_enums_change_client_type_proto_init() {
- if File_google_ads_googleads_v16_enums_change_client_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_change_client_type_proto_init() }
+func file_google_ads_googleads_v17_enums_change_client_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_change_client_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_change_client_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_change_client_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ChangeClientTypeEnum); i {
case 0:
return &v.state
@@ -282,19 +282,19 @@ func file_google_ads_googleads_v16_enums_change_client_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_change_client_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_change_client_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_change_client_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_change_client_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_change_client_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_change_client_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_change_client_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_change_client_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_change_client_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_change_client_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_change_client_type_proto = out.File
- file_google_ads_googleads_v16_enums_change_client_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_change_client_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_change_client_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_change_client_type_proto = out.File
+ file_google_ads_googleads_v17_enums_change_client_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_change_client_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_change_client_type_proto_depIdxs = nil
}
diff --git a/enums/change_event_resource_type.pb.go b/enums/change_event_resource_type.pb.go
index 118d653d..f88d50f7 100644
--- a/enums/change_event_resource_type.pb.go
+++ b/enums/change_event_resource_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/change_event_resource_type.proto
+// source: google/ads/googleads/v17/enums/change_event_resource_type.proto
package enums
@@ -144,11 +144,11 @@ func (x ChangeEventResourceTypeEnum_ChangeEventResourceType) String() string {
}
func (ChangeEventResourceTypeEnum_ChangeEventResourceType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_change_event_resource_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_change_event_resource_type_proto_enumTypes[0].Descriptor()
}
func (ChangeEventResourceTypeEnum_ChangeEventResourceType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_change_event_resource_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_change_event_resource_type_proto_enumTypes[0]
}
func (x ChangeEventResourceTypeEnum_ChangeEventResourceType) Number() protoreflect.EnumNumber {
@@ -157,7 +157,7 @@ func (x ChangeEventResourceTypeEnum_ChangeEventResourceType) Number() protorefle
// Deprecated: Use ChangeEventResourceTypeEnum_ChangeEventResourceType.Descriptor instead.
func (ChangeEventResourceTypeEnum_ChangeEventResourceType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_change_event_resource_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_change_event_resource_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing supported resource types for the ChangeEvent
@@ -171,7 +171,7 @@ type ChangeEventResourceTypeEnum struct {
func (x *ChangeEventResourceTypeEnum) Reset() {
*x = ChangeEventResourceTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_change_event_resource_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_change_event_resource_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -184,7 +184,7 @@ func (x *ChangeEventResourceTypeEnum) String() string {
func (*ChangeEventResourceTypeEnum) ProtoMessage() {}
func (x *ChangeEventResourceTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_change_event_resource_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_change_event_resource_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -197,18 +197,18 @@ func (x *ChangeEventResourceTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChangeEventResourceTypeEnum.ProtoReflect.Descriptor instead.
func (*ChangeEventResourceTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_change_event_resource_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_change_event_resource_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_change_event_resource_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_change_event_resource_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_change_event_resource_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_change_event_resource_type_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x65,
0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x22, 0xae, 0x03, 0x0a, 0x1b, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x76, 0x65, 0x6e,
0x74, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x8e, 0x03, 0x0a, 0x17, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x76, 0x65, 0x6e,
@@ -238,42 +238,42 @@ var file_google_ads_googleads_v16_enums_change_event_resource_type_proto_rawDesc
0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x5f, 0x41, 0x53, 0x53, 0x45, 0x54, 0x5f, 0x53, 0x45, 0x54,
0x10, 0x14, 0x42, 0xf6, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x43, 0x68, 0x61, 0x6e, 0x67,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x43, 0x68, 0x61, 0x6e, 0x67,
0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79,
0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_change_event_resource_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_change_event_resource_type_proto_rawDescData = file_google_ads_googleads_v16_enums_change_event_resource_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_change_event_resource_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_change_event_resource_type_proto_rawDescData = file_google_ads_googleads_v17_enums_change_event_resource_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_change_event_resource_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_change_event_resource_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_change_event_resource_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_change_event_resource_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_change_event_resource_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_change_event_resource_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_change_event_resource_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_change_event_resource_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_change_event_resource_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_change_event_resource_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_change_event_resource_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_change_event_resource_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_change_event_resource_type_proto_goTypes = []interface{}{
- (ChangeEventResourceTypeEnum_ChangeEventResourceType)(0), // 0: google.ads.googleads.v16.enums.ChangeEventResourceTypeEnum.ChangeEventResourceType
- (*ChangeEventResourceTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ChangeEventResourceTypeEnum
+var file_google_ads_googleads_v17_enums_change_event_resource_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_change_event_resource_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_change_event_resource_type_proto_goTypes = []interface{}{
+ (ChangeEventResourceTypeEnum_ChangeEventResourceType)(0), // 0: google.ads.googleads.v17.enums.ChangeEventResourceTypeEnum.ChangeEventResourceType
+ (*ChangeEventResourceTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ChangeEventResourceTypeEnum
}
-var file_google_ads_googleads_v16_enums_change_event_resource_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_change_event_resource_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -281,13 +281,13 @@ var file_google_ads_googleads_v16_enums_change_event_resource_type_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_change_event_resource_type_proto_init() }
-func file_google_ads_googleads_v16_enums_change_event_resource_type_proto_init() {
- if File_google_ads_googleads_v16_enums_change_event_resource_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_change_event_resource_type_proto_init() }
+func file_google_ads_googleads_v17_enums_change_event_resource_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_change_event_resource_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_change_event_resource_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_change_event_resource_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ChangeEventResourceTypeEnum); i {
case 0:
return &v.state
@@ -304,19 +304,19 @@ func file_google_ads_googleads_v16_enums_change_event_resource_type_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_change_event_resource_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_change_event_resource_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_change_event_resource_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_change_event_resource_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_change_event_resource_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_change_event_resource_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_change_event_resource_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_change_event_resource_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_change_event_resource_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_change_event_resource_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_change_event_resource_type_proto = out.File
- file_google_ads_googleads_v16_enums_change_event_resource_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_change_event_resource_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_change_event_resource_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_change_event_resource_type_proto = out.File
+ file_google_ads_googleads_v17_enums_change_event_resource_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_change_event_resource_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_change_event_resource_type_proto_depIdxs = nil
}
diff --git a/enums/change_status_operation.pb.go b/enums/change_status_operation.pb.go
index 8f0c7693..f43dc18a 100644
--- a/enums/change_status_operation.pb.go
+++ b/enums/change_status_operation.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/change_status_operation.proto
+// source: google/ads/googleads/v17/enums/change_status_operation.proto
package enums
@@ -80,11 +80,11 @@ func (x ChangeStatusOperationEnum_ChangeStatusOperation) String() string {
}
func (ChangeStatusOperationEnum_ChangeStatusOperation) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_change_status_operation_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_change_status_operation_proto_enumTypes[0].Descriptor()
}
func (ChangeStatusOperationEnum_ChangeStatusOperation) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_change_status_operation_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_change_status_operation_proto_enumTypes[0]
}
func (x ChangeStatusOperationEnum_ChangeStatusOperation) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x ChangeStatusOperationEnum_ChangeStatusOperation) Number() protoreflect.E
// Deprecated: Use ChangeStatusOperationEnum_ChangeStatusOperation.Descriptor instead.
func (ChangeStatusOperationEnum_ChangeStatusOperation) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_change_status_operation_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_change_status_operation_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing operations for the ChangeStatus resource.
@@ -106,7 +106,7 @@ type ChangeStatusOperationEnum struct {
func (x *ChangeStatusOperationEnum) Reset() {
*x = ChangeStatusOperationEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_change_status_operation_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_change_status_operation_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *ChangeStatusOperationEnum) String() string {
func (*ChangeStatusOperationEnum) ProtoMessage() {}
func (x *ChangeStatusOperationEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_change_status_operation_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_change_status_operation_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,18 +132,18 @@ func (x *ChangeStatusOperationEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChangeStatusOperationEnum.ProtoReflect.Descriptor instead.
func (*ChangeStatusOperationEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_change_status_operation_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_change_status_operation_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_change_status_operation_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_change_status_operation_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_change_status_operation_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_change_status_operation_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x6f,
0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x77,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x77,
0x0a, 0x19, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4f, 0x70,
0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5a, 0x0a, 0x15, 0x43,
0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4f, 0x70, 0x65, 0x72, 0x61,
@@ -153,42 +153,42 @@ var file_google_ads_googleads_v16_enums_change_status_operation_proto_rawDesc =
0x07, 0x43, 0x48, 0x41, 0x4e, 0x47, 0x45, 0x44, 0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45,
0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x04, 0x42, 0xf4, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a,
0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4f, 0x70, 0x65, 0x72,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_change_status_operation_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_change_status_operation_proto_rawDescData = file_google_ads_googleads_v16_enums_change_status_operation_proto_rawDesc
+ file_google_ads_googleads_v17_enums_change_status_operation_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_change_status_operation_proto_rawDescData = file_google_ads_googleads_v17_enums_change_status_operation_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_change_status_operation_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_change_status_operation_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_change_status_operation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_change_status_operation_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_change_status_operation_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_change_status_operation_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_change_status_operation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_change_status_operation_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_change_status_operation_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_change_status_operation_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_change_status_operation_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_change_status_operation_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_change_status_operation_proto_goTypes = []interface{}{
- (ChangeStatusOperationEnum_ChangeStatusOperation)(0), // 0: google.ads.googleads.v16.enums.ChangeStatusOperationEnum.ChangeStatusOperation
- (*ChangeStatusOperationEnum)(nil), // 1: google.ads.googleads.v16.enums.ChangeStatusOperationEnum
+var file_google_ads_googleads_v17_enums_change_status_operation_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_change_status_operation_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_change_status_operation_proto_goTypes = []interface{}{
+ (ChangeStatusOperationEnum_ChangeStatusOperation)(0), // 0: google.ads.googleads.v17.enums.ChangeStatusOperationEnum.ChangeStatusOperation
+ (*ChangeStatusOperationEnum)(nil), // 1: google.ads.googleads.v17.enums.ChangeStatusOperationEnum
}
-var file_google_ads_googleads_v16_enums_change_status_operation_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_change_status_operation_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -196,13 +196,13 @@ var file_google_ads_googleads_v16_enums_change_status_operation_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_change_status_operation_proto_init() }
-func file_google_ads_googleads_v16_enums_change_status_operation_proto_init() {
- if File_google_ads_googleads_v16_enums_change_status_operation_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_change_status_operation_proto_init() }
+func file_google_ads_googleads_v17_enums_change_status_operation_proto_init() {
+ if File_google_ads_googleads_v17_enums_change_status_operation_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_change_status_operation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_change_status_operation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ChangeStatusOperationEnum); i {
case 0:
return &v.state
@@ -219,19 +219,19 @@ func file_google_ads_googleads_v16_enums_change_status_operation_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_change_status_operation_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_change_status_operation_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_change_status_operation_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_change_status_operation_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_change_status_operation_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_change_status_operation_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_change_status_operation_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_change_status_operation_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_change_status_operation_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_change_status_operation_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_change_status_operation_proto = out.File
- file_google_ads_googleads_v16_enums_change_status_operation_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_change_status_operation_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_change_status_operation_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_change_status_operation_proto = out.File
+ file_google_ads_googleads_v17_enums_change_status_operation_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_change_status_operation_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_change_status_operation_proto_depIdxs = nil
}
diff --git a/enums/change_status_resource_type.pb.go b/enums/change_status_resource_type.pb.go
index 2d77a1a7..b30dbadb 100644
--- a/enums/change_status_resource_type.pb.go
+++ b/enums/change_status_resource_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/change_status_resource_type.proto
+// source: google/ads/googleads/v17/enums/change_status_resource_type.proto
package enums
@@ -136,11 +136,11 @@ func (x ChangeStatusResourceTypeEnum_ChangeStatusResourceType) String() string {
}
func (ChangeStatusResourceTypeEnum_ChangeStatusResourceType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_change_status_resource_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_change_status_resource_type_proto_enumTypes[0].Descriptor()
}
func (ChangeStatusResourceTypeEnum_ChangeStatusResourceType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_change_status_resource_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_change_status_resource_type_proto_enumTypes[0]
}
func (x ChangeStatusResourceTypeEnum_ChangeStatusResourceType) Number() protoreflect.EnumNumber {
@@ -149,7 +149,7 @@ func (x ChangeStatusResourceTypeEnum_ChangeStatusResourceType) Number() protoref
// Deprecated: Use ChangeStatusResourceTypeEnum_ChangeStatusResourceType.Descriptor instead.
func (ChangeStatusResourceTypeEnum_ChangeStatusResourceType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_change_status_resource_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_change_status_resource_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing supported resource types for the ChangeStatus
@@ -163,7 +163,7 @@ type ChangeStatusResourceTypeEnum struct {
func (x *ChangeStatusResourceTypeEnum) Reset() {
*x = ChangeStatusResourceTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_change_status_resource_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_change_status_resource_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -176,7 +176,7 @@ func (x *ChangeStatusResourceTypeEnum) String() string {
func (*ChangeStatusResourceTypeEnum) ProtoMessage() {}
func (x *ChangeStatusResourceTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_change_status_resource_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_change_status_resource_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -189,18 +189,18 @@ func (x *ChangeStatusResourceTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChangeStatusResourceTypeEnum.ProtoReflect.Descriptor instead.
func (*ChangeStatusResourceTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_change_status_resource_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_change_status_resource_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_change_status_resource_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_change_status_resource_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_change_status_resource_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_change_status_resource_type_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x72,
0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x97, 0x03, 0x0a, 0x1c, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0xf6, 0x02, 0x0a, 0x18, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74,
@@ -228,42 +228,42 @@ var file_google_ads_googleads_v16_enums_change_status_resource_type_proto_rawDes
0x53, 0x45, 0x54, 0x10, 0x13, 0x12, 0x15, 0x0a, 0x11, 0x43, 0x4f, 0x4d, 0x42, 0x49, 0x4e, 0x45,
0x44, 0x5f, 0x41, 0x55, 0x44, 0x49, 0x45, 0x4e, 0x43, 0x45, 0x10, 0x14, 0x42, 0xf7, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x1d, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75,
0x73, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_change_status_resource_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_change_status_resource_type_proto_rawDescData = file_google_ads_googleads_v16_enums_change_status_resource_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_change_status_resource_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_change_status_resource_type_proto_rawDescData = file_google_ads_googleads_v17_enums_change_status_resource_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_change_status_resource_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_change_status_resource_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_change_status_resource_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_change_status_resource_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_change_status_resource_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_change_status_resource_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_change_status_resource_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_change_status_resource_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_change_status_resource_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_change_status_resource_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_change_status_resource_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_change_status_resource_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_change_status_resource_type_proto_goTypes = []interface{}{
- (ChangeStatusResourceTypeEnum_ChangeStatusResourceType)(0), // 0: google.ads.googleads.v16.enums.ChangeStatusResourceTypeEnum.ChangeStatusResourceType
- (*ChangeStatusResourceTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ChangeStatusResourceTypeEnum
+var file_google_ads_googleads_v17_enums_change_status_resource_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_change_status_resource_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_change_status_resource_type_proto_goTypes = []interface{}{
+ (ChangeStatusResourceTypeEnum_ChangeStatusResourceType)(0), // 0: google.ads.googleads.v17.enums.ChangeStatusResourceTypeEnum.ChangeStatusResourceType
+ (*ChangeStatusResourceTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ChangeStatusResourceTypeEnum
}
-var file_google_ads_googleads_v16_enums_change_status_resource_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_change_status_resource_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -271,13 +271,13 @@ var file_google_ads_googleads_v16_enums_change_status_resource_type_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_change_status_resource_type_proto_init() }
-func file_google_ads_googleads_v16_enums_change_status_resource_type_proto_init() {
- if File_google_ads_googleads_v16_enums_change_status_resource_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_change_status_resource_type_proto_init() }
+func file_google_ads_googleads_v17_enums_change_status_resource_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_change_status_resource_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_change_status_resource_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_change_status_resource_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ChangeStatusResourceTypeEnum); i {
case 0:
return &v.state
@@ -294,19 +294,19 @@ func file_google_ads_googleads_v16_enums_change_status_resource_type_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_change_status_resource_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_change_status_resource_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_change_status_resource_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_change_status_resource_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_change_status_resource_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_change_status_resource_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_change_status_resource_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_change_status_resource_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_change_status_resource_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_change_status_resource_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_change_status_resource_type_proto = out.File
- file_google_ads_googleads_v16_enums_change_status_resource_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_change_status_resource_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_change_status_resource_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_change_status_resource_type_proto = out.File
+ file_google_ads_googleads_v17_enums_change_status_resource_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_change_status_resource_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_change_status_resource_type_proto_depIdxs = nil
}
diff --git a/enums/click_type.pb.go b/enums/click_type.pb.go
index b0a6ea58..7ec9e87b 100644
--- a/enums/click_type.pb.go
+++ b/enums/click_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/click_type.proto
+// source: google/ads/googleads/v17/enums/click_type.proto
package enums
@@ -150,6 +150,8 @@ const (
ClickTypeEnum_SHOPPING_COMPARISON_LISTING ClickTypeEnum_ClickType = 56
// Cross-network. From Performance Max and Discovery Campaigns.
ClickTypeEnum_CROSS_NETWORK ClickTypeEnum_ClickType = 57
+ // AD Images.
+ ClickTypeEnum_AD_IMAGE ClickTypeEnum_ClickType = 58
)
// Enum value maps for ClickTypeEnum_ClickType.
@@ -211,6 +213,7 @@ var (
55: "HOTEL_BOOK_ON_GOOGLE_ROOM_SELECTION",
56: "SHOPPING_COMPARISON_LISTING",
57: "CROSS_NETWORK",
+ 58: "AD_IMAGE",
}
ClickTypeEnum_ClickType_value = map[string]int32{
"UNSPECIFIED": 0,
@@ -269,6 +272,7 @@ var (
"HOTEL_BOOK_ON_GOOGLE_ROOM_SELECTION": 55,
"SHOPPING_COMPARISON_LISTING": 56,
"CROSS_NETWORK": 57,
+ "AD_IMAGE": 58,
}
)
@@ -283,11 +287,11 @@ func (x ClickTypeEnum_ClickType) String() string {
}
func (ClickTypeEnum_ClickType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_click_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_click_type_proto_enumTypes[0].Descriptor()
}
func (ClickTypeEnum_ClickType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_click_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_click_type_proto_enumTypes[0]
}
func (x ClickTypeEnum_ClickType) Number() protoreflect.EnumNumber {
@@ -296,7 +300,7 @@ func (x ClickTypeEnum_ClickType) Number() protoreflect.EnumNumber {
// Deprecated: Use ClickTypeEnum_ClickType.Descriptor instead.
func (ClickTypeEnum_ClickType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_click_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_click_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enumeration of Google Ads click types.
@@ -309,7 +313,7 @@ type ClickTypeEnum struct {
func (x *ClickTypeEnum) Reset() {
*x = ClickTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_click_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_click_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -322,7 +326,7 @@ func (x *ClickTypeEnum) String() string {
func (*ClickTypeEnum) ProtoMessage() {}
func (x *ClickTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_click_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_click_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -335,19 +339,19 @@ func (x *ClickTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ClickTypeEnum.ProtoReflect.Descriptor instead.
func (*ClickTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_click_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_click_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_click_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_click_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_click_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_click_type_proto_rawDesc = []byte{
0x0a, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
- 0x73, 0x22, 0xb9, 0x0c, 0x0a, 0x0d, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x45,
- 0x6e, 0x75, 0x6d, 0x22, 0xa7, 0x0c, 0x0a, 0x09, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x54, 0x79, 0x70,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x22, 0xc7, 0x0c, 0x0a, 0x0d, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x45,
+ 0x6e, 0x75, 0x6d, 0x22, 0xb5, 0x0c, 0x0a, 0x09, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x54, 0x79, 0x70,
0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44,
0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12,
0x10, 0x0a, 0x0c, 0x41, 0x50, 0x50, 0x5f, 0x44, 0x45, 0x45, 0x50, 0x4c, 0x49, 0x4e, 0x4b, 0x10,
@@ -445,43 +449,44 @@ var file_google_ads_googleads_v16_enums_click_type_proto_rawDesc = []byte{
0x4c, 0x45, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x37, 0x12, 0x1f, 0x0a, 0x1b, 0x53, 0x48, 0x4f,
0x50, 0x50, 0x49, 0x4e, 0x47, 0x5f, 0x43, 0x4f, 0x4d, 0x50, 0x41, 0x52, 0x49, 0x53, 0x4f, 0x4e,
0x5f, 0x4c, 0x49, 0x53, 0x54, 0x49, 0x4e, 0x47, 0x10, 0x38, 0x12, 0x11, 0x0a, 0x0d, 0x43, 0x52,
- 0x4f, 0x53, 0x53, 0x5f, 0x4e, 0x45, 0x54, 0x57, 0x4f, 0x52, 0x4b, 0x10, 0x39, 0x42, 0xe8, 0x01,
- 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
- 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x50,
- 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
- 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
- 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
- 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
- 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
- 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x4f, 0x53, 0x53, 0x5f, 0x4e, 0x45, 0x54, 0x57, 0x4f, 0x52, 0x4b, 0x10, 0x39, 0x12, 0x0c, 0x0a,
+ 0x08, 0x41, 0x44, 0x5f, 0x49, 0x4d, 0x41, 0x47, 0x45, 0x10, 0x3a, 0x42, 0xe8, 0x01, 0x0a, 0x22,
+ 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6d, 0x73, 0x42, 0x0e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f,
+ 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
+ 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
+ 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
+ 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
+ 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_click_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_click_type_proto_rawDescData = file_google_ads_googleads_v16_enums_click_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_click_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_click_type_proto_rawDescData = file_google_ads_googleads_v17_enums_click_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_click_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_click_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_click_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_click_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_click_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_click_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_click_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_click_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_click_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_click_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_click_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_click_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_click_type_proto_goTypes = []interface{}{
- (ClickTypeEnum_ClickType)(0), // 0: google.ads.googleads.v16.enums.ClickTypeEnum.ClickType
- (*ClickTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ClickTypeEnum
+var file_google_ads_googleads_v17_enums_click_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_click_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_click_type_proto_goTypes = []interface{}{
+ (ClickTypeEnum_ClickType)(0), // 0: google.ads.googleads.v17.enums.ClickTypeEnum.ClickType
+ (*ClickTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ClickTypeEnum
}
-var file_google_ads_googleads_v16_enums_click_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_click_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -489,13 +494,13 @@ var file_google_ads_googleads_v16_enums_click_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_click_type_proto_init() }
-func file_google_ads_googleads_v16_enums_click_type_proto_init() {
- if File_google_ads_googleads_v16_enums_click_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_click_type_proto_init() }
+func file_google_ads_googleads_v17_enums_click_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_click_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_click_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_click_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ClickTypeEnum); i {
case 0:
return &v.state
@@ -512,19 +517,19 @@ func file_google_ads_googleads_v16_enums_click_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_click_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_click_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_click_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_click_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_click_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_click_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_click_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_click_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_click_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_click_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_click_type_proto = out.File
- file_google_ads_googleads_v16_enums_click_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_click_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_click_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_click_type_proto = out.File
+ file_google_ads_googleads_v17_enums_click_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_click_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_click_type_proto_depIdxs = nil
}
diff --git a/enums/combined_audience_status.pb.go b/enums/combined_audience_status.pb.go
index 38f1e33d..3eb00644 100644
--- a/enums/combined_audience_status.pb.go
+++ b/enums/combined_audience_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/combined_audience_status.proto
+// source: google/ads/googleads/v17/enums/combined_audience_status.proto
package enums
@@ -76,11 +76,11 @@ func (x CombinedAudienceStatusEnum_CombinedAudienceStatus) String() string {
}
func (CombinedAudienceStatusEnum_CombinedAudienceStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_combined_audience_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_combined_audience_status_proto_enumTypes[0].Descriptor()
}
func (CombinedAudienceStatusEnum_CombinedAudienceStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_combined_audience_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_combined_audience_status_proto_enumTypes[0]
}
func (x CombinedAudienceStatusEnum_CombinedAudienceStatus) Number() protoreflect.EnumNumber {
@@ -89,7 +89,7 @@ func (x CombinedAudienceStatusEnum_CombinedAudienceStatus) Number() protoreflect
// Deprecated: Use CombinedAudienceStatusEnum_CombinedAudienceStatus.Descriptor instead.
func (CombinedAudienceStatusEnum_CombinedAudienceStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_combined_audience_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_combined_audience_status_proto_rawDescGZIP(), []int{0, 0}
}
// The status of combined audience.
@@ -102,7 +102,7 @@ type CombinedAudienceStatusEnum struct {
func (x *CombinedAudienceStatusEnum) Reset() {
*x = CombinedAudienceStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_combined_audience_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_combined_audience_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -115,7 +115,7 @@ func (x *CombinedAudienceStatusEnum) String() string {
func (*CombinedAudienceStatusEnum) ProtoMessage() {}
func (x *CombinedAudienceStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_combined_audience_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_combined_audience_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -128,18 +128,18 @@ func (x *CombinedAudienceStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CombinedAudienceStatusEnum.ProtoReflect.Descriptor instead.
func (*CombinedAudienceStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_combined_audience_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_combined_audience_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_combined_audience_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_combined_audience_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_combined_audience_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_combined_audience_status_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e,
0x63, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
0x6e, 0x0a, 0x1a, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x41, 0x75, 0x64, 0x69, 0x65,
0x6e, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x50, 0x0a,
0x16, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_enums_combined_audience_status_proto_rawDesc =
0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44,
0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42,
0xf5, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x65, 0x64,
0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_combined_audience_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_combined_audience_status_proto_rawDescData = file_google_ads_googleads_v16_enums_combined_audience_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_combined_audience_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_combined_audience_status_proto_rawDescData = file_google_ads_googleads_v17_enums_combined_audience_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_combined_audience_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_combined_audience_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_combined_audience_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_combined_audience_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_combined_audience_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_combined_audience_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_combined_audience_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_combined_audience_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_combined_audience_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_combined_audience_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_combined_audience_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_combined_audience_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_combined_audience_status_proto_goTypes = []interface{}{
- (CombinedAudienceStatusEnum_CombinedAudienceStatus)(0), // 0: google.ads.googleads.v16.enums.CombinedAudienceStatusEnum.CombinedAudienceStatus
- (*CombinedAudienceStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.CombinedAudienceStatusEnum
+var file_google_ads_googleads_v17_enums_combined_audience_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_combined_audience_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_combined_audience_status_proto_goTypes = []interface{}{
+ (CombinedAudienceStatusEnum_CombinedAudienceStatus)(0), // 0: google.ads.googleads.v17.enums.CombinedAudienceStatusEnum.CombinedAudienceStatus
+ (*CombinedAudienceStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.CombinedAudienceStatusEnum
}
-var file_google_ads_googleads_v16_enums_combined_audience_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_combined_audience_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_combined_audience_status_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_combined_audience_status_proto_init() }
-func file_google_ads_googleads_v16_enums_combined_audience_status_proto_init() {
- if File_google_ads_googleads_v16_enums_combined_audience_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_combined_audience_status_proto_init() }
+func file_google_ads_googleads_v17_enums_combined_audience_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_combined_audience_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_combined_audience_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_combined_audience_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CombinedAudienceStatusEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_combined_audience_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_combined_audience_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_combined_audience_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_combined_audience_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_combined_audience_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_combined_audience_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_combined_audience_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_combined_audience_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_combined_audience_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_combined_audience_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_combined_audience_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_combined_audience_status_proto = out.File
- file_google_ads_googleads_v16_enums_combined_audience_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_combined_audience_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_combined_audience_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_combined_audience_status_proto = out.File
+ file_google_ads_googleads_v17_enums_combined_audience_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_combined_audience_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_combined_audience_status_proto_depIdxs = nil
}
diff --git a/enums/consent_status.pb.go b/enums/consent_status.pb.go
index 363d7073..4e88e2f1 100644
--- a/enums/consent_status.pb.go
+++ b/enums/consent_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/consent_status.proto
+// source: google/ads/googleads/v17/enums/consent_status.proto
package enums
@@ -75,11 +75,11 @@ func (x ConsentStatusEnum_ConsentStatus) String() string {
}
func (ConsentStatusEnum_ConsentStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_consent_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_consent_status_proto_enumTypes[0].Descriptor()
}
func (ConsentStatusEnum_ConsentStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_consent_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_consent_status_proto_enumTypes[0]
}
func (x ConsentStatusEnum_ConsentStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x ConsentStatusEnum_ConsentStatus) Number() protoreflect.EnumNumber {
// Deprecated: Use ConsentStatusEnum_ConsentStatus.Descriptor instead.
func (ConsentStatusEnum_ConsentStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_consent_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_consent_status_proto_rawDescGZIP(), []int{0, 0}
}
// Enums represent consent status.
@@ -101,7 +101,7 @@ type ConsentStatusEnum struct {
func (x *ConsentStatusEnum) Reset() {
*x = ConsentStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_consent_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_consent_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *ConsentStatusEnum) String() string {
func (*ConsentStatusEnum) ProtoMessage() {}
func (x *ConsentStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_consent_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_consent_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,17 +127,17 @@ func (x *ConsentStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ConsentStatusEnum.ProtoReflect.Descriptor instead.
func (*ConsentStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_consent_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_consent_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_consent_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_consent_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_consent_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_consent_status_proto_rawDesc = []byte{
0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x5b, 0x0a, 0x11, 0x43, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x46, 0x0a, 0x0d, 0x43, 0x6f,
0x6e, 0x73, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f, 0x0a, 0x0b, 0x55,
@@ -146,41 +146,41 @@ var file_google_ads_googleads_v16_enums_consent_status_proto_rawDesc = []byte{
0x4e, 0x54, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x44, 0x45, 0x4e, 0x49, 0x45, 0x44,
0x10, 0x03, 0x42, 0xec, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x43, 0x6f, 0x6e, 0x73, 0x65,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x43, 0x6f, 0x6e, 0x73, 0x65,
0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_consent_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_consent_status_proto_rawDescData = file_google_ads_googleads_v16_enums_consent_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_consent_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_consent_status_proto_rawDescData = file_google_ads_googleads_v17_enums_consent_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_consent_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_consent_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_consent_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_consent_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_consent_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_consent_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_consent_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_consent_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_consent_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_consent_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_consent_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_consent_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_consent_status_proto_goTypes = []interface{}{
- (ConsentStatusEnum_ConsentStatus)(0), // 0: google.ads.googleads.v16.enums.ConsentStatusEnum.ConsentStatus
- (*ConsentStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.ConsentStatusEnum
+var file_google_ads_googleads_v17_enums_consent_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_consent_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_consent_status_proto_goTypes = []interface{}{
+ (ConsentStatusEnum_ConsentStatus)(0), // 0: google.ads.googleads.v17.enums.ConsentStatusEnum.ConsentStatus
+ (*ConsentStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.ConsentStatusEnum
}
-var file_google_ads_googleads_v16_enums_consent_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_consent_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -188,13 +188,13 @@ var file_google_ads_googleads_v16_enums_consent_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_consent_status_proto_init() }
-func file_google_ads_googleads_v16_enums_consent_status_proto_init() {
- if File_google_ads_googleads_v16_enums_consent_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_consent_status_proto_init() }
+func file_google_ads_googleads_v17_enums_consent_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_consent_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_consent_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_consent_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConsentStatusEnum); i {
case 0:
return &v.state
@@ -211,19 +211,19 @@ func file_google_ads_googleads_v16_enums_consent_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_consent_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_consent_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_consent_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_consent_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_consent_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_consent_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_consent_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_consent_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_consent_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_consent_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_consent_status_proto = out.File
- file_google_ads_googleads_v16_enums_consent_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_consent_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_consent_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_consent_status_proto = out.File
+ file_google_ads_googleads_v17_enums_consent_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_consent_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_consent_status_proto_depIdxs = nil
}
diff --git a/enums/content_label_type.pb.go b/enums/content_label_type.pb.go
index 0e6291f5..4882dfe4 100644
--- a/enums/content_label_type.pb.go
+++ b/enums/content_label_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/content_label_type.proto
+// source: google/ads/googleads/v17/enums/content_label_type.proto
package enums
@@ -72,6 +72,41 @@ const (
ContentLabelTypeEnum_LIVE_STREAMING_VIDEO ContentLabelTypeEnum_ContentLabelType = 16
// Sensitive social issues.
ContentLabelTypeEnum_SOCIAL_ISSUES ContentLabelTypeEnum_ContentLabelType = 17
+ // Content that's suitable for families to view together, including Made for
+ // Kids videos on YouTube.
+ ContentLabelTypeEnum_BRAND_SUITABILITY_CONTENT_FOR_FAMILIES ContentLabelTypeEnum_ContentLabelType = 18
+ // Video games that simulate hand-to-hand fighting or combat with the use of
+ // modern or medieval weapons.
+ ContentLabelTypeEnum_BRAND_SUITABILITY_GAMES_FIGHTING ContentLabelTypeEnum_ContentLabelType = 19
+ // Video games that feature mature content, such as violence, inappropriate
+ // language, or sexual suggestiveness.
+ ContentLabelTypeEnum_BRAND_SUITABILITY_GAMES_MATURE ContentLabelTypeEnum_ContentLabelType = 20
+ // Health content that people might find sensitive or upsetting, such as
+ // medical procedures or images and descriptions of various medical
+ // conditions.
+ ContentLabelTypeEnum_BRAND_SUITABILITY_HEALTH_SENSITIVE ContentLabelTypeEnum_ContentLabelType = 21
+ // Health content from sources that may provide accurate information but
+ // aren't as commonly cited as other, more well-known sources.
+ ContentLabelTypeEnum_BRAND_SUITABILITY_HEALTH_SOURCE_UNDETERMINED ContentLabelTypeEnum_ContentLabelType = 22
+ // News content that's been recently announced, regardless of the themes or
+ // people being reported on.
+ ContentLabelTypeEnum_BRAND_SUITABILITY_NEWS_RECENT ContentLabelTypeEnum_ContentLabelType = 23
+ // News content that people might find sensitive or upsetting, such as
+ // crimes, accidents, and natural incidents, or commentary on potentially
+ // controversial social and political issues.
+ ContentLabelTypeEnum_BRAND_SUITABILITY_NEWS_SENSITIVE ContentLabelTypeEnum_ContentLabelType = 24
+ // News content from sources that aren't featured on Google News or YouTube
+ // News.
+ ContentLabelTypeEnum_BRAND_SUITABILITY_NEWS_SOURCE_NOT_FEATURED ContentLabelTypeEnum_ContentLabelType = 25
+ // Political content, such as political statements made by well-known
+ // politicians, political elections, or events widely perceived to be
+ // political in nature.
+ ContentLabelTypeEnum_BRAND_SUITABILITY_POLITICS ContentLabelTypeEnum_ContentLabelType = 26
+ // Content with religious themes, such as religious teachings or customs,
+ // holy sites or places of worship, well-known religious figures or people
+ // dressed in religious attire, or religious opinions on social and
+ // political issues.
+ ContentLabelTypeEnum_BRAND_SUITABILITY_RELIGION ContentLabelTypeEnum_ContentLabelType = 27
)
// Enum value maps for ContentLabelTypeEnum_ContentLabelType.
@@ -94,25 +129,45 @@ var (
15: "EMBEDDED_VIDEO",
16: "LIVE_STREAMING_VIDEO",
17: "SOCIAL_ISSUES",
+ 18: "BRAND_SUITABILITY_CONTENT_FOR_FAMILIES",
+ 19: "BRAND_SUITABILITY_GAMES_FIGHTING",
+ 20: "BRAND_SUITABILITY_GAMES_MATURE",
+ 21: "BRAND_SUITABILITY_HEALTH_SENSITIVE",
+ 22: "BRAND_SUITABILITY_HEALTH_SOURCE_UNDETERMINED",
+ 23: "BRAND_SUITABILITY_NEWS_RECENT",
+ 24: "BRAND_SUITABILITY_NEWS_SENSITIVE",
+ 25: "BRAND_SUITABILITY_NEWS_SOURCE_NOT_FEATURED",
+ 26: "BRAND_SUITABILITY_POLITICS",
+ 27: "BRAND_SUITABILITY_RELIGION",
}
ContentLabelTypeEnum_ContentLabelType_value = map[string]int32{
- "UNSPECIFIED": 0,
- "UNKNOWN": 1,
- "SEXUALLY_SUGGESTIVE": 2,
- "BELOW_THE_FOLD": 3,
- "PARKED_DOMAIN": 4,
- "JUVENILE": 6,
- "PROFANITY": 7,
- "TRAGEDY": 8,
- "VIDEO": 9,
- "VIDEO_RATING_DV_G": 10,
- "VIDEO_RATING_DV_PG": 11,
- "VIDEO_RATING_DV_T": 12,
- "VIDEO_RATING_DV_MA": 13,
- "VIDEO_NOT_YET_RATED": 14,
- "EMBEDDED_VIDEO": 15,
- "LIVE_STREAMING_VIDEO": 16,
- "SOCIAL_ISSUES": 17,
+ "UNSPECIFIED": 0,
+ "UNKNOWN": 1,
+ "SEXUALLY_SUGGESTIVE": 2,
+ "BELOW_THE_FOLD": 3,
+ "PARKED_DOMAIN": 4,
+ "JUVENILE": 6,
+ "PROFANITY": 7,
+ "TRAGEDY": 8,
+ "VIDEO": 9,
+ "VIDEO_RATING_DV_G": 10,
+ "VIDEO_RATING_DV_PG": 11,
+ "VIDEO_RATING_DV_T": 12,
+ "VIDEO_RATING_DV_MA": 13,
+ "VIDEO_NOT_YET_RATED": 14,
+ "EMBEDDED_VIDEO": 15,
+ "LIVE_STREAMING_VIDEO": 16,
+ "SOCIAL_ISSUES": 17,
+ "BRAND_SUITABILITY_CONTENT_FOR_FAMILIES": 18,
+ "BRAND_SUITABILITY_GAMES_FIGHTING": 19,
+ "BRAND_SUITABILITY_GAMES_MATURE": 20,
+ "BRAND_SUITABILITY_HEALTH_SENSITIVE": 21,
+ "BRAND_SUITABILITY_HEALTH_SOURCE_UNDETERMINED": 22,
+ "BRAND_SUITABILITY_NEWS_RECENT": 23,
+ "BRAND_SUITABILITY_NEWS_SENSITIVE": 24,
+ "BRAND_SUITABILITY_NEWS_SOURCE_NOT_FEATURED": 25,
+ "BRAND_SUITABILITY_POLITICS": 26,
+ "BRAND_SUITABILITY_RELIGION": 27,
}
)
@@ -127,11 +182,11 @@ func (x ContentLabelTypeEnum_ContentLabelType) String() string {
}
func (ContentLabelTypeEnum_ContentLabelType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_content_label_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_content_label_type_proto_enumTypes[0].Descriptor()
}
func (ContentLabelTypeEnum_ContentLabelType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_content_label_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_content_label_type_proto_enumTypes[0]
}
func (x ContentLabelTypeEnum_ContentLabelType) Number() protoreflect.EnumNumber {
@@ -140,7 +195,7 @@ func (x ContentLabelTypeEnum_ContentLabelType) Number() protoreflect.EnumNumber
// Deprecated: Use ContentLabelTypeEnum_ContentLabelType.Descriptor instead.
func (ContentLabelTypeEnum_ContentLabelType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_content_label_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_content_label_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing content label types in ContentLabel.
@@ -153,7 +208,7 @@ type ContentLabelTypeEnum struct {
func (x *ContentLabelTypeEnum) Reset() {
*x = ContentLabelTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_content_label_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_content_label_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -166,7 +221,7 @@ func (x *ContentLabelTypeEnum) String() string {
func (*ContentLabelTypeEnum) ProtoMessage() {}
func (x *ContentLabelTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_content_label_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_content_label_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -179,20 +234,20 @@ func (x *ContentLabelTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ContentLabelTypeEnum.ProtoReflect.Descriptor instead.
func (*ContentLabelTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_content_label_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_content_label_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_content_label_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_content_label_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_content_label_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_content_label_type_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x74,
0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xf6, 0x02, 0x0a, 0x14, 0x43, 0x6f,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xff, 0x05, 0x0a, 0x14, 0x43, 0x6f,
0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e,
- 0x75, 0x6d, 0x22, 0xdd, 0x02, 0x0a, 0x10, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4c, 0x61,
+ 0x75, 0x6d, 0x22, 0xe6, 0x05, 0x0a, 0x10, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4c, 0x61,
0x62, 0x65, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45,
0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e,
0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x17, 0x0a, 0x13, 0x53, 0x45, 0x58, 0x55, 0x41, 0x4c, 0x4c,
@@ -214,43 +269,68 @@ var file_google_ads_googleads_v16_enums_content_label_type_proto_rawDesc = []byt
0x44, 0x45, 0x4f, 0x10, 0x0f, 0x12, 0x18, 0x0a, 0x14, 0x4c, 0x49, 0x56, 0x45, 0x5f, 0x53, 0x54,
0x52, 0x45, 0x41, 0x4d, 0x49, 0x4e, 0x47, 0x5f, 0x56, 0x49, 0x44, 0x45, 0x4f, 0x10, 0x10, 0x12,
0x11, 0x0a, 0x0d, 0x53, 0x4f, 0x43, 0x49, 0x41, 0x4c, 0x5f, 0x49, 0x53, 0x53, 0x55, 0x45, 0x53,
- 0x10, 0x11, 0x42, 0xef, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x43, 0x6f, 0x6e, 0x74, 0x65,
- 0x6e, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f,
- 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
- 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
- 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
- 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
- 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
- 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x10, 0x11, 0x12, 0x2a, 0x0a, 0x26, 0x42, 0x52, 0x41, 0x4e, 0x44, 0x5f, 0x53, 0x55, 0x49, 0x54,
+ 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x43, 0x4f, 0x4e, 0x54, 0x45, 0x4e, 0x54, 0x5f,
+ 0x46, 0x4f, 0x52, 0x5f, 0x46, 0x41, 0x4d, 0x49, 0x4c, 0x49, 0x45, 0x53, 0x10, 0x12, 0x12, 0x24,
+ 0x0a, 0x20, 0x42, 0x52, 0x41, 0x4e, 0x44, 0x5f, 0x53, 0x55, 0x49, 0x54, 0x41, 0x42, 0x49, 0x4c,
+ 0x49, 0x54, 0x59, 0x5f, 0x47, 0x41, 0x4d, 0x45, 0x53, 0x5f, 0x46, 0x49, 0x47, 0x48, 0x54, 0x49,
+ 0x4e, 0x47, 0x10, 0x13, 0x12, 0x22, 0x0a, 0x1e, 0x42, 0x52, 0x41, 0x4e, 0x44, 0x5f, 0x53, 0x55,
+ 0x49, 0x54, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x47, 0x41, 0x4d, 0x45, 0x53, 0x5f,
+ 0x4d, 0x41, 0x54, 0x55, 0x52, 0x45, 0x10, 0x14, 0x12, 0x26, 0x0a, 0x22, 0x42, 0x52, 0x41, 0x4e,
+ 0x44, 0x5f, 0x53, 0x55, 0x49, 0x54, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x48, 0x45,
+ 0x41, 0x4c, 0x54, 0x48, 0x5f, 0x53, 0x45, 0x4e, 0x53, 0x49, 0x54, 0x49, 0x56, 0x45, 0x10, 0x15,
+ 0x12, 0x30, 0x0a, 0x2c, 0x42, 0x52, 0x41, 0x4e, 0x44, 0x5f, 0x53, 0x55, 0x49, 0x54, 0x41, 0x42,
+ 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x48, 0x45, 0x41, 0x4c, 0x54, 0x48, 0x5f, 0x53, 0x4f, 0x55,
+ 0x52, 0x43, 0x45, 0x5f, 0x55, 0x4e, 0x44, 0x45, 0x54, 0x45, 0x52, 0x4d, 0x49, 0x4e, 0x45, 0x44,
+ 0x10, 0x16, 0x12, 0x21, 0x0a, 0x1d, 0x42, 0x52, 0x41, 0x4e, 0x44, 0x5f, 0x53, 0x55, 0x49, 0x54,
+ 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x4e, 0x45, 0x57, 0x53, 0x5f, 0x52, 0x45, 0x43,
+ 0x45, 0x4e, 0x54, 0x10, 0x17, 0x12, 0x24, 0x0a, 0x20, 0x42, 0x52, 0x41, 0x4e, 0x44, 0x5f, 0x53,
+ 0x55, 0x49, 0x54, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x5f, 0x4e, 0x45, 0x57, 0x53, 0x5f,
+ 0x53, 0x45, 0x4e, 0x53, 0x49, 0x54, 0x49, 0x56, 0x45, 0x10, 0x18, 0x12, 0x2e, 0x0a, 0x2a, 0x42,
+ 0x52, 0x41, 0x4e, 0x44, 0x5f, 0x53, 0x55, 0x49, 0x54, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59,
+ 0x5f, 0x4e, 0x45, 0x57, 0x53, 0x5f, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x4e, 0x4f, 0x54,
+ 0x5f, 0x46, 0x45, 0x41, 0x54, 0x55, 0x52, 0x45, 0x44, 0x10, 0x19, 0x12, 0x1e, 0x0a, 0x1a, 0x42,
+ 0x52, 0x41, 0x4e, 0x44, 0x5f, 0x53, 0x55, 0x49, 0x54, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59,
+ 0x5f, 0x50, 0x4f, 0x4c, 0x49, 0x54, 0x49, 0x43, 0x53, 0x10, 0x1a, 0x12, 0x1e, 0x0a, 0x1a, 0x42,
+ 0x52, 0x41, 0x4e, 0x44, 0x5f, 0x53, 0x55, 0x49, 0x54, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59,
+ 0x5f, 0x52, 0x45, 0x4c, 0x49, 0x47, 0x49, 0x4f, 0x4e, 0x10, 0x1b, 0x42, 0xef, 0x01, 0x0a, 0x22,
+ 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6d, 0x73, 0x42, 0x15, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c,
+ 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
+ 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
+ 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
+ 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_content_label_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_content_label_type_proto_rawDescData = file_google_ads_googleads_v16_enums_content_label_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_content_label_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_content_label_type_proto_rawDescData = file_google_ads_googleads_v17_enums_content_label_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_content_label_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_content_label_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_content_label_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_content_label_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_content_label_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_content_label_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_content_label_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_content_label_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_content_label_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_content_label_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_content_label_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_content_label_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_content_label_type_proto_goTypes = []interface{}{
- (ContentLabelTypeEnum_ContentLabelType)(0), // 0: google.ads.googleads.v16.enums.ContentLabelTypeEnum.ContentLabelType
- (*ContentLabelTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ContentLabelTypeEnum
+var file_google_ads_googleads_v17_enums_content_label_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_content_label_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_content_label_type_proto_goTypes = []interface{}{
+ (ContentLabelTypeEnum_ContentLabelType)(0), // 0: google.ads.googleads.v17.enums.ContentLabelTypeEnum.ContentLabelType
+ (*ContentLabelTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ContentLabelTypeEnum
}
-var file_google_ads_googleads_v16_enums_content_label_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_content_label_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -258,13 +338,13 @@ var file_google_ads_googleads_v16_enums_content_label_type_proto_depIdxs = []int
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_content_label_type_proto_init() }
-func file_google_ads_googleads_v16_enums_content_label_type_proto_init() {
- if File_google_ads_googleads_v16_enums_content_label_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_content_label_type_proto_init() }
+func file_google_ads_googleads_v17_enums_content_label_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_content_label_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_content_label_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_content_label_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ContentLabelTypeEnum); i {
case 0:
return &v.state
@@ -281,19 +361,19 @@ func file_google_ads_googleads_v16_enums_content_label_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_content_label_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_content_label_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_content_label_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_content_label_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_content_label_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_content_label_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_content_label_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_content_label_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_content_label_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_content_label_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_content_label_type_proto = out.File
- file_google_ads_googleads_v16_enums_content_label_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_content_label_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_content_label_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_content_label_type_proto = out.File
+ file_google_ads_googleads_v17_enums_content_label_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_content_label_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_content_label_type_proto_depIdxs = nil
}
diff --git a/enums/conversion_action_category.pb.go b/enums/conversion_action_category.pb.go
index e590f1a3..9c784c2f 100644
--- a/enums/conversion_action_category.pb.go
+++ b/enums/conversion_action_category.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/conversion_action_category.proto
+// source: google/ads/googleads/v17/enums/conversion_action_category.proto
package enums
@@ -161,11 +161,11 @@ func (x ConversionActionCategoryEnum_ConversionActionCategory) String() string {
}
func (ConversionActionCategoryEnum_ConversionActionCategory) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_conversion_action_category_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_conversion_action_category_proto_enumTypes[0].Descriptor()
}
func (ConversionActionCategoryEnum_ConversionActionCategory) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_conversion_action_category_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_conversion_action_category_proto_enumTypes[0]
}
func (x ConversionActionCategoryEnum_ConversionActionCategory) Number() protoreflect.EnumNumber {
@@ -174,7 +174,7 @@ func (x ConversionActionCategoryEnum_ConversionActionCategory) Number() protoref
// Deprecated: Use ConversionActionCategoryEnum_ConversionActionCategory.Descriptor instead.
func (ConversionActionCategoryEnum_ConversionActionCategory) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_action_category_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_conversion_action_category_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the category of conversions that are associated
@@ -188,7 +188,7 @@ type ConversionActionCategoryEnum struct {
func (x *ConversionActionCategoryEnum) Reset() {
*x = ConversionActionCategoryEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_conversion_action_category_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_action_category_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -201,7 +201,7 @@ func (x *ConversionActionCategoryEnum) String() string {
func (*ConversionActionCategoryEnum) ProtoMessage() {}
func (x *ConversionActionCategoryEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_conversion_action_category_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_action_category_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -214,18 +214,18 @@ func (x *ConversionActionCategoryEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ConversionActionCategoryEnum.ProtoReflect.Descriptor instead.
func (*ConversionActionCategoryEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_action_category_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_conversion_action_category_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_conversion_action_category_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_conversion_action_category_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_conversion_action_category_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_conversion_action_category_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x22, 0xcb, 0x03, 0x0a, 0x1c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0xaa, 0x03, 0x0a, 0x18, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
@@ -256,43 +256,43 @@ var file_google_ads_googleads_v16_enums_conversion_action_category_proto_rawDesc
0x46, 0x49, 0x45, 0x44, 0x5f, 0x4c, 0x45, 0x41, 0x44, 0x10, 0x16, 0x12, 0x12, 0x0a, 0x0e, 0x43,
0x4f, 0x4e, 0x56, 0x45, 0x52, 0x54, 0x45, 0x44, 0x5f, 0x4c, 0x45, 0x41, 0x44, 0x10, 0x17, 0x42,
0xf7, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_enums_conversion_action_category_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_conversion_action_category_proto_rawDescData = file_google_ads_googleads_v16_enums_conversion_action_category_proto_rawDesc
+ file_google_ads_googleads_v17_enums_conversion_action_category_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_conversion_action_category_proto_rawDescData = file_google_ads_googleads_v17_enums_conversion_action_category_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_conversion_action_category_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_conversion_action_category_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_conversion_action_category_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_conversion_action_category_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_conversion_action_category_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_conversion_action_category_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_conversion_action_category_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_conversion_action_category_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_conversion_action_category_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_conversion_action_category_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_conversion_action_category_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_action_category_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_action_category_proto_goTypes = []interface{}{
- (ConversionActionCategoryEnum_ConversionActionCategory)(0), // 0: google.ads.googleads.v16.enums.ConversionActionCategoryEnum.ConversionActionCategory
- (*ConversionActionCategoryEnum)(nil), // 1: google.ads.googleads.v16.enums.ConversionActionCategoryEnum
+var file_google_ads_googleads_v17_enums_conversion_action_category_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_action_category_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_action_category_proto_goTypes = []interface{}{
+ (ConversionActionCategoryEnum_ConversionActionCategory)(0), // 0: google.ads.googleads.v17.enums.ConversionActionCategoryEnum.ConversionActionCategory
+ (*ConversionActionCategoryEnum)(nil), // 1: google.ads.googleads.v17.enums.ConversionActionCategoryEnum
}
-var file_google_ads_googleads_v16_enums_conversion_action_category_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_conversion_action_category_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -300,13 +300,13 @@ var file_google_ads_googleads_v16_enums_conversion_action_category_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_conversion_action_category_proto_init() }
-func file_google_ads_googleads_v16_enums_conversion_action_category_proto_init() {
- if File_google_ads_googleads_v16_enums_conversion_action_category_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_conversion_action_category_proto_init() }
+func file_google_ads_googleads_v17_enums_conversion_action_category_proto_init() {
+ if File_google_ads_googleads_v17_enums_conversion_action_category_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_conversion_action_category_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_conversion_action_category_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionActionCategoryEnum); i {
case 0:
return &v.state
@@ -323,19 +323,19 @@ func file_google_ads_googleads_v16_enums_conversion_action_category_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_conversion_action_category_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_conversion_action_category_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_conversion_action_category_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_conversion_action_category_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_conversion_action_category_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_conversion_action_category_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_conversion_action_category_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_conversion_action_category_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_conversion_action_category_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_conversion_action_category_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_conversion_action_category_proto = out.File
- file_google_ads_googleads_v16_enums_conversion_action_category_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_conversion_action_category_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_conversion_action_category_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_conversion_action_category_proto = out.File
+ file_google_ads_googleads_v17_enums_conversion_action_category_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_conversion_action_category_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_conversion_action_category_proto_depIdxs = nil
}
diff --git a/enums/conversion_action_counting_type.pb.go b/enums/conversion_action_counting_type.pb.go
index f79351cd..4aea9748 100644
--- a/enums/conversion_action_counting_type.pb.go
+++ b/enums/conversion_action_counting_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/conversion_action_counting_type.proto
+// source: google/ads/googleads/v17/enums/conversion_action_counting_type.proto
package enums
@@ -76,11 +76,11 @@ func (x ConversionActionCountingTypeEnum_ConversionActionCountingType) String()
}
func (ConversionActionCountingTypeEnum_ConversionActionCountingType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_enumTypes[0].Descriptor()
}
func (ConversionActionCountingTypeEnum_ConversionActionCountingType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_enumTypes[0]
}
func (x ConversionActionCountingTypeEnum_ConversionActionCountingType) Number() protoreflect.EnumNumber {
@@ -89,7 +89,7 @@ func (x ConversionActionCountingTypeEnum_ConversionActionCountingType) Number()
// Deprecated: Use ConversionActionCountingTypeEnum_ConversionActionCountingType.Descriptor instead.
func (ConversionActionCountingTypeEnum_ConversionActionCountingType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the conversion deduplication mode for
@@ -103,7 +103,7 @@ type ConversionActionCountingTypeEnum struct {
func (x *ConversionActionCountingTypeEnum) Reset() {
*x = ConversionActionCountingTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -116,7 +116,7 @@ func (x *ConversionActionCountingTypeEnum) String() string {
func (*ConversionActionCountingTypeEnum) ProtoMessage() {}
func (x *ConversionActionCountingTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -129,18 +129,18 @@ func (x *ConversionActionCountingTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ConversionActionCountingTypeEnum.ProtoReflect.Descriptor instead.
func (*ConversionActionCountingTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_conversion_action_counting_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_conversion_action_counting_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_rawDesc = []byte{
0x0a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x87, 0x01, 0x0a, 0x20, 0x43, 0x6f, 0x6e, 0x76, 0x65,
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74,
0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x63, 0x0a, 0x1c, 0x43,
@@ -152,42 +152,42 @@ var file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_ra
0x4d, 0x41, 0x4e, 0x59, 0x5f, 0x50, 0x45, 0x52, 0x5f, 0x43, 0x4c, 0x49, 0x43, 0x4b, 0x10, 0x03,
0x42, 0xfb, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x69, 0x6e,
0x67, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_rawDescData = file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_rawDescData = file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_goTypes = []interface{}{
- (ConversionActionCountingTypeEnum_ConversionActionCountingType)(0), // 0: google.ads.googleads.v16.enums.ConversionActionCountingTypeEnum.ConversionActionCountingType
- (*ConversionActionCountingTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ConversionActionCountingTypeEnum
+var file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_goTypes = []interface{}{
+ (ConversionActionCountingTypeEnum_ConversionActionCountingType)(0), // 0: google.ads.googleads.v17.enums.ConversionActionCountingTypeEnum.ConversionActionCountingType
+ (*ConversionActionCountingTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ConversionActionCountingTypeEnum
}
-var file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -195,13 +195,13 @@ var file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_de
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_init() }
-func file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_init() {
- if File_google_ads_googleads_v16_enums_conversion_action_counting_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_init() }
+func file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_conversion_action_counting_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionActionCountingTypeEnum); i {
case 0:
return &v.state
@@ -218,19 +218,19 @@ func file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_i
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_conversion_action_counting_type_proto = out.File
- file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_conversion_action_counting_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_conversion_action_counting_type_proto = out.File
+ file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_conversion_action_counting_type_proto_depIdxs = nil
}
diff --git a/enums/conversion_action_status.pb.go b/enums/conversion_action_status.pb.go
index e27d9f14..98d06dc0 100644
--- a/enums/conversion_action_status.pb.go
+++ b/enums/conversion_action_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/conversion_action_status.proto
+// source: google/ads/googleads/v17/enums/conversion_action_status.proto
package enums
@@ -80,11 +80,11 @@ func (x ConversionActionStatusEnum_ConversionActionStatus) String() string {
}
func (ConversionActionStatusEnum_ConversionActionStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_conversion_action_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_conversion_action_status_proto_enumTypes[0].Descriptor()
}
func (ConversionActionStatusEnum_ConversionActionStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_conversion_action_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_conversion_action_status_proto_enumTypes[0]
}
func (x ConversionActionStatusEnum_ConversionActionStatus) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x ConversionActionStatusEnum_ConversionActionStatus) Number() protoreflect
// Deprecated: Use ConversionActionStatusEnum_ConversionActionStatus.Descriptor instead.
func (ConversionActionStatusEnum_ConversionActionStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_action_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_conversion_action_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of a conversion action.
@@ -106,7 +106,7 @@ type ConversionActionStatusEnum struct {
func (x *ConversionActionStatusEnum) Reset() {
*x = ConversionActionStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_conversion_action_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_action_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *ConversionActionStatusEnum) String() string {
func (*ConversionActionStatusEnum) ProtoMessage() {}
func (x *ConversionActionStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_conversion_action_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_action_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,18 +132,18 @@ func (x *ConversionActionStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ConversionActionStatusEnum.ProtoReflect.Descriptor instead.
func (*ConversionActionStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_action_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_conversion_action_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_conversion_action_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_conversion_action_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_conversion_action_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_conversion_action_status_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
0x7a, 0x0a, 0x1a, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5c, 0x0a,
0x16, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f,
@@ -153,42 +153,42 @@ var file_google_ads_googleads_v16_enums_conversion_action_status_proto_rawDesc =
0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x12,
0x0a, 0x0a, 0x06, 0x48, 0x49, 0x44, 0x44, 0x45, 0x4e, 0x10, 0x04, 0x42, 0xf5, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x1b, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63,
0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_conversion_action_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_conversion_action_status_proto_rawDescData = file_google_ads_googleads_v16_enums_conversion_action_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_conversion_action_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_conversion_action_status_proto_rawDescData = file_google_ads_googleads_v17_enums_conversion_action_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_conversion_action_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_conversion_action_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_conversion_action_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_conversion_action_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_conversion_action_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_conversion_action_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_conversion_action_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_conversion_action_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_conversion_action_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_conversion_action_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_conversion_action_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_action_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_action_status_proto_goTypes = []interface{}{
- (ConversionActionStatusEnum_ConversionActionStatus)(0), // 0: google.ads.googleads.v16.enums.ConversionActionStatusEnum.ConversionActionStatus
- (*ConversionActionStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.ConversionActionStatusEnum
+var file_google_ads_googleads_v17_enums_conversion_action_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_action_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_action_status_proto_goTypes = []interface{}{
+ (ConversionActionStatusEnum_ConversionActionStatus)(0), // 0: google.ads.googleads.v17.enums.ConversionActionStatusEnum.ConversionActionStatus
+ (*ConversionActionStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.ConversionActionStatusEnum
}
-var file_google_ads_googleads_v16_enums_conversion_action_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_conversion_action_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -196,13 +196,13 @@ var file_google_ads_googleads_v16_enums_conversion_action_status_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_conversion_action_status_proto_init() }
-func file_google_ads_googleads_v16_enums_conversion_action_status_proto_init() {
- if File_google_ads_googleads_v16_enums_conversion_action_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_conversion_action_status_proto_init() }
+func file_google_ads_googleads_v17_enums_conversion_action_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_conversion_action_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_conversion_action_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_conversion_action_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionActionStatusEnum); i {
case 0:
return &v.state
@@ -219,19 +219,19 @@ func file_google_ads_googleads_v16_enums_conversion_action_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_conversion_action_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_conversion_action_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_conversion_action_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_conversion_action_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_conversion_action_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_conversion_action_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_conversion_action_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_conversion_action_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_conversion_action_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_conversion_action_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_conversion_action_status_proto = out.File
- file_google_ads_googleads_v16_enums_conversion_action_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_conversion_action_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_conversion_action_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_conversion_action_status_proto = out.File
+ file_google_ads_googleads_v17_enums_conversion_action_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_conversion_action_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_conversion_action_status_proto_depIdxs = nil
}
diff --git a/enums/conversion_action_type.pb.go b/enums/conversion_action_type.pb.go
index 1dec1ff3..250863cd 100644
--- a/enums/conversion_action_type.pb.go
+++ b/enums/conversion_action_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/conversion_action_type.proto
+// source: google/ads/googleads/v17/enums/conversion_action_type.proto
package enums
@@ -256,11 +256,11 @@ func (x ConversionActionTypeEnum_ConversionActionType) String() string {
}
func (ConversionActionTypeEnum_ConversionActionType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_conversion_action_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_conversion_action_type_proto_enumTypes[0].Descriptor()
}
func (ConversionActionTypeEnum_ConversionActionType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_conversion_action_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_conversion_action_type_proto_enumTypes[0]
}
func (x ConversionActionTypeEnum_ConversionActionType) Number() protoreflect.EnumNumber {
@@ -269,7 +269,7 @@ func (x ConversionActionTypeEnum_ConversionActionType) Number() protoreflect.Enu
// Deprecated: Use ConversionActionTypeEnum_ConversionActionType.Descriptor instead.
func (ConversionActionTypeEnum_ConversionActionType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_action_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_conversion_action_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible types of a conversion action.
@@ -282,7 +282,7 @@ type ConversionActionTypeEnum struct {
func (x *ConversionActionTypeEnum) Reset() {
*x = ConversionActionTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_conversion_action_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_action_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -295,7 +295,7 @@ func (x *ConversionActionTypeEnum) String() string {
func (*ConversionActionTypeEnum) ProtoMessage() {}
func (x *ConversionActionTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_conversion_action_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_action_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -308,18 +308,18 @@ func (x *ConversionActionTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ConversionActionTypeEnum.ProtoReflect.Descriptor instead.
func (*ConversionActionTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_action_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_conversion_action_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_conversion_action_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_conversion_action_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_conversion_action_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_conversion_action_type_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x82, 0x0a,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x82, 0x0a,
0x0a, 0x18, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69,
0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xe5, 0x09, 0x0a, 0x14, 0x43,
0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54,
@@ -402,41 +402,41 @@ var file_google_ads_googleads_v16_enums_conversion_action_type_proto_rawDesc = [
0x59, 0x54, 0x49, 0x43, 0x53, 0x5f, 0x34, 0x5f, 0x50, 0x55, 0x52, 0x43, 0x48, 0x41, 0x53, 0x45,
0x10, 0x29, 0x42, 0xf3, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x43, 0x6f, 0x6e, 0x76, 0x65,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x43, 0x6f, 0x6e, 0x76, 0x65,
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_conversion_action_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_conversion_action_type_proto_rawDescData = file_google_ads_googleads_v16_enums_conversion_action_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_conversion_action_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_conversion_action_type_proto_rawDescData = file_google_ads_googleads_v17_enums_conversion_action_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_conversion_action_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_conversion_action_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_conversion_action_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_conversion_action_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_conversion_action_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_conversion_action_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_conversion_action_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_conversion_action_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_conversion_action_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_conversion_action_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_conversion_action_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_action_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_action_type_proto_goTypes = []interface{}{
- (ConversionActionTypeEnum_ConversionActionType)(0), // 0: google.ads.googleads.v16.enums.ConversionActionTypeEnum.ConversionActionType
- (*ConversionActionTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ConversionActionTypeEnum
+var file_google_ads_googleads_v17_enums_conversion_action_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_action_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_action_type_proto_goTypes = []interface{}{
+ (ConversionActionTypeEnum_ConversionActionType)(0), // 0: google.ads.googleads.v17.enums.ConversionActionTypeEnum.ConversionActionType
+ (*ConversionActionTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ConversionActionTypeEnum
}
-var file_google_ads_googleads_v16_enums_conversion_action_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_conversion_action_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -444,13 +444,13 @@ var file_google_ads_googleads_v16_enums_conversion_action_type_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_conversion_action_type_proto_init() }
-func file_google_ads_googleads_v16_enums_conversion_action_type_proto_init() {
- if File_google_ads_googleads_v16_enums_conversion_action_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_conversion_action_type_proto_init() }
+func file_google_ads_googleads_v17_enums_conversion_action_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_conversion_action_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_conversion_action_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_conversion_action_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionActionTypeEnum); i {
case 0:
return &v.state
@@ -467,19 +467,19 @@ func file_google_ads_googleads_v16_enums_conversion_action_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_conversion_action_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_conversion_action_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_conversion_action_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_conversion_action_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_conversion_action_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_conversion_action_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_conversion_action_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_conversion_action_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_conversion_action_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_conversion_action_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_conversion_action_type_proto = out.File
- file_google_ads_googleads_v16_enums_conversion_action_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_conversion_action_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_conversion_action_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_conversion_action_type_proto = out.File
+ file_google_ads_googleads_v17_enums_conversion_action_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_conversion_action_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_conversion_action_type_proto_depIdxs = nil
}
diff --git a/enums/conversion_adjustment_type.pb.go b/enums/conversion_adjustment_type.pb.go
index 4116dafd..1062e2cf 100644
--- a/enums/conversion_adjustment_type.pb.go
+++ b/enums/conversion_adjustment_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/conversion_adjustment_type.proto
+// source: google/ads/googleads/v17/enums/conversion_adjustment_type.proto
package enums
@@ -82,11 +82,11 @@ func (x ConversionAdjustmentTypeEnum_ConversionAdjustmentType) String() string {
}
func (ConversionAdjustmentTypeEnum_ConversionAdjustmentType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_enumTypes[0].Descriptor()
}
func (ConversionAdjustmentTypeEnum_ConversionAdjustmentType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_enumTypes[0]
}
func (x ConversionAdjustmentTypeEnum_ConversionAdjustmentType) Number() protoreflect.EnumNumber {
@@ -95,7 +95,7 @@ func (x ConversionAdjustmentTypeEnum_ConversionAdjustmentType) Number() protoref
// Deprecated: Use ConversionAdjustmentTypeEnum_ConversionAdjustmentType.Descriptor instead.
func (ConversionAdjustmentTypeEnum_ConversionAdjustmentType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing conversion adjustment types.
@@ -108,7 +108,7 @@ type ConversionAdjustmentTypeEnum struct {
func (x *ConversionAdjustmentTypeEnum) Reset() {
*x = ConversionAdjustmentTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -121,7 +121,7 @@ func (x *ConversionAdjustmentTypeEnum) String() string {
func (*ConversionAdjustmentTypeEnum) ProtoMessage() {}
func (x *ConversionAdjustmentTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -134,18 +134,18 @@ func (x *ConversionAdjustmentTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ConversionAdjustmentTypeEnum.ProtoReflect.Descriptor instead.
func (*ConversionAdjustmentTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_conversion_adjustment_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_conversion_adjustment_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x64, 0x6a, 0x75,
0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x22, 0x8a, 0x01, 0x0a, 0x1c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0x6a, 0x0a, 0x18, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
@@ -156,42 +156,42 @@ var file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_rawDesc
0x52, 0x45, 0x53, 0x54, 0x41, 0x54, 0x45, 0x4d, 0x45, 0x4e, 0x54, 0x10, 0x03, 0x12, 0x0f, 0x0a,
0x0b, 0x45, 0x4e, 0x48, 0x41, 0x4e, 0x43, 0x45, 0x4d, 0x45, 0x4e, 0x54, 0x10, 0x04, 0x42, 0xf7,
0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
0x6e, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_rawDescData = file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_rawDescData = file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_goTypes = []interface{}{
- (ConversionAdjustmentTypeEnum_ConversionAdjustmentType)(0), // 0: google.ads.googleads.v16.enums.ConversionAdjustmentTypeEnum.ConversionAdjustmentType
- (*ConversionAdjustmentTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ConversionAdjustmentTypeEnum
+var file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_goTypes = []interface{}{
+ (ConversionAdjustmentTypeEnum_ConversionAdjustmentType)(0), // 0: google.ads.googleads.v17.enums.ConversionAdjustmentTypeEnum.ConversionAdjustmentType
+ (*ConversionAdjustmentTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ConversionAdjustmentTypeEnum
}
-var file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -199,13 +199,13 @@ var file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_init() }
-func file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_init() {
- if File_google_ads_googleads_v16_enums_conversion_adjustment_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_init() }
+func file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_conversion_adjustment_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionAdjustmentTypeEnum); i {
case 0:
return &v.state
@@ -222,19 +222,19 @@ func file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_conversion_adjustment_type_proto = out.File
- file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_conversion_adjustment_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_conversion_adjustment_type_proto = out.File
+ file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_conversion_adjustment_type_proto_depIdxs = nil
}
diff --git a/enums/conversion_attribution_event_type.pb.go b/enums/conversion_attribution_event_type.pb.go
index 71d98b2f..0e4dded9 100644
--- a/enums/conversion_attribution_event_type.pb.go
+++ b/enums/conversion_attribution_event_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/conversion_attribution_event_type.proto
+// source: google/ads/googleads/v17/enums/conversion_attribution_event_type.proto
package enums
@@ -75,11 +75,11 @@ func (x ConversionAttributionEventTypeEnum_ConversionAttributionEventType) Strin
}
func (ConversionAttributionEventTypeEnum_ConversionAttributionEventType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_enumTypes[0].Descriptor()
}
func (ConversionAttributionEventTypeEnum_ConversionAttributionEventType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_enumTypes[0]
}
func (x ConversionAttributionEventTypeEnum_ConversionAttributionEventType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x ConversionAttributionEventTypeEnum_ConversionAttributionEventType) Numbe
// Deprecated: Use ConversionAttributionEventTypeEnum_ConversionAttributionEventType.Descriptor instead.
func (ConversionAttributionEventTypeEnum_ConversionAttributionEventType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum indicating the event type the conversion is attributed to.
@@ -101,7 +101,7 @@ type ConversionAttributionEventTypeEnum struct {
func (x *ConversionAttributionEventTypeEnum) Reset() {
*x = ConversionAttributionEventTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *ConversionAttributionEventTypeEnum) String() string {
func (*ConversionAttributionEventTypeEnum) ProtoMessage() {}
func (x *ConversionAttributionEventTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,19 +127,19 @@ func (x *ConversionAttributionEventTypeEnum) ProtoReflect() protoreflect.Message
// Deprecated: Use ConversionAttributionEventTypeEnum.ProtoReflect.Descriptor instead.
func (*ConversionAttributionEventTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_rawDesc = []byte{
0x0a, 0x46, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x74, 0x74, 0x72,
0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79,
0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x85, 0x01, 0x0a, 0x22, 0x43, 0x6f, 0x6e,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x85, 0x01, 0x0a, 0x22, 0x43, 0x6f, 0x6e,
0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69,
0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x5f, 0x0a, 0x1e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x74, 0x74,
@@ -150,42 +150,42 @@ var file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_
0x0f, 0x0a, 0x0b, 0x49, 0x4e, 0x54, 0x45, 0x52, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x03,
0x42, 0xfd, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
0x69, 0x6f, 0x6e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76,
0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_rawDescData = file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_rawDescData = file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_goTypes = []interface{}{
- (ConversionAttributionEventTypeEnum_ConversionAttributionEventType)(0), // 0: google.ads.googleads.v16.enums.ConversionAttributionEventTypeEnum.ConversionAttributionEventType
- (*ConversionAttributionEventTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ConversionAttributionEventTypeEnum
+var file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_goTypes = []interface{}{
+ (ConversionAttributionEventTypeEnum_ConversionAttributionEventType)(0), // 0: google.ads.googleads.v17.enums.ConversionAttributionEventTypeEnum.ConversionAttributionEventType
+ (*ConversionAttributionEventTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ConversionAttributionEventTypeEnum
}
-var file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -193,13 +193,13 @@ var file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_init() }
-func file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_init() {
- if File_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_init() }
+func file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionAttributionEventTypeEnum); i {
case 0:
return &v.state
@@ -216,19 +216,19 @@ func file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto = out.File
- file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_conversion_attribution_event_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto = out.File
+ file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_conversion_attribution_event_type_proto_depIdxs = nil
}
diff --git a/enums/conversion_custom_variable_status.pb.go b/enums/conversion_custom_variable_status.pb.go
index 197be64b..16e63968 100644
--- a/enums/conversion_custom_variable_status.pb.go
+++ b/enums/conversion_custom_variable_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/conversion_custom_variable_status.proto
+// source: google/ads/googleads/v17/enums/conversion_custom_variable_status.proto
package enums
@@ -83,11 +83,11 @@ func (x ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus) Strin
}
func (ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_enumTypes[0].Descriptor()
}
func (ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_enumTypes[0]
}
func (x ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus) Number() protoreflect.EnumNumber {
@@ -96,7 +96,7 @@ func (x ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus) Numbe
// Deprecated: Use ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus.Descriptor instead.
func (ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of a conversion custom
@@ -110,7 +110,7 @@ type ConversionCustomVariableStatusEnum struct {
func (x *ConversionCustomVariableStatusEnum) Reset() {
*x = ConversionCustomVariableStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -123,7 +123,7 @@ func (x *ConversionCustomVariableStatusEnum) String() string {
func (*ConversionCustomVariableStatusEnum) ProtoMessage() {}
func (x *ConversionCustomVariableStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -136,19 +136,19 @@ func (x *ConversionCustomVariableStatusEnum) ProtoReflect() protoreflect.Message
// Deprecated: Use ConversionCustomVariableStatusEnum.ProtoReflect.Descriptor instead.
func (*ConversionCustomVariableStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_rawDesc = []byte{
0x0a, 0x46, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74,
0x6f, 0x6d, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74,
0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x94, 0x01, 0x0a, 0x22, 0x43, 0x6f, 0x6e,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x94, 0x01, 0x0a, 0x22, 0x43, 0x6f, 0x6e,
0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72,
0x69, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x6e, 0x0a, 0x1e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73,
@@ -159,43 +159,43 @@ var file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_
0x45, 0x44, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45,
0x44, 0x10, 0x03, 0x12, 0x0a, 0x0a, 0x06, 0x50, 0x41, 0x55, 0x53, 0x45, 0x44, 0x10, 0x04, 0x42,
0xfd, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_rawDescData = file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_rawDescData = file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_goTypes = []interface{}{
- (ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus)(0), // 0: google.ads.googleads.v16.enums.ConversionCustomVariableStatusEnum.ConversionCustomVariableStatus
- (*ConversionCustomVariableStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.ConversionCustomVariableStatusEnum
+var file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_goTypes = []interface{}{
+ (ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus)(0), // 0: google.ads.googleads.v17.enums.ConversionCustomVariableStatusEnum.ConversionCustomVariableStatus
+ (*ConversionCustomVariableStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.ConversionCustomVariableStatusEnum
}
-var file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -203,13 +203,13 @@ var file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_init() }
-func file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_init() {
- if File_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_init() }
+func file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionCustomVariableStatusEnum); i {
case 0:
return &v.state
@@ -226,19 +226,19 @@ func file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto = out.File
- file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_conversion_custom_variable_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto = out.File
+ file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_conversion_custom_variable_status_proto_depIdxs = nil
}
diff --git a/enums/conversion_environment_enum.pb.go b/enums/conversion_environment_enum.pb.go
index 2a49c61b..7dd6e162 100644
--- a/enums/conversion_environment_enum.pb.go
+++ b/enums/conversion_environment_enum.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/conversion_environment_enum.proto
+// source: google/ads/googleads/v17/enums/conversion_environment_enum.proto
package enums
@@ -75,11 +75,11 @@ func (x ConversionEnvironmentEnum_ConversionEnvironment) String() string {
}
func (ConversionEnvironmentEnum_ConversionEnvironment) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_enumTypes[0].Descriptor()
}
func (ConversionEnvironmentEnum_ConversionEnvironment) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_enumTypes[0]
}
func (x ConversionEnvironmentEnum_ConversionEnvironment) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x ConversionEnvironmentEnum_ConversionEnvironment) Number() protoreflect.E
// Deprecated: Use ConversionEnvironmentEnum_ConversionEnvironment.Descriptor instead.
func (ConversionEnvironmentEnum_ConversionEnvironment) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum representing the conversion environment an uploaded
@@ -102,7 +102,7 @@ type ConversionEnvironmentEnum struct {
func (x *ConversionEnvironmentEnum) Reset() {
*x = ConversionEnvironmentEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -115,7 +115,7 @@ func (x *ConversionEnvironmentEnum) String() string {
func (*ConversionEnvironmentEnum) ProtoMessage() {}
func (x *ConversionEnvironmentEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -128,18 +128,18 @@ func (x *ConversionEnvironmentEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ConversionEnvironmentEnum.ProtoReflect.Descriptor instead.
func (*ConversionEnvironmentEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_conversion_environment_enum_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_conversion_environment_enum_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x6e, 0x76, 0x69,
0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x64, 0x0a, 0x19, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
0x45, 0x6e, 0x76, 0x69, 0x72, 0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x47, 0x0a, 0x15, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_rawDes
0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x50, 0x50, 0x10, 0x02, 0x12,
0x07, 0x0a, 0x03, 0x57, 0x45, 0x42, 0x10, 0x03, 0x42, 0xf8, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
0x1e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x76, 0x69, 0x72,
0x6f, 0x6e, 0x6d, 0x65, 0x6e, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_rawDescData = file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_rawDesc
+ file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_rawDescData = file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_goTypes = []interface{}{
- (ConversionEnvironmentEnum_ConversionEnvironment)(0), // 0: google.ads.googleads.v16.enums.ConversionEnvironmentEnum.ConversionEnvironment
- (*ConversionEnvironmentEnum)(nil), // 1: google.ads.googleads.v16.enums.ConversionEnvironmentEnum
+var file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_goTypes = []interface{}{
+ (ConversionEnvironmentEnum_ConversionEnvironment)(0), // 0: google.ads.googleads.v17.enums.ConversionEnvironmentEnum.ConversionEnvironment
+ (*ConversionEnvironmentEnum)(nil), // 1: google.ads.googleads.v17.enums.ConversionEnvironmentEnum
}
-var file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_init() }
-func file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_init() {
- if File_google_ads_googleads_v16_enums_conversion_environment_enum_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_init() }
+func file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_init() {
+ if File_google_ads_googleads_v17_enums_conversion_environment_enum_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionEnvironmentEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_conversion_environment_enum_proto = out.File
- file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_conversion_environment_enum_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_conversion_environment_enum_proto = out.File
+ file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_conversion_environment_enum_proto_depIdxs = nil
}
diff --git a/enums/conversion_lag_bucket.pb.go b/enums/conversion_lag_bucket.pb.go
index 64874119..bec6cc58 100644
--- a/enums/conversion_lag_bucket.pb.go
+++ b/enums/conversion_lag_bucket.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/conversion_lag_bucket.proto
+// source: google/ads/googleads/v17/enums/conversion_lag_bucket.proto
package enums
@@ -160,11 +160,11 @@ func (x ConversionLagBucketEnum_ConversionLagBucket) String() string {
}
func (ConversionLagBucketEnum_ConversionLagBucket) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_enumTypes[0].Descriptor()
}
func (ConversionLagBucketEnum_ConversionLagBucket) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_enumTypes[0]
}
func (x ConversionLagBucketEnum_ConversionLagBucket) Number() protoreflect.EnumNumber {
@@ -173,7 +173,7 @@ func (x ConversionLagBucketEnum_ConversionLagBucket) Number() protoreflect.EnumN
// Deprecated: Use ConversionLagBucketEnum_ConversionLagBucket.Descriptor instead.
func (ConversionLagBucketEnum_ConversionLagBucket) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum representing the number of days between impression and
@@ -187,7 +187,7 @@ type ConversionLagBucketEnum struct {
func (x *ConversionLagBucketEnum) Reset() {
*x = ConversionLagBucketEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -200,7 +200,7 @@ func (x *ConversionLagBucketEnum) String() string {
func (*ConversionLagBucketEnum) ProtoMessage() {}
func (x *ConversionLagBucketEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -213,18 +213,18 @@ func (x *ConversionLagBucketEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ConversionLagBucketEnum.ProtoReflect.Descriptor instead.
func (*ConversionLagBucketEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_conversion_lag_bucket_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_conversion_lag_bucket_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x61, 0x67, 0x5f,
0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xbb, 0x04, 0x0a,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xbb, 0x04, 0x0a,
0x17, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x67, 0x42, 0x75,
0x63, 0x6b, 0x65, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x9f, 0x04, 0x0a, 0x13, 0x43, 0x6f, 0x6e,
0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x67, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74,
@@ -262,42 +262,42 @@ var file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_rawDesc = []
0x12, 0x18, 0x0a, 0x14, 0x53, 0x49, 0x58, 0x54, 0x59, 0x5f, 0x54, 0x4f, 0x5f, 0x4e, 0x49, 0x4e,
0x45, 0x54, 0x59, 0x5f, 0x44, 0x41, 0x59, 0x53, 0x10, 0x14, 0x42, 0xf2, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x18, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4c, 0x61, 0x67,
0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_rawDescData = file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_rawDesc
+ file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_rawDescData = file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_goTypes = []interface{}{
- (ConversionLagBucketEnum_ConversionLagBucket)(0), // 0: google.ads.googleads.v16.enums.ConversionLagBucketEnum.ConversionLagBucket
- (*ConversionLagBucketEnum)(nil), // 1: google.ads.googleads.v16.enums.ConversionLagBucketEnum
+var file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_goTypes = []interface{}{
+ (ConversionLagBucketEnum_ConversionLagBucket)(0), // 0: google.ads.googleads.v17.enums.ConversionLagBucketEnum.ConversionLagBucket
+ (*ConversionLagBucketEnum)(nil), // 1: google.ads.googleads.v17.enums.ConversionLagBucketEnum
}
-var file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -305,13 +305,13 @@ var file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_init() }
-func file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_init() {
- if File_google_ads_googleads_v16_enums_conversion_lag_bucket_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_init() }
+func file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_init() {
+ if File_google_ads_googleads_v17_enums_conversion_lag_bucket_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionLagBucketEnum); i {
case 0:
return &v.state
@@ -328,19 +328,19 @@ func file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_conversion_lag_bucket_proto = out.File
- file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_conversion_lag_bucket_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_conversion_lag_bucket_proto = out.File
+ file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_conversion_lag_bucket_proto_depIdxs = nil
}
diff --git a/enums/conversion_or_adjustment_lag_bucket.pb.go b/enums/conversion_or_adjustment_lag_bucket.pb.go
index df15d477..cd687cfc 100644
--- a/enums/conversion_or_adjustment_lag_bucket.pb.go
+++ b/enums/conversion_or_adjustment_lag_bucket.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/conversion_or_adjustment_lag_bucket.proto
+// source: google/ads/googleads/v17/enums/conversion_or_adjustment_lag_bucket.proto
package enums
@@ -271,11 +271,11 @@ func (x ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket) Str
}
func (ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_enumTypes[0].Descriptor()
}
func (ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_enumTypes[0]
}
func (x ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket) Number() protoreflect.EnumNumber {
@@ -284,7 +284,7 @@ func (x ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket) Num
// Deprecated: Use ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket.Descriptor instead.
func (ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum representing the number of days between the impression and
@@ -298,7 +298,7 @@ type ConversionOrAdjustmentLagBucketEnum struct {
func (x *ConversionOrAdjustmentLagBucketEnum) Reset() {
*x = ConversionOrAdjustmentLagBucketEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -311,7 +311,7 @@ func (x *ConversionOrAdjustmentLagBucketEnum) String() string {
func (*ConversionOrAdjustmentLagBucketEnum) ProtoMessage() {}
func (x *ConversionOrAdjustmentLagBucketEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -324,19 +324,19 @@ func (x *ConversionOrAdjustmentLagBucketEnum) ProtoReflect() protoreflect.Messag
// Deprecated: Use ConversionOrAdjustmentLagBucketEnum.ProtoReflect.Descriptor instead.
func (*ConversionOrAdjustmentLagBucketEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_rawDesc = []byte{
0x0a, 0x48, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x72, 0x5f, 0x61,
0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6c, 0x61, 0x67, 0x5f, 0x62, 0x75,
0x63, 0x6b, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xcb, 0x0c, 0x0a, 0x23, 0x43,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xcb, 0x0c, 0x0a, 0x23, 0x43,
0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x72, 0x41, 0x64, 0x6a, 0x75, 0x73,
0x74, 0x6d, 0x65, 0x6e, 0x74, 0x4c, 0x61, 0x67, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0xa3, 0x0c, 0x0a, 0x1f, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
@@ -439,43 +439,43 @@ var file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_prot
0x12, 0x16, 0x0a, 0x12, 0x41, 0x44, 0x4a, 0x55, 0x53, 0x54, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x55,
0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x2a, 0x42, 0xfe, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
0x24, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x72, 0x41, 0x64, 0x6a,
0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x4c, 0x61, 0x67, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_rawDescData = file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_rawDesc
+ file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_rawDescData = file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_goTypes = []interface{}{
- (ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket)(0), // 0: google.ads.googleads.v16.enums.ConversionOrAdjustmentLagBucketEnum.ConversionOrAdjustmentLagBucket
- (*ConversionOrAdjustmentLagBucketEnum)(nil), // 1: google.ads.googleads.v16.enums.ConversionOrAdjustmentLagBucketEnum
+var file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_goTypes = []interface{}{
+ (ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket)(0), // 0: google.ads.googleads.v17.enums.ConversionOrAdjustmentLagBucketEnum.ConversionOrAdjustmentLagBucket
+ (*ConversionOrAdjustmentLagBucketEnum)(nil), // 1: google.ads.googleads.v17.enums.ConversionOrAdjustmentLagBucketEnum
}
-var file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -483,13 +483,13 @@ var file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_prot
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_init() }
-func file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_init() {
- if File_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_init() }
+func file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_init() {
+ if File_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionOrAdjustmentLagBucketEnum); i {
case 0:
return &v.state
@@ -506,19 +506,19 @@ func file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_pro
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto = out.File
- file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_conversion_or_adjustment_lag_bucket_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto = out.File
+ file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_conversion_or_adjustment_lag_bucket_proto_depIdxs = nil
}
diff --git a/enums/conversion_origin.pb.go b/enums/conversion_origin.pb.go
index a03116ad..c2f0f2cd 100644
--- a/enums/conversion_origin.pb.go
+++ b/enums/conversion_origin.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/conversion_origin.proto
+// source: google/ads/googleads/v17/enums/conversion_origin.proto
package enums
@@ -96,11 +96,11 @@ func (x ConversionOriginEnum_ConversionOrigin) String() string {
}
func (ConversionOriginEnum_ConversionOrigin) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_conversion_origin_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_conversion_origin_proto_enumTypes[0].Descriptor()
}
func (ConversionOriginEnum_ConversionOrigin) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_conversion_origin_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_conversion_origin_proto_enumTypes[0]
}
func (x ConversionOriginEnum_ConversionOrigin) Number() protoreflect.EnumNumber {
@@ -109,7 +109,7 @@ func (x ConversionOriginEnum_ConversionOrigin) Number() protoreflect.EnumNumber
// Deprecated: Use ConversionOriginEnum_ConversionOrigin.Descriptor instead.
func (ConversionOriginEnum_ConversionOrigin) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_origin_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_conversion_origin_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible conversion origins.
@@ -122,7 +122,7 @@ type ConversionOriginEnum struct {
func (x *ConversionOriginEnum) Reset() {
*x = ConversionOriginEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_conversion_origin_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_origin_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -135,7 +135,7 @@ func (x *ConversionOriginEnum) String() string {
func (*ConversionOriginEnum) ProtoMessage() {}
func (x *ConversionOriginEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_conversion_origin_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_origin_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -148,18 +148,18 @@ func (x *ConversionOriginEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ConversionOriginEnum.ProtoReflect.Descriptor instead.
func (*ConversionOriginEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_origin_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_conversion_origin_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_conversion_origin_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_conversion_origin_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_conversion_origin_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_conversion_origin_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x72, 0x69, 0x67,
0x69, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa4, 0x01, 0x0a, 0x14, 0x43, 0x6f, 0x6e,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa4, 0x01, 0x0a, 0x14, 0x43, 0x6f, 0x6e,
0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x8b, 0x01, 0x0a, 0x10, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
@@ -171,42 +171,42 @@ var file_google_ads_googleads_v16_enums_conversion_origin_proto_rawDesc = []byte
0x12, 0x09, 0x0a, 0x05, 0x53, 0x54, 0x4f, 0x52, 0x45, 0x10, 0x06, 0x12, 0x12, 0x0a, 0x0e, 0x59,
0x4f, 0x55, 0x54, 0x55, 0x42, 0x45, 0x5f, 0x48, 0x4f, 0x53, 0x54, 0x45, 0x44, 0x10, 0x07, 0x42,
0xef, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
0x6f, 0x6e, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_conversion_origin_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_conversion_origin_proto_rawDescData = file_google_ads_googleads_v16_enums_conversion_origin_proto_rawDesc
+ file_google_ads_googleads_v17_enums_conversion_origin_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_conversion_origin_proto_rawDescData = file_google_ads_googleads_v17_enums_conversion_origin_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_conversion_origin_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_conversion_origin_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_conversion_origin_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_conversion_origin_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_conversion_origin_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_conversion_origin_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_conversion_origin_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_conversion_origin_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_conversion_origin_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_conversion_origin_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_conversion_origin_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_origin_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_origin_proto_goTypes = []interface{}{
- (ConversionOriginEnum_ConversionOrigin)(0), // 0: google.ads.googleads.v16.enums.ConversionOriginEnum.ConversionOrigin
- (*ConversionOriginEnum)(nil), // 1: google.ads.googleads.v16.enums.ConversionOriginEnum
+var file_google_ads_googleads_v17_enums_conversion_origin_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_origin_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_origin_proto_goTypes = []interface{}{
+ (ConversionOriginEnum_ConversionOrigin)(0), // 0: google.ads.googleads.v17.enums.ConversionOriginEnum.ConversionOrigin
+ (*ConversionOriginEnum)(nil), // 1: google.ads.googleads.v17.enums.ConversionOriginEnum
}
-var file_google_ads_googleads_v16_enums_conversion_origin_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_conversion_origin_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -214,13 +214,13 @@ var file_google_ads_googleads_v16_enums_conversion_origin_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_conversion_origin_proto_init() }
-func file_google_ads_googleads_v16_enums_conversion_origin_proto_init() {
- if File_google_ads_googleads_v16_enums_conversion_origin_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_conversion_origin_proto_init() }
+func file_google_ads_googleads_v17_enums_conversion_origin_proto_init() {
+ if File_google_ads_googleads_v17_enums_conversion_origin_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_conversion_origin_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_conversion_origin_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionOriginEnum); i {
case 0:
return &v.state
@@ -237,19 +237,19 @@ func file_google_ads_googleads_v16_enums_conversion_origin_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_conversion_origin_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_conversion_origin_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_conversion_origin_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_conversion_origin_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_conversion_origin_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_conversion_origin_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_conversion_origin_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_conversion_origin_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_conversion_origin_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_conversion_origin_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_conversion_origin_proto = out.File
- file_google_ads_googleads_v16_enums_conversion_origin_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_conversion_origin_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_conversion_origin_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_conversion_origin_proto = out.File
+ file_google_ads_googleads_v17_enums_conversion_origin_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_conversion_origin_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_conversion_origin_proto_depIdxs = nil
}
diff --git a/enums/conversion_tracking_status_enum.pb.go b/enums/conversion_tracking_status_enum.pb.go
index 6caa6aa1..672e8d1c 100644
--- a/enums/conversion_tracking_status_enum.pb.go
+++ b/enums/conversion_tracking_status_enum.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/conversion_tracking_status_enum.proto
+// source: google/ads/googleads/v17/enums/conversion_tracking_status_enum.proto
package enums
@@ -86,11 +86,11 @@ func (x ConversionTrackingStatusEnum_ConversionTrackingStatus) String() string {
}
func (ConversionTrackingStatusEnum_ConversionTrackingStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_enumTypes[0].Descriptor()
}
func (ConversionTrackingStatusEnum_ConversionTrackingStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_enumTypes[0]
}
func (x ConversionTrackingStatusEnum_ConversionTrackingStatus) Number() protoreflect.EnumNumber {
@@ -99,7 +99,7 @@ func (x ConversionTrackingStatusEnum_ConversionTrackingStatus) Number() protoref
// Deprecated: Use ConversionTrackingStatusEnum_ConversionTrackingStatus.Descriptor instead.
func (ConversionTrackingStatusEnum_ConversionTrackingStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum representing the conversion tracking status of the
@@ -113,7 +113,7 @@ type ConversionTrackingStatusEnum struct {
func (x *ConversionTrackingStatusEnum) Reset() {
*x = ConversionTrackingStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +126,7 @@ func (x *ConversionTrackingStatusEnum) String() string {
func (*ConversionTrackingStatusEnum) ProtoMessage() {}
func (x *ConversionTrackingStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,18 +139,18 @@ func (x *ConversionTrackingStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ConversionTrackingStatusEnum.ProtoReflect.Descriptor instead.
func (*ConversionTrackingStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_rawDesc = []byte{
0x0a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x72, 0x61, 0x63,
0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x65, 0x6e, 0x75, 0x6d,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x83, 0x02, 0x0a, 0x1c, 0x43, 0x6f, 0x6e, 0x76, 0x65,
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xe2, 0x01, 0x0a, 0x18, 0x43, 0x6f, 0x6e, 0x76,
@@ -169,43 +169,43 @@ var file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_ra
0x4d, 0x41, 0x4e, 0x41, 0x47, 0x45, 0x44, 0x5f, 0x42, 0x59, 0x5f, 0x41, 0x4e, 0x4f, 0x54, 0x48,
0x45, 0x52, 0x5f, 0x4d, 0x41, 0x4e, 0x41, 0x47, 0x45, 0x52, 0x10, 0x05, 0x42, 0xfb, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x21, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x54,
0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75,
0x6d, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73,
- 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45,
+ 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
- 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_rawDescData = file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_rawDesc
+ file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_rawDescData = file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_goTypes = []interface{}{
- (ConversionTrackingStatusEnum_ConversionTrackingStatus)(0), // 0: google.ads.googleads.v16.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus
- (*ConversionTrackingStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.ConversionTrackingStatusEnum
+var file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_goTypes = []interface{}{
+ (ConversionTrackingStatusEnum_ConversionTrackingStatus)(0), // 0: google.ads.googleads.v17.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus
+ (*ConversionTrackingStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.ConversionTrackingStatusEnum
}
-var file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -213,13 +213,13 @@ var file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_de
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_init() }
-func file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_init() {
- if File_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_init() }
+func file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_init() {
+ if File_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionTrackingStatusEnum); i {
case 0:
return &v.state
@@ -236,19 +236,19 @@ func file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_i
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto = out.File
- file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_conversion_tracking_status_enum_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto = out.File
+ file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_conversion_tracking_status_enum_proto_depIdxs = nil
}
diff --git a/enums/conversion_value_rule_primary_dimension.pb.go b/enums/conversion_value_rule_primary_dimension.pb.go
index 118b7ab3..abd35a60 100644
--- a/enums/conversion_value_rule_primary_dimension.pb.go
+++ b/enums/conversion_value_rule_primary_dimension.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/conversion_value_rule_primary_dimension.proto
+// source: google/ads/googleads/v17/enums/conversion_value_rule_primary_dimension.proto
package enums
@@ -96,11 +96,11 @@ func (x ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimens
}
func (ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_enumTypes[0].Descriptor()
}
func (ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_enumTypes[0]
}
func (x ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension) Number() protoreflect.EnumNumber {
@@ -109,7 +109,7 @@ func (x ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimens
// Deprecated: Use ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension.Descriptor instead.
func (ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing value rule primary dimension for stats.
@@ -122,7 +122,7 @@ type ConversionValueRulePrimaryDimensionEnum struct {
func (x *ConversionValueRulePrimaryDimensionEnum) Reset() {
*x = ConversionValueRulePrimaryDimensionEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -135,7 +135,7 @@ func (x *ConversionValueRulePrimaryDimensionEnum) String() string {
func (*ConversionValueRulePrimaryDimensionEnum) ProtoMessage() {}
func (x *ConversionValueRulePrimaryDimensionEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -148,19 +148,19 @@ func (x *ConversionValueRulePrimaryDimensionEnum) ProtoReflect() protoreflect.Me
// Deprecated: Use ConversionValueRulePrimaryDimensionEnum.ProtoReflect.Descriptor instead.
func (*ConversionValueRulePrimaryDimensionEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_rawDesc = []byte{
0x0a, 0x4c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75,
0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x64,
0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe7,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe7,
0x01, 0x0a, 0x27, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c,
0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x44, 0x69, 0x6d,
0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xbb, 0x01, 0x0a, 0x23, 0x43,
@@ -177,43 +177,43 @@ var file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_
0x41, 0x55, 0x44, 0x49, 0x45, 0x4e, 0x43, 0x45, 0x10, 0x07, 0x12, 0x0c, 0x0a, 0x08, 0x4d, 0x55,
0x4c, 0x54, 0x49, 0x50, 0x4c, 0x45, 0x10, 0x08, 0x42, 0x82, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
0x28, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65,
0x52, 0x75, 0x6c, 0x65, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x44, 0x69, 0x6d, 0x65, 0x6e,
0x73, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_rawDescData = file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_rawDesc
+ file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_rawDescData = file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_goTypes = []interface{}{
- (ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension)(0), // 0: google.ads.googleads.v16.enums.ConversionValueRulePrimaryDimensionEnum.ConversionValueRulePrimaryDimension
- (*ConversionValueRulePrimaryDimensionEnum)(nil), // 1: google.ads.googleads.v16.enums.ConversionValueRulePrimaryDimensionEnum
+var file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_goTypes = []interface{}{
+ (ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension)(0), // 0: google.ads.googleads.v17.enums.ConversionValueRulePrimaryDimensionEnum.ConversionValueRulePrimaryDimension
+ (*ConversionValueRulePrimaryDimensionEnum)(nil), // 1: google.ads.googleads.v17.enums.ConversionValueRulePrimaryDimensionEnum
}
-var file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -221,13 +221,13 @@ var file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_init() }
-func file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_init() {
- if File_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_init() }
+func file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_init() {
+ if File_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionValueRulePrimaryDimensionEnum); i {
case 0:
return &v.state
@@ -244,19 +244,19 @@ func file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto = out.File
- file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_conversion_value_rule_primary_dimension_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto = out.File
+ file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_conversion_value_rule_primary_dimension_proto_depIdxs = nil
}
diff --git a/enums/conversion_value_rule_set_status.pb.go b/enums/conversion_value_rule_set_status.pb.go
index 54469e1d..99652fa7 100644
--- a/enums/conversion_value_rule_set_status.pb.go
+++ b/enums/conversion_value_rule_set_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/conversion_value_rule_set_status.proto
+// source: google/ads/googleads/v17/enums/conversion_value_rule_set_status.proto
package enums
@@ -80,11 +80,11 @@ func (x ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus) String()
}
func (ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_enumTypes[0].Descriptor()
}
func (ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_enumTypes[0]
}
func (x ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus) Number()
// Deprecated: Use ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus.Descriptor instead.
func (ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of a conversion value rule
@@ -107,7 +107,7 @@ type ConversionValueRuleSetStatusEnum struct {
func (x *ConversionValueRuleSetStatusEnum) Reset() {
*x = ConversionValueRuleSetStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -120,7 +120,7 @@ func (x *ConversionValueRuleSetStatusEnum) String() string {
func (*ConversionValueRuleSetStatusEnum) ProtoMessage() {}
func (x *ConversionValueRuleSetStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -133,19 +133,19 @@ func (x *ConversionValueRuleSetStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ConversionValueRuleSetStatusEnum.ProtoReflect.Descriptor instead.
func (*ConversionValueRuleSetStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_rawDesc = []byte{
0x0a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75,
0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75,
0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x86, 0x01, 0x0a, 0x20, 0x43, 0x6f, 0x6e, 0x76,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x86, 0x01, 0x0a, 0x20, 0x43, 0x6f, 0x6e, 0x76,
0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53,
0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x62, 0x0a, 0x1c,
0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
@@ -156,42 +156,42 @@ var file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_r
0x45, 0x44, 0x10, 0x03, 0x12, 0x0a, 0x0a, 0x06, 0x50, 0x41, 0x55, 0x53, 0x45, 0x44, 0x10, 0x04,
0x42, 0xfb, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_rawDescData = file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_rawDescData = file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_goTypes = []interface{}{
- (ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus)(0), // 0: google.ads.googleads.v16.enums.ConversionValueRuleSetStatusEnum.ConversionValueRuleSetStatus
- (*ConversionValueRuleSetStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.ConversionValueRuleSetStatusEnum
+var file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_goTypes = []interface{}{
+ (ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus)(0), // 0: google.ads.googleads.v17.enums.ConversionValueRuleSetStatusEnum.ConversionValueRuleSetStatus
+ (*ConversionValueRuleSetStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.ConversionValueRuleSetStatusEnum
}
-var file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -199,13 +199,13 @@ var file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_d
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_init() }
-func file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_init() {
- if File_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_init() }
+func file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionValueRuleSetStatusEnum); i {
case 0:
return &v.state
@@ -222,19 +222,19 @@ func file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto = out.File
- file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_conversion_value_rule_set_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto = out.File
+ file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_conversion_value_rule_set_status_proto_depIdxs = nil
}
diff --git a/enums/conversion_value_rule_status.pb.go b/enums/conversion_value_rule_status.pb.go
index 734ced68..5a72db79 100644
--- a/enums/conversion_value_rule_status.pb.go
+++ b/enums/conversion_value_rule_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/conversion_value_rule_status.proto
+// source: google/ads/googleads/v17/enums/conversion_value_rule_status.proto
package enums
@@ -79,11 +79,11 @@ func (x ConversionValueRuleStatusEnum_ConversionValueRuleStatus) String() string
}
func (ConversionValueRuleStatusEnum_ConversionValueRuleStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_enumTypes[0].Descriptor()
}
func (ConversionValueRuleStatusEnum_ConversionValueRuleStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_enumTypes[0]
}
func (x ConversionValueRuleStatusEnum_ConversionValueRuleStatus) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x ConversionValueRuleStatusEnum_ConversionValueRuleStatus) Number() protor
// Deprecated: Use ConversionValueRuleStatusEnum_ConversionValueRuleStatus.Descriptor instead.
func (ConversionValueRuleStatusEnum_ConversionValueRuleStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of a conversion value rule.
@@ -105,7 +105,7 @@ type ConversionValueRuleStatusEnum struct {
func (x *ConversionValueRuleStatusEnum) Reset() {
*x = ConversionValueRuleStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *ConversionValueRuleStatusEnum) String() string {
func (*ConversionValueRuleStatusEnum) ProtoMessage() {}
func (x *ConversionValueRuleStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *ConversionValueRuleStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ConversionValueRuleStatusEnum.ProtoReflect.Descriptor instead.
func (*ConversionValueRuleStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_conversion_value_rule_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_conversion_value_rule_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_rawDesc = []byte{
0x0a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75,
0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x22, 0x80, 0x01, 0x0a, 0x1d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75,
0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5f, 0x0a, 0x19, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
@@ -153,42 +153,42 @@ var file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_rawDe
0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x12, 0x0a, 0x0a, 0x06, 0x50, 0x41,
0x55, 0x53, 0x45, 0x44, 0x10, 0x04, 0x42, 0xf8, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x43,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x43,
0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75,
0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_rawDescData = file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_rawDescData = file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_goTypes = []interface{}{
- (ConversionValueRuleStatusEnum_ConversionValueRuleStatus)(0), // 0: google.ads.googleads.v16.enums.ConversionValueRuleStatusEnum.ConversionValueRuleStatus
- (*ConversionValueRuleStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.ConversionValueRuleStatusEnum
+var file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_goTypes = []interface{}{
+ (ConversionValueRuleStatusEnum_ConversionValueRuleStatus)(0), // 0: google.ads.googleads.v17.enums.ConversionValueRuleStatusEnum.ConversionValueRuleStatus
+ (*ConversionValueRuleStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.ConversionValueRuleStatusEnum
}
-var file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -196,13 +196,13 @@ var file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_depId
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_init() }
-func file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_init() {
- if File_google_ads_googleads_v16_enums_conversion_value_rule_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_init() }
+func file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_conversion_value_rule_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionValueRuleStatusEnum); i {
case 0:
return &v.state
@@ -219,19 +219,19 @@ func file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_init
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_conversion_value_rule_status_proto = out.File
- file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_conversion_value_rule_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_conversion_value_rule_status_proto = out.File
+ file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_conversion_value_rule_status_proto_depIdxs = nil
}
diff --git a/enums/converting_user_prior_engagement_type_and_ltv_bucket.pb.go b/enums/converting_user_prior_engagement_type_and_ltv_bucket.pb.go
index 458d3280..a7342bc7 100644
--- a/enums/converting_user_prior_engagement_type_and_ltv_bucket.pb.go
+++ b/enums/converting_user_prior_engagement_type_and_ltv_bucket.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/converting_user_prior_engagement_type_and_ltv_bucket.proto
+// source: google/ads/googleads/v17/enums/converting_user_prior_engagement_type_and_ltv_bucket.proto
package enums
@@ -81,11 +81,11 @@ func (x ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEng
}
func (ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_enumTypes[0].Descriptor()
}
func (ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_enumTypes[0]
}
func (x ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket) Number() protoreflect.EnumNumber {
@@ -94,7 +94,7 @@ func (x ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEng
// Deprecated: Use ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket.Descriptor instead.
func (ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enumeration of converting user prior engagement types and
@@ -108,7 +108,7 @@ type ConvertingUserPriorEngagementTypeAndLtvBucketEnum struct {
func (x *ConvertingUserPriorEngagementTypeAndLtvBucketEnum) Reset() {
*x = ConvertingUserPriorEngagementTypeAndLtvBucketEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -121,7 +121,7 @@ func (x *ConvertingUserPriorEngagementTypeAndLtvBucketEnum) String() string {
func (*ConvertingUserPriorEngagementTypeAndLtvBucketEnum) ProtoMessage() {}
func (x *ConvertingUserPriorEngagementTypeAndLtvBucketEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -134,20 +134,20 @@ func (x *ConvertingUserPriorEngagementTypeAndLtvBucketEnum) ProtoReflect() proto
// Deprecated: Use ConvertingUserPriorEngagementTypeAndLtvBucketEnum.ProtoReflect.Descriptor instead.
func (*ConvertingUserPriorEngagementTypeAndLtvBucketEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDesc = []byte{
0x0a, 0x59, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x75, 0x73, 0x65, 0x72,
0x5f, 0x70, 0x72, 0x69, 0x6f, 0x72, 0x5f, 0x65, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x61, 0x6e, 0x64, 0x5f, 0x6c, 0x74, 0x76, 0x5f, 0x62,
0x75, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xb0, 0x01, 0x0a, 0x31,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xb0, 0x01, 0x0a, 0x31,
0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72,
0x69, 0x6f, 0x72, 0x45, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70,
0x65, 0x41, 0x6e, 0x64, 0x4c, 0x74, 0x76, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x45, 0x6e, 0x75,
@@ -160,7 +160,7 @@ var file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_an
0x55, 0x52, 0x4e, 0x49, 0x4e, 0x47, 0x10, 0x03, 0x12, 0x14, 0x0a, 0x10, 0x4e, 0x45, 0x57, 0x5f,
0x41, 0x4e, 0x44, 0x5f, 0x48, 0x49, 0x47, 0x48, 0x5f, 0x4c, 0x54, 0x56, 0x10, 0x04, 0x42, 0x8c,
0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x32, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x69, 0x6e,
0x67, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x69, 0x6f, 0x72, 0x45, 0x6e, 0x67, 0x61, 0x67, 0x65,
0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x41, 0x6e, 0x64, 0x4c, 0x74, 0x76, 0x42, 0x75,
@@ -168,36 +168,36 @@ var file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_an
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescData = file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDesc
+ file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescData = file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_goTypes = []interface{}{
- (ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket)(0), // 0: google.ads.googleads.v16.enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum.ConvertingUserPriorEngagementTypeAndLtvBucket
- (*ConvertingUserPriorEngagementTypeAndLtvBucketEnum)(nil), // 1: google.ads.googleads.v16.enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum
+var file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_goTypes = []interface{}{
+ (ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket)(0), // 0: google.ads.googleads.v17.enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum.ConvertingUserPriorEngagementTypeAndLtvBucket
+ (*ConvertingUserPriorEngagementTypeAndLtvBucketEnum)(nil), // 1: google.ads.googleads.v17.enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum
}
-var file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -206,14 +206,14 @@ var file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_an
}
func init() {
- file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_init()
+ file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_init()
}
-func file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_init() {
- if File_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto != nil {
+func file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_init() {
+ if File_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConvertingUserPriorEngagementTypeAndLtvBucketEnum); i {
case 0:
return &v.state
@@ -230,19 +230,19 @@ func file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_a
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto = out.File
- file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto = out.File
+ file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_depIdxs = nil
}
diff --git a/enums/criterion_category_channel_availability_mode.pb.go b/enums/criterion_category_channel_availability_mode.pb.go
index 34bef4e5..1ea4eadd 100644
--- a/enums/criterion_category_channel_availability_mode.pb.go
+++ b/enums/criterion_category_channel_availability_mode.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/criterion_category_channel_availability_mode.proto
+// source: google/ads/googleads/v17/enums/criterion_category_channel_availability_mode.proto
package enums
@@ -81,11 +81,11 @@ func (x CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAva
}
func (CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_enumTypes[0].Descriptor()
}
func (CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_enumTypes[0]
}
func (x CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode) Number() protoreflect.EnumNumber {
@@ -94,7 +94,7 @@ func (x CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAva
// Deprecated: Use CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode.Descriptor instead.
func (CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_rawDescGZIP(), []int{0, 0}
}
// Describes channel availability mode for a criterion availability - whether
@@ -110,7 +110,7 @@ type CriterionCategoryChannelAvailabilityModeEnum struct {
func (x *CriterionCategoryChannelAvailabilityModeEnum) Reset() {
*x = CriterionCategoryChannelAvailabilityModeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -123,7 +123,7 @@ func (x *CriterionCategoryChannelAvailabilityModeEnum) String() string {
func (*CriterionCategoryChannelAvailabilityModeEnum) ProtoMessage() {}
func (x *CriterionCategoryChannelAvailabilityModeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -136,19 +136,19 @@ func (x *CriterionCategoryChannelAvailabilityModeEnum) ProtoReflect() protorefle
// Deprecated: Use CriterionCategoryChannelAvailabilityModeEnum.ProtoReflect.Descriptor instead.
func (*CriterionCategoryChannelAvailabilityModeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_rawDesc = []byte{
0x0a, 0x51, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67,
0x6f, 0x72, 0x79, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x61, 0x76, 0x61, 0x69,
0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x22, 0xd4, 0x01, 0x0a, 0x2c, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f,
0x6e, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c,
0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x6f, 0x64, 0x65,
@@ -164,43 +164,43 @@ var file_google_ads_googleads_v16_enums_criterion_category_channel_availability_
0x54, 0x59, 0x50, 0x45, 0x5f, 0x41, 0x4e, 0x44, 0x5f, 0x53, 0x55, 0x42, 0x53, 0x45, 0x54, 0x5f,
0x53, 0x55, 0x42, 0x54, 0x59, 0x50, 0x45, 0x53, 0x10, 0x04, 0x42, 0x87, 0x02, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x2d, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x43, 0x61, 0x74, 0x65,
0x67, 0x6f, 0x72, 0x79, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x41, 0x76, 0x61, 0x69, 0x6c,
0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x6f, 0x64, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_rawDescData = file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_rawDesc
+ file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_rawDescData = file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_goTypes = []interface{}{
- (CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode)(0), // 0: google.ads.googleads.v16.enums.CriterionCategoryChannelAvailabilityModeEnum.CriterionCategoryChannelAvailabilityMode
- (*CriterionCategoryChannelAvailabilityModeEnum)(nil), // 1: google.ads.googleads.v16.enums.CriterionCategoryChannelAvailabilityModeEnum
+var file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_goTypes = []interface{}{
+ (CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode)(0), // 0: google.ads.googleads.v17.enums.CriterionCategoryChannelAvailabilityModeEnum.CriterionCategoryChannelAvailabilityMode
+ (*CriterionCategoryChannelAvailabilityModeEnum)(nil), // 1: google.ads.googleads.v17.enums.CriterionCategoryChannelAvailabilityModeEnum
}
-var file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -209,14 +209,14 @@ var file_google_ads_googleads_v16_enums_criterion_category_channel_availability_
}
func init() {
- file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_init()
+ file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_init()
}
-func file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_init() {
- if File_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto != nil {
+func file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_init() {
+ if File_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CriterionCategoryChannelAvailabilityModeEnum); i {
case 0:
return &v.state
@@ -233,19 +233,19 @@ func file_google_ads_googleads_v16_enums_criterion_category_channel_availability
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto = out.File
- file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_criterion_category_channel_availability_mode_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto = out.File
+ file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_criterion_category_channel_availability_mode_proto_depIdxs = nil
}
diff --git a/enums/criterion_category_locale_availability_mode.pb.go b/enums/criterion_category_locale_availability_mode.pb.go
index 31f53988..2001f75e 100644
--- a/enums/criterion_category_locale_availability_mode.pb.go
+++ b/enums/criterion_category_locale_availability_mode.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/criterion_category_locale_availability_mode.proto
+// source: google/ads/googleads/v17/enums/criterion_category_locale_availability_mode.proto
package enums
@@ -86,11 +86,11 @@ func (x CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvail
}
func (CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_enumTypes[0].Descriptor()
}
func (CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_enumTypes[0]
}
func (x CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode) Number() protoreflect.EnumNumber {
@@ -99,7 +99,7 @@ func (x CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvail
// Deprecated: Use CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode.Descriptor instead.
func (CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_rawDescGZIP(), []int{0, 0}
}
// Describes locale availability mode for a criterion availability - whether
@@ -114,7 +114,7 @@ type CriterionCategoryLocaleAvailabilityModeEnum struct {
func (x *CriterionCategoryLocaleAvailabilityModeEnum) Reset() {
*x = CriterionCategoryLocaleAvailabilityModeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -127,7 +127,7 @@ func (x *CriterionCategoryLocaleAvailabilityModeEnum) String() string {
func (*CriterionCategoryLocaleAvailabilityModeEnum) ProtoMessage() {}
func (x *CriterionCategoryLocaleAvailabilityModeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -140,19 +140,19 @@ func (x *CriterionCategoryLocaleAvailabilityModeEnum) ProtoReflect() protoreflec
// Deprecated: Use CriterionCategoryLocaleAvailabilityModeEnum.ProtoReflect.Descriptor instead.
func (*CriterionCategoryLocaleAvailabilityModeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_rawDesc = []byte{
0x0a, 0x50, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67,
0x6f, 0x72, 0x79, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x65, 0x5f, 0x61, 0x76, 0x61, 0x69, 0x6c,
0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0xe1, 0x01, 0x0a, 0x2b, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e,
0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x65, 0x41, 0x76,
0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x4d, 0x6f, 0x64, 0x65, 0x45, 0x6e,
@@ -169,43 +169,43 @@ var file_google_ads_googleads_v16_enums_criterion_category_locale_availability_m
0x43, 0x4f, 0x55, 0x4e, 0x54, 0x52, 0x59, 0x5f, 0x41, 0x4e, 0x44, 0x5f, 0x4c, 0x41, 0x4e, 0x47,
0x55, 0x41, 0x47, 0x45, 0x10, 0x05, 0x42, 0x86, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2c, 0x43,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2c, 0x43,
0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79,
0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x65, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69,
0x74, 0x79, 0x4d, 0x6f, 0x64, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_rawDescData = file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_rawDesc
+ file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_rawDescData = file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_goTypes = []interface{}{
- (CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode)(0), // 0: google.ads.googleads.v16.enums.CriterionCategoryLocaleAvailabilityModeEnum.CriterionCategoryLocaleAvailabilityMode
- (*CriterionCategoryLocaleAvailabilityModeEnum)(nil), // 1: google.ads.googleads.v16.enums.CriterionCategoryLocaleAvailabilityModeEnum
+var file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_goTypes = []interface{}{
+ (CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode)(0), // 0: google.ads.googleads.v17.enums.CriterionCategoryLocaleAvailabilityModeEnum.CriterionCategoryLocaleAvailabilityMode
+ (*CriterionCategoryLocaleAvailabilityModeEnum)(nil), // 1: google.ads.googleads.v17.enums.CriterionCategoryLocaleAvailabilityModeEnum
}
-var file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -214,14 +214,14 @@ var file_google_ads_googleads_v16_enums_criterion_category_locale_availability_m
}
func init() {
- file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_init()
+ file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_init()
}
-func file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_init() {
- if File_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto != nil {
+func file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_init() {
+ if File_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CriterionCategoryLocaleAvailabilityModeEnum); i {
case 0:
return &v.state
@@ -238,19 +238,19 @@ func file_google_ads_googleads_v16_enums_criterion_category_locale_availability_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto = out.File
- file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_criterion_category_locale_availability_mode_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto = out.File
+ file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_criterion_category_locale_availability_mode_proto_depIdxs = nil
}
diff --git a/enums/criterion_system_serving_status.pb.go b/enums/criterion_system_serving_status.pb.go
index 500c6779..18882793 100644
--- a/enums/criterion_system_serving_status.pb.go
+++ b/enums/criterion_system_serving_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/criterion_system_serving_status.proto
+// source: google/ads/googleads/v17/enums/criterion_system_serving_status.proto
package enums
@@ -75,11 +75,11 @@ func (x CriterionSystemServingStatusEnum_CriterionSystemServingStatus) String()
}
func (CriterionSystemServingStatusEnum_CriterionSystemServingStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_enumTypes[0].Descriptor()
}
func (CriterionSystemServingStatusEnum_CriterionSystemServingStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_enumTypes[0]
}
func (x CriterionSystemServingStatusEnum_CriterionSystemServingStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x CriterionSystemServingStatusEnum_CriterionSystemServingStatus) Number()
// Deprecated: Use CriterionSystemServingStatusEnum_CriterionSystemServingStatus.Descriptor instead.
func (CriterionSystemServingStatusEnum_CriterionSystemServingStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible criterion system serving statuses.
@@ -101,7 +101,7 @@ type CriterionSystemServingStatusEnum struct {
func (x *CriterionSystemServingStatusEnum) Reset() {
*x = CriterionSystemServingStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *CriterionSystemServingStatusEnum) String() string {
func (*CriterionSystemServingStatusEnum) ProtoMessage() {}
func (x *CriterionSystemServingStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *CriterionSystemServingStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CriterionSystemServingStatusEnum.ProtoReflect.Descriptor instead.
func (*CriterionSystemServingStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_criterion_system_serving_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_criterion_system_serving_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_rawDesc = []byte{
0x0a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x79, 0x73, 0x74, 0x65,
0x6d, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x81, 0x01, 0x0a, 0x20, 0x43, 0x72, 0x69, 0x74, 0x65,
0x72, 0x69, 0x6f, 0x6e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x72, 0x76, 0x69, 0x6e,
0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5d, 0x0a, 0x1c, 0x43,
@@ -149,42 +149,42 @@ var file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_ra
0x47, 0x49, 0x42, 0x4c, 0x45, 0x10, 0x02, 0x12, 0x11, 0x0a, 0x0d, 0x52, 0x41, 0x52, 0x45, 0x4c,
0x59, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42, 0xfb, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x21, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x53, 0x79, 0x73, 0x74,
0x65, 0x6d, 0x53, 0x65, 0x72, 0x76, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_rawDescData = file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_rawDescData = file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_goTypes = []interface{}{
- (CriterionSystemServingStatusEnum_CriterionSystemServingStatus)(0), // 0: google.ads.googleads.v16.enums.CriterionSystemServingStatusEnum.CriterionSystemServingStatus
- (*CriterionSystemServingStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.CriterionSystemServingStatusEnum
+var file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_goTypes = []interface{}{
+ (CriterionSystemServingStatusEnum_CriterionSystemServingStatus)(0), // 0: google.ads.googleads.v17.enums.CriterionSystemServingStatusEnum.CriterionSystemServingStatus
+ (*CriterionSystemServingStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.CriterionSystemServingStatusEnum
}
-var file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -192,13 +192,13 @@ var file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_de
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_init() }
-func file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_init() {
- if File_google_ads_googleads_v16_enums_criterion_system_serving_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_init() }
+func file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_criterion_system_serving_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CriterionSystemServingStatusEnum); i {
case 0:
return &v.state
@@ -215,19 +215,19 @@ func file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_i
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_criterion_system_serving_status_proto = out.File
- file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_criterion_system_serving_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_criterion_system_serving_status_proto = out.File
+ file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_criterion_system_serving_status_proto_depIdxs = nil
}
diff --git a/enums/criterion_type.pb.go b/enums/criterion_type.pb.go
index 672917ec..af4c5cd1 100644
--- a/enums/criterion_type.pb.go
+++ b/enums/criterion_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/criterion_type.proto
+// source: google/ads/googleads/v17/enums/criterion_type.proto
package enums
@@ -227,11 +227,11 @@ func (x CriterionTypeEnum_CriterionType) String() string {
}
func (CriterionTypeEnum_CriterionType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_criterion_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_criterion_type_proto_enumTypes[0].Descriptor()
}
func (CriterionTypeEnum_CriterionType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_criterion_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_criterion_type_proto_enumTypes[0]
}
func (x CriterionTypeEnum_CriterionType) Number() protoreflect.EnumNumber {
@@ -240,7 +240,7 @@ func (x CriterionTypeEnum_CriterionType) Number() protoreflect.EnumNumber {
// Deprecated: Use CriterionTypeEnum_CriterionType.Descriptor instead.
func (CriterionTypeEnum_CriterionType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_criterion_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_criterion_type_proto_rawDescGZIP(), []int{0, 0}
}
// The possible types of a criterion.
@@ -253,7 +253,7 @@ type CriterionTypeEnum struct {
func (x *CriterionTypeEnum) Reset() {
*x = CriterionTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_criterion_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_criterion_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -266,7 +266,7 @@ func (x *CriterionTypeEnum) String() string {
func (*CriterionTypeEnum) ProtoMessage() {}
func (x *CriterionTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_criterion_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_criterion_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -279,17 +279,17 @@ func (x *CriterionTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CriterionTypeEnum.ProtoReflect.Descriptor instead.
func (*CriterionTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_criterion_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_criterion_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_criterion_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_criterion_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_criterion_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_criterion_type_proto_rawDesc = []byte{
0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8f, 0x06, 0x0a, 0x11, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72,
0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xf9, 0x05, 0x0a, 0x0d,
0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a,
@@ -341,41 +341,41 @@ var file_google_ads_googleads_v16_enums_criterion_type_proto_rawDesc = []byte{
0x5f, 0x4c, 0x49, 0x53, 0x54, 0x10, 0x28, 0x12, 0x0e, 0x0a, 0x0a, 0x4c, 0x49, 0x46, 0x45, 0x5f,
0x45, 0x56, 0x45, 0x4e, 0x54, 0x10, 0x29, 0x42, 0xec, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12,
0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_criterion_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_criterion_type_proto_rawDescData = file_google_ads_googleads_v16_enums_criterion_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_criterion_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_criterion_type_proto_rawDescData = file_google_ads_googleads_v17_enums_criterion_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_criterion_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_criterion_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_criterion_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_criterion_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_criterion_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_criterion_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_criterion_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_criterion_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_criterion_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_criterion_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_criterion_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_criterion_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_criterion_type_proto_goTypes = []interface{}{
- (CriterionTypeEnum_CriterionType)(0), // 0: google.ads.googleads.v16.enums.CriterionTypeEnum.CriterionType
- (*CriterionTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.CriterionTypeEnum
+var file_google_ads_googleads_v17_enums_criterion_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_criterion_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_criterion_type_proto_goTypes = []interface{}{
+ (CriterionTypeEnum_CriterionType)(0), // 0: google.ads.googleads.v17.enums.CriterionTypeEnum.CriterionType
+ (*CriterionTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.CriterionTypeEnum
}
-var file_google_ads_googleads_v16_enums_criterion_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_criterion_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -383,13 +383,13 @@ var file_google_ads_googleads_v16_enums_criterion_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_criterion_type_proto_init() }
-func file_google_ads_googleads_v16_enums_criterion_type_proto_init() {
- if File_google_ads_googleads_v16_enums_criterion_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_criterion_type_proto_init() }
+func file_google_ads_googleads_v17_enums_criterion_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_criterion_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_criterion_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_criterion_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CriterionTypeEnum); i {
case 0:
return &v.state
@@ -406,19 +406,19 @@ func file_google_ads_googleads_v16_enums_criterion_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_criterion_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_criterion_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_criterion_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_criterion_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_criterion_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_criterion_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_criterion_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_criterion_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_criterion_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_criterion_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_criterion_type_proto = out.File
- file_google_ads_googleads_v16_enums_criterion_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_criterion_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_criterion_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_criterion_type_proto = out.File
+ file_google_ads_googleads_v17_enums_criterion_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_criterion_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_criterion_type_proto_depIdxs = nil
}
diff --git a/enums/custom_audience_member_type.pb.go b/enums/custom_audience_member_type.pb.go
index 3f80fd97..046332a8 100644
--- a/enums/custom_audience_member_type.pb.go
+++ b/enums/custom_audience_member_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/custom_audience_member_type.proto
+// source: google/ads/googleads/v17/enums/custom_audience_member_type.proto
package enums
@@ -83,11 +83,11 @@ func (x CustomAudienceMemberTypeEnum_CustomAudienceMemberType) String() string {
}
func (CustomAudienceMemberTypeEnum_CustomAudienceMemberType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_enumTypes[0].Descriptor()
}
func (CustomAudienceMemberTypeEnum_CustomAudienceMemberType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_enumTypes[0]
}
func (x CustomAudienceMemberTypeEnum_CustomAudienceMemberType) Number() protoreflect.EnumNumber {
@@ -96,7 +96,7 @@ func (x CustomAudienceMemberTypeEnum_CustomAudienceMemberType) Number() protoref
// Deprecated: Use CustomAudienceMemberTypeEnum_CustomAudienceMemberType.Descriptor instead.
func (CustomAudienceMemberTypeEnum_CustomAudienceMemberType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_rawDescGZIP(), []int{0, 0}
}
// The type of custom audience member.
@@ -109,7 +109,7 @@ type CustomAudienceMemberTypeEnum struct {
func (x *CustomAudienceMemberTypeEnum) Reset() {
*x = CustomAudienceMemberTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -122,7 +122,7 @@ func (x *CustomAudienceMemberTypeEnum) String() string {
func (*CustomAudienceMemberTypeEnum) ProtoMessage() {}
func (x *CustomAudienceMemberTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -135,18 +135,18 @@ func (x *CustomAudienceMemberTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomAudienceMemberTypeEnum.ProtoReflect.Descriptor instead.
func (*CustomAudienceMemberTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_custom_audience_member_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_custom_audience_member_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65,
0x5f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x8b, 0x01, 0x0a, 0x1c, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64,
0x69, 0x65, 0x6e, 0x63, 0x65, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0x6b, 0x0a, 0x18, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64,
@@ -158,42 +158,42 @@ var file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_rawDes
0x45, 0x47, 0x4f, 0x52, 0x59, 0x10, 0x04, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x50, 0x50, 0x10, 0x05,
0x42, 0xf7, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41,
0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x54, 0x79, 0x70,
0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73,
- 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45,
+ 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
- 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_rawDescData = file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_rawDescData = file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_goTypes = []interface{}{
- (CustomAudienceMemberTypeEnum_CustomAudienceMemberType)(0), // 0: google.ads.googleads.v16.enums.CustomAudienceMemberTypeEnum.CustomAudienceMemberType
- (*CustomAudienceMemberTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.CustomAudienceMemberTypeEnum
+var file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_goTypes = []interface{}{
+ (CustomAudienceMemberTypeEnum_CustomAudienceMemberType)(0), // 0: google.ads.googleads.v17.enums.CustomAudienceMemberTypeEnum.CustomAudienceMemberType
+ (*CustomAudienceMemberTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.CustomAudienceMemberTypeEnum
}
-var file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -201,13 +201,13 @@ var file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_init() }
-func file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_init() {
- if File_google_ads_googleads_v16_enums_custom_audience_member_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_init() }
+func file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_custom_audience_member_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomAudienceMemberTypeEnum); i {
case 0:
return &v.state
@@ -224,19 +224,19 @@ func file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_custom_audience_member_type_proto = out.File
- file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_custom_audience_member_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_custom_audience_member_type_proto = out.File
+ file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_custom_audience_member_type_proto_depIdxs = nil
}
diff --git a/enums/custom_audience_status.pb.go b/enums/custom_audience_status.pb.go
index 9faca79f..5bf731d1 100644
--- a/enums/custom_audience_status.pb.go
+++ b/enums/custom_audience_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/custom_audience_status.proto
+// source: google/ads/googleads/v17/enums/custom_audience_status.proto
package enums
@@ -76,11 +76,11 @@ func (x CustomAudienceStatusEnum_CustomAudienceStatus) String() string {
}
func (CustomAudienceStatusEnum_CustomAudienceStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_custom_audience_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_custom_audience_status_proto_enumTypes[0].Descriptor()
}
func (CustomAudienceStatusEnum_CustomAudienceStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_custom_audience_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_custom_audience_status_proto_enumTypes[0]
}
func (x CustomAudienceStatusEnum_CustomAudienceStatus) Number() protoreflect.EnumNumber {
@@ -89,7 +89,7 @@ func (x CustomAudienceStatusEnum_CustomAudienceStatus) Number() protoreflect.Enu
// Deprecated: Use CustomAudienceStatusEnum_CustomAudienceStatus.Descriptor instead.
func (CustomAudienceStatusEnum_CustomAudienceStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_custom_audience_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_custom_audience_status_proto_rawDescGZIP(), []int{0, 0}
}
// The status of custom audience.
@@ -102,7 +102,7 @@ type CustomAudienceStatusEnum struct {
func (x *CustomAudienceStatusEnum) Reset() {
*x = CustomAudienceStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_custom_audience_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_custom_audience_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -115,7 +115,7 @@ func (x *CustomAudienceStatusEnum) String() string {
func (*CustomAudienceStatusEnum) ProtoMessage() {}
func (x *CustomAudienceStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_custom_audience_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_custom_audience_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -128,18 +128,18 @@ func (x *CustomAudienceStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomAudienceStatusEnum.ProtoReflect.Descriptor instead.
func (*CustomAudienceStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_custom_audience_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_custom_audience_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_custom_audience_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_custom_audience_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_custom_audience_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_custom_audience_status_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65,
0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6a, 0x0a,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6a, 0x0a,
0x18, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4e, 0x0a, 0x14, 0x43, 0x75, 0x73,
0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_enums_custom_audience_status_proto_rawDesc = [
0x0b, 0x0a, 0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07,
0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42, 0xf3, 0x01, 0x0a, 0x22, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x42, 0x19, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_custom_audience_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_custom_audience_status_proto_rawDescData = file_google_ads_googleads_v16_enums_custom_audience_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_custom_audience_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_custom_audience_status_proto_rawDescData = file_google_ads_googleads_v17_enums_custom_audience_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_custom_audience_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_custom_audience_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_custom_audience_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_custom_audience_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_custom_audience_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_custom_audience_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_custom_audience_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_custom_audience_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_custom_audience_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_custom_audience_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_custom_audience_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_custom_audience_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_custom_audience_status_proto_goTypes = []interface{}{
- (CustomAudienceStatusEnum_CustomAudienceStatus)(0), // 0: google.ads.googleads.v16.enums.CustomAudienceStatusEnum.CustomAudienceStatus
- (*CustomAudienceStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.CustomAudienceStatusEnum
+var file_google_ads_googleads_v17_enums_custom_audience_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_custom_audience_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_custom_audience_status_proto_goTypes = []interface{}{
+ (CustomAudienceStatusEnum_CustomAudienceStatus)(0), // 0: google.ads.googleads.v17.enums.CustomAudienceStatusEnum.CustomAudienceStatus
+ (*CustomAudienceStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.CustomAudienceStatusEnum
}
-var file_google_ads_googleads_v16_enums_custom_audience_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_custom_audience_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_custom_audience_status_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_custom_audience_status_proto_init() }
-func file_google_ads_googleads_v16_enums_custom_audience_status_proto_init() {
- if File_google_ads_googleads_v16_enums_custom_audience_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_custom_audience_status_proto_init() }
+func file_google_ads_googleads_v17_enums_custom_audience_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_custom_audience_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_custom_audience_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_custom_audience_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomAudienceStatusEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_custom_audience_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_custom_audience_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_custom_audience_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_custom_audience_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_custom_audience_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_custom_audience_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_custom_audience_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_custom_audience_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_custom_audience_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_custom_audience_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_custom_audience_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_custom_audience_status_proto = out.File
- file_google_ads_googleads_v16_enums_custom_audience_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_custom_audience_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_custom_audience_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_custom_audience_status_proto = out.File
+ file_google_ads_googleads_v17_enums_custom_audience_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_custom_audience_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_custom_audience_status_proto_depIdxs = nil
}
diff --git a/enums/custom_audience_type.pb.go b/enums/custom_audience_type.pb.go
index 305b1a25..e26f1575 100644
--- a/enums/custom_audience_type.pb.go
+++ b/enums/custom_audience_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/custom_audience_type.proto
+// source: google/ads/googleads/v17/enums/custom_audience_type.proto
package enums
@@ -85,11 +85,11 @@ func (x CustomAudienceTypeEnum_CustomAudienceType) String() string {
}
func (CustomAudienceTypeEnum_CustomAudienceType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_custom_audience_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_custom_audience_type_proto_enumTypes[0].Descriptor()
}
func (CustomAudienceTypeEnum_CustomAudienceType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_custom_audience_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_custom_audience_type_proto_enumTypes[0]
}
func (x CustomAudienceTypeEnum_CustomAudienceType) Number() protoreflect.EnumNumber {
@@ -98,7 +98,7 @@ func (x CustomAudienceTypeEnum_CustomAudienceType) Number() protoreflect.EnumNum
// Deprecated: Use CustomAudienceTypeEnum_CustomAudienceType.Descriptor instead.
func (CustomAudienceTypeEnum_CustomAudienceType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_custom_audience_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_custom_audience_type_proto_rawDescGZIP(), []int{0, 0}
}
// The types of custom audience.
@@ -111,7 +111,7 @@ type CustomAudienceTypeEnum struct {
func (x *CustomAudienceTypeEnum) Reset() {
*x = CustomAudienceTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_custom_audience_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_custom_audience_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -124,7 +124,7 @@ func (x *CustomAudienceTypeEnum) String() string {
func (*CustomAudienceTypeEnum) ProtoMessage() {}
func (x *CustomAudienceTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_custom_audience_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_custom_audience_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -137,18 +137,18 @@ func (x *CustomAudienceTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomAudienceTypeEnum.ProtoReflect.Descriptor instead.
func (*CustomAudienceTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_custom_audience_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_custom_audience_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_custom_audience_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_custom_audience_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_custom_audience_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_custom_audience_type_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65,
0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x85, 0x01, 0x0a, 0x16,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x85, 0x01, 0x0a, 0x16,
0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x54, 0x79,
0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x6b, 0x0a, 0x12, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b,
@@ -159,41 +159,41 @@ var file_google_ads_googleads_v16_enums_custom_audience_type_proto_rawDesc = []b
0x4e, 0x54, 0x45, 0x4e, 0x54, 0x10, 0x04, 0x12, 0x0a, 0x0a, 0x06, 0x53, 0x45, 0x41, 0x52, 0x43,
0x48, 0x10, 0x05, 0x42, 0xf1, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x43, 0x75, 0x73, 0x74,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x43, 0x75, 0x73, 0x74,
0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_custom_audience_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_custom_audience_type_proto_rawDescData = file_google_ads_googleads_v16_enums_custom_audience_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_custom_audience_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_custom_audience_type_proto_rawDescData = file_google_ads_googleads_v17_enums_custom_audience_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_custom_audience_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_custom_audience_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_custom_audience_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_custom_audience_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_custom_audience_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_custom_audience_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_custom_audience_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_custom_audience_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_custom_audience_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_custom_audience_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_custom_audience_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_custom_audience_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_custom_audience_type_proto_goTypes = []interface{}{
- (CustomAudienceTypeEnum_CustomAudienceType)(0), // 0: google.ads.googleads.v16.enums.CustomAudienceTypeEnum.CustomAudienceType
- (*CustomAudienceTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.CustomAudienceTypeEnum
+var file_google_ads_googleads_v17_enums_custom_audience_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_custom_audience_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_custom_audience_type_proto_goTypes = []interface{}{
+ (CustomAudienceTypeEnum_CustomAudienceType)(0), // 0: google.ads.googleads.v17.enums.CustomAudienceTypeEnum.CustomAudienceType
+ (*CustomAudienceTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.CustomAudienceTypeEnum
}
-var file_google_ads_googleads_v16_enums_custom_audience_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_custom_audience_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -201,13 +201,13 @@ var file_google_ads_googleads_v16_enums_custom_audience_type_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_custom_audience_type_proto_init() }
-func file_google_ads_googleads_v16_enums_custom_audience_type_proto_init() {
- if File_google_ads_googleads_v16_enums_custom_audience_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_custom_audience_type_proto_init() }
+func file_google_ads_googleads_v17_enums_custom_audience_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_custom_audience_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_custom_audience_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_custom_audience_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomAudienceTypeEnum); i {
case 0:
return &v.state
@@ -224,19 +224,19 @@ func file_google_ads_googleads_v16_enums_custom_audience_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_custom_audience_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_custom_audience_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_custom_audience_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_custom_audience_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_custom_audience_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_custom_audience_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_custom_audience_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_custom_audience_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_custom_audience_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_custom_audience_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_custom_audience_type_proto = out.File
- file_google_ads_googleads_v16_enums_custom_audience_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_custom_audience_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_custom_audience_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_custom_audience_type_proto = out.File
+ file_google_ads_googleads_v17_enums_custom_audience_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_custom_audience_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_custom_audience_type_proto_depIdxs = nil
}
diff --git a/enums/custom_conversion_goal_status.pb.go b/enums/custom_conversion_goal_status.pb.go
index 4f8c5956..714b9447 100644
--- a/enums/custom_conversion_goal_status.pb.go
+++ b/enums/custom_conversion_goal_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/custom_conversion_goal_status.proto
+// source: google/ads/googleads/v17/enums/custom_conversion_goal_status.proto
package enums
@@ -75,11 +75,11 @@ func (x CustomConversionGoalStatusEnum_CustomConversionGoalStatus) String() stri
}
func (CustomConversionGoalStatusEnum_CustomConversionGoalStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_enumTypes[0].Descriptor()
}
func (CustomConversionGoalStatusEnum_CustomConversionGoalStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_enumTypes[0]
}
func (x CustomConversionGoalStatusEnum_CustomConversionGoalStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x CustomConversionGoalStatusEnum_CustomConversionGoalStatus) Number() prot
// Deprecated: Use CustomConversionGoalStatusEnum_CustomConversionGoalStatus.Descriptor instead.
func (CustomConversionGoalStatusEnum_CustomConversionGoalStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of a custom conversion goal.
@@ -101,7 +101,7 @@ type CustomConversionGoalStatusEnum struct {
func (x *CustomConversionGoalStatusEnum) Reset() {
*x = CustomConversionGoalStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *CustomConversionGoalStatusEnum) String() string {
func (*CustomConversionGoalStatusEnum) ProtoMessage() {}
func (x *CustomConversionGoalStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *CustomConversionGoalStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomConversionGoalStatusEnum.ProtoReflect.Descriptor instead.
func (*CustomConversionGoalStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_rawDesc = []byte{
0x0a, 0x42, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x22, 0x76, 0x0a, 0x1e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f,
0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x54, 0x0a, 0x1a, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_rawD
0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12,
0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42, 0xf9, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x1f, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65,
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_rawDescData = file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_rawDescData = file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_goTypes = []interface{}{
- (CustomConversionGoalStatusEnum_CustomConversionGoalStatus)(0), // 0: google.ads.googleads.v16.enums.CustomConversionGoalStatusEnum.CustomConversionGoalStatus
- (*CustomConversionGoalStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.CustomConversionGoalStatusEnum
+var file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_goTypes = []interface{}{
+ (CustomConversionGoalStatusEnum_CustomConversionGoalStatus)(0), // 0: google.ads.googleads.v17.enums.CustomConversionGoalStatusEnum.CustomConversionGoalStatus
+ (*CustomConversionGoalStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.CustomConversionGoalStatusEnum
}
-var file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_depI
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_init() }
-func file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_init() {
- if File_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_init() }
+func file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomConversionGoalStatusEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_ini
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto = out.File
- file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_custom_conversion_goal_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto = out.File
+ file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_custom_conversion_goal_status_proto_depIdxs = nil
}
diff --git a/enums/custom_interest_member_type.pb.go b/enums/custom_interest_member_type.pb.go
index 425f14f1..3cd93277 100644
--- a/enums/custom_interest_member_type.pb.go
+++ b/enums/custom_interest_member_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/custom_interest_member_type.proto
+// source: google/ads/googleads/v17/enums/custom_interest_member_type.proto
package enums
@@ -75,11 +75,11 @@ func (x CustomInterestMemberTypeEnum_CustomInterestMemberType) String() string {
}
func (CustomInterestMemberTypeEnum_CustomInterestMemberType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_enumTypes[0].Descriptor()
}
func (CustomInterestMemberTypeEnum_CustomInterestMemberType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_enumTypes[0]
}
func (x CustomInterestMemberTypeEnum_CustomInterestMemberType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x CustomInterestMemberTypeEnum_CustomInterestMemberType) Number() protoref
// Deprecated: Use CustomInterestMemberTypeEnum_CustomInterestMemberType.Descriptor instead.
func (CustomInterestMemberTypeEnum_CustomInterestMemberType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_rawDescGZIP(), []int{0, 0}
}
// The types of custom interest member, either KEYWORD or URL.
@@ -101,7 +101,7 @@ type CustomInterestMemberTypeEnum struct {
func (x *CustomInterestMemberTypeEnum) Reset() {
*x = CustomInterestMemberTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *CustomInterestMemberTypeEnum) String() string {
func (*CustomInterestMemberTypeEnum) ProtoMessage() {}
func (x *CustomInterestMemberTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *CustomInterestMemberTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomInterestMemberTypeEnum.ProtoReflect.Descriptor instead.
func (*CustomInterestMemberTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_custom_interest_member_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_custom_interest_member_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74,
0x5f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x6e, 0x0a, 0x1c, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65,
0x72, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0x4e, 0x0a, 0x18, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_rawDes
0x4b, 0x45, 0x59, 0x57, 0x4f, 0x52, 0x44, 0x10, 0x02, 0x12, 0x07, 0x0a, 0x03, 0x55, 0x52, 0x4c,
0x10, 0x03, 0x42, 0xf7, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x43, 0x75, 0x73, 0x74, 0x6f,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x43, 0x75, 0x73, 0x74, 0x6f,
0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x54,
0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_rawDescData = file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_rawDescData = file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_goTypes = []interface{}{
- (CustomInterestMemberTypeEnum_CustomInterestMemberType)(0), // 0: google.ads.googleads.v16.enums.CustomInterestMemberTypeEnum.CustomInterestMemberType
- (*CustomInterestMemberTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.CustomInterestMemberTypeEnum
+var file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_goTypes = []interface{}{
+ (CustomInterestMemberTypeEnum_CustomInterestMemberType)(0), // 0: google.ads.googleads.v17.enums.CustomInterestMemberTypeEnum.CustomInterestMemberType
+ (*CustomInterestMemberTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.CustomInterestMemberTypeEnum
}
-var file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_init() }
-func file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_init() {
- if File_google_ads_googleads_v16_enums_custom_interest_member_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_init() }
+func file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_custom_interest_member_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomInterestMemberTypeEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_custom_interest_member_type_proto = out.File
- file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_custom_interest_member_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_custom_interest_member_type_proto = out.File
+ file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_custom_interest_member_type_proto_depIdxs = nil
}
diff --git a/enums/custom_interest_status.pb.go b/enums/custom_interest_status.pb.go
index 6be7b0c0..6d34fd52 100644
--- a/enums/custom_interest_status.pb.go
+++ b/enums/custom_interest_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/custom_interest_status.proto
+// source: google/ads/googleads/v17/enums/custom_interest_status.proto
package enums
@@ -76,11 +76,11 @@ func (x CustomInterestStatusEnum_CustomInterestStatus) String() string {
}
func (CustomInterestStatusEnum_CustomInterestStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_custom_interest_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_custom_interest_status_proto_enumTypes[0].Descriptor()
}
func (CustomInterestStatusEnum_CustomInterestStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_custom_interest_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_custom_interest_status_proto_enumTypes[0]
}
func (x CustomInterestStatusEnum_CustomInterestStatus) Number() protoreflect.EnumNumber {
@@ -89,7 +89,7 @@ func (x CustomInterestStatusEnum_CustomInterestStatus) Number() protoreflect.Enu
// Deprecated: Use CustomInterestStatusEnum_CustomInterestStatus.Descriptor instead.
func (CustomInterestStatusEnum_CustomInterestStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_custom_interest_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_custom_interest_status_proto_rawDescGZIP(), []int{0, 0}
}
// The status of custom interest.
@@ -102,7 +102,7 @@ type CustomInterestStatusEnum struct {
func (x *CustomInterestStatusEnum) Reset() {
*x = CustomInterestStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_custom_interest_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_custom_interest_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -115,7 +115,7 @@ func (x *CustomInterestStatusEnum) String() string {
func (*CustomInterestStatusEnum) ProtoMessage() {}
func (x *CustomInterestStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_custom_interest_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_custom_interest_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -128,18 +128,18 @@ func (x *CustomInterestStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomInterestStatusEnum.ProtoReflect.Descriptor instead.
func (*CustomInterestStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_custom_interest_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_custom_interest_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_custom_interest_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_custom_interest_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_custom_interest_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_custom_interest_status_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74,
0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6a, 0x0a,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6a, 0x0a,
0x18, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4e, 0x0a, 0x14, 0x43, 0x75, 0x73,
0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_enums_custom_interest_status_proto_rawDesc = [
0x0b, 0x0a, 0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07,
0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42, 0xf3, 0x01, 0x0a, 0x22, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x42, 0x19, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_custom_interest_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_custom_interest_status_proto_rawDescData = file_google_ads_googleads_v16_enums_custom_interest_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_custom_interest_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_custom_interest_status_proto_rawDescData = file_google_ads_googleads_v17_enums_custom_interest_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_custom_interest_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_custom_interest_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_custom_interest_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_custom_interest_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_custom_interest_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_custom_interest_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_custom_interest_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_custom_interest_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_custom_interest_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_custom_interest_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_custom_interest_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_custom_interest_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_custom_interest_status_proto_goTypes = []interface{}{
- (CustomInterestStatusEnum_CustomInterestStatus)(0), // 0: google.ads.googleads.v16.enums.CustomInterestStatusEnum.CustomInterestStatus
- (*CustomInterestStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.CustomInterestStatusEnum
+var file_google_ads_googleads_v17_enums_custom_interest_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_custom_interest_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_custom_interest_status_proto_goTypes = []interface{}{
+ (CustomInterestStatusEnum_CustomInterestStatus)(0), // 0: google.ads.googleads.v17.enums.CustomInterestStatusEnum.CustomInterestStatus
+ (*CustomInterestStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.CustomInterestStatusEnum
}
-var file_google_ads_googleads_v16_enums_custom_interest_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_custom_interest_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_custom_interest_status_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_custom_interest_status_proto_init() }
-func file_google_ads_googleads_v16_enums_custom_interest_status_proto_init() {
- if File_google_ads_googleads_v16_enums_custom_interest_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_custom_interest_status_proto_init() }
+func file_google_ads_googleads_v17_enums_custom_interest_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_custom_interest_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_custom_interest_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_custom_interest_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomInterestStatusEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_custom_interest_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_custom_interest_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_custom_interest_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_custom_interest_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_custom_interest_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_custom_interest_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_custom_interest_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_custom_interest_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_custom_interest_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_custom_interest_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_custom_interest_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_custom_interest_status_proto = out.File
- file_google_ads_googleads_v16_enums_custom_interest_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_custom_interest_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_custom_interest_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_custom_interest_status_proto = out.File
+ file_google_ads_googleads_v17_enums_custom_interest_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_custom_interest_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_custom_interest_status_proto_depIdxs = nil
}
diff --git a/enums/custom_interest_type.pb.go b/enums/custom_interest_type.pb.go
index d1b93629..394482e7 100644
--- a/enums/custom_interest_type.pb.go
+++ b/enums/custom_interest_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/custom_interest_type.proto
+// source: google/ads/googleads/v17/enums/custom_interest_type.proto
package enums
@@ -75,11 +75,11 @@ func (x CustomInterestTypeEnum_CustomInterestType) String() string {
}
func (CustomInterestTypeEnum_CustomInterestType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_custom_interest_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_custom_interest_type_proto_enumTypes[0].Descriptor()
}
func (CustomInterestTypeEnum_CustomInterestType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_custom_interest_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_custom_interest_type_proto_enumTypes[0]
}
func (x CustomInterestTypeEnum_CustomInterestType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x CustomInterestTypeEnum_CustomInterestType) Number() protoreflect.EnumNum
// Deprecated: Use CustomInterestTypeEnum_CustomInterestType.Descriptor instead.
func (CustomInterestTypeEnum_CustomInterestType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_custom_interest_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_custom_interest_type_proto_rawDescGZIP(), []int{0, 0}
}
// The types of custom interest.
@@ -101,7 +101,7 @@ type CustomInterestTypeEnum struct {
func (x *CustomInterestTypeEnum) Reset() {
*x = CustomInterestTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_custom_interest_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_custom_interest_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *CustomInterestTypeEnum) String() string {
func (*CustomInterestTypeEnum) ProtoMessage() {}
func (x *CustomInterestTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_custom_interest_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_custom_interest_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *CustomInterestTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomInterestTypeEnum.ProtoReflect.Descriptor instead.
func (*CustomInterestTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_custom_interest_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_custom_interest_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_custom_interest_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_custom_interest_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_custom_interest_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_custom_interest_type_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74,
0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x74, 0x0a, 0x16, 0x43,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x74, 0x0a, 0x16, 0x43,
0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x54, 0x79, 0x70,
0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5a, 0x0a, 0x12, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49,
0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55,
@@ -148,41 +148,41 @@ var file_google_ads_googleads_v16_enums_custom_interest_type_proto_rawDesc = []b
0x0a, 0x0d, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x5f, 0x49, 0x4e, 0x54, 0x45, 0x4e, 0x54, 0x10,
0x03, 0x42, 0xf1, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_custom_interest_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_custom_interest_type_proto_rawDescData = file_google_ads_googleads_v16_enums_custom_interest_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_custom_interest_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_custom_interest_type_proto_rawDescData = file_google_ads_googleads_v17_enums_custom_interest_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_custom_interest_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_custom_interest_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_custom_interest_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_custom_interest_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_custom_interest_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_custom_interest_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_custom_interest_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_custom_interest_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_custom_interest_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_custom_interest_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_custom_interest_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_custom_interest_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_custom_interest_type_proto_goTypes = []interface{}{
- (CustomInterestTypeEnum_CustomInterestType)(0), // 0: google.ads.googleads.v16.enums.CustomInterestTypeEnum.CustomInterestType
- (*CustomInterestTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.CustomInterestTypeEnum
+var file_google_ads_googleads_v17_enums_custom_interest_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_custom_interest_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_custom_interest_type_proto_goTypes = []interface{}{
+ (CustomInterestTypeEnum_CustomInterestType)(0), // 0: google.ads.googleads.v17.enums.CustomInterestTypeEnum.CustomInterestType
+ (*CustomInterestTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.CustomInterestTypeEnum
}
-var file_google_ads_googleads_v16_enums_custom_interest_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_custom_interest_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_enums_custom_interest_type_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_custom_interest_type_proto_init() }
-func file_google_ads_googleads_v16_enums_custom_interest_type_proto_init() {
- if File_google_ads_googleads_v16_enums_custom_interest_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_custom_interest_type_proto_init() }
+func file_google_ads_googleads_v17_enums_custom_interest_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_custom_interest_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_custom_interest_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_custom_interest_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomInterestTypeEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_enums_custom_interest_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_custom_interest_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_custom_interest_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_custom_interest_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_custom_interest_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_custom_interest_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_custom_interest_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_custom_interest_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_custom_interest_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_custom_interest_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_custom_interest_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_custom_interest_type_proto = out.File
- file_google_ads_googleads_v16_enums_custom_interest_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_custom_interest_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_custom_interest_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_custom_interest_type_proto = out.File
+ file_google_ads_googleads_v17_enums_custom_interest_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_custom_interest_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_custom_interest_type_proto_depIdxs = nil
}
diff --git a/enums/custom_placeholder_field.pb.go b/enums/custom_placeholder_field.pb.go
index d1755d22..0a06164c 100644
--- a/enums/custom_placeholder_field.pb.go
+++ b/enums/custom_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/custom_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/custom_placeholder_field.proto
package enums
@@ -172,11 +172,11 @@ func (x CustomPlaceholderFieldEnum_CustomPlaceholderField) String() string {
}
func (CustomPlaceholderFieldEnum_CustomPlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (CustomPlaceholderFieldEnum_CustomPlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_enumTypes[0]
}
func (x CustomPlaceholderFieldEnum_CustomPlaceholderField) Number() protoreflect.EnumNumber {
@@ -185,7 +185,7 @@ func (x CustomPlaceholderFieldEnum_CustomPlaceholderField) Number() protoreflect
// Deprecated: Use CustomPlaceholderFieldEnum_CustomPlaceholderField.Descriptor instead.
func (CustomPlaceholderFieldEnum_CustomPlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Custom placeholder fields.
@@ -200,7 +200,7 @@ type CustomPlaceholderFieldEnum struct {
func (x *CustomPlaceholderFieldEnum) Reset() {
*x = CustomPlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -213,7 +213,7 @@ func (x *CustomPlaceholderFieldEnum) String() string {
func (*CustomPlaceholderFieldEnum) ProtoMessage() {}
func (x *CustomPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -226,18 +226,18 @@ func (x *CustomPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomPlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*CustomPlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_custom_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_custom_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c,
0x64, 0x65, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
0xbe, 0x03, 0x0a, 0x1a, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68,
0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x9f,
0x03, 0x0a, 0x16, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f,
@@ -268,41 +268,41 @@ var file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_rawDesc =
0x53, 0x5f, 0x41, 0x50, 0x50, 0x5f, 0x53, 0x54, 0x4f, 0x52, 0x45, 0x5f, 0x49, 0x44, 0x10, 0x15,
0x42, 0xf5, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x50,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x50,
0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_goTypes = []interface{}{
- (CustomPlaceholderFieldEnum_CustomPlaceholderField)(0), // 0: google.ads.googleads.v16.enums.CustomPlaceholderFieldEnum.CustomPlaceholderField
- (*CustomPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.CustomPlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_goTypes = []interface{}{
+ (CustomPlaceholderFieldEnum_CustomPlaceholderField)(0), // 0: google.ads.googleads.v17.enums.CustomPlaceholderFieldEnum.CustomPlaceholderField
+ (*CustomPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.CustomPlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -310,13 +310,13 @@ var file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_custom_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_custom_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomPlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -333,19 +333,19 @@ func file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_custom_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_custom_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_custom_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_custom_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/customer_acquisition_optimization_mode.pb.go b/enums/customer_acquisition_optimization_mode.pb.go
index e5d7c7a9..07f68f80 100644
--- a/enums/customer_acquisition_optimization_mode.pb.go
+++ b/enums/customer_acquisition_optimization_mode.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/customer_acquisition_optimization_mode.proto
+// source: google/ads/googleads/v17/enums/customer_acquisition_optimization_mode.proto
package enums
@@ -81,11 +81,11 @@ func (x CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationM
}
func (CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_enumTypes[0].Descriptor()
}
func (CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_enumTypes[0]
}
func (x CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode) Number() protoreflect.EnumNumber {
@@ -94,7 +94,7 @@ func (x CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationM
// Deprecated: Use CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode.Descriptor instead.
func (CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible optimization mode of a customer
@@ -108,7 +108,7 @@ type CustomerAcquisitionOptimizationModeEnum struct {
func (x *CustomerAcquisitionOptimizationModeEnum) Reset() {
*x = CustomerAcquisitionOptimizationModeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -121,7 +121,7 @@ func (x *CustomerAcquisitionOptimizationModeEnum) String() string {
func (*CustomerAcquisitionOptimizationModeEnum) ProtoMessage() {}
func (x *CustomerAcquisitionOptimizationModeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -134,19 +134,19 @@ func (x *CustomerAcquisitionOptimizationModeEnum) ProtoReflect() protoreflect.Me
// Deprecated: Use CustomerAcquisitionOptimizationModeEnum.ProtoReflect.Descriptor instead.
func (*CustomerAcquisitionOptimizationModeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_rawDesc = []byte{
0x0a, 0x4b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x71, 0x75, 0x69, 0x73,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc1, 0x01,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc1, 0x01,
0x0a, 0x27, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x41, 0x63, 0x71, 0x75, 0x69, 0x73,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x95, 0x01, 0x0a, 0x23, 0x43, 0x75,
@@ -161,42 +161,42 @@ var file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_p
0x45, 0x54, 0x5f, 0x4e, 0x45, 0x57, 0x5f, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x45, 0x52, 0x10,
0x04, 0x42, 0x82, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x28, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x28, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
0x65, 0x72, 0x41, 0x63, 0x71, 0x75, 0x69, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x74,
0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_rawDescData = file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_rawDesc
+ file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_rawDescData = file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_goTypes = []interface{}{
- (CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode)(0), // 0: google.ads.googleads.v16.enums.CustomerAcquisitionOptimizationModeEnum.CustomerAcquisitionOptimizationMode
- (*CustomerAcquisitionOptimizationModeEnum)(nil), // 1: google.ads.googleads.v16.enums.CustomerAcquisitionOptimizationModeEnum
+var file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_goTypes = []interface{}{
+ (CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode)(0), // 0: google.ads.googleads.v17.enums.CustomerAcquisitionOptimizationModeEnum.CustomerAcquisitionOptimizationMode
+ (*CustomerAcquisitionOptimizationModeEnum)(nil), // 1: google.ads.googleads.v17.enums.CustomerAcquisitionOptimizationModeEnum
}
-var file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -204,13 +204,13 @@ var file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_p
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_init() }
-func file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_init() {
- if File_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_init() }
+func file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_init() {
+ if File_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomerAcquisitionOptimizationModeEnum); i {
case 0:
return &v.state
@@ -227,19 +227,19 @@ func file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto = out.File
- file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_customer_acquisition_optimization_mode_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto = out.File
+ file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_customer_acquisition_optimization_mode_proto_depIdxs = nil
}
diff --git a/enums/customer_match_upload_key_type.pb.go b/enums/customer_match_upload_key_type.pb.go
index 16f35617..50ad675d 100644
--- a/enums/customer_match_upload_key_type.pb.go
+++ b/enums/customer_match_upload_key_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/customer_match_upload_key_type.proto
+// source: google/ads/googleads/v17/enums/customer_match_upload_key_type.proto
package enums
@@ -81,11 +81,11 @@ func (x CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType) String() stri
}
func (CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_enumTypes[0].Descriptor()
}
func (CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_enumTypes[0]
}
func (x CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType) Number() protoreflect.EnumNumber {
@@ -94,7 +94,7 @@ func (x CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType) Number() prot
// Deprecated: Use CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType.Descriptor instead.
func (CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_rawDescGZIP(), []int{0, 0}
}
// Indicates what type of data are the user list's members matched from.
@@ -107,7 +107,7 @@ type CustomerMatchUploadKeyTypeEnum struct {
func (x *CustomerMatchUploadKeyTypeEnum) Reset() {
*x = CustomerMatchUploadKeyTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -120,7 +120,7 @@ func (x *CustomerMatchUploadKeyTypeEnum) String() string {
func (*CustomerMatchUploadKeyTypeEnum) ProtoMessage() {}
func (x *CustomerMatchUploadKeyTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -133,18 +133,18 @@ func (x *CustomerMatchUploadKeyTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomerMatchUploadKeyTypeEnum.ProtoReflect.Descriptor instead.
func (*CustomerMatchUploadKeyTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f,
0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x95, 0x01, 0x0a, 0x1e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
0x65, 0x72, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x4b, 0x65, 0x79,
0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x73, 0x0a, 0x1a, 0x43, 0x75, 0x73, 0x74,
@@ -156,43 +156,43 @@ var file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_raw
0x10, 0x03, 0x12, 0x19, 0x0a, 0x15, 0x4d, 0x4f, 0x42, 0x49, 0x4c, 0x45, 0x5f, 0x41, 0x44, 0x56,
0x45, 0x52, 0x54, 0x49, 0x53, 0x49, 0x4e, 0x47, 0x5f, 0x49, 0x44, 0x10, 0x04, 0x42, 0xf9, 0x01,
0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1f, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61,
0x74, 0x63, 0x68, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x4b, 0x65, 0x79, 0x54, 0x79, 0x70, 0x65,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_rawDescData = file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_rawDescData = file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_goTypes = []interface{}{
- (CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType)(0), // 0: google.ads.googleads.v16.enums.CustomerMatchUploadKeyTypeEnum.CustomerMatchUploadKeyType
- (*CustomerMatchUploadKeyTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.CustomerMatchUploadKeyTypeEnum
+var file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_goTypes = []interface{}{
+ (CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType)(0), // 0: google.ads.googleads.v17.enums.CustomerMatchUploadKeyTypeEnum.CustomerMatchUploadKeyType
+ (*CustomerMatchUploadKeyTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.CustomerMatchUploadKeyTypeEnum
}
-var file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -200,13 +200,13 @@ var file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_init() }
-func file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_init() {
- if File_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_init() }
+func file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomerMatchUploadKeyTypeEnum); i {
case 0:
return &v.state
@@ -223,19 +223,19 @@ func file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto = out.File
- file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_customer_match_upload_key_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto = out.File
+ file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_customer_match_upload_key_type_proto_depIdxs = nil
}
diff --git a/enums/customer_pay_per_conversion_eligibility_failure_reason.pb.go b/enums/customer_pay_per_conversion_eligibility_failure_reason.pb.go
index 0ea7b749..bfb25c0e 100644
--- a/enums/customer_pay_per_conversion_eligibility_failure_reason.pb.go
+++ b/enums/customer_pay_per_conversion_eligibility_failure_reason.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/customer_pay_per_conversion_eligibility_failure_reason.proto
+// source: google/ads/googleads/v17/enums/customer_pay_per_conversion_eligibility_failure_reason.proto
package enums
@@ -97,11 +97,11 @@ func (x CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConve
}
func (CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_enumTypes[0].Descriptor()
}
func (CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_enumTypes[0]
}
func (x CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason) Number() protoreflect.EnumNumber {
@@ -110,7 +110,7 @@ func (x CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConve
// Deprecated: Use CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason.Descriptor instead.
func (CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing reasons why a customer is not eligible to use
@@ -124,7 +124,7 @@ type CustomerPayPerConversionEligibilityFailureReasonEnum struct {
func (x *CustomerPayPerConversionEligibilityFailureReasonEnum) Reset() {
*x = CustomerPayPerConversionEligibilityFailureReasonEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -137,7 +137,7 @@ func (x *CustomerPayPerConversionEligibilityFailureReasonEnum) String() string {
func (*CustomerPayPerConversionEligibilityFailureReasonEnum) ProtoMessage() {}
func (x *CustomerPayPerConversionEligibilityFailureReasonEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -150,20 +150,20 @@ func (x *CustomerPayPerConversionEligibilityFailureReasonEnum) ProtoReflect() pr
// Deprecated: Use CustomerPayPerConversionEligibilityFailureReasonEnum.ProtoReflect.Descriptor instead.
func (*CustomerPayPerConversionEligibilityFailureReasonEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDesc = []byte{
0x0a, 0x5b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x70, 0x61, 0x79, 0x5f, 0x70, 0x65,
0x72, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x6c, 0x69,
0x67, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65,
0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xd1, 0x02,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xd1, 0x02,
0x0a, 0x34, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x50, 0x61, 0x79, 0x50, 0x65, 0x72,
0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x45, 0x6c, 0x69, 0x67, 0x69, 0x62,
0x69, 0x6c, 0x69, 0x74, 0x79, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x52, 0x65, 0x61, 0x73,
@@ -187,43 +187,43 @@ var file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_
0x4c, 0x45, 0x54, 0x45, 0x10, 0x07, 0x12, 0x09, 0x0a, 0x05, 0x4f, 0x54, 0x48, 0x45, 0x52, 0x10,
0x08, 0x42, 0x8f, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x35, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x35, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
0x65, 0x72, 0x50, 0x61, 0x79, 0x50, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
0x6f, 0x6e, 0x45, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x46, 0x61, 0x69,
0x6c, 0x75, 0x72, 0x65, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescData = file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDesc
+ file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescData = file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_goTypes = []interface{}{
- (CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason)(0), // 0: google.ads.googleads.v16.enums.CustomerPayPerConversionEligibilityFailureReasonEnum.CustomerPayPerConversionEligibilityFailureReason
- (*CustomerPayPerConversionEligibilityFailureReasonEnum)(nil), // 1: google.ads.googleads.v16.enums.CustomerPayPerConversionEligibilityFailureReasonEnum
+var file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_goTypes = []interface{}{
+ (CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason)(0), // 0: google.ads.googleads.v17.enums.CustomerPayPerConversionEligibilityFailureReasonEnum.CustomerPayPerConversionEligibilityFailureReason
+ (*CustomerPayPerConversionEligibilityFailureReasonEnum)(nil), // 1: google.ads.googleads.v17.enums.CustomerPayPerConversionEligibilityFailureReasonEnum
}
-var file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -232,14 +232,14 @@ var file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_
}
func init() {
- file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_init()
+ file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_init()
}
-func file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_init() {
- if File_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto != nil {
+func file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_init() {
+ if File_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomerPayPerConversionEligibilityFailureReasonEnum); i {
case 0:
return &v.state
@@ -256,19 +256,19 @@ func file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto = out.File
- file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto = out.File
+ file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_depIdxs = nil
}
diff --git a/enums/customer_status.pb.go b/enums/customer_status.pb.go
index f4d12683..a159223c 100644
--- a/enums/customer_status.pb.go
+++ b/enums/customer_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/customer_status.proto
+// source: google/ads/googleads/v17/enums/customer_status.proto
package enums
@@ -87,11 +87,11 @@ func (x CustomerStatusEnum_CustomerStatus) String() string {
}
func (CustomerStatusEnum_CustomerStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_customer_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_customer_status_proto_enumTypes[0].Descriptor()
}
func (CustomerStatusEnum_CustomerStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_customer_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_customer_status_proto_enumTypes[0]
}
func (x CustomerStatusEnum_CustomerStatus) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x CustomerStatusEnum_CustomerStatus) Number() protoreflect.EnumNumber {
// Deprecated: Use CustomerStatusEnum_CustomerStatus.Descriptor instead.
func (CustomerStatusEnum_CustomerStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_customer_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_customer_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of a customer.
@@ -113,7 +113,7 @@ type CustomerStatusEnum struct {
func (x *CustomerStatusEnum) Reset() {
*x = CustomerStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_customer_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_customer_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +126,7 @@ func (x *CustomerStatusEnum) String() string {
func (*CustomerStatusEnum) ProtoMessage() {}
func (x *CustomerStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_customer_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_customer_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,17 +139,17 @@ func (x *CustomerStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomerStatusEnum.ProtoReflect.Descriptor instead.
func (*CustomerStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_customer_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_customer_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_customer_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_customer_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_customer_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_customer_status_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7a, 0x0a, 0x12, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x64, 0x0a, 0x0e,
0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f,
@@ -160,41 +160,41 @@ var file_google_ads_googleads_v16_enums_customer_status_proto_rawDesc = []byte{
0x4e, 0x44, 0x45, 0x44, 0x10, 0x04, 0x12, 0x0a, 0x0a, 0x06, 0x43, 0x4c, 0x4f, 0x53, 0x45, 0x44,
0x10, 0x05, 0x42, 0xed, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x43, 0x75, 0x73, 0x74, 0x6f,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x43, 0x75, 0x73, 0x74, 0x6f,
0x6d, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_customer_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_customer_status_proto_rawDescData = file_google_ads_googleads_v16_enums_customer_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_customer_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_customer_status_proto_rawDescData = file_google_ads_googleads_v17_enums_customer_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_customer_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_customer_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_customer_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_customer_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_customer_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_customer_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_customer_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_customer_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_customer_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_customer_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_customer_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_customer_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_customer_status_proto_goTypes = []interface{}{
- (CustomerStatusEnum_CustomerStatus)(0), // 0: google.ads.googleads.v16.enums.CustomerStatusEnum.CustomerStatus
- (*CustomerStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.CustomerStatusEnum
+var file_google_ads_googleads_v17_enums_customer_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_customer_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_customer_status_proto_goTypes = []interface{}{
+ (CustomerStatusEnum_CustomerStatus)(0), // 0: google.ads.googleads.v17.enums.CustomerStatusEnum.CustomerStatus
+ (*CustomerStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.CustomerStatusEnum
}
-var file_google_ads_googleads_v16_enums_customer_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_customer_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -202,13 +202,13 @@ var file_google_ads_googleads_v16_enums_customer_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_customer_status_proto_init() }
-func file_google_ads_googleads_v16_enums_customer_status_proto_init() {
- if File_google_ads_googleads_v16_enums_customer_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_customer_status_proto_init() }
+func file_google_ads_googleads_v17_enums_customer_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_customer_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_customer_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_customer_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomerStatusEnum); i {
case 0:
return &v.state
@@ -225,19 +225,19 @@ func file_google_ads_googleads_v16_enums_customer_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_customer_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_customer_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_customer_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_customer_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_customer_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_customer_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_customer_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_customer_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_customer_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_customer_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_customer_status_proto = out.File
- file_google_ads_googleads_v16_enums_customer_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_customer_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_customer_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_customer_status_proto = out.File
+ file_google_ads_googleads_v17_enums_customer_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_customer_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_customer_status_proto_depIdxs = nil
}
diff --git a/enums/customizer_attribute_status.pb.go b/enums/customizer_attribute_status.pb.go
index da3b09c2..be6c0ae4 100644
--- a/enums/customizer_attribute_status.pb.go
+++ b/enums/customizer_attribute_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/customizer_attribute_status.proto
+// source: google/ads/googleads/v17/enums/customizer_attribute_status.proto
package enums
@@ -75,11 +75,11 @@ func (x CustomizerAttributeStatusEnum_CustomizerAttributeStatus) String() string
}
func (CustomizerAttributeStatusEnum_CustomizerAttributeStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_enumTypes[0].Descriptor()
}
func (CustomizerAttributeStatusEnum_CustomizerAttributeStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_enumTypes[0]
}
func (x CustomizerAttributeStatusEnum_CustomizerAttributeStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x CustomizerAttributeStatusEnum_CustomizerAttributeStatus) Number() protor
// Deprecated: Use CustomizerAttributeStatusEnum_CustomizerAttributeStatus.Descriptor instead.
func (CustomizerAttributeStatusEnum_CustomizerAttributeStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of a customizer attribute.
@@ -101,7 +101,7 @@ type CustomizerAttributeStatusEnum struct {
func (x *CustomizerAttributeStatusEnum) Reset() {
*x = CustomizerAttributeStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *CustomizerAttributeStatusEnum) String() string {
func (*CustomizerAttributeStatusEnum) ProtoMessage() {}
func (x *CustomizerAttributeStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *CustomizerAttributeStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomizerAttributeStatusEnum.ProtoReflect.Descriptor instead.
func (*CustomizerAttributeStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_customizer_attribute_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_customizer_attribute_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72,
0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x74, 0x0a, 0x1d, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72,
0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0x53, 0x0a, 0x19, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_rawDes
0x0a, 0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x52,
0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42, 0xf8, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
0x1e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69,
0x62, 0x75, 0x74, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_rawDescData = file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_rawDescData = file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_goTypes = []interface{}{
- (CustomizerAttributeStatusEnum_CustomizerAttributeStatus)(0), // 0: google.ads.googleads.v16.enums.CustomizerAttributeStatusEnum.CustomizerAttributeStatus
- (*CustomizerAttributeStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.CustomizerAttributeStatusEnum
+var file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_goTypes = []interface{}{
+ (CustomizerAttributeStatusEnum_CustomizerAttributeStatus)(0), // 0: google.ads.googleads.v17.enums.CustomizerAttributeStatusEnum.CustomizerAttributeStatus
+ (*CustomizerAttributeStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.CustomizerAttributeStatusEnum
}
-var file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_init() }
-func file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_init() {
- if File_google_ads_googleads_v16_enums_customizer_attribute_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_init() }
+func file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_customizer_attribute_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomizerAttributeStatusEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_customizer_attribute_status_proto = out.File
- file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_customizer_attribute_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_customizer_attribute_status_proto = out.File
+ file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_customizer_attribute_status_proto_depIdxs = nil
}
diff --git a/enums/customizer_attribute_type.pb.go b/enums/customizer_attribute_type.pb.go
index 097dd10a..fccee24c 100644
--- a/enums/customizer_attribute_type.pb.go
+++ b/enums/customizer_attribute_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/customizer_attribute_type.proto
+// source: google/ads/googleads/v17/enums/customizer_attribute_type.proto
package enums
@@ -83,11 +83,11 @@ func (x CustomizerAttributeTypeEnum_CustomizerAttributeType) String() string {
}
func (CustomizerAttributeTypeEnum_CustomizerAttributeType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_enumTypes[0].Descriptor()
}
func (CustomizerAttributeTypeEnum_CustomizerAttributeType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_enumTypes[0]
}
func (x CustomizerAttributeTypeEnum_CustomizerAttributeType) Number() protoreflect.EnumNumber {
@@ -96,7 +96,7 @@ func (x CustomizerAttributeTypeEnum_CustomizerAttributeType) Number() protorefle
// Deprecated: Use CustomizerAttributeTypeEnum_CustomizerAttributeType.Descriptor instead.
func (CustomizerAttributeTypeEnum_CustomizerAttributeType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible types of a customizer attribute.
@@ -109,7 +109,7 @@ type CustomizerAttributeTypeEnum struct {
func (x *CustomizerAttributeTypeEnum) Reset() {
*x = CustomizerAttributeTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -122,7 +122,7 @@ func (x *CustomizerAttributeTypeEnum) String() string {
func (*CustomizerAttributeTypeEnum) ProtoMessage() {}
func (x *CustomizerAttributeTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -135,18 +135,18 @@ func (x *CustomizerAttributeTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomizerAttributeTypeEnum.ProtoReflect.Descriptor instead.
func (*CustomizerAttributeTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_customizer_attribute_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_customizer_attribute_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72,
0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0x84, 0x01, 0x0a, 0x1b, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41,
0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x65, 0x0a, 0x17, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74,
@@ -157,42 +157,42 @@ var file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_rawDesc
0x09, 0x0a, 0x05, 0x50, 0x52, 0x49, 0x43, 0x45, 0x10, 0x04, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x45,
0x52, 0x43, 0x45, 0x4e, 0x54, 0x10, 0x05, 0x42, 0xf6, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c,
0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62,
0x75, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_rawDescData = file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_rawDescData = file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_goTypes = []interface{}{
- (CustomizerAttributeTypeEnum_CustomizerAttributeType)(0), // 0: google.ads.googleads.v16.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType
- (*CustomizerAttributeTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.CustomizerAttributeTypeEnum
+var file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_goTypes = []interface{}{
+ (CustomizerAttributeTypeEnum_CustomizerAttributeType)(0), // 0: google.ads.googleads.v17.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType
+ (*CustomizerAttributeTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.CustomizerAttributeTypeEnum
}
-var file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -200,13 +200,13 @@ var file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_init() }
-func file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_init() {
- if File_google_ads_googleads_v16_enums_customizer_attribute_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_init() }
+func file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_customizer_attribute_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomizerAttributeTypeEnum); i {
case 0:
return &v.state
@@ -223,19 +223,19 @@ func file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_customizer_attribute_type_proto = out.File
- file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_customizer_attribute_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_customizer_attribute_type_proto = out.File
+ file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_customizer_attribute_type_proto_depIdxs = nil
}
diff --git a/enums/customizer_value_status.pb.go b/enums/customizer_value_status.pb.go
index e570a89b..f2d5b2b3 100644
--- a/enums/customizer_value_status.pb.go
+++ b/enums/customizer_value_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/customizer_value_status.proto
+// source: google/ads/googleads/v17/enums/customizer_value_status.proto
package enums
@@ -75,11 +75,11 @@ func (x CustomizerValueStatusEnum_CustomizerValueStatus) String() string {
}
func (CustomizerValueStatusEnum_CustomizerValueStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_customizer_value_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_customizer_value_status_proto_enumTypes[0].Descriptor()
}
func (CustomizerValueStatusEnum_CustomizerValueStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_customizer_value_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_customizer_value_status_proto_enumTypes[0]
}
func (x CustomizerValueStatusEnum_CustomizerValueStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x CustomizerValueStatusEnum_CustomizerValueStatus) Number() protoreflect.E
// Deprecated: Use CustomizerValueStatusEnum_CustomizerValueStatus.Descriptor instead.
func (CustomizerValueStatusEnum_CustomizerValueStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_customizer_value_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_customizer_value_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of a customizer value.
@@ -101,7 +101,7 @@ type CustomizerValueStatusEnum struct {
func (x *CustomizerValueStatusEnum) Reset() {
*x = CustomizerValueStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_customizer_value_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_customizer_value_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *CustomizerValueStatusEnum) String() string {
func (*CustomizerValueStatusEnum) ProtoMessage() {}
func (x *CustomizerValueStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_customizer_value_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_customizer_value_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *CustomizerValueStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomizerValueStatusEnum.ProtoReflect.Descriptor instead.
func (*CustomizerValueStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_customizer_value_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_customizer_value_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_customizer_value_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_customizer_value_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_customizer_value_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_customizer_value_status_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x76, 0x61, 0x6c, 0x75,
0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6c,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6c,
0x0a, 0x19, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x56, 0x61, 0x6c, 0x75,
0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4f, 0x0a, 0x15, 0x43,
0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x53, 0x74,
@@ -147,42 +147,42 @@ var file_google_ads_googleads_v16_enums_customizer_value_status_proto_rawDesc =
0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12,
0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42, 0xf4, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x1a, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x56,
0x61, 0x6c, 0x75, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_customizer_value_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_customizer_value_status_proto_rawDescData = file_google_ads_googleads_v16_enums_customizer_value_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_customizer_value_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_customizer_value_status_proto_rawDescData = file_google_ads_googleads_v17_enums_customizer_value_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_customizer_value_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_customizer_value_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_customizer_value_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_customizer_value_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_customizer_value_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_customizer_value_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_customizer_value_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_customizer_value_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_customizer_value_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_customizer_value_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_customizer_value_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_customizer_value_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_customizer_value_status_proto_goTypes = []interface{}{
- (CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 0: google.ads.googleads.v16.enums.CustomizerValueStatusEnum.CustomizerValueStatus
- (*CustomizerValueStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.CustomizerValueStatusEnum
+var file_google_ads_googleads_v17_enums_customizer_value_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_customizer_value_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_customizer_value_status_proto_goTypes = []interface{}{
+ (CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 0: google.ads.googleads.v17.enums.CustomizerValueStatusEnum.CustomizerValueStatus
+ (*CustomizerValueStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.CustomizerValueStatusEnum
}
-var file_google_ads_googleads_v16_enums_customizer_value_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_customizer_value_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_enums_customizer_value_status_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_customizer_value_status_proto_init() }
-func file_google_ads_googleads_v16_enums_customizer_value_status_proto_init() {
- if File_google_ads_googleads_v16_enums_customizer_value_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_customizer_value_status_proto_init() }
+func file_google_ads_googleads_v17_enums_customizer_value_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_customizer_value_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_customizer_value_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_customizer_value_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomizerValueStatusEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_enums_customizer_value_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_customizer_value_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_customizer_value_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_customizer_value_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_customizer_value_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_customizer_value_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_customizer_value_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_customizer_value_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_customizer_value_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_customizer_value_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_customizer_value_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_customizer_value_status_proto = out.File
- file_google_ads_googleads_v16_enums_customizer_value_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_customizer_value_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_customizer_value_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_customizer_value_status_proto = out.File
+ file_google_ads_googleads_v17_enums_customizer_value_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_customizer_value_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_customizer_value_status_proto_depIdxs = nil
}
diff --git a/enums/data_driven_model_status.pb.go b/enums/data_driven_model_status.pb.go
index 9b1426b9..a5d05ada 100644
--- a/enums/data_driven_model_status.pb.go
+++ b/enums/data_driven_model_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/data_driven_model_status.proto
+// source: google/ads/googleads/v17/enums/data_driven_model_status.proto
package enums
@@ -89,11 +89,11 @@ func (x DataDrivenModelStatusEnum_DataDrivenModelStatus) String() string {
}
func (DataDrivenModelStatusEnum_DataDrivenModelStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_data_driven_model_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_data_driven_model_status_proto_enumTypes[0].Descriptor()
}
func (DataDrivenModelStatusEnum_DataDrivenModelStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_data_driven_model_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_data_driven_model_status_proto_enumTypes[0]
}
func (x DataDrivenModelStatusEnum_DataDrivenModelStatus) Number() protoreflect.EnumNumber {
@@ -102,7 +102,7 @@ func (x DataDrivenModelStatusEnum_DataDrivenModelStatus) Number() protoreflect.E
// Deprecated: Use DataDrivenModelStatusEnum_DataDrivenModelStatus.Descriptor instead.
func (DataDrivenModelStatusEnum_DataDrivenModelStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_data_driven_model_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_data_driven_model_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum indicating data driven model status.
@@ -115,7 +115,7 @@ type DataDrivenModelStatusEnum struct {
func (x *DataDrivenModelStatusEnum) Reset() {
*x = DataDrivenModelStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_data_driven_model_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_data_driven_model_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -128,7 +128,7 @@ func (x *DataDrivenModelStatusEnum) String() string {
func (*DataDrivenModelStatusEnum) ProtoMessage() {}
func (x *DataDrivenModelStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_data_driven_model_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_data_driven_model_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -141,18 +141,18 @@ func (x *DataDrivenModelStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use DataDrivenModelStatusEnum.ProtoReflect.Descriptor instead.
func (*DataDrivenModelStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_data_driven_model_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_data_driven_model_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_data_driven_model_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_data_driven_model_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_data_driven_model_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_data_driven_model_status_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x64, 0x72, 0x69, 0x76, 0x65, 0x6e, 0x5f, 0x6d, 0x6f, 0x64,
0x65, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
0x8e, 0x01, 0x0a, 0x19, 0x44, 0x61, 0x74, 0x61, 0x44, 0x72, 0x69, 0x76, 0x65, 0x6e, 0x4d, 0x6f,
0x64, 0x65, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x71, 0x0a,
0x15, 0x44, 0x61, 0x74, 0x61, 0x44, 0x72, 0x69, 0x76, 0x65, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c,
@@ -164,41 +164,41 @@ var file_google_ads_googleads_v16_enums_data_driven_model_status_proto_rawDesc =
0x45, 0x56, 0x45, 0x52, 0x5f, 0x47, 0x45, 0x4e, 0x45, 0x52, 0x41, 0x54, 0x45, 0x44, 0x10, 0x05,
0x42, 0xf4, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x44, 0x61, 0x74, 0x61, 0x44, 0x72, 0x69,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x44, 0x61, 0x74, 0x61, 0x44, 0x72, 0x69,
0x76, 0x65, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_data_driven_model_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_data_driven_model_status_proto_rawDescData = file_google_ads_googleads_v16_enums_data_driven_model_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_data_driven_model_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_data_driven_model_status_proto_rawDescData = file_google_ads_googleads_v17_enums_data_driven_model_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_data_driven_model_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_data_driven_model_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_data_driven_model_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_data_driven_model_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_data_driven_model_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_data_driven_model_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_data_driven_model_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_data_driven_model_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_data_driven_model_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_data_driven_model_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_data_driven_model_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_data_driven_model_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_data_driven_model_status_proto_goTypes = []interface{}{
- (DataDrivenModelStatusEnum_DataDrivenModelStatus)(0), // 0: google.ads.googleads.v16.enums.DataDrivenModelStatusEnum.DataDrivenModelStatus
- (*DataDrivenModelStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.DataDrivenModelStatusEnum
+var file_google_ads_googleads_v17_enums_data_driven_model_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_data_driven_model_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_data_driven_model_status_proto_goTypes = []interface{}{
+ (DataDrivenModelStatusEnum_DataDrivenModelStatus)(0), // 0: google.ads.googleads.v17.enums.DataDrivenModelStatusEnum.DataDrivenModelStatus
+ (*DataDrivenModelStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.DataDrivenModelStatusEnum
}
-var file_google_ads_googleads_v16_enums_data_driven_model_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_data_driven_model_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -206,13 +206,13 @@ var file_google_ads_googleads_v16_enums_data_driven_model_status_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_data_driven_model_status_proto_init() }
-func file_google_ads_googleads_v16_enums_data_driven_model_status_proto_init() {
- if File_google_ads_googleads_v16_enums_data_driven_model_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_data_driven_model_status_proto_init() }
+func file_google_ads_googleads_v17_enums_data_driven_model_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_data_driven_model_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_data_driven_model_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_data_driven_model_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DataDrivenModelStatusEnum); i {
case 0:
return &v.state
@@ -229,19 +229,19 @@ func file_google_ads_googleads_v16_enums_data_driven_model_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_data_driven_model_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_data_driven_model_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_data_driven_model_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_data_driven_model_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_data_driven_model_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_data_driven_model_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_data_driven_model_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_data_driven_model_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_data_driven_model_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_data_driven_model_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_data_driven_model_status_proto = out.File
- file_google_ads_googleads_v16_enums_data_driven_model_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_data_driven_model_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_data_driven_model_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_data_driven_model_status_proto = out.File
+ file_google_ads_googleads_v17_enums_data_driven_model_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_data_driven_model_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_data_driven_model_status_proto_depIdxs = nil
}
diff --git a/enums/day_of_week.pb.go b/enums/day_of_week.pb.go
index 71547e48..dcda27f9 100644
--- a/enums/day_of_week.pb.go
+++ b/enums/day_of_week.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/day_of_week.proto
+// source: google/ads/googleads/v17/enums/day_of_week.proto
package enums
@@ -95,11 +95,11 @@ func (x DayOfWeekEnum_DayOfWeek) String() string {
}
func (DayOfWeekEnum_DayOfWeek) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_day_of_week_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_day_of_week_proto_enumTypes[0].Descriptor()
}
func (DayOfWeekEnum_DayOfWeek) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_day_of_week_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_day_of_week_proto_enumTypes[0]
}
func (x DayOfWeekEnum_DayOfWeek) Number() protoreflect.EnumNumber {
@@ -108,7 +108,7 @@ func (x DayOfWeekEnum_DayOfWeek) Number() protoreflect.EnumNumber {
// Deprecated: Use DayOfWeekEnum_DayOfWeek.Descriptor instead.
func (DayOfWeekEnum_DayOfWeek) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_day_of_week_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_day_of_week_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enumeration of days of the week, for example, "Monday".
@@ -121,7 +121,7 @@ type DayOfWeekEnum struct {
func (x *DayOfWeekEnum) Reset() {
*x = DayOfWeekEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_day_of_week_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_day_of_week_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -134,7 +134,7 @@ func (x *DayOfWeekEnum) String() string {
func (*DayOfWeekEnum) ProtoMessage() {}
func (x *DayOfWeekEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_day_of_week_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_day_of_week_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -147,17 +147,17 @@ func (x *DayOfWeekEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use DayOfWeekEnum.ProtoReflect.Descriptor instead.
func (*DayOfWeekEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_day_of_week_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_day_of_week_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_day_of_week_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_day_of_week_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_day_of_week_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_day_of_week_proto_rawDesc = []byte{
0x0a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x64, 0x61, 0x79, 0x5f, 0x6f, 0x66, 0x5f, 0x77, 0x65, 0x65, 0x6b, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x97, 0x01, 0x0a, 0x0d, 0x44, 0x61, 0x79, 0x4f, 0x66, 0x57, 0x65, 0x65, 0x6b,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x85, 0x01, 0x0a, 0x09, 0x44, 0x61, 0x79, 0x4f, 0x66, 0x57, 0x65,
0x65, 0x6b, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45,
@@ -169,41 +169,41 @@ var file_google_ads_googleads_v16_enums_day_of_week_proto_rawDesc = []byte{
0x10, 0x06, 0x12, 0x0c, 0x0a, 0x08, 0x53, 0x41, 0x54, 0x55, 0x52, 0x44, 0x41, 0x59, 0x10, 0x07,
0x12, 0x0a, 0x0a, 0x06, 0x53, 0x55, 0x4e, 0x44, 0x41, 0x59, 0x10, 0x08, 0x42, 0xe8, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x0e, 0x44, 0x61, 0x79, 0x4f, 0x66, 0x57, 0x65, 0x65, 0x6b, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_day_of_week_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_day_of_week_proto_rawDescData = file_google_ads_googleads_v16_enums_day_of_week_proto_rawDesc
+ file_google_ads_googleads_v17_enums_day_of_week_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_day_of_week_proto_rawDescData = file_google_ads_googleads_v17_enums_day_of_week_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_day_of_week_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_day_of_week_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_day_of_week_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_day_of_week_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_day_of_week_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_day_of_week_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_day_of_week_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_day_of_week_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_day_of_week_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_day_of_week_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_day_of_week_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_day_of_week_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_day_of_week_proto_goTypes = []interface{}{
- (DayOfWeekEnum_DayOfWeek)(0), // 0: google.ads.googleads.v16.enums.DayOfWeekEnum.DayOfWeek
- (*DayOfWeekEnum)(nil), // 1: google.ads.googleads.v16.enums.DayOfWeekEnum
+var file_google_ads_googleads_v17_enums_day_of_week_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_day_of_week_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_day_of_week_proto_goTypes = []interface{}{
+ (DayOfWeekEnum_DayOfWeek)(0), // 0: google.ads.googleads.v17.enums.DayOfWeekEnum.DayOfWeek
+ (*DayOfWeekEnum)(nil), // 1: google.ads.googleads.v17.enums.DayOfWeekEnum
}
-var file_google_ads_googleads_v16_enums_day_of_week_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_day_of_week_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -211,13 +211,13 @@ var file_google_ads_googleads_v16_enums_day_of_week_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_day_of_week_proto_init() }
-func file_google_ads_googleads_v16_enums_day_of_week_proto_init() {
- if File_google_ads_googleads_v16_enums_day_of_week_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_day_of_week_proto_init() }
+func file_google_ads_googleads_v17_enums_day_of_week_proto_init() {
+ if File_google_ads_googleads_v17_enums_day_of_week_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_day_of_week_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_day_of_week_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DayOfWeekEnum); i {
case 0:
return &v.state
@@ -234,19 +234,19 @@ func file_google_ads_googleads_v16_enums_day_of_week_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_day_of_week_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_day_of_week_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_day_of_week_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_day_of_week_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_day_of_week_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_day_of_week_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_day_of_week_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_day_of_week_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_day_of_week_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_day_of_week_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_day_of_week_proto = out.File
- file_google_ads_googleads_v16_enums_day_of_week_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_day_of_week_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_day_of_week_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_day_of_week_proto = out.File
+ file_google_ads_googleads_v17_enums_day_of_week_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_day_of_week_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_day_of_week_proto_depIdxs = nil
}
diff --git a/enums/device.pb.go b/enums/device.pb.go
index 81c368cb..418b0160 100644
--- a/enums/device.pb.go
+++ b/enums/device.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/device.proto
+// source: google/ads/googleads/v17/enums/device.proto
package enums
@@ -87,11 +87,11 @@ func (x DeviceEnum_Device) String() string {
}
func (DeviceEnum_Device) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_device_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_device_proto_enumTypes[0].Descriptor()
}
func (DeviceEnum_Device) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_device_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_device_proto_enumTypes[0]
}
func (x DeviceEnum_Device) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x DeviceEnum_Device) Number() protoreflect.EnumNumber {
// Deprecated: Use DeviceEnum_Device.Descriptor instead.
func (DeviceEnum_Device) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_device_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_device_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enumeration of Google Ads devices available for targeting.
@@ -113,7 +113,7 @@ type DeviceEnum struct {
func (x *DeviceEnum) Reset() {
*x = DeviceEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_device_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_device_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +126,7 @@ func (x *DeviceEnum) String() string {
func (*DeviceEnum) ProtoMessage() {}
func (x *DeviceEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_device_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_device_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,17 +139,17 @@ func (x *DeviceEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use DeviceEnum.ProtoReflect.Descriptor instead.
func (*DeviceEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_device_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_device_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_device_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_device_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_device_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_device_proto_rawDesc = []byte{
0x0a, 0x2b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x76, 0x0a,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x76, 0x0a,
0x0a, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x68, 0x0a, 0x06, 0x44,
0x65, 0x76, 0x69, 0x63, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49,
0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57,
@@ -159,41 +159,41 @@ var file_google_ads_googleads_v16_enums_device_proto_rawDesc = []byte{
0x45, 0x43, 0x54, 0x45, 0x44, 0x5f, 0x54, 0x56, 0x10, 0x06, 0x12, 0x09, 0x0a, 0x05, 0x4f, 0x54,
0x48, 0x45, 0x52, 0x10, 0x05, 0x42, 0xe5, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0b, 0x44, 0x65,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0b, 0x44, 0x65,
0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_device_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_device_proto_rawDescData = file_google_ads_googleads_v16_enums_device_proto_rawDesc
+ file_google_ads_googleads_v17_enums_device_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_device_proto_rawDescData = file_google_ads_googleads_v17_enums_device_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_device_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_device_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_device_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_device_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_device_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_device_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_device_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_device_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_device_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_device_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_device_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_device_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_device_proto_goTypes = []interface{}{
- (DeviceEnum_Device)(0), // 0: google.ads.googleads.v16.enums.DeviceEnum.Device
- (*DeviceEnum)(nil), // 1: google.ads.googleads.v16.enums.DeviceEnum
+var file_google_ads_googleads_v17_enums_device_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_device_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_device_proto_goTypes = []interface{}{
+ (DeviceEnum_Device)(0), // 0: google.ads.googleads.v17.enums.DeviceEnum.Device
+ (*DeviceEnum)(nil), // 1: google.ads.googleads.v17.enums.DeviceEnum
}
-var file_google_ads_googleads_v16_enums_device_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_device_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -201,13 +201,13 @@ var file_google_ads_googleads_v16_enums_device_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_device_proto_init() }
-func file_google_ads_googleads_v16_enums_device_proto_init() {
- if File_google_ads_googleads_v16_enums_device_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_device_proto_init() }
+func file_google_ads_googleads_v17_enums_device_proto_init() {
+ if File_google_ads_googleads_v17_enums_device_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_device_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_device_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DeviceEnum); i {
case 0:
return &v.state
@@ -224,19 +224,19 @@ func file_google_ads_googleads_v16_enums_device_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_device_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_device_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_device_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_device_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_device_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_device_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_device_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_device_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_device_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_device_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_device_proto = out.File
- file_google_ads_googleads_v16_enums_device_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_device_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_device_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_device_proto = out.File
+ file_google_ads_googleads_v17_enums_device_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_device_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_device_proto_depIdxs = nil
}
diff --git a/enums/display_ad_format_setting.pb.go b/enums/display_ad_format_setting.pb.go
index 37ff40ad..3cf582bf 100644
--- a/enums/display_ad_format_setting.pb.go
+++ b/enums/display_ad_format_setting.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/display_ad_format_setting.proto
+// source: google/ads/googleads/v17/enums/display_ad_format_setting.proto
package enums
@@ -80,11 +80,11 @@ func (x DisplayAdFormatSettingEnum_DisplayAdFormatSetting) String() string {
}
func (DisplayAdFormatSettingEnum_DisplayAdFormatSetting) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_enumTypes[0].Descriptor()
}
func (DisplayAdFormatSettingEnum_DisplayAdFormatSetting) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_enumTypes[0]
}
func (x DisplayAdFormatSettingEnum_DisplayAdFormatSetting) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x DisplayAdFormatSettingEnum_DisplayAdFormatSetting) Number() protoreflect
// Deprecated: Use DisplayAdFormatSettingEnum_DisplayAdFormatSetting.Descriptor instead.
func (DisplayAdFormatSettingEnum_DisplayAdFormatSetting) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_rawDescGZIP(), []int{0, 0}
}
// Container for display ad format settings.
@@ -106,7 +106,7 @@ type DisplayAdFormatSettingEnum struct {
func (x *DisplayAdFormatSettingEnum) Reset() {
*x = DisplayAdFormatSettingEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *DisplayAdFormatSettingEnum) String() string {
func (*DisplayAdFormatSettingEnum) ProtoMessage() {}
func (x *DisplayAdFormatSettingEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,18 +132,18 @@ func (x *DisplayAdFormatSettingEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use DisplayAdFormatSettingEnum.ProtoReflect.Descriptor instead.
func (*DisplayAdFormatSettingEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_display_ad_format_setting_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_display_ad_format_setting_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d,
0x61, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0x81, 0x01, 0x0a, 0x1a, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x41, 0x64, 0x46, 0x6f,
0x72, 0x6d, 0x61, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x63, 0x0a, 0x16, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d,
@@ -154,42 +154,42 @@ var file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_rawDesc
0x4e, 0x41, 0x54, 0x49, 0x56, 0x45, 0x10, 0x03, 0x12, 0x0a, 0x0a, 0x06, 0x4e, 0x41, 0x54, 0x49,
0x56, 0x45, 0x10, 0x04, 0x42, 0xf5, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x44, 0x69, 0x73,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x44, 0x69, 0x73,
0x70, 0x6c, 0x61, 0x79, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x53, 0x65, 0x74, 0x74,
0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_rawDescData = file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_rawDesc
+ file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_rawDescData = file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_goTypes = []interface{}{
- (DisplayAdFormatSettingEnum_DisplayAdFormatSetting)(0), // 0: google.ads.googleads.v16.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting
- (*DisplayAdFormatSettingEnum)(nil), // 1: google.ads.googleads.v16.enums.DisplayAdFormatSettingEnum
+var file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_goTypes = []interface{}{
+ (DisplayAdFormatSettingEnum_DisplayAdFormatSetting)(0), // 0: google.ads.googleads.v17.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting
+ (*DisplayAdFormatSettingEnum)(nil), // 1: google.ads.googleads.v17.enums.DisplayAdFormatSettingEnum
}
-var file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_init() }
-func file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_init() {
- if File_google_ads_googleads_v16_enums_display_ad_format_setting_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_init() }
+func file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_init() {
+ if File_google_ads_googleads_v17_enums_display_ad_format_setting_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DisplayAdFormatSettingEnum); i {
case 0:
return &v.state
@@ -220,19 +220,19 @@ func file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_display_ad_format_setting_proto = out.File
- file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_display_ad_format_setting_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_display_ad_format_setting_proto = out.File
+ file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_display_ad_format_setting_proto_depIdxs = nil
}
diff --git a/enums/display_upload_product_type.pb.go b/enums/display_upload_product_type.pb.go
index 7f1e7e79..5dee1ba7 100644
--- a/enums/display_upload_product_type.pb.go
+++ b/enums/display_upload_product_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/display_upload_product_type.proto
+// source: google/ads/googleads/v17/enums/display_upload_product_type.proto
package enums
@@ -126,11 +126,11 @@ func (x DisplayUploadProductTypeEnum_DisplayUploadProductType) String() string {
}
func (DisplayUploadProductTypeEnum_DisplayUploadProductType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_display_upload_product_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_display_upload_product_type_proto_enumTypes[0].Descriptor()
}
func (DisplayUploadProductTypeEnum_DisplayUploadProductType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_display_upload_product_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_display_upload_product_type_proto_enumTypes[0]
}
func (x DisplayUploadProductTypeEnum_DisplayUploadProductType) Number() protoreflect.EnumNumber {
@@ -139,7 +139,7 @@ func (x DisplayUploadProductTypeEnum_DisplayUploadProductType) Number() protoref
// Deprecated: Use DisplayUploadProductTypeEnum_DisplayUploadProductType.Descriptor instead.
func (DisplayUploadProductTypeEnum_DisplayUploadProductType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_display_upload_product_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_display_upload_product_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for display upload product types. Product types that have the word
@@ -156,7 +156,7 @@ type DisplayUploadProductTypeEnum struct {
func (x *DisplayUploadProductTypeEnum) Reset() {
*x = DisplayUploadProductTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_display_upload_product_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_display_upload_product_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -169,7 +169,7 @@ func (x *DisplayUploadProductTypeEnum) String() string {
func (*DisplayUploadProductTypeEnum) ProtoMessage() {}
func (x *DisplayUploadProductTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_display_upload_product_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_display_upload_product_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -182,18 +182,18 @@ func (x *DisplayUploadProductTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use DisplayUploadProductTypeEnum.ProtoReflect.Descriptor instead.
func (*DisplayUploadProductTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_display_upload_product_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_display_upload_product_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_display_upload_product_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_display_upload_product_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_display_upload_product_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_display_upload_product_type_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f,
0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0xfc, 0x02, 0x0a, 0x1c, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x55, 0x70,
0x6c, 0x6f, 0x61, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0xdb, 0x02, 0x0a, 0x18, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x55,
@@ -220,42 +220,42 @@ var file_google_ads_googleads_v16_enums_display_upload_product_type_proto_rawDes
0x5f, 0x48, 0x54, 0x4d, 0x4c, 0x35, 0x5f, 0x48, 0x4f, 0x54, 0x45, 0x4c, 0x5f, 0x41, 0x44, 0x10,
0x0b, 0x42, 0xf7, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61,
0x79, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79,
0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_display_upload_product_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_display_upload_product_type_proto_rawDescData = file_google_ads_googleads_v16_enums_display_upload_product_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_display_upload_product_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_display_upload_product_type_proto_rawDescData = file_google_ads_googleads_v17_enums_display_upload_product_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_display_upload_product_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_display_upload_product_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_display_upload_product_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_display_upload_product_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_display_upload_product_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_display_upload_product_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_display_upload_product_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_display_upload_product_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_display_upload_product_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_display_upload_product_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_display_upload_product_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_display_upload_product_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_display_upload_product_type_proto_goTypes = []interface{}{
- (DisplayUploadProductTypeEnum_DisplayUploadProductType)(0), // 0: google.ads.googleads.v16.enums.DisplayUploadProductTypeEnum.DisplayUploadProductType
- (*DisplayUploadProductTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.DisplayUploadProductTypeEnum
+var file_google_ads_googleads_v17_enums_display_upload_product_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_display_upload_product_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_display_upload_product_type_proto_goTypes = []interface{}{
+ (DisplayUploadProductTypeEnum_DisplayUploadProductType)(0), // 0: google.ads.googleads.v17.enums.DisplayUploadProductTypeEnum.DisplayUploadProductType
+ (*DisplayUploadProductTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.DisplayUploadProductTypeEnum
}
-var file_google_ads_googleads_v16_enums_display_upload_product_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_display_upload_product_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -263,13 +263,13 @@ var file_google_ads_googleads_v16_enums_display_upload_product_type_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_display_upload_product_type_proto_init() }
-func file_google_ads_googleads_v16_enums_display_upload_product_type_proto_init() {
- if File_google_ads_googleads_v16_enums_display_upload_product_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_display_upload_product_type_proto_init() }
+func file_google_ads_googleads_v17_enums_display_upload_product_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_display_upload_product_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_display_upload_product_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_display_upload_product_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DisplayUploadProductTypeEnum); i {
case 0:
return &v.state
@@ -286,19 +286,19 @@ func file_google_ads_googleads_v16_enums_display_upload_product_type_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_display_upload_product_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_display_upload_product_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_display_upload_product_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_display_upload_product_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_display_upload_product_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_display_upload_product_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_display_upload_product_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_display_upload_product_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_display_upload_product_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_display_upload_product_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_display_upload_product_type_proto = out.File
- file_google_ads_googleads_v16_enums_display_upload_product_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_display_upload_product_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_display_upload_product_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_display_upload_product_type_proto = out.File
+ file_google_ads_googleads_v17_enums_display_upload_product_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_display_upload_product_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_display_upload_product_type_proto_depIdxs = nil
}
diff --git a/enums/distance_bucket.pb.go b/enums/distance_bucket.pb.go
index cc5b3983..35c7f483 100644
--- a/enums/distance_bucket.pb.go
+++ b/enums/distance_bucket.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/distance_bucket.proto
+// source: google/ads/googleads/v17/enums/distance_bucket.proto
package enums
@@ -176,11 +176,11 @@ func (x DistanceBucketEnum_DistanceBucket) String() string {
}
func (DistanceBucketEnum_DistanceBucket) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_distance_bucket_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_distance_bucket_proto_enumTypes[0].Descriptor()
}
func (DistanceBucketEnum_DistanceBucket) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_distance_bucket_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_distance_bucket_proto_enumTypes[0]
}
func (x DistanceBucketEnum_DistanceBucket) Number() protoreflect.EnumNumber {
@@ -189,7 +189,7 @@ func (x DistanceBucketEnum_DistanceBucket) Number() protoreflect.EnumNumber {
// Deprecated: Use DistanceBucketEnum_DistanceBucket.Descriptor instead.
func (DistanceBucketEnum_DistanceBucket) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_distance_bucket_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_distance_bucket_proto_rawDescGZIP(), []int{0, 0}
}
// Container for distance buckets of a user's distance from an advertiser's
@@ -203,7 +203,7 @@ type DistanceBucketEnum struct {
func (x *DistanceBucketEnum) Reset() {
*x = DistanceBucketEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_distance_bucket_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_distance_bucket_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -216,7 +216,7 @@ func (x *DistanceBucketEnum) String() string {
func (*DistanceBucketEnum) ProtoMessage() {}
func (x *DistanceBucketEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_distance_bucket_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_distance_bucket_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -229,17 +229,17 @@ func (x *DistanceBucketEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use DistanceBucketEnum.ProtoReflect.Descriptor instead.
func (*DistanceBucketEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_distance_bucket_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_distance_bucket_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_distance_bucket_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_distance_bucket_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_distance_bucket_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_distance_bucket_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x64, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xad, 0x04, 0x0a, 0x12, 0x44, 0x69, 0x73, 0x74, 0x61,
0x6e, 0x63, 0x65, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x96, 0x04,
0x0a, 0x0e, 0x44, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74,
@@ -277,41 +277,41 @@ var file_google_ads_googleads_v16_enums_distance_bucket_proto_rawDesc = []byte{
0x10, 0x1b, 0x12, 0x12, 0x0a, 0x0e, 0x42, 0x45, 0x59, 0x4f, 0x4e, 0x44, 0x5f, 0x34, 0x30, 0x4d,
0x49, 0x4c, 0x45, 0x53, 0x10, 0x1c, 0x42, 0xed, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x44,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x44,
0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_distance_bucket_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_distance_bucket_proto_rawDescData = file_google_ads_googleads_v16_enums_distance_bucket_proto_rawDesc
+ file_google_ads_googleads_v17_enums_distance_bucket_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_distance_bucket_proto_rawDescData = file_google_ads_googleads_v17_enums_distance_bucket_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_distance_bucket_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_distance_bucket_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_distance_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_distance_bucket_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_distance_bucket_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_distance_bucket_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_distance_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_distance_bucket_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_distance_bucket_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_distance_bucket_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_distance_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_distance_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_distance_bucket_proto_goTypes = []interface{}{
- (DistanceBucketEnum_DistanceBucket)(0), // 0: google.ads.googleads.v16.enums.DistanceBucketEnum.DistanceBucket
- (*DistanceBucketEnum)(nil), // 1: google.ads.googleads.v16.enums.DistanceBucketEnum
+var file_google_ads_googleads_v17_enums_distance_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_distance_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_distance_bucket_proto_goTypes = []interface{}{
+ (DistanceBucketEnum_DistanceBucket)(0), // 0: google.ads.googleads.v17.enums.DistanceBucketEnum.DistanceBucket
+ (*DistanceBucketEnum)(nil), // 1: google.ads.googleads.v17.enums.DistanceBucketEnum
}
-var file_google_ads_googleads_v16_enums_distance_bucket_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_distance_bucket_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -319,13 +319,13 @@ var file_google_ads_googleads_v16_enums_distance_bucket_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_distance_bucket_proto_init() }
-func file_google_ads_googleads_v16_enums_distance_bucket_proto_init() {
- if File_google_ads_googleads_v16_enums_distance_bucket_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_distance_bucket_proto_init() }
+func file_google_ads_googleads_v17_enums_distance_bucket_proto_init() {
+ if File_google_ads_googleads_v17_enums_distance_bucket_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_distance_bucket_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_distance_bucket_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DistanceBucketEnum); i {
case 0:
return &v.state
@@ -342,19 +342,19 @@ func file_google_ads_googleads_v16_enums_distance_bucket_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_distance_bucket_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_distance_bucket_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_distance_bucket_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_distance_bucket_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_distance_bucket_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_distance_bucket_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_distance_bucket_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_distance_bucket_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_distance_bucket_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_distance_bucket_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_distance_bucket_proto = out.File
- file_google_ads_googleads_v16_enums_distance_bucket_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_distance_bucket_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_distance_bucket_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_distance_bucket_proto = out.File
+ file_google_ads_googleads_v17_enums_distance_bucket_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_distance_bucket_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_distance_bucket_proto_depIdxs = nil
}
diff --git a/enums/dsa_page_feed_criterion_field.pb.go b/enums/dsa_page_feed_criterion_field.pb.go
index 7e68125c..ec991ad4 100644
--- a/enums/dsa_page_feed_criterion_field.pb.go
+++ b/enums/dsa_page_feed_criterion_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/dsa_page_feed_criterion_field.proto
+// source: google/ads/googleads/v17/enums/dsa_page_feed_criterion_field.proto
package enums
@@ -76,11 +76,11 @@ func (x DsaPageFeedCriterionFieldEnum_DsaPageFeedCriterionField) String() string
}
func (DsaPageFeedCriterionFieldEnum_DsaPageFeedCriterionField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_enumTypes[0].Descriptor()
}
func (DsaPageFeedCriterionFieldEnum_DsaPageFeedCriterionField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_enumTypes[0]
}
func (x DsaPageFeedCriterionFieldEnum_DsaPageFeedCriterionField) Number() protoreflect.EnumNumber {
@@ -89,7 +89,7 @@ func (x DsaPageFeedCriterionFieldEnum_DsaPageFeedCriterionField) Number() protor
// Deprecated: Use DsaPageFeedCriterionFieldEnum_DsaPageFeedCriterionField.Descriptor instead.
func (DsaPageFeedCriterionFieldEnum_DsaPageFeedCriterionField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Dynamic Search Ad Page Feed criterion fields.
@@ -102,7 +102,7 @@ type DsaPageFeedCriterionFieldEnum struct {
func (x *DsaPageFeedCriterionFieldEnum) Reset() {
*x = DsaPageFeedCriterionFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -115,7 +115,7 @@ func (x *DsaPageFeedCriterionFieldEnum) String() string {
func (*DsaPageFeedCriterionFieldEnum) ProtoMessage() {}
func (x *DsaPageFeedCriterionFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -128,18 +128,18 @@ func (x *DsaPageFeedCriterionFieldEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use DsaPageFeedCriterionFieldEnum.ProtoReflect.Descriptor instead.
func (*DsaPageFeedCriterionFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_rawDesc = []byte{
0x0a, 0x42, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x64, 0x73, 0x61, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x63,
0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x22, 0x73, 0x0a, 0x1d, 0x44, 0x73, 0x61, 0x50, 0x61, 0x67, 0x65, 0x46,
0x65, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x65, 0x6c,
0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x52, 0x0a, 0x19, 0x44, 0x73, 0x61, 0x50, 0x61, 0x67, 0x65,
@@ -149,42 +149,42 @@ var file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_rawD
0x12, 0x0c, 0x0a, 0x08, 0x50, 0x41, 0x47, 0x45, 0x5f, 0x55, 0x52, 0x4c, 0x10, 0x02, 0x12, 0x09,
0x0a, 0x05, 0x4c, 0x41, 0x42, 0x45, 0x4c, 0x10, 0x03, 0x42, 0xf8, 0x01, 0x0a, 0x22, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x42, 0x1e, 0x44, 0x73, 0x61, 0x50, 0x61, 0x67, 0x65, 0x46, 0x65, 0x65, 0x64, 0x43, 0x72, 0x69,
0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_rawDescData = file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_rawDescData = file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_goTypes = []interface{}{
- (DsaPageFeedCriterionFieldEnum_DsaPageFeedCriterionField)(0), // 0: google.ads.googleads.v16.enums.DsaPageFeedCriterionFieldEnum.DsaPageFeedCriterionField
- (*DsaPageFeedCriterionFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.DsaPageFeedCriterionFieldEnum
+var file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_goTypes = []interface{}{
+ (DsaPageFeedCriterionFieldEnum_DsaPageFeedCriterionField)(0), // 0: google.ads.googleads.v17.enums.DsaPageFeedCriterionFieldEnum.DsaPageFeedCriterionField
+ (*DsaPageFeedCriterionFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.DsaPageFeedCriterionFieldEnum
}
-var file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -192,13 +192,13 @@ var file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_depI
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_init() }
-func file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_init() {
- if File_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_init() }
+func file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DsaPageFeedCriterionFieldEnum); i {
case 0:
return &v.state
@@ -215,19 +215,19 @@ func file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_ini
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto = out.File
- file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_dsa_page_feed_criterion_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto = out.File
+ file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_dsa_page_feed_criterion_field_proto_depIdxs = nil
}
diff --git a/enums/education_placeholder_field.pb.go b/enums/education_placeholder_field.pb.go
index 98d726c7..23540677 100644
--- a/enums/education_placeholder_field.pb.go
+++ b/enums/education_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/education_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/education_placeholder_field.proto
package enums
@@ -151,11 +151,11 @@ func (x EducationPlaceholderFieldEnum_EducationPlaceholderField) String() string
}
func (EducationPlaceholderFieldEnum_EducationPlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_education_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_education_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (EducationPlaceholderFieldEnum_EducationPlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_education_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_education_placeholder_field_proto_enumTypes[0]
}
func (x EducationPlaceholderFieldEnum_EducationPlaceholderField) Number() protoreflect.EnumNumber {
@@ -164,7 +164,7 @@ func (x EducationPlaceholderFieldEnum_EducationPlaceholderField) Number() protor
// Deprecated: Use EducationPlaceholderFieldEnum_EducationPlaceholderField.Descriptor instead.
func (EducationPlaceholderFieldEnum_EducationPlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_education_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_education_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Education placeholder fields.
@@ -179,7 +179,7 @@ type EducationPlaceholderFieldEnum struct {
func (x *EducationPlaceholderFieldEnum) Reset() {
*x = EducationPlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_education_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_education_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -192,7 +192,7 @@ func (x *EducationPlaceholderFieldEnum) String() string {
func (*EducationPlaceholderFieldEnum) ProtoMessage() {}
func (x *EducationPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_education_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_education_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -205,18 +205,18 @@ func (x *EducationPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use EducationPlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*EducationPlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_education_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_education_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_education_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_education_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_education_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_education_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x65, 0x64, 0x75, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65,
0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0xbf, 0x03, 0x0a, 0x1d, 0x45, 0x64, 0x75, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x9d, 0x03, 0x0a, 0x19, 0x45, 0x64, 0x75, 0x63, 0x61, 0x74, 0x69,
@@ -247,42 +247,42 @@ var file_google_ads_googleads_v16_enums_education_placeholder_field_proto_rawDes
0x0a, 0x10, 0x49, 0x4f, 0x53, 0x5f, 0x41, 0x50, 0x50, 0x5f, 0x53, 0x54, 0x4f, 0x52, 0x45, 0x5f,
0x49, 0x44, 0x10, 0x12, 0x42, 0xf8, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x45, 0x64, 0x75,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x45, 0x64, 0x75,
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65,
0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_education_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_education_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_education_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_education_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_education_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_education_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_education_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_education_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_education_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_education_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_education_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_education_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_education_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_education_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_education_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_education_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_education_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_education_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_education_placeholder_field_proto_goTypes = []interface{}{
- (EducationPlaceholderFieldEnum_EducationPlaceholderField)(0), // 0: google.ads.googleads.v16.enums.EducationPlaceholderFieldEnum.EducationPlaceholderField
- (*EducationPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.EducationPlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_education_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_education_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_education_placeholder_field_proto_goTypes = []interface{}{
+ (EducationPlaceholderFieldEnum_EducationPlaceholderField)(0), // 0: google.ads.googleads.v17.enums.EducationPlaceholderFieldEnum.EducationPlaceholderField
+ (*EducationPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.EducationPlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_education_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_education_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -290,13 +290,13 @@ var file_google_ads_googleads_v16_enums_education_placeholder_field_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_education_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_education_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_education_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_education_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_education_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_education_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_education_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_education_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*EducationPlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -313,19 +313,19 @@ func file_google_ads_googleads_v16_enums_education_placeholder_field_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_education_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_education_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_education_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_education_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_education_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_education_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_education_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_education_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_education_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_education_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_education_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_education_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_education_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_education_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_education_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_education_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_education_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_education_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/experiment_metric.pb.go b/enums/experiment_metric.pb.go
index b9295f8c..fcff03ad 100644
--- a/enums/experiment_metric.pb.go
+++ b/enums/experiment_metric.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/experiment_metric.proto
+// source: google/ads/googleads/v17/enums/experiment_metric.proto
package enums
@@ -119,11 +119,11 @@ func (x ExperimentMetricEnum_ExperimentMetric) String() string {
}
func (ExperimentMetricEnum_ExperimentMetric) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_experiment_metric_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_experiment_metric_proto_enumTypes[0].Descriptor()
}
func (ExperimentMetricEnum_ExperimentMetric) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_experiment_metric_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_experiment_metric_proto_enumTypes[0]
}
func (x ExperimentMetricEnum_ExperimentMetric) Number() protoreflect.EnumNumber {
@@ -132,7 +132,7 @@ func (x ExperimentMetricEnum_ExperimentMetric) Number() protoreflect.EnumNumber
// Deprecated: Use ExperimentMetricEnum_ExperimentMetric.Descriptor instead.
func (ExperimentMetricEnum_ExperimentMetric) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_experiment_metric_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_experiment_metric_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the type of experiment metric.
@@ -145,7 +145,7 @@ type ExperimentMetricEnum struct {
func (x *ExperimentMetricEnum) Reset() {
*x = ExperimentMetricEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_experiment_metric_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_experiment_metric_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -158,7 +158,7 @@ func (x *ExperimentMetricEnum) String() string {
func (*ExperimentMetricEnum) ProtoMessage() {}
func (x *ExperimentMetricEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_experiment_metric_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_experiment_metric_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -171,18 +171,18 @@ func (x *ExperimentMetricEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ExperimentMetricEnum.ProtoReflect.Descriptor instead.
func (*ExperimentMetricEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_experiment_metric_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_experiment_metric_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_experiment_metric_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_experiment_metric_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_experiment_metric_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_experiment_metric_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x65, 0x74, 0x72,
0x69, 0x63, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xdf, 0x02, 0x0a, 0x14, 0x45, 0x78, 0x70,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xdf, 0x02, 0x0a, 0x14, 0x45, 0x78, 0x70,
0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0xc6, 0x02, 0x0a, 0x10, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74,
0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
@@ -206,42 +206,42 @@ var file_google_ads_googleads_v16_enums_experiment_metric_proto_rawDesc = []byte
0x4e, 0x53, 0x10, 0x0d, 0x12, 0x14, 0x0a, 0x10, 0x43, 0x4f, 0x4e, 0x56, 0x45, 0x52, 0x53, 0x49,
0x4f, 0x4e, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x10, 0x0e, 0x42, 0xef, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x15, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x74,
0x72, 0x69, 0x63, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_experiment_metric_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_experiment_metric_proto_rawDescData = file_google_ads_googleads_v16_enums_experiment_metric_proto_rawDesc
+ file_google_ads_googleads_v17_enums_experiment_metric_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_experiment_metric_proto_rawDescData = file_google_ads_googleads_v17_enums_experiment_metric_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_experiment_metric_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_experiment_metric_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_experiment_metric_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_experiment_metric_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_experiment_metric_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_experiment_metric_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_experiment_metric_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_experiment_metric_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_experiment_metric_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_experiment_metric_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_experiment_metric_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_experiment_metric_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_experiment_metric_proto_goTypes = []interface{}{
- (ExperimentMetricEnum_ExperimentMetric)(0), // 0: google.ads.googleads.v16.enums.ExperimentMetricEnum.ExperimentMetric
- (*ExperimentMetricEnum)(nil), // 1: google.ads.googleads.v16.enums.ExperimentMetricEnum
+var file_google_ads_googleads_v17_enums_experiment_metric_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_experiment_metric_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_experiment_metric_proto_goTypes = []interface{}{
+ (ExperimentMetricEnum_ExperimentMetric)(0), // 0: google.ads.googleads.v17.enums.ExperimentMetricEnum.ExperimentMetric
+ (*ExperimentMetricEnum)(nil), // 1: google.ads.googleads.v17.enums.ExperimentMetricEnum
}
-var file_google_ads_googleads_v16_enums_experiment_metric_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_experiment_metric_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -249,13 +249,13 @@ var file_google_ads_googleads_v16_enums_experiment_metric_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_experiment_metric_proto_init() }
-func file_google_ads_googleads_v16_enums_experiment_metric_proto_init() {
- if File_google_ads_googleads_v16_enums_experiment_metric_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_experiment_metric_proto_init() }
+func file_google_ads_googleads_v17_enums_experiment_metric_proto_init() {
+ if File_google_ads_googleads_v17_enums_experiment_metric_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_experiment_metric_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_experiment_metric_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExperimentMetricEnum); i {
case 0:
return &v.state
@@ -272,19 +272,19 @@ func file_google_ads_googleads_v16_enums_experiment_metric_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_experiment_metric_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_experiment_metric_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_experiment_metric_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_experiment_metric_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_experiment_metric_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_experiment_metric_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_experiment_metric_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_experiment_metric_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_experiment_metric_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_experiment_metric_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_experiment_metric_proto = out.File
- file_google_ads_googleads_v16_enums_experiment_metric_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_experiment_metric_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_experiment_metric_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_experiment_metric_proto = out.File
+ file_google_ads_googleads_v17_enums_experiment_metric_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_experiment_metric_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_experiment_metric_proto_depIdxs = nil
}
diff --git a/enums/experiment_metric_direction.pb.go b/enums/experiment_metric_direction.pb.go
index 16b84aa4..f4d209b4 100644
--- a/enums/experiment_metric_direction.pb.go
+++ b/enums/experiment_metric_direction.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/experiment_metric_direction.proto
+// source: google/ads/googleads/v17/enums/experiment_metric_direction.proto
package enums
@@ -89,11 +89,11 @@ func (x ExperimentMetricDirectionEnum_ExperimentMetricDirection) String() string
}
func (ExperimentMetricDirectionEnum_ExperimentMetricDirection) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_enumTypes[0].Descriptor()
}
func (ExperimentMetricDirectionEnum_ExperimentMetricDirection) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_enumTypes[0]
}
func (x ExperimentMetricDirectionEnum_ExperimentMetricDirection) Number() protoreflect.EnumNumber {
@@ -102,7 +102,7 @@ func (x ExperimentMetricDirectionEnum_ExperimentMetricDirection) Number() protor
// Deprecated: Use ExperimentMetricDirectionEnum_ExperimentMetricDirection.Descriptor instead.
func (ExperimentMetricDirectionEnum_ExperimentMetricDirection) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the type of experiment metric direction.
@@ -115,7 +115,7 @@ type ExperimentMetricDirectionEnum struct {
func (x *ExperimentMetricDirectionEnum) Reset() {
*x = ExperimentMetricDirectionEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -128,7 +128,7 @@ func (x *ExperimentMetricDirectionEnum) String() string {
func (*ExperimentMetricDirectionEnum) ProtoMessage() {}
func (x *ExperimentMetricDirectionEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -141,18 +141,18 @@ func (x *ExperimentMetricDirectionEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ExperimentMetricDirectionEnum.ProtoReflect.Descriptor instead.
func (*ExperimentMetricDirectionEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_experiment_metric_direction_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_experiment_metric_direction_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x65, 0x74, 0x72,
0x69, 0x63, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0xbc, 0x01, 0x0a, 0x1d, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e,
0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x9a, 0x01, 0x0a, 0x19, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d,
@@ -167,42 +167,42 @@ var file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_rawDes
0x4e, 0x47, 0x45, 0x5f, 0x4f, 0x52, 0x5f, 0x44, 0x45, 0x43, 0x52, 0x45, 0x41, 0x53, 0x45, 0x10,
0x06, 0x42, 0xf8, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69,
0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_rawDescData = file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_rawDesc
+ file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_rawDescData = file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_goTypes = []interface{}{
- (ExperimentMetricDirectionEnum_ExperimentMetricDirection)(0), // 0: google.ads.googleads.v16.enums.ExperimentMetricDirectionEnum.ExperimentMetricDirection
- (*ExperimentMetricDirectionEnum)(nil), // 1: google.ads.googleads.v16.enums.ExperimentMetricDirectionEnum
+var file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_goTypes = []interface{}{
+ (ExperimentMetricDirectionEnum_ExperimentMetricDirection)(0), // 0: google.ads.googleads.v17.enums.ExperimentMetricDirectionEnum.ExperimentMetricDirection
+ (*ExperimentMetricDirectionEnum)(nil), // 1: google.ads.googleads.v17.enums.ExperimentMetricDirectionEnum
}
-var file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -210,13 +210,13 @@ var file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_init() }
-func file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_init() {
- if File_google_ads_googleads_v16_enums_experiment_metric_direction_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_init() }
+func file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_init() {
+ if File_google_ads_googleads_v17_enums_experiment_metric_direction_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExperimentMetricDirectionEnum); i {
case 0:
return &v.state
@@ -233,19 +233,19 @@ func file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_experiment_metric_direction_proto = out.File
- file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_experiment_metric_direction_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_experiment_metric_direction_proto = out.File
+ file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_experiment_metric_direction_proto_depIdxs = nil
}
diff --git a/enums/experiment_status.pb.go b/enums/experiment_status.pb.go
index 766194bb..54c06a96 100644
--- a/enums/experiment_status.pb.go
+++ b/enums/experiment_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/experiment_status.proto
+// source: google/ads/googleads/v17/enums/experiment_status.proto
package enums
@@ -97,11 +97,11 @@ func (x ExperimentStatusEnum_ExperimentStatus) String() string {
}
func (ExperimentStatusEnum_ExperimentStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_experiment_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_experiment_status_proto_enumTypes[0].Descriptor()
}
func (ExperimentStatusEnum_ExperimentStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_experiment_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_experiment_status_proto_enumTypes[0]
}
func (x ExperimentStatusEnum_ExperimentStatus) Number() protoreflect.EnumNumber {
@@ -110,7 +110,7 @@ func (x ExperimentStatusEnum_ExperimentStatus) Number() protoreflect.EnumNumber
// Deprecated: Use ExperimentStatusEnum_ExperimentStatus.Descriptor instead.
func (ExperimentStatusEnum_ExperimentStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_experiment_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_experiment_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the experiment status.
@@ -123,7 +123,7 @@ type ExperimentStatusEnum struct {
func (x *ExperimentStatusEnum) Reset() {
*x = ExperimentStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_experiment_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_experiment_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -136,7 +136,7 @@ func (x *ExperimentStatusEnum) String() string {
func (*ExperimentStatusEnum) ProtoMessage() {}
func (x *ExperimentStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_experiment_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_experiment_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -149,18 +149,18 @@ func (x *ExperimentStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ExperimentStatusEnum.ProtoReflect.Descriptor instead.
func (*ExperimentStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_experiment_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_experiment_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_experiment_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_experiment_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_experiment_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_experiment_status_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74,
0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa6, 0x01, 0x0a, 0x14, 0x45, 0x78, 0x70,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa6, 0x01, 0x0a, 0x14, 0x45, 0x78, 0x70,
0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x8d, 0x01, 0x0a, 0x10, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
@@ -173,41 +173,41 @@ var file_google_ads_googleads_v16_enums_experiment_status_proto_rawDesc = []byte
0x10, 0x07, 0x12, 0x0d, 0x0a, 0x09, 0x47, 0x52, 0x41, 0x44, 0x55, 0x41, 0x54, 0x45, 0x44, 0x10,
0x08, 0x42, 0xef, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69,
0x6d, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_experiment_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_experiment_status_proto_rawDescData = file_google_ads_googleads_v16_enums_experiment_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_experiment_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_experiment_status_proto_rawDescData = file_google_ads_googleads_v17_enums_experiment_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_experiment_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_experiment_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_experiment_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_experiment_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_experiment_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_experiment_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_experiment_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_experiment_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_experiment_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_experiment_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_experiment_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_experiment_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_experiment_status_proto_goTypes = []interface{}{
- (ExperimentStatusEnum_ExperimentStatus)(0), // 0: google.ads.googleads.v16.enums.ExperimentStatusEnum.ExperimentStatus
- (*ExperimentStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.ExperimentStatusEnum
+var file_google_ads_googleads_v17_enums_experiment_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_experiment_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_experiment_status_proto_goTypes = []interface{}{
+ (ExperimentStatusEnum_ExperimentStatus)(0), // 0: google.ads.googleads.v17.enums.ExperimentStatusEnum.ExperimentStatus
+ (*ExperimentStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.ExperimentStatusEnum
}
-var file_google_ads_googleads_v16_enums_experiment_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_experiment_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -215,13 +215,13 @@ var file_google_ads_googleads_v16_enums_experiment_status_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_experiment_status_proto_init() }
-func file_google_ads_googleads_v16_enums_experiment_status_proto_init() {
- if File_google_ads_googleads_v16_enums_experiment_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_experiment_status_proto_init() }
+func file_google_ads_googleads_v17_enums_experiment_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_experiment_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_experiment_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_experiment_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExperimentStatusEnum); i {
case 0:
return &v.state
@@ -238,19 +238,19 @@ func file_google_ads_googleads_v16_enums_experiment_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_experiment_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_experiment_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_experiment_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_experiment_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_experiment_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_experiment_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_experiment_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_experiment_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_experiment_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_experiment_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_experiment_status_proto = out.File
- file_google_ads_googleads_v16_enums_experiment_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_experiment_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_experiment_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_experiment_status_proto = out.File
+ file_google_ads_googleads_v17_enums_experiment_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_experiment_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_experiment_status_proto_depIdxs = nil
}
diff --git a/enums/experiment_type.pb.go b/enums/experiment_type.pb.go
index 9e89ccea..7743129b 100644
--- a/enums/experiment_type.pb.go
+++ b/enums/experiment_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/experiment_type.proto
+// source: google/ads/googleads/v17/enums/experiment_type.proto
package enums
@@ -107,11 +107,11 @@ func (x ExperimentTypeEnum_ExperimentType) String() string {
}
func (ExperimentTypeEnum_ExperimentType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_experiment_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_experiment_type_proto_enumTypes[0].Descriptor()
}
func (ExperimentTypeEnum_ExperimentType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_experiment_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_experiment_type_proto_enumTypes[0]
}
func (x ExperimentTypeEnum_ExperimentType) Number() protoreflect.EnumNumber {
@@ -120,7 +120,7 @@ func (x ExperimentTypeEnum_ExperimentType) Number() protoreflect.EnumNumber {
// Deprecated: Use ExperimentTypeEnum_ExperimentType.Descriptor instead.
func (ExperimentTypeEnum_ExperimentType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_experiment_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_experiment_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the type of experiment.
@@ -133,7 +133,7 @@ type ExperimentTypeEnum struct {
func (x *ExperimentTypeEnum) Reset() {
*x = ExperimentTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_experiment_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_experiment_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -146,7 +146,7 @@ func (x *ExperimentTypeEnum) String() string {
func (*ExperimentTypeEnum) ProtoMessage() {}
func (x *ExperimentTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_experiment_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_experiment_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -159,17 +159,17 @@ func (x *ExperimentTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ExperimentTypeEnum.ProtoReflect.Descriptor instead.
func (*ExperimentTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_experiment_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_experiment_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_experiment_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_experiment_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_experiment_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_experiment_type_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xcb, 0x02, 0x0a, 0x12, 0x45, 0x78, 0x70, 0x65, 0x72,
0x69, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb4, 0x02,
0x0a, 0x0e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65,
@@ -193,41 +193,41 @@ var file_google_ads_googleads_v16_enums_experiment_type_proto_rawDesc = []byte{
0x10, 0x0b, 0x12, 0x10, 0x0a, 0x0c, 0x48, 0x4f, 0x54, 0x45, 0x4c, 0x5f, 0x43, 0x55, 0x53, 0x54,
0x4f, 0x4d, 0x10, 0x0c, 0x42, 0xed, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x45, 0x78, 0x70,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x45, 0x78, 0x70,
0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_experiment_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_experiment_type_proto_rawDescData = file_google_ads_googleads_v16_enums_experiment_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_experiment_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_experiment_type_proto_rawDescData = file_google_ads_googleads_v17_enums_experiment_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_experiment_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_experiment_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_experiment_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_experiment_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_experiment_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_experiment_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_experiment_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_experiment_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_experiment_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_experiment_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_experiment_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_experiment_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_experiment_type_proto_goTypes = []interface{}{
- (ExperimentTypeEnum_ExperimentType)(0), // 0: google.ads.googleads.v16.enums.ExperimentTypeEnum.ExperimentType
- (*ExperimentTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ExperimentTypeEnum
+var file_google_ads_googleads_v17_enums_experiment_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_experiment_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_experiment_type_proto_goTypes = []interface{}{
+ (ExperimentTypeEnum_ExperimentType)(0), // 0: google.ads.googleads.v17.enums.ExperimentTypeEnum.ExperimentType
+ (*ExperimentTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ExperimentTypeEnum
}
-var file_google_ads_googleads_v16_enums_experiment_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_experiment_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -235,13 +235,13 @@ var file_google_ads_googleads_v16_enums_experiment_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_experiment_type_proto_init() }
-func file_google_ads_googleads_v16_enums_experiment_type_proto_init() {
- if File_google_ads_googleads_v16_enums_experiment_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_experiment_type_proto_init() }
+func file_google_ads_googleads_v17_enums_experiment_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_experiment_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_experiment_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_experiment_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExperimentTypeEnum); i {
case 0:
return &v.state
@@ -258,19 +258,19 @@ func file_google_ads_googleads_v16_enums_experiment_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_experiment_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_experiment_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_experiment_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_experiment_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_experiment_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_experiment_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_experiment_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_experiment_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_experiment_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_experiment_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_experiment_type_proto = out.File
- file_google_ads_googleads_v16_enums_experiment_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_experiment_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_experiment_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_experiment_type_proto = out.File
+ file_google_ads_googleads_v17_enums_experiment_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_experiment_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_experiment_type_proto_depIdxs = nil
}
diff --git a/enums/extension_setting_device.pb.go b/enums/extension_setting_device.pb.go
index dba49de7..520f8068 100644
--- a/enums/extension_setting_device.pb.go
+++ b/enums/extension_setting_device.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/extension_setting_device.proto
+// source: google/ads/googleads/v17/enums/extension_setting_device.proto
package enums
@@ -77,11 +77,11 @@ func (x ExtensionSettingDeviceEnum_ExtensionSettingDevice) String() string {
}
func (ExtensionSettingDeviceEnum_ExtensionSettingDevice) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_extension_setting_device_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_extension_setting_device_proto_enumTypes[0].Descriptor()
}
func (ExtensionSettingDeviceEnum_ExtensionSettingDevice) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_extension_setting_device_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_extension_setting_device_proto_enumTypes[0]
}
func (x ExtensionSettingDeviceEnum_ExtensionSettingDevice) Number() protoreflect.EnumNumber {
@@ -90,7 +90,7 @@ func (x ExtensionSettingDeviceEnum_ExtensionSettingDevice) Number() protoreflect
// Deprecated: Use ExtensionSettingDeviceEnum_ExtensionSettingDevice.Descriptor instead.
func (ExtensionSettingDeviceEnum_ExtensionSettingDevice) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_extension_setting_device_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_extension_setting_device_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing extension setting device types.
@@ -103,7 +103,7 @@ type ExtensionSettingDeviceEnum struct {
func (x *ExtensionSettingDeviceEnum) Reset() {
*x = ExtensionSettingDeviceEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_extension_setting_device_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_extension_setting_device_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -116,7 +116,7 @@ func (x *ExtensionSettingDeviceEnum) String() string {
func (*ExtensionSettingDeviceEnum) ProtoMessage() {}
func (x *ExtensionSettingDeviceEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_extension_setting_device_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_extension_setting_device_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -129,18 +129,18 @@ func (x *ExtensionSettingDeviceEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ExtensionSettingDeviceEnum.ProtoReflect.Descriptor instead.
func (*ExtensionSettingDeviceEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_extension_setting_device_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_extension_setting_device_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_extension_setting_device_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_extension_setting_device_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_extension_setting_device_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_extension_setting_device_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69,
0x6e, 0x67, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
0x6d, 0x0a, 0x1a, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74,
0x69, 0x6e, 0x67, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4f, 0x0a,
0x16, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
@@ -149,42 +149,42 @@ var file_google_ads_googleads_v16_enums_extension_setting_device_proto_rawDesc =
0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x4d, 0x4f, 0x42, 0x49, 0x4c, 0x45, 0x10,
0x02, 0x12, 0x0b, 0x0a, 0x07, 0x44, 0x45, 0x53, 0x4b, 0x54, 0x4f, 0x50, 0x10, 0x03, 0x42, 0xf5,
0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_extension_setting_device_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_extension_setting_device_proto_rawDescData = file_google_ads_googleads_v16_enums_extension_setting_device_proto_rawDesc
+ file_google_ads_googleads_v17_enums_extension_setting_device_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_extension_setting_device_proto_rawDescData = file_google_ads_googleads_v17_enums_extension_setting_device_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_extension_setting_device_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_extension_setting_device_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_extension_setting_device_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_extension_setting_device_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_extension_setting_device_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_extension_setting_device_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_extension_setting_device_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_extension_setting_device_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_extension_setting_device_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_extension_setting_device_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_extension_setting_device_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_extension_setting_device_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_extension_setting_device_proto_goTypes = []interface{}{
- (ExtensionSettingDeviceEnum_ExtensionSettingDevice)(0), // 0: google.ads.googleads.v16.enums.ExtensionSettingDeviceEnum.ExtensionSettingDevice
- (*ExtensionSettingDeviceEnum)(nil), // 1: google.ads.googleads.v16.enums.ExtensionSettingDeviceEnum
+var file_google_ads_googleads_v17_enums_extension_setting_device_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_extension_setting_device_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_extension_setting_device_proto_goTypes = []interface{}{
+ (ExtensionSettingDeviceEnum_ExtensionSettingDevice)(0), // 0: google.ads.googleads.v17.enums.ExtensionSettingDeviceEnum.ExtensionSettingDevice
+ (*ExtensionSettingDeviceEnum)(nil), // 1: google.ads.googleads.v17.enums.ExtensionSettingDeviceEnum
}
-var file_google_ads_googleads_v16_enums_extension_setting_device_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_extension_setting_device_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -192,13 +192,13 @@ var file_google_ads_googleads_v16_enums_extension_setting_device_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_extension_setting_device_proto_init() }
-func file_google_ads_googleads_v16_enums_extension_setting_device_proto_init() {
- if File_google_ads_googleads_v16_enums_extension_setting_device_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_extension_setting_device_proto_init() }
+func file_google_ads_googleads_v17_enums_extension_setting_device_proto_init() {
+ if File_google_ads_googleads_v17_enums_extension_setting_device_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_extension_setting_device_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_extension_setting_device_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExtensionSettingDeviceEnum); i {
case 0:
return &v.state
@@ -215,19 +215,19 @@ func file_google_ads_googleads_v16_enums_extension_setting_device_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_extension_setting_device_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_extension_setting_device_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_extension_setting_device_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_extension_setting_device_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_extension_setting_device_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_extension_setting_device_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_extension_setting_device_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_extension_setting_device_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_extension_setting_device_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_extension_setting_device_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_extension_setting_device_proto = out.File
- file_google_ads_googleads_v16_enums_extension_setting_device_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_extension_setting_device_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_extension_setting_device_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_extension_setting_device_proto = out.File
+ file_google_ads_googleads_v17_enums_extension_setting_device_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_extension_setting_device_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_extension_setting_device_proto_depIdxs = nil
}
diff --git a/enums/extension_type.pb.go b/enums/extension_type.pb.go
index 795227c1..0882dab9 100644
--- a/enums/extension_type.pb.go
+++ b/enums/extension_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/extension_type.proto
+// source: google/ads/googleads/v17/enums/extension_type.proto
package enums
@@ -119,11 +119,11 @@ func (x ExtensionTypeEnum_ExtensionType) String() string {
}
func (ExtensionTypeEnum_ExtensionType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_extension_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_extension_type_proto_enumTypes[0].Descriptor()
}
func (ExtensionTypeEnum_ExtensionType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_extension_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_extension_type_proto_enumTypes[0]
}
func (x ExtensionTypeEnum_ExtensionType) Number() protoreflect.EnumNumber {
@@ -132,7 +132,7 @@ func (x ExtensionTypeEnum_ExtensionType) Number() protoreflect.EnumNumber {
// Deprecated: Use ExtensionTypeEnum_ExtensionType.Descriptor instead.
func (ExtensionTypeEnum_ExtensionType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_extension_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_extension_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible data types for an extension in an
@@ -146,7 +146,7 @@ type ExtensionTypeEnum struct {
func (x *ExtensionTypeEnum) Reset() {
*x = ExtensionTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_extension_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_extension_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -159,7 +159,7 @@ func (x *ExtensionTypeEnum) String() string {
func (*ExtensionTypeEnum) ProtoMessage() {}
func (x *ExtensionTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_extension_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_extension_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -172,17 +172,17 @@ func (x *ExtensionTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ExtensionTypeEnum.ProtoReflect.Descriptor instead.
func (*ExtensionTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_extension_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_extension_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_extension_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_extension_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_extension_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_extension_type_proto_rawDesc = []byte{
0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xfe, 0x01, 0x0a, 0x11, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xe8, 0x01, 0x0a, 0x0d,
0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a,
@@ -201,41 +201,41 @@ var file_google_ads_googleads_v16_enums_extension_type_proto_rawDesc = []byte{
0x4c, 0x5f, 0x43, 0x41, 0x4c, 0x4c, 0x4f, 0x55, 0x54, 0x10, 0x0f, 0x12, 0x09, 0x0a, 0x05, 0x49,
0x4d, 0x41, 0x47, 0x45, 0x10, 0x10, 0x42, 0xec, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x45,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x45,
0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_extension_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_extension_type_proto_rawDescData = file_google_ads_googleads_v16_enums_extension_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_extension_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_extension_type_proto_rawDescData = file_google_ads_googleads_v17_enums_extension_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_extension_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_extension_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_extension_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_extension_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_extension_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_extension_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_extension_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_extension_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_extension_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_extension_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_extension_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_extension_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_extension_type_proto_goTypes = []interface{}{
- (ExtensionTypeEnum_ExtensionType)(0), // 0: google.ads.googleads.v16.enums.ExtensionTypeEnum.ExtensionType
- (*ExtensionTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ExtensionTypeEnum
+var file_google_ads_googleads_v17_enums_extension_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_extension_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_extension_type_proto_goTypes = []interface{}{
+ (ExtensionTypeEnum_ExtensionType)(0), // 0: google.ads.googleads.v17.enums.ExtensionTypeEnum.ExtensionType
+ (*ExtensionTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ExtensionTypeEnum
}
-var file_google_ads_googleads_v16_enums_extension_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_extension_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -243,13 +243,13 @@ var file_google_ads_googleads_v16_enums_extension_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_extension_type_proto_init() }
-func file_google_ads_googleads_v16_enums_extension_type_proto_init() {
- if File_google_ads_googleads_v16_enums_extension_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_extension_type_proto_init() }
+func file_google_ads_googleads_v17_enums_extension_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_extension_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_extension_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_extension_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExtensionTypeEnum); i {
case 0:
return &v.state
@@ -266,19 +266,19 @@ func file_google_ads_googleads_v16_enums_extension_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_extension_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_extension_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_extension_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_extension_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_extension_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_extension_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_extension_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_extension_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_extension_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_extension_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_extension_type_proto = out.File
- file_google_ads_googleads_v16_enums_extension_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_extension_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_extension_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_extension_type_proto = out.File
+ file_google_ads_googleads_v17_enums_extension_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_extension_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_extension_type_proto_depIdxs = nil
}
diff --git a/enums/external_conversion_source.pb.go b/enums/external_conversion_source.pb.go
index 7509f989..09624f8e 100644
--- a/enums/external_conversion_source.pb.go
+++ b/enums/external_conversion_source.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/external_conversion_source.proto
+// source: google/ads/googleads/v17/enums/external_conversion_source.proto
package enums
@@ -207,11 +207,11 @@ func (x ExternalConversionSourceEnum_ExternalConversionSource) String() string {
}
func (ExternalConversionSourceEnum_ExternalConversionSource) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_external_conversion_source_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_external_conversion_source_proto_enumTypes[0].Descriptor()
}
func (ExternalConversionSourceEnum_ExternalConversionSource) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_external_conversion_source_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_external_conversion_source_proto_enumTypes[0]
}
func (x ExternalConversionSourceEnum_ExternalConversionSource) Number() protoreflect.EnumNumber {
@@ -220,7 +220,7 @@ func (x ExternalConversionSourceEnum_ExternalConversionSource) Number() protoref
// Deprecated: Use ExternalConversionSourceEnum_ExternalConversionSource.Descriptor instead.
func (ExternalConversionSourceEnum_ExternalConversionSource) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_external_conversion_source_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_external_conversion_source_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the external conversion source that is
@@ -234,7 +234,7 @@ type ExternalConversionSourceEnum struct {
func (x *ExternalConversionSourceEnum) Reset() {
*x = ExternalConversionSourceEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_external_conversion_source_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_external_conversion_source_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -247,7 +247,7 @@ func (x *ExternalConversionSourceEnum) String() string {
func (*ExternalConversionSourceEnum) ProtoMessage() {}
func (x *ExternalConversionSourceEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_external_conversion_source_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_external_conversion_source_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -260,18 +260,18 @@ func (x *ExternalConversionSourceEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ExternalConversionSourceEnum.ProtoReflect.Descriptor instead.
func (*ExternalConversionSourceEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_external_conversion_source_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_external_conversion_source_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_external_conversion_source_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_external_conversion_source_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_external_conversion_source_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_external_conversion_source_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72,
0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x22, 0xb0, 0x05, 0x0a, 0x1c, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x43, 0x6f,
0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0x8f, 0x05, 0x0a, 0x18, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x43,
@@ -317,42 +317,42 @@ var file_google_ads_googleads_v16_enums_external_conversion_source_proto_rawDesc
0x44, 0x45, 0x4f, 0x5f, 0x33, 0x36, 0x30, 0x5f, 0x46, 0x4c, 0x4f, 0x4f, 0x44, 0x4c, 0x49, 0x47,
0x48, 0x54, 0x10, 0x22, 0x42, 0xf7, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x45, 0x78, 0x74,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x45, 0x78, 0x74,
0x65, 0x72, 0x6e, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x53,
0x6f, 0x75, 0x72, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_external_conversion_source_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_external_conversion_source_proto_rawDescData = file_google_ads_googleads_v16_enums_external_conversion_source_proto_rawDesc
+ file_google_ads_googleads_v17_enums_external_conversion_source_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_external_conversion_source_proto_rawDescData = file_google_ads_googleads_v17_enums_external_conversion_source_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_external_conversion_source_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_external_conversion_source_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_external_conversion_source_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_external_conversion_source_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_external_conversion_source_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_external_conversion_source_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_external_conversion_source_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_external_conversion_source_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_external_conversion_source_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_external_conversion_source_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_external_conversion_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_external_conversion_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_external_conversion_source_proto_goTypes = []interface{}{
- (ExternalConversionSourceEnum_ExternalConversionSource)(0), // 0: google.ads.googleads.v16.enums.ExternalConversionSourceEnum.ExternalConversionSource
- (*ExternalConversionSourceEnum)(nil), // 1: google.ads.googleads.v16.enums.ExternalConversionSourceEnum
+var file_google_ads_googleads_v17_enums_external_conversion_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_external_conversion_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_external_conversion_source_proto_goTypes = []interface{}{
+ (ExternalConversionSourceEnum_ExternalConversionSource)(0), // 0: google.ads.googleads.v17.enums.ExternalConversionSourceEnum.ExternalConversionSource
+ (*ExternalConversionSourceEnum)(nil), // 1: google.ads.googleads.v17.enums.ExternalConversionSourceEnum
}
-var file_google_ads_googleads_v16_enums_external_conversion_source_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_external_conversion_source_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -360,13 +360,13 @@ var file_google_ads_googleads_v16_enums_external_conversion_source_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_external_conversion_source_proto_init() }
-func file_google_ads_googleads_v16_enums_external_conversion_source_proto_init() {
- if File_google_ads_googleads_v16_enums_external_conversion_source_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_external_conversion_source_proto_init() }
+func file_google_ads_googleads_v17_enums_external_conversion_source_proto_init() {
+ if File_google_ads_googleads_v17_enums_external_conversion_source_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_external_conversion_source_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_external_conversion_source_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExternalConversionSourceEnum); i {
case 0:
return &v.state
@@ -383,19 +383,19 @@ func file_google_ads_googleads_v16_enums_external_conversion_source_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_external_conversion_source_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_external_conversion_source_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_external_conversion_source_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_external_conversion_source_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_external_conversion_source_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_external_conversion_source_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_external_conversion_source_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_external_conversion_source_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_external_conversion_source_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_external_conversion_source_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_external_conversion_source_proto = out.File
- file_google_ads_googleads_v16_enums_external_conversion_source_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_external_conversion_source_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_external_conversion_source_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_external_conversion_source_proto = out.File
+ file_google_ads_googleads_v17_enums_external_conversion_source_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_external_conversion_source_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_external_conversion_source_proto_depIdxs = nil
}
diff --git a/enums/feed_attribute_type.pb.go b/enums/feed_attribute_type.pb.go
index a7ea79f1..758bc562 100644
--- a/enums/feed_attribute_type.pb.go
+++ b/enums/feed_attribute_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/feed_attribute_type.proto
+// source: google/ads/googleads/v17/enums/feed_attribute_type.proto
package enums
@@ -119,11 +119,11 @@ func (x FeedAttributeTypeEnum_FeedAttributeType) String() string {
}
func (FeedAttributeTypeEnum_FeedAttributeType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_feed_attribute_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_feed_attribute_type_proto_enumTypes[0].Descriptor()
}
func (FeedAttributeTypeEnum_FeedAttributeType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_feed_attribute_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_feed_attribute_type_proto_enumTypes[0]
}
func (x FeedAttributeTypeEnum_FeedAttributeType) Number() protoreflect.EnumNumber {
@@ -132,7 +132,7 @@ func (x FeedAttributeTypeEnum_FeedAttributeType) Number() protoreflect.EnumNumbe
// Deprecated: Use FeedAttributeTypeEnum_FeedAttributeType.Descriptor instead.
func (FeedAttributeTypeEnum_FeedAttributeType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_attribute_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_feed_attribute_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible data types for a feed attribute.
@@ -145,7 +145,7 @@ type FeedAttributeTypeEnum struct {
func (x *FeedAttributeTypeEnum) Reset() {
*x = FeedAttributeTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_feed_attribute_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_attribute_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -158,7 +158,7 @@ func (x *FeedAttributeTypeEnum) String() string {
func (*FeedAttributeTypeEnum) ProtoMessage() {}
func (x *FeedAttributeTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_feed_attribute_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_attribute_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -171,18 +171,18 @@ func (x *FeedAttributeTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedAttributeTypeEnum.ProtoReflect.Descriptor instead.
func (*FeedAttributeTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_attribute_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_feed_attribute_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_feed_attribute_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_feed_attribute_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_feed_attribute_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_feed_attribute_type_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f,
0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x84, 0x02, 0x0a, 0x15, 0x46,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x84, 0x02, 0x0a, 0x15, 0x46,
0x65, 0x65, 0x64, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0xea, 0x01, 0x0a, 0x11, 0x46, 0x65, 0x65, 0x64, 0x41, 0x74, 0x74,
0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e,
@@ -201,41 +201,41 @@ var file_google_ads_googleads_v16_enums_feed_attribute_type_proto_rawDesc = []by
0x4c, 0x49, 0x53, 0x54, 0x10, 0x0d, 0x12, 0x09, 0x0a, 0x05, 0x50, 0x52, 0x49, 0x43, 0x45, 0x10,
0x0e, 0x42, 0xf0, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x46, 0x65, 0x65, 0x64, 0x41, 0x74,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x46, 0x65, 0x65, 0x64, 0x41, 0x74,
0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_feed_attribute_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_feed_attribute_type_proto_rawDescData = file_google_ads_googleads_v16_enums_feed_attribute_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_feed_attribute_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_feed_attribute_type_proto_rawDescData = file_google_ads_googleads_v17_enums_feed_attribute_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_feed_attribute_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_feed_attribute_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_feed_attribute_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_feed_attribute_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_feed_attribute_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_feed_attribute_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_feed_attribute_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_feed_attribute_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_feed_attribute_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_feed_attribute_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_feed_attribute_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_attribute_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_attribute_type_proto_goTypes = []interface{}{
- (FeedAttributeTypeEnum_FeedAttributeType)(0), // 0: google.ads.googleads.v16.enums.FeedAttributeTypeEnum.FeedAttributeType
- (*FeedAttributeTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.FeedAttributeTypeEnum
+var file_google_ads_googleads_v17_enums_feed_attribute_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_attribute_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_attribute_type_proto_goTypes = []interface{}{
+ (FeedAttributeTypeEnum_FeedAttributeType)(0), // 0: google.ads.googleads.v17.enums.FeedAttributeTypeEnum.FeedAttributeType
+ (*FeedAttributeTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.FeedAttributeTypeEnum
}
-var file_google_ads_googleads_v16_enums_feed_attribute_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_feed_attribute_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -243,13 +243,13 @@ var file_google_ads_googleads_v16_enums_feed_attribute_type_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_feed_attribute_type_proto_init() }
-func file_google_ads_googleads_v16_enums_feed_attribute_type_proto_init() {
- if File_google_ads_googleads_v16_enums_feed_attribute_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_feed_attribute_type_proto_init() }
+func file_google_ads_googleads_v17_enums_feed_attribute_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_feed_attribute_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_feed_attribute_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_feed_attribute_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedAttributeTypeEnum); i {
case 0:
return &v.state
@@ -266,19 +266,19 @@ func file_google_ads_googleads_v16_enums_feed_attribute_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_feed_attribute_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_feed_attribute_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_feed_attribute_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_feed_attribute_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_feed_attribute_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_feed_attribute_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_feed_attribute_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_feed_attribute_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_feed_attribute_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_feed_attribute_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_feed_attribute_type_proto = out.File
- file_google_ads_googleads_v16_enums_feed_attribute_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_feed_attribute_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_feed_attribute_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_feed_attribute_type_proto = out.File
+ file_google_ads_googleads_v17_enums_feed_attribute_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_feed_attribute_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_feed_attribute_type_proto_depIdxs = nil
}
diff --git a/enums/feed_item_quality_approval_status.pb.go b/enums/feed_item_quality_approval_status.pb.go
index 39801f63..bc5ec705 100644
--- a/enums/feed_item_quality_approval_status.pb.go
+++ b/enums/feed_item_quality_approval_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/feed_item_quality_approval_status.proto
+// source: google/ads/googleads/v17/enums/feed_item_quality_approval_status.proto
package enums
@@ -76,11 +76,11 @@ func (x FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus) String(
}
func (FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_enumTypes[0].Descriptor()
}
func (FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_enumTypes[0]
}
func (x FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus) Number() protoreflect.EnumNumber {
@@ -89,7 +89,7 @@ func (x FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus) Number(
// Deprecated: Use FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus.Descriptor instead.
func (FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible quality evaluation approval statuses
@@ -103,7 +103,7 @@ type FeedItemQualityApprovalStatusEnum struct {
func (x *FeedItemQualityApprovalStatusEnum) Reset() {
*x = FeedItemQualityApprovalStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -116,7 +116,7 @@ func (x *FeedItemQualityApprovalStatusEnum) String() string {
func (*FeedItemQualityApprovalStatusEnum) ProtoMessage() {}
func (x *FeedItemQualityApprovalStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -129,19 +129,19 @@ func (x *FeedItemQualityApprovalStatusEnum) ProtoReflect() protoreflect.Message
// Deprecated: Use FeedItemQualityApprovalStatusEnum.ProtoReflect.Descriptor instead.
func (*FeedItemQualityApprovalStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_rawDesc = []byte{
0x0a, 0x46, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69,
0x74, 0x79, 0x5f, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74,
0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x81, 0x01, 0x0a, 0x21, 0x46, 0x65, 0x65,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x81, 0x01, 0x0a, 0x21, 0x46, 0x65, 0x65,
0x64, 0x49, 0x74, 0x65, 0x6d, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x41, 0x70, 0x70, 0x72,
0x6f, 0x76, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5c,
0x0a, 0x1d, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74,
@@ -151,43 +151,43 @@ var file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_
0x08, 0x41, 0x50, 0x50, 0x52, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0f, 0x0a, 0x0b, 0x44,
0x49, 0x53, 0x41, 0x50, 0x50, 0x52, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42, 0xfc, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x22, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x51, 0x75, 0x61,
0x6c, 0x69, 0x74, 0x79, 0x41, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_rawDescData = file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_rawDescData = file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_goTypes = []interface{}{
- (FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus)(0), // 0: google.ads.googleads.v16.enums.FeedItemQualityApprovalStatusEnum.FeedItemQualityApprovalStatus
- (*FeedItemQualityApprovalStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.FeedItemQualityApprovalStatusEnum
+var file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_goTypes = []interface{}{
+ (FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus)(0), // 0: google.ads.googleads.v17.enums.FeedItemQualityApprovalStatusEnum.FeedItemQualityApprovalStatus
+ (*FeedItemQualityApprovalStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.FeedItemQualityApprovalStatusEnum
}
-var file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -195,13 +195,13 @@ var file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_init() }
-func file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_init() {
- if File_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_init() }
+func file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedItemQualityApprovalStatusEnum); i {
case 0:
return &v.state
@@ -218,19 +218,19 @@ func file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto = out.File
- file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_feed_item_quality_approval_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto = out.File
+ file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_feed_item_quality_approval_status_proto_depIdxs = nil
}
diff --git a/enums/feed_item_quality_disapproval_reason.pb.go b/enums/feed_item_quality_disapproval_reason.pb.go
index db54dc8e..394699d0 100644
--- a/enums/feed_item_quality_disapproval_reason.pb.go
+++ b/enums/feed_item_quality_disapproval_reason.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/feed_item_quality_disapproval_reason.proto
+// source: google/ads/googleads/v17/enums/feed_item_quality_disapproval_reason.proto
package enums
@@ -139,11 +139,11 @@ func (x FeedItemQualityDisapprovalReasonEnum_FeedItemQualityDisapprovalReason) S
}
func (FeedItemQualityDisapprovalReasonEnum_FeedItemQualityDisapprovalReason) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_enumTypes[0].Descriptor()
}
func (FeedItemQualityDisapprovalReasonEnum_FeedItemQualityDisapprovalReason) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_enumTypes[0]
}
func (x FeedItemQualityDisapprovalReasonEnum_FeedItemQualityDisapprovalReason) Number() protoreflect.EnumNumber {
@@ -152,7 +152,7 @@ func (x FeedItemQualityDisapprovalReasonEnum_FeedItemQualityDisapprovalReason) N
// Deprecated: Use FeedItemQualityDisapprovalReasonEnum_FeedItemQualityDisapprovalReason.Descriptor instead.
func (FeedItemQualityDisapprovalReasonEnum_FeedItemQualityDisapprovalReason) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible quality evaluation disapproval reasons
@@ -166,7 +166,7 @@ type FeedItemQualityDisapprovalReasonEnum struct {
func (x *FeedItemQualityDisapprovalReasonEnum) Reset() {
*x = FeedItemQualityDisapprovalReasonEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -179,7 +179,7 @@ func (x *FeedItemQualityDisapprovalReasonEnum) String() string {
func (*FeedItemQualityDisapprovalReasonEnum) ProtoMessage() {}
func (x *FeedItemQualityDisapprovalReasonEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -192,19 +192,19 @@ func (x *FeedItemQualityDisapprovalReasonEnum) ProtoReflect() protoreflect.Messa
// Deprecated: Use FeedItemQualityDisapprovalReasonEnum.ProtoReflect.Descriptor instead.
func (*FeedItemQualityDisapprovalReasonEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_rawDesc = []byte{
0x0a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69,
0x74, 0x79, 0x5f, 0x64, 0x69, 0x73, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x5f, 0x72,
0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe0, 0x06, 0x0a, 0x24,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe0, 0x06, 0x0a, 0x24,
0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x44,
0x69, 0x73, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb7, 0x06, 0x0a, 0x20, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65,
@@ -260,43 +260,43 @@ var file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_pro
0x4e, 0x49, 0x50, 0x50, 0x45, 0x54, 0x53, 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x50, 0x52, 0x4f, 0x4d,
0x4f, 0x54, 0x49, 0x4f, 0x4e, 0x41, 0x4c, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x10, 0x13, 0x42, 0xff,
0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x25, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x51,
0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x44, 0x69, 0x73, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61,
0x6c, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_rawDescData = file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_rawDesc
+ file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_rawDescData = file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_goTypes = []interface{}{
- (FeedItemQualityDisapprovalReasonEnum_FeedItemQualityDisapprovalReason)(0), // 0: google.ads.googleads.v16.enums.FeedItemQualityDisapprovalReasonEnum.FeedItemQualityDisapprovalReason
- (*FeedItemQualityDisapprovalReasonEnum)(nil), // 1: google.ads.googleads.v16.enums.FeedItemQualityDisapprovalReasonEnum
+var file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_goTypes = []interface{}{
+ (FeedItemQualityDisapprovalReasonEnum_FeedItemQualityDisapprovalReason)(0), // 0: google.ads.googleads.v17.enums.FeedItemQualityDisapprovalReasonEnum.FeedItemQualityDisapprovalReason
+ (*FeedItemQualityDisapprovalReasonEnum)(nil), // 1: google.ads.googleads.v17.enums.FeedItemQualityDisapprovalReasonEnum
}
-var file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -304,13 +304,13 @@ var file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_pro
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_init() }
-func file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_init() {
- if File_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_init() }
+func file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_init() {
+ if File_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedItemQualityDisapprovalReasonEnum); i {
case 0:
return &v.state
@@ -327,19 +327,19 @@ func file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_pr
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto = out.File
- file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_feed_item_quality_disapproval_reason_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto = out.File
+ file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_feed_item_quality_disapproval_reason_proto_depIdxs = nil
}
diff --git a/enums/feed_item_set_status.pb.go b/enums/feed_item_set_status.pb.go
index b053b65a..f874fcd1 100644
--- a/enums/feed_item_set_status.pb.go
+++ b/enums/feed_item_set_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/feed_item_set_status.proto
+// source: google/ads/googleads/v17/enums/feed_item_set_status.proto
package enums
@@ -75,11 +75,11 @@ func (x FeedItemSetStatusEnum_FeedItemSetStatus) String() string {
}
func (FeedItemSetStatusEnum_FeedItemSetStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_feed_item_set_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_feed_item_set_status_proto_enumTypes[0].Descriptor()
}
func (FeedItemSetStatusEnum_FeedItemSetStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_feed_item_set_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_feed_item_set_status_proto_enumTypes[0]
}
func (x FeedItemSetStatusEnum_FeedItemSetStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x FeedItemSetStatusEnum_FeedItemSetStatus) Number() protoreflect.EnumNumbe
// Deprecated: Use FeedItemSetStatusEnum_FeedItemSetStatus.Descriptor instead.
func (FeedItemSetStatusEnum_FeedItemSetStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_item_set_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_feed_item_set_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of a feed item set.
@@ -101,7 +101,7 @@ type FeedItemSetStatusEnum struct {
func (x *FeedItemSetStatusEnum) Reset() {
*x = FeedItemSetStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_feed_item_set_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_item_set_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *FeedItemSetStatusEnum) String() string {
func (*FeedItemSetStatusEnum) ProtoMessage() {}
func (x *FeedItemSetStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_feed_item_set_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_item_set_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *FeedItemSetStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedItemSetStatusEnum.ProtoReflect.Descriptor instead.
func (*FeedItemSetStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_item_set_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_feed_item_set_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_feed_item_set_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_feed_item_set_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_feed_item_set_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_feed_item_set_status_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73,
0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x64, 0x0a, 0x15, 0x46,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x64, 0x0a, 0x15, 0x46,
0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4b, 0x0a, 0x11, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d,
0x53, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53,
@@ -147,41 +147,41 @@ var file_google_ads_googleads_v16_enums_feed_item_set_status_proto_rawDesc = []b
0x45, 0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10,
0x03, 0x42, 0xf0, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74,
0x65, 0x6d, 0x53, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_feed_item_set_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_feed_item_set_status_proto_rawDescData = file_google_ads_googleads_v16_enums_feed_item_set_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_feed_item_set_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_feed_item_set_status_proto_rawDescData = file_google_ads_googleads_v17_enums_feed_item_set_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_feed_item_set_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_feed_item_set_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_feed_item_set_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_feed_item_set_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_feed_item_set_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_feed_item_set_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_feed_item_set_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_feed_item_set_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_feed_item_set_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_feed_item_set_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_feed_item_set_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_item_set_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_item_set_status_proto_goTypes = []interface{}{
- (FeedItemSetStatusEnum_FeedItemSetStatus)(0), // 0: google.ads.googleads.v16.enums.FeedItemSetStatusEnum.FeedItemSetStatus
- (*FeedItemSetStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.FeedItemSetStatusEnum
+var file_google_ads_googleads_v17_enums_feed_item_set_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_item_set_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_item_set_status_proto_goTypes = []interface{}{
+ (FeedItemSetStatusEnum_FeedItemSetStatus)(0), // 0: google.ads.googleads.v17.enums.FeedItemSetStatusEnum.FeedItemSetStatus
+ (*FeedItemSetStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.FeedItemSetStatusEnum
}
-var file_google_ads_googleads_v16_enums_feed_item_set_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_feed_item_set_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -189,13 +189,13 @@ var file_google_ads_googleads_v16_enums_feed_item_set_status_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_feed_item_set_status_proto_init() }
-func file_google_ads_googleads_v16_enums_feed_item_set_status_proto_init() {
- if File_google_ads_googleads_v16_enums_feed_item_set_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_feed_item_set_status_proto_init() }
+func file_google_ads_googleads_v17_enums_feed_item_set_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_feed_item_set_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_feed_item_set_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_feed_item_set_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedItemSetStatusEnum); i {
case 0:
return &v.state
@@ -212,19 +212,19 @@ func file_google_ads_googleads_v16_enums_feed_item_set_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_feed_item_set_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_feed_item_set_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_feed_item_set_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_feed_item_set_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_feed_item_set_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_feed_item_set_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_feed_item_set_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_feed_item_set_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_feed_item_set_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_feed_item_set_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_feed_item_set_status_proto = out.File
- file_google_ads_googleads_v16_enums_feed_item_set_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_feed_item_set_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_feed_item_set_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_feed_item_set_status_proto = out.File
+ file_google_ads_googleads_v17_enums_feed_item_set_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_feed_item_set_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_feed_item_set_status_proto_depIdxs = nil
}
diff --git a/enums/feed_item_set_string_filter_type.pb.go b/enums/feed_item_set_string_filter_type.pb.go
index 3930a1f0..4cbcd93e 100644
--- a/enums/feed_item_set_string_filter_type.pb.go
+++ b/enums/feed_item_set_string_filter_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/feed_item_set_string_filter_type.proto
+// source: google/ads/googleads/v17/enums/feed_item_set_string_filter_type.proto
package enums
@@ -71,11 +71,11 @@ func (x FeedItemSetStringFilterTypeEnum_FeedItemSetStringFilterType) String() st
}
func (FeedItemSetStringFilterTypeEnum_FeedItemSetStringFilterType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_enumTypes[0].Descriptor()
}
func (FeedItemSetStringFilterTypeEnum_FeedItemSetStringFilterType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_enumTypes[0]
}
func (x FeedItemSetStringFilterTypeEnum_FeedItemSetStringFilterType) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x FeedItemSetStringFilterTypeEnum_FeedItemSetStringFilterType) Number() pr
// Deprecated: Use FeedItemSetStringFilterTypeEnum_FeedItemSetStringFilterType.Descriptor instead.
func (FeedItemSetStringFilterTypeEnum_FeedItemSetStringFilterType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_rawDescGZIP(), []int{0, 0}
}
// The type of string matching to be used for a dynamic FeedItemSet filter.
@@ -97,7 +97,7 @@ type FeedItemSetStringFilterTypeEnum struct {
func (x *FeedItemSetStringFilterTypeEnum) Reset() {
*x = FeedItemSetStringFilterTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *FeedItemSetStringFilterTypeEnum) String() string {
func (*FeedItemSetStringFilterTypeEnum) ProtoMessage() {}
func (x *FeedItemSetStringFilterTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,19 +123,19 @@ func (x *FeedItemSetStringFilterTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedItemSetStringFilterTypeEnum.ProtoReflect.Descriptor instead.
func (*FeedItemSetStringFilterTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_rawDesc = []byte{
0x0a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73,
0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70,
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x69, 0x0a, 0x1f, 0x46, 0x65, 0x65, 0x64, 0x49,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x69, 0x0a, 0x1f, 0x46, 0x65, 0x65, 0x64, 0x49,
0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x46, 0x69, 0x6c, 0x74,
0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x46, 0x0a, 0x1b, 0x46, 0x65,
0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x46,
@@ -144,42 +144,42 @@ var file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_r
0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x58, 0x41, 0x43, 0x54,
0x10, 0x02, 0x42, 0xfa, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x46, 0x65, 0x65, 0x64, 0x49,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x46, 0x65, 0x65, 0x64, 0x49,
0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x46, 0x69, 0x6c, 0x74,
0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_rawDescData = file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_rawDescData = file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_goTypes = []interface{}{
- (FeedItemSetStringFilterTypeEnum_FeedItemSetStringFilterType)(0), // 0: google.ads.googleads.v16.enums.FeedItemSetStringFilterTypeEnum.FeedItemSetStringFilterType
- (*FeedItemSetStringFilterTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.FeedItemSetStringFilterTypeEnum
+var file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_goTypes = []interface{}{
+ (FeedItemSetStringFilterTypeEnum_FeedItemSetStringFilterType)(0), // 0: google.ads.googleads.v17.enums.FeedItemSetStringFilterTypeEnum.FeedItemSetStringFilterType
+ (*FeedItemSetStringFilterTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.FeedItemSetStringFilterTypeEnum
}
-var file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -187,13 +187,13 @@ var file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_d
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_init() }
-func file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_init() {
- if File_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_init() }
+func file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedItemSetStringFilterTypeEnum); i {
case 0:
return &v.state
@@ -210,19 +210,19 @@ func file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto = out.File
- file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_feed_item_set_string_filter_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto = out.File
+ file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_feed_item_set_string_filter_type_proto_depIdxs = nil
}
diff --git a/enums/feed_item_status.pb.go b/enums/feed_item_status.pb.go
index 6b7a26e8..74a5e9c3 100644
--- a/enums/feed_item_status.pb.go
+++ b/enums/feed_item_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/feed_item_status.proto
+// source: google/ads/googleads/v17/enums/feed_item_status.proto
package enums
@@ -75,11 +75,11 @@ func (x FeedItemStatusEnum_FeedItemStatus) String() string {
}
func (FeedItemStatusEnum_FeedItemStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_feed_item_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_feed_item_status_proto_enumTypes[0].Descriptor()
}
func (FeedItemStatusEnum_FeedItemStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_feed_item_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_feed_item_status_proto_enumTypes[0]
}
func (x FeedItemStatusEnum_FeedItemStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x FeedItemStatusEnum_FeedItemStatus) Number() protoreflect.EnumNumber {
// Deprecated: Use FeedItemStatusEnum_FeedItemStatus.Descriptor instead.
func (FeedItemStatusEnum_FeedItemStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_item_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_feed_item_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of a feed item.
@@ -101,7 +101,7 @@ type FeedItemStatusEnum struct {
func (x *FeedItemStatusEnum) Reset() {
*x = FeedItemStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_feed_item_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_item_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *FeedItemStatusEnum) String() string {
func (*FeedItemStatusEnum) ProtoMessage() {}
func (x *FeedItemStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_feed_item_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_item_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *FeedItemStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedItemStatusEnum.ProtoReflect.Descriptor instead.
func (*FeedItemStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_item_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_feed_item_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_feed_item_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_feed_item_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_feed_item_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_feed_item_status_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75,
0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x5e, 0x0a, 0x12, 0x46, 0x65, 0x65, 0x64, 0x49,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x5e, 0x0a, 0x12, 0x46, 0x65, 0x65, 0x64, 0x49,
0x74, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x48, 0x0a,
0x0e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00,
@@ -146,41 +146,41 @@ var file_google_ads_googleads_v16_enums_feed_item_status_proto_rawDesc = []byte{
0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45,
0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42, 0xed, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13,
0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_feed_item_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_feed_item_status_proto_rawDescData = file_google_ads_googleads_v16_enums_feed_item_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_feed_item_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_feed_item_status_proto_rawDescData = file_google_ads_googleads_v17_enums_feed_item_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_feed_item_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_feed_item_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_feed_item_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_feed_item_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_feed_item_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_feed_item_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_feed_item_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_feed_item_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_feed_item_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_feed_item_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_feed_item_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_item_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_item_status_proto_goTypes = []interface{}{
- (FeedItemStatusEnum_FeedItemStatus)(0), // 0: google.ads.googleads.v16.enums.FeedItemStatusEnum.FeedItemStatus
- (*FeedItemStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.FeedItemStatusEnum
+var file_google_ads_googleads_v17_enums_feed_item_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_item_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_item_status_proto_goTypes = []interface{}{
+ (FeedItemStatusEnum_FeedItemStatus)(0), // 0: google.ads.googleads.v17.enums.FeedItemStatusEnum.FeedItemStatus
+ (*FeedItemStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.FeedItemStatusEnum
}
-var file_google_ads_googleads_v16_enums_feed_item_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_feed_item_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -188,13 +188,13 @@ var file_google_ads_googleads_v16_enums_feed_item_status_proto_depIdxs = []int32
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_feed_item_status_proto_init() }
-func file_google_ads_googleads_v16_enums_feed_item_status_proto_init() {
- if File_google_ads_googleads_v16_enums_feed_item_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_feed_item_status_proto_init() }
+func file_google_ads_googleads_v17_enums_feed_item_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_feed_item_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_feed_item_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_feed_item_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedItemStatusEnum); i {
case 0:
return &v.state
@@ -211,19 +211,19 @@ func file_google_ads_googleads_v16_enums_feed_item_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_feed_item_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_feed_item_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_feed_item_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_feed_item_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_feed_item_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_feed_item_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_feed_item_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_feed_item_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_feed_item_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_feed_item_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_feed_item_status_proto = out.File
- file_google_ads_googleads_v16_enums_feed_item_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_feed_item_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_feed_item_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_feed_item_status_proto = out.File
+ file_google_ads_googleads_v17_enums_feed_item_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_feed_item_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_feed_item_status_proto_depIdxs = nil
}
diff --git a/enums/feed_item_target_device.pb.go b/enums/feed_item_target_device.pb.go
index 2bc9c781..ab193254 100644
--- a/enums/feed_item_target_device.pb.go
+++ b/enums/feed_item_target_device.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/feed_item_target_device.proto
+// source: google/ads/googleads/v17/enums/feed_item_target_device.proto
package enums
@@ -71,11 +71,11 @@ func (x FeedItemTargetDeviceEnum_FeedItemTargetDevice) String() string {
}
func (FeedItemTargetDeviceEnum_FeedItemTargetDevice) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_feed_item_target_device_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_feed_item_target_device_proto_enumTypes[0].Descriptor()
}
func (FeedItemTargetDeviceEnum_FeedItemTargetDevice) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_feed_item_target_device_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_feed_item_target_device_proto_enumTypes[0]
}
func (x FeedItemTargetDeviceEnum_FeedItemTargetDevice) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x FeedItemTargetDeviceEnum_FeedItemTargetDevice) Number() protoreflect.Enu
// Deprecated: Use FeedItemTargetDeviceEnum_FeedItemTargetDevice.Descriptor instead.
func (FeedItemTargetDeviceEnum_FeedItemTargetDevice) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_item_target_device_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_feed_item_target_device_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible data types for a feed item target
@@ -98,7 +98,7 @@ type FeedItemTargetDeviceEnum struct {
func (x *FeedItemTargetDeviceEnum) Reset() {
*x = FeedItemTargetDeviceEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_feed_item_target_device_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_item_target_device_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -111,7 +111,7 @@ func (x *FeedItemTargetDeviceEnum) String() string {
func (*FeedItemTargetDeviceEnum) ProtoMessage() {}
func (x *FeedItemTargetDeviceEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_feed_item_target_device_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_item_target_device_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -124,18 +124,18 @@ func (x *FeedItemTargetDeviceEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedItemTargetDeviceEnum.ProtoReflect.Descriptor instead.
func (*FeedItemTargetDeviceEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_item_target_device_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_feed_item_target_device_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_feed_item_target_device_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_feed_item_target_device_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_feed_item_target_device_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_feed_item_target_device_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65,
0x74, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x5c,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x5c,
0x0a, 0x18, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74,
0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x40, 0x0a, 0x14, 0x46, 0x65,
0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x44, 0x65, 0x76, 0x69,
@@ -143,42 +143,42 @@ var file_google_ads_googleads_v16_enums_feed_item_target_device_proto_rawDesc =
0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01,
0x12, 0x0a, 0x0a, 0x06, 0x4d, 0x4f, 0x42, 0x49, 0x4c, 0x45, 0x10, 0x02, 0x42, 0xf3, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x19, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72,
0x67, 0x65, 0x74, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_feed_item_target_device_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_feed_item_target_device_proto_rawDescData = file_google_ads_googleads_v16_enums_feed_item_target_device_proto_rawDesc
+ file_google_ads_googleads_v17_enums_feed_item_target_device_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_feed_item_target_device_proto_rawDescData = file_google_ads_googleads_v17_enums_feed_item_target_device_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_feed_item_target_device_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_feed_item_target_device_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_feed_item_target_device_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_feed_item_target_device_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_feed_item_target_device_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_feed_item_target_device_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_feed_item_target_device_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_feed_item_target_device_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_feed_item_target_device_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_feed_item_target_device_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_feed_item_target_device_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_item_target_device_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_item_target_device_proto_goTypes = []interface{}{
- (FeedItemTargetDeviceEnum_FeedItemTargetDevice)(0), // 0: google.ads.googleads.v16.enums.FeedItemTargetDeviceEnum.FeedItemTargetDevice
- (*FeedItemTargetDeviceEnum)(nil), // 1: google.ads.googleads.v16.enums.FeedItemTargetDeviceEnum
+var file_google_ads_googleads_v17_enums_feed_item_target_device_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_item_target_device_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_item_target_device_proto_goTypes = []interface{}{
+ (FeedItemTargetDeviceEnum_FeedItemTargetDevice)(0), // 0: google.ads.googleads.v17.enums.FeedItemTargetDeviceEnum.FeedItemTargetDevice
+ (*FeedItemTargetDeviceEnum)(nil), // 1: google.ads.googleads.v17.enums.FeedItemTargetDeviceEnum
}
-var file_google_ads_googleads_v16_enums_feed_item_target_device_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_feed_item_target_device_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -186,13 +186,13 @@ var file_google_ads_googleads_v16_enums_feed_item_target_device_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_feed_item_target_device_proto_init() }
-func file_google_ads_googleads_v16_enums_feed_item_target_device_proto_init() {
- if File_google_ads_googleads_v16_enums_feed_item_target_device_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_feed_item_target_device_proto_init() }
+func file_google_ads_googleads_v17_enums_feed_item_target_device_proto_init() {
+ if File_google_ads_googleads_v17_enums_feed_item_target_device_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_feed_item_target_device_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_feed_item_target_device_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedItemTargetDeviceEnum); i {
case 0:
return &v.state
@@ -209,19 +209,19 @@ func file_google_ads_googleads_v16_enums_feed_item_target_device_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_feed_item_target_device_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_feed_item_target_device_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_feed_item_target_device_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_feed_item_target_device_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_feed_item_target_device_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_feed_item_target_device_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_feed_item_target_device_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_feed_item_target_device_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_feed_item_target_device_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_feed_item_target_device_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_feed_item_target_device_proto = out.File
- file_google_ads_googleads_v16_enums_feed_item_target_device_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_feed_item_target_device_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_feed_item_target_device_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_feed_item_target_device_proto = out.File
+ file_google_ads_googleads_v17_enums_feed_item_target_device_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_feed_item_target_device_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_feed_item_target_device_proto_depIdxs = nil
}
diff --git a/enums/feed_item_target_status.pb.go b/enums/feed_item_target_status.pb.go
index d83bd0e6..543f7842 100644
--- a/enums/feed_item_target_status.pb.go
+++ b/enums/feed_item_target_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/feed_item_target_status.proto
+// source: google/ads/googleads/v17/enums/feed_item_target_status.proto
package enums
@@ -75,11 +75,11 @@ func (x FeedItemTargetStatusEnum_FeedItemTargetStatus) String() string {
}
func (FeedItemTargetStatusEnum_FeedItemTargetStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_feed_item_target_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_feed_item_target_status_proto_enumTypes[0].Descriptor()
}
func (FeedItemTargetStatusEnum_FeedItemTargetStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_feed_item_target_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_feed_item_target_status_proto_enumTypes[0]
}
func (x FeedItemTargetStatusEnum_FeedItemTargetStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x FeedItemTargetStatusEnum_FeedItemTargetStatus) Number() protoreflect.Enu
// Deprecated: Use FeedItemTargetStatusEnum_FeedItemTargetStatus.Descriptor instead.
func (FeedItemTargetStatusEnum_FeedItemTargetStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_item_target_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_feed_item_target_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of a feed item target.
@@ -101,7 +101,7 @@ type FeedItemTargetStatusEnum struct {
func (x *FeedItemTargetStatusEnum) Reset() {
*x = FeedItemTargetStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_feed_item_target_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_item_target_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *FeedItemTargetStatusEnum) String() string {
func (*FeedItemTargetStatusEnum) ProtoMessage() {}
func (x *FeedItemTargetStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_feed_item_target_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_item_target_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *FeedItemTargetStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedItemTargetStatusEnum.ProtoReflect.Descriptor instead.
func (*FeedItemTargetStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_item_target_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_feed_item_target_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_feed_item_target_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_feed_item_target_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_feed_item_target_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_feed_item_target_status_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65,
0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6a,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6a,
0x0a, 0x18, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4e, 0x0a, 0x14, 0x46, 0x65,
0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74,
@@ -147,42 +147,42 @@ var file_google_ads_googleads_v16_enums_feed_item_target_status_proto_rawDesc =
0x12, 0x0b, 0x0a, 0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a,
0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42, 0xf3, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x19, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65,
0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_feed_item_target_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_feed_item_target_status_proto_rawDescData = file_google_ads_googleads_v16_enums_feed_item_target_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_feed_item_target_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_feed_item_target_status_proto_rawDescData = file_google_ads_googleads_v17_enums_feed_item_target_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_feed_item_target_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_feed_item_target_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_feed_item_target_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_feed_item_target_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_feed_item_target_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_feed_item_target_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_feed_item_target_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_feed_item_target_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_feed_item_target_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_feed_item_target_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_feed_item_target_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_item_target_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_item_target_status_proto_goTypes = []interface{}{
- (FeedItemTargetStatusEnum_FeedItemTargetStatus)(0), // 0: google.ads.googleads.v16.enums.FeedItemTargetStatusEnum.FeedItemTargetStatus
- (*FeedItemTargetStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.FeedItemTargetStatusEnum
+var file_google_ads_googleads_v17_enums_feed_item_target_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_item_target_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_item_target_status_proto_goTypes = []interface{}{
+ (FeedItemTargetStatusEnum_FeedItemTargetStatus)(0), // 0: google.ads.googleads.v17.enums.FeedItemTargetStatusEnum.FeedItemTargetStatus
+ (*FeedItemTargetStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.FeedItemTargetStatusEnum
}
-var file_google_ads_googleads_v16_enums_feed_item_target_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_feed_item_target_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_enums_feed_item_target_status_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_feed_item_target_status_proto_init() }
-func file_google_ads_googleads_v16_enums_feed_item_target_status_proto_init() {
- if File_google_ads_googleads_v16_enums_feed_item_target_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_feed_item_target_status_proto_init() }
+func file_google_ads_googleads_v17_enums_feed_item_target_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_feed_item_target_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_feed_item_target_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_feed_item_target_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedItemTargetStatusEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_enums_feed_item_target_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_feed_item_target_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_feed_item_target_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_feed_item_target_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_feed_item_target_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_feed_item_target_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_feed_item_target_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_feed_item_target_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_feed_item_target_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_feed_item_target_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_feed_item_target_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_feed_item_target_status_proto = out.File
- file_google_ads_googleads_v16_enums_feed_item_target_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_feed_item_target_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_feed_item_target_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_feed_item_target_status_proto = out.File
+ file_google_ads_googleads_v17_enums_feed_item_target_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_feed_item_target_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_feed_item_target_status_proto_depIdxs = nil
}
diff --git a/enums/feed_item_target_type.pb.go b/enums/feed_item_target_type.pb.go
index ffda41f9..9033e9bf 100644
--- a/enums/feed_item_target_type.pb.go
+++ b/enums/feed_item_target_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/feed_item_target_type.proto
+// source: google/ads/googleads/v17/enums/feed_item_target_type.proto
package enums
@@ -79,11 +79,11 @@ func (x FeedItemTargetTypeEnum_FeedItemTargetType) String() string {
}
func (FeedItemTargetTypeEnum_FeedItemTargetType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_feed_item_target_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_feed_item_target_type_proto_enumTypes[0].Descriptor()
}
func (FeedItemTargetTypeEnum_FeedItemTargetType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_feed_item_target_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_feed_item_target_type_proto_enumTypes[0]
}
func (x FeedItemTargetTypeEnum_FeedItemTargetType) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x FeedItemTargetTypeEnum_FeedItemTargetType) Number() protoreflect.EnumNum
// Deprecated: Use FeedItemTargetTypeEnum_FeedItemTargetType.Descriptor instead.
func (FeedItemTargetTypeEnum_FeedItemTargetType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_item_target_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_feed_item_target_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible types of a feed item target.
@@ -105,7 +105,7 @@ type FeedItemTargetTypeEnum struct {
func (x *FeedItemTargetTypeEnum) Reset() {
*x = FeedItemTargetTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_feed_item_target_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_item_target_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *FeedItemTargetTypeEnum) String() string {
func (*FeedItemTargetTypeEnum) ProtoMessage() {}
func (x *FeedItemTargetTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_feed_item_target_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_item_target_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *FeedItemTargetTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedItemTargetTypeEnum.ProtoReflect.Descriptor instead.
func (*FeedItemTargetTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_item_target_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_feed_item_target_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_feed_item_target_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_feed_item_target_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_feed_item_target_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_feed_item_target_type_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65,
0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x77, 0x0a, 0x16,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x77, 0x0a, 0x16,
0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79,
0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5d, 0x0a, 0x12, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74,
0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b,
@@ -152,42 +152,42 @@ var file_google_ads_googleads_v16_enums_feed_item_target_type_proto_rawDesc = []
0x52, 0x4f, 0x55, 0x50, 0x10, 0x03, 0x12, 0x0d, 0x0a, 0x09, 0x43, 0x52, 0x49, 0x54, 0x45, 0x52,
0x49, 0x4f, 0x4e, 0x10, 0x04, 0x42, 0xf1, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x46, 0x65,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x46, 0x65,
0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_enums_feed_item_target_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_feed_item_target_type_proto_rawDescData = file_google_ads_googleads_v16_enums_feed_item_target_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_feed_item_target_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_feed_item_target_type_proto_rawDescData = file_google_ads_googleads_v17_enums_feed_item_target_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_feed_item_target_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_feed_item_target_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_feed_item_target_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_feed_item_target_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_feed_item_target_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_feed_item_target_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_feed_item_target_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_feed_item_target_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_feed_item_target_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_feed_item_target_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_feed_item_target_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_item_target_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_item_target_type_proto_goTypes = []interface{}{
- (FeedItemTargetTypeEnum_FeedItemTargetType)(0), // 0: google.ads.googleads.v16.enums.FeedItemTargetTypeEnum.FeedItemTargetType
- (*FeedItemTargetTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.FeedItemTargetTypeEnum
+var file_google_ads_googleads_v17_enums_feed_item_target_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_item_target_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_item_target_type_proto_goTypes = []interface{}{
+ (FeedItemTargetTypeEnum_FeedItemTargetType)(0), // 0: google.ads.googleads.v17.enums.FeedItemTargetTypeEnum.FeedItemTargetType
+ (*FeedItemTargetTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.FeedItemTargetTypeEnum
}
-var file_google_ads_googleads_v16_enums_feed_item_target_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_feed_item_target_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -195,13 +195,13 @@ var file_google_ads_googleads_v16_enums_feed_item_target_type_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_feed_item_target_type_proto_init() }
-func file_google_ads_googleads_v16_enums_feed_item_target_type_proto_init() {
- if File_google_ads_googleads_v16_enums_feed_item_target_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_feed_item_target_type_proto_init() }
+func file_google_ads_googleads_v17_enums_feed_item_target_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_feed_item_target_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_feed_item_target_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_feed_item_target_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedItemTargetTypeEnum); i {
case 0:
return &v.state
@@ -218,19 +218,19 @@ func file_google_ads_googleads_v16_enums_feed_item_target_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_feed_item_target_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_feed_item_target_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_feed_item_target_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_feed_item_target_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_feed_item_target_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_feed_item_target_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_feed_item_target_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_feed_item_target_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_feed_item_target_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_feed_item_target_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_feed_item_target_type_proto = out.File
- file_google_ads_googleads_v16_enums_feed_item_target_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_feed_item_target_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_feed_item_target_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_feed_item_target_type_proto = out.File
+ file_google_ads_googleads_v17_enums_feed_item_target_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_feed_item_target_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_feed_item_target_type_proto_depIdxs = nil
}
diff --git a/enums/feed_item_validation_status.pb.go b/enums/feed_item_validation_status.pb.go
index 8cb56aca..ea50f036 100644
--- a/enums/feed_item_validation_status.pb.go
+++ b/enums/feed_item_validation_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/feed_item_validation_status.proto
+// source: google/ads/googleads/v17/enums/feed_item_validation_status.proto
package enums
@@ -79,11 +79,11 @@ func (x FeedItemValidationStatusEnum_FeedItemValidationStatus) String() string {
}
func (FeedItemValidationStatusEnum_FeedItemValidationStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_enumTypes[0].Descriptor()
}
func (FeedItemValidationStatusEnum_FeedItemValidationStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_enumTypes[0]
}
func (x FeedItemValidationStatusEnum_FeedItemValidationStatus) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x FeedItemValidationStatusEnum_FeedItemValidationStatus) Number() protoref
// Deprecated: Use FeedItemValidationStatusEnum_FeedItemValidationStatus.Descriptor instead.
func (FeedItemValidationStatusEnum_FeedItemValidationStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible validation statuses of a feed item.
@@ -105,7 +105,7 @@ type FeedItemValidationStatusEnum struct {
func (x *FeedItemValidationStatusEnum) Reset() {
*x = FeedItemValidationStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *FeedItemValidationStatusEnum) String() string {
func (*FeedItemValidationStatusEnum) ProtoMessage() {}
func (x *FeedItemValidationStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *FeedItemValidationStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedItemValidationStatusEnum.ProtoReflect.Descriptor instead.
func (*FeedItemValidationStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_feed_item_validation_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_feed_item_validation_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x76, 0x61, 0x6c, 0x69, 0x64,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x7d, 0x0a, 0x1c, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x56, 0x61,
0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0x5d, 0x0a, 0x18, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x56, 0x61,
@@ -153,42 +153,42 @@ var file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_rawDes
0x41, 0x4c, 0x49, 0x44, 0x10, 0x03, 0x12, 0x09, 0x0a, 0x05, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x10,
0x04, 0x42, 0xf7, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74,
0x65, 0x6d, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_rawDescData = file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_rawDescData = file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_goTypes = []interface{}{
- (FeedItemValidationStatusEnum_FeedItemValidationStatus)(0), // 0: google.ads.googleads.v16.enums.FeedItemValidationStatusEnum.FeedItemValidationStatus
- (*FeedItemValidationStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.FeedItemValidationStatusEnum
+var file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_goTypes = []interface{}{
+ (FeedItemValidationStatusEnum_FeedItemValidationStatus)(0), // 0: google.ads.googleads.v17.enums.FeedItemValidationStatusEnum.FeedItemValidationStatus
+ (*FeedItemValidationStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.FeedItemValidationStatusEnum
}
-var file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -196,13 +196,13 @@ var file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_init() }
-func file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_init() {
- if File_google_ads_googleads_v16_enums_feed_item_validation_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_init() }
+func file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_feed_item_validation_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedItemValidationStatusEnum); i {
case 0:
return &v.state
@@ -219,19 +219,19 @@ func file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_feed_item_validation_status_proto = out.File
- file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_feed_item_validation_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_feed_item_validation_status_proto = out.File
+ file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_feed_item_validation_status_proto_depIdxs = nil
}
diff --git a/enums/feed_link_status.pb.go b/enums/feed_link_status.pb.go
index 34596333..6b856a2c 100644
--- a/enums/feed_link_status.pb.go
+++ b/enums/feed_link_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/feed_link_status.proto
+// source: google/ads/googleads/v17/enums/feed_link_status.proto
package enums
@@ -75,11 +75,11 @@ func (x FeedLinkStatusEnum_FeedLinkStatus) String() string {
}
func (FeedLinkStatusEnum_FeedLinkStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_feed_link_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_feed_link_status_proto_enumTypes[0].Descriptor()
}
func (FeedLinkStatusEnum_FeedLinkStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_feed_link_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_feed_link_status_proto_enumTypes[0]
}
func (x FeedLinkStatusEnum_FeedLinkStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x FeedLinkStatusEnum_FeedLinkStatus) Number() protoreflect.EnumNumber {
// Deprecated: Use FeedLinkStatusEnum_FeedLinkStatus.Descriptor instead.
func (FeedLinkStatusEnum_FeedLinkStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_link_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_feed_link_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for an enum describing possible statuses of a feed link.
@@ -101,7 +101,7 @@ type FeedLinkStatusEnum struct {
func (x *FeedLinkStatusEnum) Reset() {
*x = FeedLinkStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_feed_link_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_link_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *FeedLinkStatusEnum) String() string {
func (*FeedLinkStatusEnum) ProtoMessage() {}
func (x *FeedLinkStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_feed_link_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_link_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *FeedLinkStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedLinkStatusEnum.ProtoReflect.Descriptor instead.
func (*FeedLinkStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_link_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_feed_link_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_feed_link_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_feed_link_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_feed_link_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_feed_link_status_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75,
0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x5e, 0x0a, 0x12, 0x46, 0x65, 0x65, 0x64, 0x4c,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x5e, 0x0a, 0x12, 0x46, 0x65, 0x65, 0x64, 0x4c,
0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x48, 0x0a,
0x0e, 0x46, 0x65, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00,
@@ -146,41 +146,41 @@ var file_google_ads_googleads_v16_enums_feed_link_status_proto_rawDesc = []byte{
0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45,
0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42, 0xed, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13,
0x46, 0x65, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_feed_link_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_feed_link_status_proto_rawDescData = file_google_ads_googleads_v16_enums_feed_link_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_feed_link_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_feed_link_status_proto_rawDescData = file_google_ads_googleads_v17_enums_feed_link_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_feed_link_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_feed_link_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_feed_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_feed_link_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_feed_link_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_feed_link_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_feed_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_feed_link_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_feed_link_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_feed_link_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_feed_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_link_status_proto_goTypes = []interface{}{
- (FeedLinkStatusEnum_FeedLinkStatus)(0), // 0: google.ads.googleads.v16.enums.FeedLinkStatusEnum.FeedLinkStatus
- (*FeedLinkStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.FeedLinkStatusEnum
+var file_google_ads_googleads_v17_enums_feed_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_link_status_proto_goTypes = []interface{}{
+ (FeedLinkStatusEnum_FeedLinkStatus)(0), // 0: google.ads.googleads.v17.enums.FeedLinkStatusEnum.FeedLinkStatus
+ (*FeedLinkStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.FeedLinkStatusEnum
}
-var file_google_ads_googleads_v16_enums_feed_link_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_feed_link_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -188,13 +188,13 @@ var file_google_ads_googleads_v16_enums_feed_link_status_proto_depIdxs = []int32
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_feed_link_status_proto_init() }
-func file_google_ads_googleads_v16_enums_feed_link_status_proto_init() {
- if File_google_ads_googleads_v16_enums_feed_link_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_feed_link_status_proto_init() }
+func file_google_ads_googleads_v17_enums_feed_link_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_feed_link_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_feed_link_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_feed_link_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedLinkStatusEnum); i {
case 0:
return &v.state
@@ -211,19 +211,19 @@ func file_google_ads_googleads_v16_enums_feed_link_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_feed_link_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_feed_link_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_feed_link_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_feed_link_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_feed_link_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_feed_link_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_feed_link_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_feed_link_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_feed_link_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_feed_link_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_feed_link_status_proto = out.File
- file_google_ads_googleads_v16_enums_feed_link_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_feed_link_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_feed_link_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_feed_link_status_proto = out.File
+ file_google_ads_googleads_v17_enums_feed_link_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_feed_link_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_feed_link_status_proto_depIdxs = nil
}
diff --git a/enums/feed_mapping_criterion_type.pb.go b/enums/feed_mapping_criterion_type.pb.go
index fa37abfb..4de4f197 100644
--- a/enums/feed_mapping_criterion_type.pb.go
+++ b/enums/feed_mapping_criterion_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/feed_mapping_criterion_type.proto
+// source: google/ads/googleads/v17/enums/feed_mapping_criterion_type.proto
package enums
@@ -75,11 +75,11 @@ func (x FeedMappingCriterionTypeEnum_FeedMappingCriterionType) String() string {
}
func (FeedMappingCriterionTypeEnum_FeedMappingCriterionType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_enumTypes[0].Descriptor()
}
func (FeedMappingCriterionTypeEnum_FeedMappingCriterionType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_enumTypes[0]
}
func (x FeedMappingCriterionTypeEnum_FeedMappingCriterionType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x FeedMappingCriterionTypeEnum_FeedMappingCriterionType) Number() protoref
// Deprecated: Use FeedMappingCriterionTypeEnum_FeedMappingCriterionType.Descriptor instead.
func (FeedMappingCriterionTypeEnum_FeedMappingCriterionType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible criterion types for a feed mapping.
@@ -101,7 +101,7 @@ type FeedMappingCriterionTypeEnum struct {
func (x *FeedMappingCriterionTypeEnum) Reset() {
*x = FeedMappingCriterionTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *FeedMappingCriterionTypeEnum) String() string {
func (*FeedMappingCriterionTypeEnum) ProtoMessage() {}
func (x *FeedMappingCriterionTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *FeedMappingCriterionTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedMappingCriterionTypeEnum.ProtoReflect.Descriptor instead.
func (*FeedMappingCriterionTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x72,
0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x8d, 0x01, 0x0a, 0x1c, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69,
0x6e, 0x67, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0x6d, 0x0a, 0x18, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69,
@@ -150,42 +150,42 @@ var file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_rawDes
0x11, 0x0a, 0x0d, 0x44, 0x53, 0x41, 0x5f, 0x50, 0x41, 0x47, 0x45, 0x5f, 0x46, 0x45, 0x45, 0x44,
0x10, 0x03, 0x42, 0xf7, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x46, 0x65, 0x65, 0x64, 0x4d,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x46, 0x65, 0x65, 0x64, 0x4d,
0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x54,
0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_rawDescData = file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_rawDescData = file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_goTypes = []interface{}{
- (FeedMappingCriterionTypeEnum_FeedMappingCriterionType)(0), // 0: google.ads.googleads.v16.enums.FeedMappingCriterionTypeEnum.FeedMappingCriterionType
- (*FeedMappingCriterionTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.FeedMappingCriterionTypeEnum
+var file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_goTypes = []interface{}{
+ (FeedMappingCriterionTypeEnum_FeedMappingCriterionType)(0), // 0: google.ads.googleads.v17.enums.FeedMappingCriterionTypeEnum.FeedMappingCriterionType
+ (*FeedMappingCriterionTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.FeedMappingCriterionTypeEnum
}
-var file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -193,13 +193,13 @@ var file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_init() }
-func file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_init() {
- if File_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_init() }
+func file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedMappingCriterionTypeEnum); i {
case 0:
return &v.state
@@ -216,19 +216,19 @@ func file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto = out.File
- file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_feed_mapping_criterion_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto = out.File
+ file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_feed_mapping_criterion_type_proto_depIdxs = nil
}
diff --git a/enums/feed_mapping_status.pb.go b/enums/feed_mapping_status.pb.go
index 8bc8dd4c..5b8ef00f 100644
--- a/enums/feed_mapping_status.pb.go
+++ b/enums/feed_mapping_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/feed_mapping_status.proto
+// source: google/ads/googleads/v17/enums/feed_mapping_status.proto
package enums
@@ -75,11 +75,11 @@ func (x FeedMappingStatusEnum_FeedMappingStatus) String() string {
}
func (FeedMappingStatusEnum_FeedMappingStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_feed_mapping_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_feed_mapping_status_proto_enumTypes[0].Descriptor()
}
func (FeedMappingStatusEnum_FeedMappingStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_feed_mapping_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_feed_mapping_status_proto_enumTypes[0]
}
func (x FeedMappingStatusEnum_FeedMappingStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x FeedMappingStatusEnum_FeedMappingStatus) Number() protoreflect.EnumNumbe
// Deprecated: Use FeedMappingStatusEnum_FeedMappingStatus.Descriptor instead.
func (FeedMappingStatusEnum_FeedMappingStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_mapping_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_feed_mapping_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of a feed mapping.
@@ -101,7 +101,7 @@ type FeedMappingStatusEnum struct {
func (x *FeedMappingStatusEnum) Reset() {
*x = FeedMappingStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_feed_mapping_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_mapping_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *FeedMappingStatusEnum) String() string {
func (*FeedMappingStatusEnum) ProtoMessage() {}
func (x *FeedMappingStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_feed_mapping_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_mapping_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *FeedMappingStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedMappingStatusEnum.ProtoReflect.Descriptor instead.
func (*FeedMappingStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_mapping_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_feed_mapping_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_feed_mapping_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_feed_mapping_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_feed_mapping_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_feed_mapping_status_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74,
0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x64, 0x0a, 0x15, 0x46, 0x65,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x64, 0x0a, 0x15, 0x46, 0x65,
0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0x4b, 0x0a, 0x11, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69,
0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50,
@@ -147,41 +147,41 @@ var file_google_ads_googleads_v16_enums_feed_mapping_status_proto_rawDesc = []by
0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03,
0x42, 0xf0, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70,
0x70, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_feed_mapping_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_feed_mapping_status_proto_rawDescData = file_google_ads_googleads_v16_enums_feed_mapping_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_feed_mapping_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_feed_mapping_status_proto_rawDescData = file_google_ads_googleads_v17_enums_feed_mapping_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_feed_mapping_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_feed_mapping_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_feed_mapping_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_feed_mapping_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_feed_mapping_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_feed_mapping_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_feed_mapping_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_feed_mapping_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_feed_mapping_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_feed_mapping_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_feed_mapping_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_mapping_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_mapping_status_proto_goTypes = []interface{}{
- (FeedMappingStatusEnum_FeedMappingStatus)(0), // 0: google.ads.googleads.v16.enums.FeedMappingStatusEnum.FeedMappingStatus
- (*FeedMappingStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.FeedMappingStatusEnum
+var file_google_ads_googleads_v17_enums_feed_mapping_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_mapping_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_mapping_status_proto_goTypes = []interface{}{
+ (FeedMappingStatusEnum_FeedMappingStatus)(0), // 0: google.ads.googleads.v17.enums.FeedMappingStatusEnum.FeedMappingStatus
+ (*FeedMappingStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.FeedMappingStatusEnum
}
-var file_google_ads_googleads_v16_enums_feed_mapping_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_feed_mapping_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -189,13 +189,13 @@ var file_google_ads_googleads_v16_enums_feed_mapping_status_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_feed_mapping_status_proto_init() }
-func file_google_ads_googleads_v16_enums_feed_mapping_status_proto_init() {
- if File_google_ads_googleads_v16_enums_feed_mapping_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_feed_mapping_status_proto_init() }
+func file_google_ads_googleads_v17_enums_feed_mapping_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_feed_mapping_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_feed_mapping_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_feed_mapping_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedMappingStatusEnum); i {
case 0:
return &v.state
@@ -212,19 +212,19 @@ func file_google_ads_googleads_v16_enums_feed_mapping_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_feed_mapping_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_feed_mapping_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_feed_mapping_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_feed_mapping_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_feed_mapping_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_feed_mapping_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_feed_mapping_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_feed_mapping_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_feed_mapping_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_feed_mapping_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_feed_mapping_status_proto = out.File
- file_google_ads_googleads_v16_enums_feed_mapping_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_feed_mapping_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_feed_mapping_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_feed_mapping_status_proto = out.File
+ file_google_ads_googleads_v17_enums_feed_mapping_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_feed_mapping_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_feed_mapping_status_proto_depIdxs = nil
}
diff --git a/enums/feed_origin.pb.go b/enums/feed_origin.pb.go
index c2f2b83b..ad7b96ed 100644
--- a/enums/feed_origin.pb.go
+++ b/enums/feed_origin.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/feed_origin.proto
+// source: google/ads/googleads/v17/enums/feed_origin.proto
package enums
@@ -78,11 +78,11 @@ func (x FeedOriginEnum_FeedOrigin) String() string {
}
func (FeedOriginEnum_FeedOrigin) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_feed_origin_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_feed_origin_proto_enumTypes[0].Descriptor()
}
func (FeedOriginEnum_FeedOrigin) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_feed_origin_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_feed_origin_proto_enumTypes[0]
}
func (x FeedOriginEnum_FeedOrigin) Number() protoreflect.EnumNumber {
@@ -91,7 +91,7 @@ func (x FeedOriginEnum_FeedOrigin) Number() protoreflect.EnumNumber {
// Deprecated: Use FeedOriginEnum_FeedOrigin.Descriptor instead.
func (FeedOriginEnum_FeedOrigin) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_origin_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_feed_origin_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible values for a feed origin.
@@ -104,7 +104,7 @@ type FeedOriginEnum struct {
func (x *FeedOriginEnum) Reset() {
*x = FeedOriginEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_feed_origin_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_origin_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -117,7 +117,7 @@ func (x *FeedOriginEnum) String() string {
func (*FeedOriginEnum) ProtoMessage() {}
func (x *FeedOriginEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_feed_origin_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_origin_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -130,17 +130,17 @@ func (x *FeedOriginEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedOriginEnum.ProtoReflect.Descriptor instead.
func (*FeedOriginEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_origin_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_feed_origin_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_feed_origin_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_feed_origin_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_feed_origin_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_feed_origin_proto_rawDesc = []byte{
0x0a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x52, 0x0a, 0x0e, 0x46, 0x65, 0x65, 0x64, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x40, 0x0a, 0x0a, 0x46, 0x65, 0x65, 0x64, 0x4f, 0x72, 0x69, 0x67,
0x69, 0x6e, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45,
@@ -148,41 +148,41 @@ var file_google_ads_googleads_v16_enums_feed_origin_proto_rawDesc = []byte{
0x12, 0x08, 0x0a, 0x04, 0x55, 0x53, 0x45, 0x52, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x47, 0x4f,
0x4f, 0x47, 0x4c, 0x45, 0x10, 0x03, 0x42, 0xe9, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0f, 0x46,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0f, 0x46,
0x65, 0x65, 0x64, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_feed_origin_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_feed_origin_proto_rawDescData = file_google_ads_googleads_v16_enums_feed_origin_proto_rawDesc
+ file_google_ads_googleads_v17_enums_feed_origin_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_feed_origin_proto_rawDescData = file_google_ads_googleads_v17_enums_feed_origin_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_feed_origin_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_feed_origin_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_feed_origin_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_feed_origin_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_feed_origin_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_feed_origin_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_feed_origin_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_feed_origin_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_feed_origin_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_feed_origin_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_feed_origin_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_origin_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_origin_proto_goTypes = []interface{}{
- (FeedOriginEnum_FeedOrigin)(0), // 0: google.ads.googleads.v16.enums.FeedOriginEnum.FeedOrigin
- (*FeedOriginEnum)(nil), // 1: google.ads.googleads.v16.enums.FeedOriginEnum
+var file_google_ads_googleads_v17_enums_feed_origin_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_origin_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_origin_proto_goTypes = []interface{}{
+ (FeedOriginEnum_FeedOrigin)(0), // 0: google.ads.googleads.v17.enums.FeedOriginEnum.FeedOrigin
+ (*FeedOriginEnum)(nil), // 1: google.ads.googleads.v17.enums.FeedOriginEnum
}
-var file_google_ads_googleads_v16_enums_feed_origin_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_feed_origin_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_enums_feed_origin_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_feed_origin_proto_init() }
-func file_google_ads_googleads_v16_enums_feed_origin_proto_init() {
- if File_google_ads_googleads_v16_enums_feed_origin_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_feed_origin_proto_init() }
+func file_google_ads_googleads_v17_enums_feed_origin_proto_init() {
+ if File_google_ads_googleads_v17_enums_feed_origin_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_feed_origin_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_feed_origin_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedOriginEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_enums_feed_origin_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_feed_origin_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_feed_origin_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_feed_origin_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_feed_origin_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_feed_origin_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_feed_origin_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_feed_origin_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_feed_origin_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_feed_origin_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_feed_origin_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_feed_origin_proto = out.File
- file_google_ads_googleads_v16_enums_feed_origin_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_feed_origin_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_feed_origin_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_feed_origin_proto = out.File
+ file_google_ads_googleads_v17_enums_feed_origin_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_feed_origin_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_feed_origin_proto_depIdxs = nil
}
diff --git a/enums/feed_status.pb.go b/enums/feed_status.pb.go
index dd8b6e3c..5076a528 100644
--- a/enums/feed_status.pb.go
+++ b/enums/feed_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/feed_status.proto
+// source: google/ads/googleads/v17/enums/feed_status.proto
package enums
@@ -75,11 +75,11 @@ func (x FeedStatusEnum_FeedStatus) String() string {
}
func (FeedStatusEnum_FeedStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_feed_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_feed_status_proto_enumTypes[0].Descriptor()
}
func (FeedStatusEnum_FeedStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_feed_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_feed_status_proto_enumTypes[0]
}
func (x FeedStatusEnum_FeedStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x FeedStatusEnum_FeedStatus) Number() protoreflect.EnumNumber {
// Deprecated: Use FeedStatusEnum_FeedStatus.Descriptor instead.
func (FeedStatusEnum_FeedStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_feed_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of a feed.
@@ -101,7 +101,7 @@ type FeedStatusEnum struct {
func (x *FeedStatusEnum) Reset() {
*x = FeedStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_feed_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *FeedStatusEnum) String() string {
func (*FeedStatusEnum) ProtoMessage() {}
func (x *FeedStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_feed_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_feed_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,17 +127,17 @@ func (x *FeedStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedStatusEnum.ProtoReflect.Descriptor instead.
func (*FeedStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_feed_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_feed_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_feed_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_feed_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_feed_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_feed_status_proto_rawDesc = []byte{
0x0a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x56, 0x0a, 0x0e, 0x46, 0x65, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x44, 0x0a, 0x0a, 0x46, 0x65, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45,
@@ -145,41 +145,41 @@ var file_google_ads_googleads_v16_enums_feed_status_proto_rawDesc = []byte{
0x12, 0x0b, 0x0a, 0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a,
0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42, 0xe9, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x0f, 0x46, 0x65, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_feed_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_feed_status_proto_rawDescData = file_google_ads_googleads_v16_enums_feed_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_feed_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_feed_status_proto_rawDescData = file_google_ads_googleads_v17_enums_feed_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_feed_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_feed_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_feed_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_feed_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_feed_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_feed_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_feed_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_feed_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_feed_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_feed_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_feed_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_feed_status_proto_goTypes = []interface{}{
- (FeedStatusEnum_FeedStatus)(0), // 0: google.ads.googleads.v16.enums.FeedStatusEnum.FeedStatus
- (*FeedStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.FeedStatusEnum
+var file_google_ads_googleads_v17_enums_feed_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_feed_status_proto_goTypes = []interface{}{
+ (FeedStatusEnum_FeedStatus)(0), // 0: google.ads.googleads.v17.enums.FeedStatusEnum.FeedStatus
+ (*FeedStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.FeedStatusEnum
}
-var file_google_ads_googleads_v16_enums_feed_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_feed_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -187,13 +187,13 @@ var file_google_ads_googleads_v16_enums_feed_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_feed_status_proto_init() }
-func file_google_ads_googleads_v16_enums_feed_status_proto_init() {
- if File_google_ads_googleads_v16_enums_feed_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_feed_status_proto_init() }
+func file_google_ads_googleads_v17_enums_feed_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_feed_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_feed_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_feed_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedStatusEnum); i {
case 0:
return &v.state
@@ -210,19 +210,19 @@ func file_google_ads_googleads_v16_enums_feed_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_feed_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_feed_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_feed_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_feed_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_feed_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_feed_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_feed_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_feed_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_feed_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_feed_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_feed_status_proto = out.File
- file_google_ads_googleads_v16_enums_feed_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_feed_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_feed_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_feed_status_proto = out.File
+ file_google_ads_googleads_v17_enums_feed_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_feed_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_feed_status_proto_depIdxs = nil
}
diff --git a/enums/flight_placeholder_field.pb.go b/enums/flight_placeholder_field.pb.go
index 17aa4a6f..64a958a2 100644
--- a/enums/flight_placeholder_field.pb.go
+++ b/enums/flight_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/flight_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/flight_placeholder_field.proto
package enums
@@ -158,11 +158,11 @@ func (x FlightPlaceholderFieldEnum_FlightPlaceholderField) String() string {
}
func (FlightPlaceholderFieldEnum_FlightPlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (FlightPlaceholderFieldEnum_FlightPlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_enumTypes[0]
}
func (x FlightPlaceholderFieldEnum_FlightPlaceholderField) Number() protoreflect.EnumNumber {
@@ -171,7 +171,7 @@ func (x FlightPlaceholderFieldEnum_FlightPlaceholderField) Number() protoreflect
// Deprecated: Use FlightPlaceholderFieldEnum_FlightPlaceholderField.Descriptor instead.
func (FlightPlaceholderFieldEnum_FlightPlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Flight placeholder fields.
@@ -186,7 +186,7 @@ type FlightPlaceholderFieldEnum struct {
func (x *FlightPlaceholderFieldEnum) Reset() {
*x = FlightPlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -199,7 +199,7 @@ func (x *FlightPlaceholderFieldEnum) String() string {
func (*FlightPlaceholderFieldEnum) ProtoMessage() {}
func (x *FlightPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -212,18 +212,18 @@ func (x *FlightPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FlightPlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*FlightPlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_flight_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_flight_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x66, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c,
0x64, 0x65, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
0xb2, 0x03, 0x0a, 0x1a, 0x46, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68,
0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x93,
0x03, 0x0a, 0x16, 0x46, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f,
@@ -253,42 +253,42 @@ var file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_rawDesc =
0x0a, 0x10, 0x49, 0x4f, 0x53, 0x5f, 0x41, 0x50, 0x50, 0x5f, 0x53, 0x54, 0x4f, 0x52, 0x45, 0x5f,
0x49, 0x44, 0x10, 0x12, 0x42, 0xf6, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x46, 0x6c, 0x69,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x46, 0x6c, 0x69,
0x67, 0x68, 0x74, 0x73, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46,
0x69, 0x65, 0x6c, 0x64, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_goTypes = []interface{}{
- (FlightPlaceholderFieldEnum_FlightPlaceholderField)(0), // 0: google.ads.googleads.v16.enums.FlightPlaceholderFieldEnum.FlightPlaceholderField
- (*FlightPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.FlightPlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_goTypes = []interface{}{
+ (FlightPlaceholderFieldEnum_FlightPlaceholderField)(0), // 0: google.ads.googleads.v17.enums.FlightPlaceholderFieldEnum.FlightPlaceholderField
+ (*FlightPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.FlightPlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -296,13 +296,13 @@ var file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_flight_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_flight_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FlightPlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -319,19 +319,19 @@ func file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_flight_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_flight_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_flight_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_flight_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/frequency_cap_event_type.pb.go b/enums/frequency_cap_event_type.pb.go
index b8be0bb7..c9484b9e 100644
--- a/enums/frequency_cap_event_type.pb.go
+++ b/enums/frequency_cap_event_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/frequency_cap_event_type.proto
+// source: google/ads/googleads/v17/enums/frequency_cap_event_type.proto
package enums
@@ -75,11 +75,11 @@ func (x FrequencyCapEventTypeEnum_FrequencyCapEventType) String() string {
}
func (FrequencyCapEventTypeEnum_FrequencyCapEventType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_enumTypes[0].Descriptor()
}
func (FrequencyCapEventTypeEnum_FrequencyCapEventType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_enumTypes[0]
}
func (x FrequencyCapEventTypeEnum_FrequencyCapEventType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x FrequencyCapEventTypeEnum_FrequencyCapEventType) Number() protoreflect.E
// Deprecated: Use FrequencyCapEventTypeEnum_FrequencyCapEventType.Descriptor instead.
func (FrequencyCapEventTypeEnum_FrequencyCapEventType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the type of event that the cap applies to.
@@ -101,7 +101,7 @@ type FrequencyCapEventTypeEnum struct {
func (x *FrequencyCapEventTypeEnum) Reset() {
*x = FrequencyCapEventTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *FrequencyCapEventTypeEnum) String() string {
func (*FrequencyCapEventTypeEnum) ProtoMessage() {}
func (x *FrequencyCapEventTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *FrequencyCapEventTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FrequencyCapEventTypeEnum.ProtoReflect.Descriptor instead.
func (*FrequencyCapEventTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_frequency_cap_event_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_frequency_cap_event_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x61, 0x70, 0x5f, 0x65,
0x76, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
0x72, 0x0a, 0x19, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x45,
0x76, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x55, 0x0a, 0x15,
0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x45, 0x76, 0x65, 0x6e,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_rawDesc =
0x4e, 0x10, 0x02, 0x12, 0x0e, 0x0a, 0x0a, 0x56, 0x49, 0x44, 0x45, 0x4f, 0x5f, 0x56, 0x49, 0x45,
0x57, 0x10, 0x03, 0x42, 0xf4, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x46, 0x72, 0x65, 0x71,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x46, 0x72, 0x65, 0x71,
0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70,
0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73,
- 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45,
+ 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
- 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_rawDescData = file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_rawDescData = file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_goTypes = []interface{}{
- (FrequencyCapEventTypeEnum_FrequencyCapEventType)(0), // 0: google.ads.googleads.v16.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType
- (*FrequencyCapEventTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.FrequencyCapEventTypeEnum
+var file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_goTypes = []interface{}{
+ (FrequencyCapEventTypeEnum_FrequencyCapEventType)(0), // 0: google.ads.googleads.v17.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType
+ (*FrequencyCapEventTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.FrequencyCapEventTypeEnum
}
-var file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_init() }
-func file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_init() {
- if File_google_ads_googleads_v16_enums_frequency_cap_event_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_init() }
+func file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_frequency_cap_event_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FrequencyCapEventTypeEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_frequency_cap_event_type_proto = out.File
- file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_frequency_cap_event_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_frequency_cap_event_type_proto = out.File
+ file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_frequency_cap_event_type_proto_depIdxs = nil
}
diff --git a/enums/frequency_cap_level.pb.go b/enums/frequency_cap_level.pb.go
index e3848caf..ba4c00db 100644
--- a/enums/frequency_cap_level.pb.go
+++ b/enums/frequency_cap_level.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/frequency_cap_level.proto
+// source: google/ads/googleads/v17/enums/frequency_cap_level.proto
package enums
@@ -80,11 +80,11 @@ func (x FrequencyCapLevelEnum_FrequencyCapLevel) String() string {
}
func (FrequencyCapLevelEnum_FrequencyCapLevel) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_frequency_cap_level_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_frequency_cap_level_proto_enumTypes[0].Descriptor()
}
func (FrequencyCapLevelEnum_FrequencyCapLevel) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_frequency_cap_level_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_frequency_cap_level_proto_enumTypes[0]
}
func (x FrequencyCapLevelEnum_FrequencyCapLevel) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x FrequencyCapLevelEnum_FrequencyCapLevel) Number() protoreflect.EnumNumbe
// Deprecated: Use FrequencyCapLevelEnum_FrequencyCapLevel.Descriptor instead.
func (FrequencyCapLevelEnum_FrequencyCapLevel) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_frequency_cap_level_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_frequency_cap_level_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the level on which the cap is to be applied.
@@ -106,7 +106,7 @@ type FrequencyCapLevelEnum struct {
func (x *FrequencyCapLevelEnum) Reset() {
*x = FrequencyCapLevelEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_frequency_cap_level_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_frequency_cap_level_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *FrequencyCapLevelEnum) String() string {
func (*FrequencyCapLevelEnum) ProtoMessage() {}
func (x *FrequencyCapLevelEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_frequency_cap_level_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_frequency_cap_level_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,18 +132,18 @@ func (x *FrequencyCapLevelEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FrequencyCapLevelEnum.ProtoReflect.Descriptor instead.
func (*FrequencyCapLevelEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_frequency_cap_level_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_frequency_cap_level_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_frequency_cap_level_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_frequency_cap_level_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_frequency_cap_level_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_frequency_cap_level_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x61, 0x70, 0x5f, 0x6c,
0x65, 0x76, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x77, 0x0a, 0x15, 0x46, 0x72,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x77, 0x0a, 0x15, 0x46, 0x72,
0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0x5e, 0x0a, 0x11, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79,
0x43, 0x61, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50,
@@ -153,41 +153,41 @@ var file_google_ads_googleads_v16_enums_frequency_cap_level_proto_rawDesc = []by
0x4f, 0x55, 0x50, 0x10, 0x03, 0x12, 0x0c, 0x0a, 0x08, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47,
0x4e, 0x10, 0x04, 0x42, 0xf0, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x46, 0x72, 0x65, 0x71,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x46, 0x72, 0x65, 0x71,
0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_frequency_cap_level_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_frequency_cap_level_proto_rawDescData = file_google_ads_googleads_v16_enums_frequency_cap_level_proto_rawDesc
+ file_google_ads_googleads_v17_enums_frequency_cap_level_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_frequency_cap_level_proto_rawDescData = file_google_ads_googleads_v17_enums_frequency_cap_level_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_frequency_cap_level_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_frequency_cap_level_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_frequency_cap_level_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_frequency_cap_level_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_frequency_cap_level_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_frequency_cap_level_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_frequency_cap_level_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_frequency_cap_level_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_frequency_cap_level_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_frequency_cap_level_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_frequency_cap_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_frequency_cap_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_frequency_cap_level_proto_goTypes = []interface{}{
- (FrequencyCapLevelEnum_FrequencyCapLevel)(0), // 0: google.ads.googleads.v16.enums.FrequencyCapLevelEnum.FrequencyCapLevel
- (*FrequencyCapLevelEnum)(nil), // 1: google.ads.googleads.v16.enums.FrequencyCapLevelEnum
+var file_google_ads_googleads_v17_enums_frequency_cap_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_frequency_cap_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_frequency_cap_level_proto_goTypes = []interface{}{
+ (FrequencyCapLevelEnum_FrequencyCapLevel)(0), // 0: google.ads.googleads.v17.enums.FrequencyCapLevelEnum.FrequencyCapLevel
+ (*FrequencyCapLevelEnum)(nil), // 1: google.ads.googleads.v17.enums.FrequencyCapLevelEnum
}
-var file_google_ads_googleads_v16_enums_frequency_cap_level_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_frequency_cap_level_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -195,13 +195,13 @@ var file_google_ads_googleads_v16_enums_frequency_cap_level_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_frequency_cap_level_proto_init() }
-func file_google_ads_googleads_v16_enums_frequency_cap_level_proto_init() {
- if File_google_ads_googleads_v16_enums_frequency_cap_level_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_frequency_cap_level_proto_init() }
+func file_google_ads_googleads_v17_enums_frequency_cap_level_proto_init() {
+ if File_google_ads_googleads_v17_enums_frequency_cap_level_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_frequency_cap_level_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_frequency_cap_level_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FrequencyCapLevelEnum); i {
case 0:
return &v.state
@@ -218,19 +218,19 @@ func file_google_ads_googleads_v16_enums_frequency_cap_level_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_frequency_cap_level_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_frequency_cap_level_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_frequency_cap_level_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_frequency_cap_level_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_frequency_cap_level_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_frequency_cap_level_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_frequency_cap_level_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_frequency_cap_level_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_frequency_cap_level_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_frequency_cap_level_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_frequency_cap_level_proto = out.File
- file_google_ads_googleads_v16_enums_frequency_cap_level_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_frequency_cap_level_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_frequency_cap_level_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_frequency_cap_level_proto = out.File
+ file_google_ads_googleads_v17_enums_frequency_cap_level_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_frequency_cap_level_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_frequency_cap_level_proto_depIdxs = nil
}
diff --git a/enums/frequency_cap_time_unit.pb.go b/enums/frequency_cap_time_unit.pb.go
index 47e0b1f5..a63d0309 100644
--- a/enums/frequency_cap_time_unit.pb.go
+++ b/enums/frequency_cap_time_unit.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/frequency_cap_time_unit.proto
+// source: google/ads/googleads/v17/enums/frequency_cap_time_unit.proto
package enums
@@ -79,11 +79,11 @@ func (x FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit) String() string {
}
func (FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_enumTypes[0].Descriptor()
}
func (FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_enumTypes[0]
}
func (x FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit) Number() protoreflect.Enu
// Deprecated: Use FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit.Descriptor instead.
func (FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the unit of time the cap is defined at.
@@ -105,7 +105,7 @@ type FrequencyCapTimeUnitEnum struct {
func (x *FrequencyCapTimeUnitEnum) Reset() {
*x = FrequencyCapTimeUnitEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *FrequencyCapTimeUnitEnum) String() string {
func (*FrequencyCapTimeUnitEnum) ProtoMessage() {}
func (x *FrequencyCapTimeUnitEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *FrequencyCapTimeUnitEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FrequencyCapTimeUnitEnum.ProtoReflect.Descriptor instead.
func (*FrequencyCapTimeUnitEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x61, 0x70, 0x5f, 0x74,
0x69, 0x6d, 0x65, 0x5f, 0x75, 0x6e, 0x69, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6e,
0x0a, 0x18, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x54, 0x69,
0x6d, 0x65, 0x55, 0x6e, 0x69, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x52, 0x0a, 0x14, 0x46, 0x72,
0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x54, 0x69, 0x6d, 0x65, 0x55, 0x6e,
@@ -151,42 +151,42 @@ var file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_rawDesc =
0x12, 0x07, 0x0a, 0x03, 0x44, 0x41, 0x59, 0x10, 0x02, 0x12, 0x08, 0x0a, 0x04, 0x57, 0x45, 0x45,
0x4b, 0x10, 0x03, 0x12, 0x09, 0x0a, 0x05, 0x4d, 0x4f, 0x4e, 0x54, 0x48, 0x10, 0x04, 0x42, 0xf3,
0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79,
0x43, 0x61, 0x70, 0x54, 0x69, 0x6d, 0x65, 0x55, 0x6e, 0x69, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_rawDescData = file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_rawDesc
+ file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_rawDescData = file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_goTypes = []interface{}{
- (FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit)(0), // 0: google.ads.googleads.v16.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit
- (*FrequencyCapTimeUnitEnum)(nil), // 1: google.ads.googleads.v16.enums.FrequencyCapTimeUnitEnum
+var file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_goTypes = []interface{}{
+ (FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit)(0), // 0: google.ads.googleads.v17.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit
+ (*FrequencyCapTimeUnitEnum)(nil), // 1: google.ads.googleads.v17.enums.FrequencyCapTimeUnitEnum
}
-var file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -194,13 +194,13 @@ var file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_init() }
-func file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_init() {
- if File_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_init() }
+func file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_init() {
+ if File_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FrequencyCapTimeUnitEnum); i {
case 0:
return &v.state
@@ -217,19 +217,19 @@ func file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto = out.File
- file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_frequency_cap_time_unit_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto = out.File
+ file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_frequency_cap_time_unit_proto_depIdxs = nil
}
diff --git a/enums/gender_type.pb.go b/enums/gender_type.pb.go
index e438510b..ea3a167e 100644
--- a/enums/gender_type.pb.go
+++ b/enums/gender_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/gender_type.proto
+// source: google/ads/googleads/v17/enums/gender_type.proto
package enums
@@ -79,11 +79,11 @@ func (x GenderTypeEnum_GenderType) String() string {
}
func (GenderTypeEnum_GenderType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_gender_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_gender_type_proto_enumTypes[0].Descriptor()
}
func (GenderTypeEnum_GenderType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_gender_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_gender_type_proto_enumTypes[0]
}
func (x GenderTypeEnum_GenderType) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x GenderTypeEnum_GenderType) Number() protoreflect.EnumNumber {
// Deprecated: Use GenderTypeEnum_GenderType.Descriptor instead.
func (GenderTypeEnum_GenderType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_gender_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_gender_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the type of demographic genders.
@@ -105,7 +105,7 @@ type GenderTypeEnum struct {
func (x *GenderTypeEnum) Reset() {
*x = GenderTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_gender_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_gender_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *GenderTypeEnum) String() string {
func (*GenderTypeEnum) ProtoMessage() {}
func (x *GenderTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_gender_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_gender_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,17 +131,17 @@ func (x *GenderTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use GenderTypeEnum.ProtoReflect.Descriptor instead.
func (*GenderTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_gender_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_gender_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_gender_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_gender_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_gender_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_gender_type_proto_rawDesc = []byte{
0x0a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x64, 0x0a, 0x0e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x52, 0x0a, 0x0a, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x54, 0x79,
0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45,
@@ -150,41 +150,41 @@ var file_google_ads_googleads_v16_enums_gender_type_proto_rawDesc = []byte{
0x4d, 0x41, 0x4c, 0x45, 0x10, 0x0b, 0x12, 0x10, 0x0a, 0x0c, 0x55, 0x4e, 0x44, 0x45, 0x54, 0x45,
0x52, 0x4d, 0x49, 0x4e, 0x45, 0x44, 0x10, 0x14, 0x42, 0xe9, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
0x0f, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_gender_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_gender_type_proto_rawDescData = file_google_ads_googleads_v16_enums_gender_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_gender_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_gender_type_proto_rawDescData = file_google_ads_googleads_v17_enums_gender_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_gender_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_gender_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_gender_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_gender_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_gender_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_gender_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_gender_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_gender_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_gender_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_gender_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_gender_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_gender_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_gender_type_proto_goTypes = []interface{}{
- (GenderTypeEnum_GenderType)(0), // 0: google.ads.googleads.v16.enums.GenderTypeEnum.GenderType
- (*GenderTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.GenderTypeEnum
+var file_google_ads_googleads_v17_enums_gender_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_gender_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_gender_type_proto_goTypes = []interface{}{
+ (GenderTypeEnum_GenderType)(0), // 0: google.ads.googleads.v17.enums.GenderTypeEnum.GenderType
+ (*GenderTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.GenderTypeEnum
}
-var file_google_ads_googleads_v16_enums_gender_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_gender_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -192,13 +192,13 @@ var file_google_ads_googleads_v16_enums_gender_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_gender_type_proto_init() }
-func file_google_ads_googleads_v16_enums_gender_type_proto_init() {
- if File_google_ads_googleads_v16_enums_gender_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_gender_type_proto_init() }
+func file_google_ads_googleads_v17_enums_gender_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_gender_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_gender_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_gender_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GenderTypeEnum); i {
case 0:
return &v.state
@@ -215,19 +215,19 @@ func file_google_ads_googleads_v16_enums_gender_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_gender_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_gender_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_gender_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_gender_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_gender_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_gender_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_gender_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_gender_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_gender_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_gender_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_gender_type_proto = out.File
- file_google_ads_googleads_v16_enums_gender_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_gender_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_gender_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_gender_type_proto = out.File
+ file_google_ads_googleads_v17_enums_gender_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_gender_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_gender_type_proto_depIdxs = nil
}
diff --git a/enums/geo_target_constant_status.pb.go b/enums/geo_target_constant_status.pb.go
index 28258191..b1a4ec69 100644
--- a/enums/geo_target_constant_status.pb.go
+++ b/enums/geo_target_constant_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/geo_target_constant_status.proto
+// source: google/ads/googleads/v17/enums/geo_target_constant_status.proto
package enums
@@ -77,11 +77,11 @@ func (x GeoTargetConstantStatusEnum_GeoTargetConstantStatus) String() string {
}
func (GeoTargetConstantStatusEnum_GeoTargetConstantStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_enumTypes[0].Descriptor()
}
func (GeoTargetConstantStatusEnum_GeoTargetConstantStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_enumTypes[0]
}
func (x GeoTargetConstantStatusEnum_GeoTargetConstantStatus) Number() protoreflect.EnumNumber {
@@ -90,7 +90,7 @@ func (x GeoTargetConstantStatusEnum_GeoTargetConstantStatus) Number() protorefle
// Deprecated: Use GeoTargetConstantStatusEnum_GeoTargetConstantStatus.Descriptor instead.
func (GeoTargetConstantStatusEnum_GeoTargetConstantStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for describing the status of a geo target constant.
@@ -103,7 +103,7 @@ type GeoTargetConstantStatusEnum struct {
func (x *GeoTargetConstantStatusEnum) Reset() {
*x = GeoTargetConstantStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -116,7 +116,7 @@ func (x *GeoTargetConstantStatusEnum) String() string {
func (*GeoTargetConstantStatusEnum) ProtoMessage() {}
func (x *GeoTargetConstantStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -129,18 +129,18 @@ func (x *GeoTargetConstantStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use GeoTargetConstantStatusEnum.ProtoReflect.Descriptor instead.
func (*GeoTargetConstantStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_geo_target_constant_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_geo_target_constant_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x73,
0x74, 0x61, 0x6e, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x22, 0x78, 0x0a, 0x1b, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f,
0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x59, 0x0a, 0x17, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e,
@@ -150,42 +150,42 @@ var file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_rawDesc
0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x13, 0x0a, 0x0f, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x41,
0x4c, 0x5f, 0x50, 0x4c, 0x41, 0x4e, 0x4e, 0x45, 0x44, 0x10, 0x03, 0x42, 0xf6, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x1c, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e,
0x73, 0x74, 0x61, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_rawDescData = file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_rawDescData = file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_goTypes = []interface{}{
- (GeoTargetConstantStatusEnum_GeoTargetConstantStatus)(0), // 0: google.ads.googleads.v16.enums.GeoTargetConstantStatusEnum.GeoTargetConstantStatus
- (*GeoTargetConstantStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.GeoTargetConstantStatusEnum
+var file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_goTypes = []interface{}{
+ (GeoTargetConstantStatusEnum_GeoTargetConstantStatus)(0), // 0: google.ads.googleads.v17.enums.GeoTargetConstantStatusEnum.GeoTargetConstantStatus
+ (*GeoTargetConstantStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.GeoTargetConstantStatusEnum
}
-var file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -193,13 +193,13 @@ var file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_init() }
-func file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_init() {
- if File_google_ads_googleads_v16_enums_geo_target_constant_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_init() }
+func file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_geo_target_constant_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GeoTargetConstantStatusEnum); i {
case 0:
return &v.state
@@ -216,19 +216,19 @@ func file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_geo_target_constant_status_proto = out.File
- file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_geo_target_constant_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_geo_target_constant_status_proto = out.File
+ file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_geo_target_constant_status_proto_depIdxs = nil
}
diff --git a/enums/geo_targeting_restriction.pb.go b/enums/geo_targeting_restriction.pb.go
index ffa7f997..45f7346c 100644
--- a/enums/geo_targeting_restriction.pb.go
+++ b/enums/geo_targeting_restriction.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/geo_targeting_restriction.proto
+// source: google/ads/googleads/v17/enums/geo_targeting_restriction.proto
package enums
@@ -73,11 +73,11 @@ func (x GeoTargetingRestrictionEnum_GeoTargetingRestriction) String() string {
}
func (GeoTargetingRestrictionEnum_GeoTargetingRestriction) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_enumTypes[0].Descriptor()
}
func (GeoTargetingRestrictionEnum_GeoTargetingRestriction) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_enumTypes[0]
}
func (x GeoTargetingRestrictionEnum_GeoTargetingRestriction) Number() protoreflect.EnumNumber {
@@ -86,7 +86,7 @@ func (x GeoTargetingRestrictionEnum_GeoTargetingRestriction) Number() protorefle
// Deprecated: Use GeoTargetingRestrictionEnum_GeoTargetingRestriction.Descriptor instead.
func (GeoTargetingRestrictionEnum_GeoTargetingRestriction) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing feed item geo targeting restriction.
@@ -99,7 +99,7 @@ type GeoTargetingRestrictionEnum struct {
func (x *GeoTargetingRestrictionEnum) Reset() {
*x = GeoTargetingRestrictionEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -112,7 +112,7 @@ func (x *GeoTargetingRestrictionEnum) String() string {
func (*GeoTargetingRestrictionEnum) ProtoMessage() {}
func (x *GeoTargetingRestrictionEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -125,18 +125,18 @@ func (x *GeoTargetingRestrictionEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use GeoTargetingRestrictionEnum.ProtoReflect.Descriptor instead.
func (*GeoTargetingRestrictionEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_geo_targeting_restriction_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_geo_targeting_restriction_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x72,
0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0x70, 0x0a, 0x1b, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67,
0x52, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x51, 0x0a, 0x17, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x52,
@@ -146,42 +146,42 @@ var file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_rawDesc
0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x4f, 0x46, 0x5f, 0x50, 0x52, 0x45, 0x53, 0x45, 0x4e, 0x43, 0x45,
0x10, 0x02, 0x42, 0xf6, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x47, 0x65, 0x6f, 0x54, 0x61,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x47, 0x65, 0x6f, 0x54, 0x61,
0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69,
0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_rawDescData = file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_rawDesc
+ file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_rawDescData = file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_goTypes = []interface{}{
- (GeoTargetingRestrictionEnum_GeoTargetingRestriction)(0), // 0: google.ads.googleads.v16.enums.GeoTargetingRestrictionEnum.GeoTargetingRestriction
- (*GeoTargetingRestrictionEnum)(nil), // 1: google.ads.googleads.v16.enums.GeoTargetingRestrictionEnum
+var file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_goTypes = []interface{}{
+ (GeoTargetingRestrictionEnum_GeoTargetingRestriction)(0), // 0: google.ads.googleads.v17.enums.GeoTargetingRestrictionEnum.GeoTargetingRestriction
+ (*GeoTargetingRestrictionEnum)(nil), // 1: google.ads.googleads.v17.enums.GeoTargetingRestrictionEnum
}
-var file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -189,13 +189,13 @@ var file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_init() }
-func file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_init() {
- if File_google_ads_googleads_v16_enums_geo_targeting_restriction_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_init() }
+func file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_init() {
+ if File_google_ads_googleads_v17_enums_geo_targeting_restriction_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GeoTargetingRestrictionEnum); i {
case 0:
return &v.state
@@ -212,19 +212,19 @@ func file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_geo_targeting_restriction_proto = out.File
- file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_geo_targeting_restriction_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_geo_targeting_restriction_proto = out.File
+ file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_geo_targeting_restriction_proto_depIdxs = nil
}
diff --git a/enums/geo_targeting_type.pb.go b/enums/geo_targeting_type.pb.go
index 1bc0741d..e017eef9 100644
--- a/enums/geo_targeting_type.pb.go
+++ b/enums/geo_targeting_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/geo_targeting_type.proto
+// source: google/ads/googleads/v17/enums/geo_targeting_type.proto
package enums
@@ -75,11 +75,11 @@ func (x GeoTargetingTypeEnum_GeoTargetingType) String() string {
}
func (GeoTargetingTypeEnum_GeoTargetingType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_geo_targeting_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_geo_targeting_type_proto_enumTypes[0].Descriptor()
}
func (GeoTargetingTypeEnum_GeoTargetingType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_geo_targeting_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_geo_targeting_type_proto_enumTypes[0]
}
func (x GeoTargetingTypeEnum_GeoTargetingType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x GeoTargetingTypeEnum_GeoTargetingType) Number() protoreflect.EnumNumber
// Deprecated: Use GeoTargetingTypeEnum_GeoTargetingType.Descriptor instead.
func (GeoTargetingTypeEnum_GeoTargetingType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_geo_targeting_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_geo_targeting_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible geo targeting types.
@@ -101,7 +101,7 @@ type GeoTargetingTypeEnum struct {
func (x *GeoTargetingTypeEnum) Reset() {
*x = GeoTargetingTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_geo_targeting_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_geo_targeting_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *GeoTargetingTypeEnum) String() string {
func (*GeoTargetingTypeEnum) ProtoMessage() {}
func (x *GeoTargetingTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_geo_targeting_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_geo_targeting_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *GeoTargetingTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use GeoTargetingTypeEnum.ProtoReflect.Descriptor instead.
func (*GeoTargetingTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_geo_targeting_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_geo_targeting_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_geo_targeting_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_geo_targeting_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_geo_targeting_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_geo_targeting_type_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x74,
0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x78, 0x0a, 0x14, 0x47, 0x65, 0x6f,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x78, 0x0a, 0x14, 0x47, 0x65, 0x6f,
0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x60, 0x0a, 0x10, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e,
0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49,
@@ -148,41 +148,41 @@ var file_google_ads_googleads_v16_enums_geo_targeting_type_proto_rawDesc = []byt
0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x4f, 0x46, 0x5f, 0x50, 0x52, 0x45, 0x53, 0x45, 0x4e, 0x43,
0x45, 0x10, 0x03, 0x42, 0xef, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x47, 0x65, 0x6f, 0x54,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x47, 0x65, 0x6f, 0x54,
0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_geo_targeting_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_geo_targeting_type_proto_rawDescData = file_google_ads_googleads_v16_enums_geo_targeting_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_geo_targeting_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_geo_targeting_type_proto_rawDescData = file_google_ads_googleads_v17_enums_geo_targeting_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_geo_targeting_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_geo_targeting_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_geo_targeting_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_geo_targeting_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_geo_targeting_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_geo_targeting_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_geo_targeting_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_geo_targeting_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_geo_targeting_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_geo_targeting_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_geo_targeting_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_geo_targeting_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_geo_targeting_type_proto_goTypes = []interface{}{
- (GeoTargetingTypeEnum_GeoTargetingType)(0), // 0: google.ads.googleads.v16.enums.GeoTargetingTypeEnum.GeoTargetingType
- (*GeoTargetingTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.GeoTargetingTypeEnum
+var file_google_ads_googleads_v17_enums_geo_targeting_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_geo_targeting_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_geo_targeting_type_proto_goTypes = []interface{}{
+ (GeoTargetingTypeEnum_GeoTargetingType)(0), // 0: google.ads.googleads.v17.enums.GeoTargetingTypeEnum.GeoTargetingType
+ (*GeoTargetingTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.GeoTargetingTypeEnum
}
-var file_google_ads_googleads_v16_enums_geo_targeting_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_geo_targeting_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_enums_geo_targeting_type_proto_depIdxs = []int
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_geo_targeting_type_proto_init() }
-func file_google_ads_googleads_v16_enums_geo_targeting_type_proto_init() {
- if File_google_ads_googleads_v16_enums_geo_targeting_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_geo_targeting_type_proto_init() }
+func file_google_ads_googleads_v17_enums_geo_targeting_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_geo_targeting_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_geo_targeting_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_geo_targeting_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GeoTargetingTypeEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_enums_geo_targeting_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_geo_targeting_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_geo_targeting_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_geo_targeting_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_geo_targeting_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_geo_targeting_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_geo_targeting_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_geo_targeting_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_geo_targeting_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_geo_targeting_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_geo_targeting_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_geo_targeting_type_proto = out.File
- file_google_ads_googleads_v16_enums_geo_targeting_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_geo_targeting_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_geo_targeting_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_geo_targeting_type_proto = out.File
+ file_google_ads_googleads_v17_enums_geo_targeting_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_geo_targeting_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_geo_targeting_type_proto_depIdxs = nil
}
diff --git a/enums/goal_config_level.pb.go b/enums/goal_config_level.pb.go
index ef25444f..c3a8697c 100644
--- a/enums/goal_config_level.pb.go
+++ b/enums/goal_config_level.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/goal_config_level.proto
+// source: google/ads/googleads/v17/enums/goal_config_level.proto
package enums
@@ -77,11 +77,11 @@ func (x GoalConfigLevelEnum_GoalConfigLevel) String() string {
}
func (GoalConfigLevelEnum_GoalConfigLevel) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_goal_config_level_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_goal_config_level_proto_enumTypes[0].Descriptor()
}
func (GoalConfigLevelEnum_GoalConfigLevel) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_goal_config_level_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_goal_config_level_proto_enumTypes[0]
}
func (x GoalConfigLevelEnum_GoalConfigLevel) Number() protoreflect.EnumNumber {
@@ -90,7 +90,7 @@ func (x GoalConfigLevelEnum_GoalConfigLevel) Number() protoreflect.EnumNumber {
// Deprecated: Use GoalConfigLevelEnum_GoalConfigLevel.Descriptor instead.
func (GoalConfigLevelEnum_GoalConfigLevel) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_goal_config_level_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_goal_config_level_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible goal config levels.
@@ -103,7 +103,7 @@ type GoalConfigLevelEnum struct {
func (x *GoalConfigLevelEnum) Reset() {
*x = GoalConfigLevelEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_goal_config_level_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_goal_config_level_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -116,7 +116,7 @@ func (x *GoalConfigLevelEnum) String() string {
func (*GoalConfigLevelEnum) ProtoMessage() {}
func (x *GoalConfigLevelEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_goal_config_level_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_goal_config_level_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -129,18 +129,18 @@ func (x *GoalConfigLevelEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use GoalConfigLevelEnum.ProtoReflect.Descriptor instead.
func (*GoalConfigLevelEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_goal_config_level_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_goal_config_level_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_goal_config_level_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_goal_config_level_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_goal_config_level_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_goal_config_level_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x6c, 0x65, 0x76,
0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x62, 0x0a, 0x13, 0x47, 0x6f, 0x61, 0x6c,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x62, 0x0a, 0x13, 0x47, 0x6f, 0x61, 0x6c,
0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x4b, 0x0a, 0x0f, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4c, 0x65, 0x76,
0x65, 0x6c, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_enums_goal_config_level_proto_rawDesc = []byte
0x12, 0x0c, 0x0a, 0x08, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x45, 0x52, 0x10, 0x02, 0x12, 0x0c,
0x0a, 0x08, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x10, 0x03, 0x42, 0xee, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x14, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x4c,
0x65, 0x76, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_goal_config_level_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_goal_config_level_proto_rawDescData = file_google_ads_googleads_v16_enums_goal_config_level_proto_rawDesc
+ file_google_ads_googleads_v17_enums_goal_config_level_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_goal_config_level_proto_rawDescData = file_google_ads_googleads_v17_enums_goal_config_level_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_goal_config_level_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_goal_config_level_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_goal_config_level_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_goal_config_level_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_goal_config_level_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_goal_config_level_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_goal_config_level_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_goal_config_level_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_goal_config_level_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_goal_config_level_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_goal_config_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_goal_config_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_goal_config_level_proto_goTypes = []interface{}{
- (GoalConfigLevelEnum_GoalConfigLevel)(0), // 0: google.ads.googleads.v16.enums.GoalConfigLevelEnum.GoalConfigLevel
- (*GoalConfigLevelEnum)(nil), // 1: google.ads.googleads.v16.enums.GoalConfigLevelEnum
+var file_google_ads_googleads_v17_enums_goal_config_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_goal_config_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_goal_config_level_proto_goTypes = []interface{}{
+ (GoalConfigLevelEnum_GoalConfigLevel)(0), // 0: google.ads.googleads.v17.enums.GoalConfigLevelEnum.GoalConfigLevel
+ (*GoalConfigLevelEnum)(nil), // 1: google.ads.googleads.v17.enums.GoalConfigLevelEnum
}
-var file_google_ads_googleads_v16_enums_goal_config_level_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_goal_config_level_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_goal_config_level_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_goal_config_level_proto_init() }
-func file_google_ads_googleads_v16_enums_goal_config_level_proto_init() {
- if File_google_ads_googleads_v16_enums_goal_config_level_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_goal_config_level_proto_init() }
+func file_google_ads_googleads_v17_enums_goal_config_level_proto_init() {
+ if File_google_ads_googleads_v17_enums_goal_config_level_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_goal_config_level_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_goal_config_level_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GoalConfigLevelEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_goal_config_level_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_goal_config_level_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_goal_config_level_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_goal_config_level_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_goal_config_level_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_goal_config_level_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_goal_config_level_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_goal_config_level_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_goal_config_level_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_goal_config_level_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_goal_config_level_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_goal_config_level_proto = out.File
- file_google_ads_googleads_v16_enums_goal_config_level_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_goal_config_level_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_goal_config_level_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_goal_config_level_proto = out.File
+ file_google_ads_googleads_v17_enums_goal_config_level_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_goal_config_level_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_goal_config_level_proto_depIdxs = nil
}
diff --git a/enums/google_ads_field_category.pb.go b/enums/google_ads_field_category.pb.go
index ae4de65e..2c0c8691 100644
--- a/enums/google_ads_field_category.pb.go
+++ b/enums/google_ads_field_category.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/google_ads_field_category.proto
+// source: google/ads/googleads/v17/enums/google_ads_field_category.proto
package enums
@@ -87,11 +87,11 @@ func (x GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory) String() string {
}
func (GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_google_ads_field_category_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_google_ads_field_category_proto_enumTypes[0].Descriptor()
}
func (GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_google_ads_field_category_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_google_ads_field_category_proto_enumTypes[0]
}
func (x GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory) Number() protoreflect
// Deprecated: Use GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory.Descriptor instead.
func (GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_google_ads_field_category_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_google_ads_field_category_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum that determines if the described artifact is a resource
@@ -114,7 +114,7 @@ type GoogleAdsFieldCategoryEnum struct {
func (x *GoogleAdsFieldCategoryEnum) Reset() {
*x = GoogleAdsFieldCategoryEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_google_ads_field_category_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_google_ads_field_category_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -127,7 +127,7 @@ func (x *GoogleAdsFieldCategoryEnum) String() string {
func (*GoogleAdsFieldCategoryEnum) ProtoMessage() {}
func (x *GoogleAdsFieldCategoryEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_google_ads_field_category_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_google_ads_field_category_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -140,18 +140,18 @@ func (x *GoogleAdsFieldCategoryEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use GoogleAdsFieldCategoryEnum.ProtoReflect.Descriptor instead.
func (*GoogleAdsFieldCategoryEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_google_ads_field_category_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_google_ads_field_category_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_google_ads_field_category_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_google_ads_field_category_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_google_ads_field_category_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_google_ads_field_category_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x61, 0x64, 0x73, 0x5f, 0x66, 0x69, 0x65, 0x6c,
0x64, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0x8a, 0x01, 0x0a, 0x1a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x46, 0x69,
0x65, 0x6c, 0x64, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x6c, 0x0a, 0x16, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x46, 0x69, 0x65, 0x6c,
@@ -162,42 +162,42 @@ var file_google_ads_googleads_v16_enums_google_ads_field_category_proto_rawDesc
0x54, 0x45, 0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07, 0x53, 0x45, 0x47, 0x4d, 0x45, 0x4e, 0x54, 0x10,
0x05, 0x12, 0x0a, 0x0a, 0x06, 0x4d, 0x45, 0x54, 0x52, 0x49, 0x43, 0x10, 0x06, 0x42, 0xf5, 0x01,
0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x46,
0x69, 0x65, 0x6c, 0x64, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_google_ads_field_category_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_google_ads_field_category_proto_rawDescData = file_google_ads_googleads_v16_enums_google_ads_field_category_proto_rawDesc
+ file_google_ads_googleads_v17_enums_google_ads_field_category_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_google_ads_field_category_proto_rawDescData = file_google_ads_googleads_v17_enums_google_ads_field_category_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_google_ads_field_category_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_google_ads_field_category_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_google_ads_field_category_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_google_ads_field_category_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_google_ads_field_category_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_google_ads_field_category_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_google_ads_field_category_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_google_ads_field_category_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_google_ads_field_category_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_google_ads_field_category_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_google_ads_field_category_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_google_ads_field_category_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_google_ads_field_category_proto_goTypes = []interface{}{
- (GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory)(0), // 0: google.ads.googleads.v16.enums.GoogleAdsFieldCategoryEnum.GoogleAdsFieldCategory
- (*GoogleAdsFieldCategoryEnum)(nil), // 1: google.ads.googleads.v16.enums.GoogleAdsFieldCategoryEnum
+var file_google_ads_googleads_v17_enums_google_ads_field_category_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_google_ads_field_category_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_google_ads_field_category_proto_goTypes = []interface{}{
+ (GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory)(0), // 0: google.ads.googleads.v17.enums.GoogleAdsFieldCategoryEnum.GoogleAdsFieldCategory
+ (*GoogleAdsFieldCategoryEnum)(nil), // 1: google.ads.googleads.v17.enums.GoogleAdsFieldCategoryEnum
}
-var file_google_ads_googleads_v16_enums_google_ads_field_category_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_google_ads_field_category_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -205,13 +205,13 @@ var file_google_ads_googleads_v16_enums_google_ads_field_category_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_google_ads_field_category_proto_init() }
-func file_google_ads_googleads_v16_enums_google_ads_field_category_proto_init() {
- if File_google_ads_googleads_v16_enums_google_ads_field_category_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_google_ads_field_category_proto_init() }
+func file_google_ads_googleads_v17_enums_google_ads_field_category_proto_init() {
+ if File_google_ads_googleads_v17_enums_google_ads_field_category_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_google_ads_field_category_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_google_ads_field_category_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GoogleAdsFieldCategoryEnum); i {
case 0:
return &v.state
@@ -228,19 +228,19 @@ func file_google_ads_googleads_v16_enums_google_ads_field_category_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_google_ads_field_category_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_google_ads_field_category_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_google_ads_field_category_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_google_ads_field_category_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_google_ads_field_category_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_google_ads_field_category_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_google_ads_field_category_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_google_ads_field_category_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_google_ads_field_category_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_google_ads_field_category_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_google_ads_field_category_proto = out.File
- file_google_ads_googleads_v16_enums_google_ads_field_category_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_google_ads_field_category_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_google_ads_field_category_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_google_ads_field_category_proto = out.File
+ file_google_ads_googleads_v17_enums_google_ads_field_category_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_google_ads_field_category_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_google_ads_field_category_proto_depIdxs = nil
}
diff --git a/enums/google_ads_field_data_type.pb.go b/enums/google_ads_field_data_type.pb.go
index deeffb27..2ecdfb66 100644
--- a/enums/google_ads_field_data_type.pb.go
+++ b/enums/google_ads_field_data_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/google_ads_field_data_type.proto
+// source: google/ads/googleads/v17/enums/google_ads_field_data_type.proto
package enums
@@ -136,11 +136,11 @@ func (x GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType) String() string {
}
func (GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_enumTypes[0].Descriptor()
}
func (GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_enumTypes[0]
}
func (x GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType) Number() protoreflect.EnumNumber {
@@ -149,7 +149,7 @@ func (x GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType) Number() protoreflect
// Deprecated: Use GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType.Descriptor instead.
func (GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container holding the various data types.
@@ -162,7 +162,7 @@ type GoogleAdsFieldDataTypeEnum struct {
func (x *GoogleAdsFieldDataTypeEnum) Reset() {
*x = GoogleAdsFieldDataTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -175,7 +175,7 @@ func (x *GoogleAdsFieldDataTypeEnum) String() string {
func (*GoogleAdsFieldDataTypeEnum) ProtoMessage() {}
func (x *GoogleAdsFieldDataTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -188,18 +188,18 @@ func (x *GoogleAdsFieldDataTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use GoogleAdsFieldDataTypeEnum.ProtoReflect.Descriptor instead.
func (*GoogleAdsFieldDataTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_google_ads_field_data_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_google_ads_field_data_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x61, 0x64, 0x73, 0x5f, 0x66, 0x69, 0x65, 0x6c,
0x64, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x22, 0xdb, 0x01, 0x0a, 0x1a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x46,
0x69, 0x65, 0x6c, 0x64, 0x44, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0xbc, 0x01, 0x0a, 0x16, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x46, 0x69,
@@ -215,42 +215,42 @@ var file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_rawDesc
0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x0a, 0x12, 0x0a, 0x0a, 0x06, 0x53, 0x54, 0x52, 0x49, 0x4e,
0x47, 0x10, 0x0b, 0x12, 0x0a, 0x0a, 0x06, 0x55, 0x49, 0x4e, 0x54, 0x36, 0x34, 0x10, 0x0c, 0x42,
0xf5, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
0x73, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x44, 0x61, 0x74, 0x61, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_rawDescData = file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_rawDescData = file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_goTypes = []interface{}{
- (GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType)(0), // 0: google.ads.googleads.v16.enums.GoogleAdsFieldDataTypeEnum.GoogleAdsFieldDataType
- (*GoogleAdsFieldDataTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.GoogleAdsFieldDataTypeEnum
+var file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_goTypes = []interface{}{
+ (GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType)(0), // 0: google.ads.googleads.v17.enums.GoogleAdsFieldDataTypeEnum.GoogleAdsFieldDataType
+ (*GoogleAdsFieldDataTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.GoogleAdsFieldDataTypeEnum
}
-var file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -258,13 +258,13 @@ var file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_init() }
-func file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_init() {
- if File_google_ads_googleads_v16_enums_google_ads_field_data_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_init() }
+func file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_google_ads_field_data_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GoogleAdsFieldDataTypeEnum); i {
case 0:
return &v.state
@@ -281,19 +281,19 @@ func file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_google_ads_field_data_type_proto = out.File
- file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_google_ads_field_data_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_google_ads_field_data_type_proto = out.File
+ file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_google_ads_field_data_type_proto_depIdxs = nil
}
diff --git a/enums/google_voice_call_status.pb.go b/enums/google_voice_call_status.pb.go
index 26fd5648..77c3503c 100644
--- a/enums/google_voice_call_status.pb.go
+++ b/enums/google_voice_call_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/google_voice_call_status.proto
+// source: google/ads/googleads/v17/enums/google_voice_call_status.proto
package enums
@@ -75,11 +75,11 @@ func (x GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus) String() string {
}
func (GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_google_voice_call_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_google_voice_call_status_proto_enumTypes[0].Descriptor()
}
func (GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_google_voice_call_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_google_voice_call_status_proto_enumTypes[0]
}
func (x GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus) Number() protoreflect.E
// Deprecated: Use GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus.Descriptor instead.
func (GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_google_voice_call_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_google_voice_call_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of a google voice call.
@@ -101,7 +101,7 @@ type GoogleVoiceCallStatusEnum struct {
func (x *GoogleVoiceCallStatusEnum) Reset() {
*x = GoogleVoiceCallStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_google_voice_call_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_google_voice_call_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *GoogleVoiceCallStatusEnum) String() string {
func (*GoogleVoiceCallStatusEnum) ProtoMessage() {}
func (x *GoogleVoiceCallStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_google_voice_call_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_google_voice_call_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *GoogleVoiceCallStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use GoogleVoiceCallStatusEnum.ProtoReflect.Descriptor instead.
func (*GoogleVoiceCallStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_google_voice_call_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_google_voice_call_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_google_voice_call_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_google_voice_call_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_google_voice_call_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_google_voice_call_status_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5f, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x5f, 0x63, 0x61,
0x6c, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
0x6c, 0x0a, 0x19, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x43, 0x61,
0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4f, 0x0a, 0x15,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x43, 0x61, 0x6c, 0x6c, 0x53,
@@ -147,42 +147,42 @@ var file_google_ads_googleads_v16_enums_google_voice_call_status_proto_rawDesc =
0x4e, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x4d, 0x49, 0x53, 0x53, 0x45, 0x44, 0x10, 0x02, 0x12,
0x0c, 0x0a, 0x08, 0x52, 0x45, 0x43, 0x45, 0x49, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42, 0xf4, 0x01,
0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x56, 0x6f, 0x69, 0x63,
0x65, 0x43, 0x61, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_google_voice_call_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_google_voice_call_status_proto_rawDescData = file_google_ads_googleads_v16_enums_google_voice_call_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_google_voice_call_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_google_voice_call_status_proto_rawDescData = file_google_ads_googleads_v17_enums_google_voice_call_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_google_voice_call_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_google_voice_call_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_google_voice_call_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_google_voice_call_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_google_voice_call_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_google_voice_call_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_google_voice_call_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_google_voice_call_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_google_voice_call_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_google_voice_call_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_google_voice_call_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_google_voice_call_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_google_voice_call_status_proto_goTypes = []interface{}{
- (GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus)(0), // 0: google.ads.googleads.v16.enums.GoogleVoiceCallStatusEnum.GoogleVoiceCallStatus
- (*GoogleVoiceCallStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.GoogleVoiceCallStatusEnum
+var file_google_ads_googleads_v17_enums_google_voice_call_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_google_voice_call_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_google_voice_call_status_proto_goTypes = []interface{}{
+ (GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus)(0), // 0: google.ads.googleads.v17.enums.GoogleVoiceCallStatusEnum.GoogleVoiceCallStatus
+ (*GoogleVoiceCallStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.GoogleVoiceCallStatusEnum
}
-var file_google_ads_googleads_v16_enums_google_voice_call_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_google_voice_call_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_enums_google_voice_call_status_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_google_voice_call_status_proto_init() }
-func file_google_ads_googleads_v16_enums_google_voice_call_status_proto_init() {
- if File_google_ads_googleads_v16_enums_google_voice_call_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_google_voice_call_status_proto_init() }
+func file_google_ads_googleads_v17_enums_google_voice_call_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_google_voice_call_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_google_voice_call_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_google_voice_call_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GoogleVoiceCallStatusEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_enums_google_voice_call_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_google_voice_call_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_google_voice_call_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_google_voice_call_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_google_voice_call_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_google_voice_call_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_google_voice_call_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_google_voice_call_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_google_voice_call_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_google_voice_call_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_google_voice_call_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_google_voice_call_status_proto = out.File
- file_google_ads_googleads_v16_enums_google_voice_call_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_google_voice_call_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_google_voice_call_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_google_voice_call_status_proto = out.File
+ file_google_ads_googleads_v17_enums_google_voice_call_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_google_voice_call_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_google_voice_call_status_proto_depIdxs = nil
}
diff --git a/enums/hotel_asset_suggestion_status.pb.go b/enums/hotel_asset_suggestion_status.pb.go
index 6e00860d..85453181 100644
--- a/enums/hotel_asset_suggestion_status.pb.go
+++ b/enums/hotel_asset_suggestion_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/hotel_asset_suggestion_status.proto
+// source: google/ads/googleads/v17/enums/hotel_asset_suggestion_status.proto
package enums
@@ -79,11 +79,11 @@ func (x HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus) String() stri
}
func (HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_enumTypes[0].Descriptor()
}
func (HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_enumTypes[0]
}
func (x HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus) Number() prot
// Deprecated: Use HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus.Descriptor instead.
func (HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of a hotel asset suggestion.
@@ -105,7 +105,7 @@ type HotelAssetSuggestionStatusEnum struct {
func (x *HotelAssetSuggestionStatusEnum) Reset() {
*x = HotelAssetSuggestionStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *HotelAssetSuggestionStatusEnum) String() string {
func (*HotelAssetSuggestionStatusEnum) ProtoMessage() {}
func (x *HotelAssetSuggestionStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *HotelAssetSuggestionStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelAssetSuggestionStatusEnum.ProtoReflect.Descriptor instead.
func (*HotelAssetSuggestionStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_rawDesc = []byte{
0x0a, 0x42, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x75, 0x67,
0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x22, 0x94, 0x01, 0x0a, 0x1e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x41, 0x73,
0x73, 0x65, 0x74, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x72, 0x0a, 0x1a, 0x48, 0x6f, 0x74, 0x65, 0x6c,
@@ -154,42 +154,42 @@ var file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_rawD
0x55, 0x4e, 0x44, 0x10, 0x03, 0x12, 0x14, 0x0a, 0x10, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44,
0x5f, 0x50, 0x4c, 0x41, 0x43, 0x45, 0x5f, 0x49, 0x44, 0x10, 0x04, 0x42, 0xf9, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x1f, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x75,
0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_rawDescData = file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_rawDescData = file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_goTypes = []interface{}{
- (HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus)(0), // 0: google.ads.googleads.v16.enums.HotelAssetSuggestionStatusEnum.HotelAssetSuggestionStatus
- (*HotelAssetSuggestionStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.HotelAssetSuggestionStatusEnum
+var file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_goTypes = []interface{}{
+ (HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus)(0), // 0: google.ads.googleads.v17.enums.HotelAssetSuggestionStatusEnum.HotelAssetSuggestionStatus
+ (*HotelAssetSuggestionStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.HotelAssetSuggestionStatusEnum
}
-var file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_depI
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_init() }
-func file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_init() {
- if File_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_init() }
+func file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelAssetSuggestionStatusEnum); i {
case 0:
return &v.state
@@ -220,19 +220,19 @@ func file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_ini
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto = out.File
- file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_hotel_asset_suggestion_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto = out.File
+ file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_hotel_asset_suggestion_status_proto_depIdxs = nil
}
diff --git a/enums/hotel_date_selection_type.pb.go b/enums/hotel_date_selection_type.pb.go
index dcc98ad3..cb3d1834 100644
--- a/enums/hotel_date_selection_type.pb.go
+++ b/enums/hotel_date_selection_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/hotel_date_selection_type.proto
+// source: google/ads/googleads/v17/enums/hotel_date_selection_type.proto
package enums
@@ -75,11 +75,11 @@ func (x HotelDateSelectionTypeEnum_HotelDateSelectionType) String() string {
}
func (HotelDateSelectionTypeEnum_HotelDateSelectionType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_enumTypes[0].Descriptor()
}
func (HotelDateSelectionTypeEnum_HotelDateSelectionType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_enumTypes[0]
}
func (x HotelDateSelectionTypeEnum_HotelDateSelectionType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x HotelDateSelectionTypeEnum_HotelDateSelectionType) Number() protoreflect
// Deprecated: Use HotelDateSelectionTypeEnum_HotelDateSelectionType.Descriptor instead.
func (HotelDateSelectionTypeEnum_HotelDateSelectionType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible hotel date selection types
@@ -101,7 +101,7 @@ type HotelDateSelectionTypeEnum struct {
func (x *HotelDateSelectionTypeEnum) Reset() {
*x = HotelDateSelectionTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *HotelDateSelectionTypeEnum) String() string {
func (*HotelDateSelectionTypeEnum) ProtoMessage() {}
func (x *HotelDateSelectionTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *HotelDateSelectionTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelDateSelectionTypeEnum.ProtoReflect.Descriptor instead.
func (*HotelDateSelectionTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_hotel_date_selection_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_hotel_date_selection_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x73, 0x65, 0x6c, 0x65,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0x7e, 0x0a, 0x1a, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x44, 0x61, 0x74, 0x65, 0x53, 0x65, 0x6c,
0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x60,
0x0a, 0x16, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x44, 0x61, 0x74, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63,
@@ -149,41 +149,41 @@ var file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_rawDesc
0x0d, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x53, 0x45, 0x4c, 0x45, 0x43, 0x54, 0x45, 0x44, 0x10, 0x33,
0x42, 0xf5, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x44, 0x61,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x44, 0x61,
0x74, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_rawDescData = file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_rawDescData = file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_goTypes = []interface{}{
- (HotelDateSelectionTypeEnum_HotelDateSelectionType)(0), // 0: google.ads.googleads.v16.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType
- (*HotelDateSelectionTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.HotelDateSelectionTypeEnum
+var file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_goTypes = []interface{}{
+ (HotelDateSelectionTypeEnum_HotelDateSelectionType)(0), // 0: google.ads.googleads.v17.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType
+ (*HotelDateSelectionTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.HotelDateSelectionTypeEnum
}
-var file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_init() }
-func file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_init() {
- if File_google_ads_googleads_v16_enums_hotel_date_selection_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_init() }
+func file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_hotel_date_selection_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelDateSelectionTypeEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_hotel_date_selection_type_proto = out.File
- file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_hotel_date_selection_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_hotel_date_selection_type_proto = out.File
+ file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_hotel_date_selection_type_proto_depIdxs = nil
}
diff --git a/enums/hotel_placeholder_field.pb.go b/enums/hotel_placeholder_field.pb.go
index b09ff37f..7c3131fd 100644
--- a/enums/hotel_placeholder_field.pb.go
+++ b/enums/hotel_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/hotel_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/hotel_placeholder_field.proto
package enums
@@ -167,11 +167,11 @@ func (x HotelPlaceholderFieldEnum_HotelPlaceholderField) String() string {
}
func (HotelPlaceholderFieldEnum_HotelPlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (HotelPlaceholderFieldEnum_HotelPlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_enumTypes[0]
}
func (x HotelPlaceholderFieldEnum_HotelPlaceholderField) Number() protoreflect.EnumNumber {
@@ -180,7 +180,7 @@ func (x HotelPlaceholderFieldEnum_HotelPlaceholderField) Number() protoreflect.E
// Deprecated: Use HotelPlaceholderFieldEnum_HotelPlaceholderField.Descriptor instead.
func (HotelPlaceholderFieldEnum_HotelPlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Hotel placeholder fields.
@@ -195,7 +195,7 @@ type HotelPlaceholderFieldEnum struct {
func (x *HotelPlaceholderFieldEnum) Reset() {
*x = HotelPlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -208,7 +208,7 @@ func (x *HotelPlaceholderFieldEnum) String() string {
func (*HotelPlaceholderFieldEnum) ProtoMessage() {}
func (x *HotelPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -221,18 +221,18 @@ func (x *HotelPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelPlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*HotelPlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_hotel_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_hotel_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64,
0x65, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xcd,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xcd,
0x03, 0x0a, 0x19, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c,
0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xaf, 0x03, 0x0a,
0x15, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65,
@@ -263,42 +263,42 @@ var file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_rawDesc =
0x50, 0x5f, 0x4c, 0x49, 0x4e, 0x4b, 0x10, 0x14, 0x12, 0x14, 0x0a, 0x10, 0x49, 0x4f, 0x53, 0x5f,
0x41, 0x50, 0x50, 0x5f, 0x53, 0x54, 0x4f, 0x52, 0x45, 0x5f, 0x49, 0x44, 0x10, 0x15, 0x42, 0xf5,
0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x73, 0x50, 0x6c, 0x61,
0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_goTypes = []interface{}{
- (HotelPlaceholderFieldEnum_HotelPlaceholderField)(0), // 0: google.ads.googleads.v16.enums.HotelPlaceholderFieldEnum.HotelPlaceholderField
- (*HotelPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.HotelPlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_goTypes = []interface{}{
+ (HotelPlaceholderFieldEnum_HotelPlaceholderField)(0), // 0: google.ads.googleads.v17.enums.HotelPlaceholderFieldEnum.HotelPlaceholderField
+ (*HotelPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.HotelPlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -306,13 +306,13 @@ var file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_hotel_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_hotel_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelPlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -329,19 +329,19 @@ func file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_hotel_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_hotel_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_hotel_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_hotel_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/hotel_price_bucket.pb.go b/enums/hotel_price_bucket.pb.go
index e16d0e13..114020f9 100644
--- a/enums/hotel_price_bucket.pb.go
+++ b/enums/hotel_price_bucket.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/hotel_price_bucket.proto
+// source: google/ads/googleads/v17/enums/hotel_price_bucket.proto
package enums
@@ -86,11 +86,11 @@ func (x HotelPriceBucketEnum_HotelPriceBucket) String() string {
}
func (HotelPriceBucketEnum_HotelPriceBucket) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_enumTypes[0].Descriptor()
}
func (HotelPriceBucketEnum_HotelPriceBucket) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_enumTypes[0]
}
func (x HotelPriceBucketEnum_HotelPriceBucket) Number() protoreflect.EnumNumber {
@@ -99,7 +99,7 @@ func (x HotelPriceBucketEnum_HotelPriceBucket) Number() protoreflect.EnumNumber
// Deprecated: Use HotelPriceBucketEnum_HotelPriceBucket.Descriptor instead.
func (HotelPriceBucketEnum_HotelPriceBucket) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing hotel price bucket for a hotel itinerary.
@@ -112,7 +112,7 @@ type HotelPriceBucketEnum struct {
func (x *HotelPriceBucketEnum) Reset() {
*x = HotelPriceBucketEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -125,7 +125,7 @@ func (x *HotelPriceBucketEnum) String() string {
func (*HotelPriceBucketEnum) ProtoMessage() {}
func (x *HotelPriceBucketEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -138,18 +138,18 @@ func (x *HotelPriceBucketEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelPriceBucketEnum.ProtoReflect.Descriptor instead.
func (*HotelPriceBucketEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_hotel_price_bucket_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_hotel_price_bucket_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x62, 0x75, 0x63,
0x6b, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x94, 0x01, 0x0a, 0x14, 0x48, 0x6f,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x94, 0x01, 0x0a, 0x14, 0x48, 0x6f,
0x74, 0x65, 0x6c, 0x50, 0x72, 0x69, 0x63, 0x65, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0x7c, 0x0a, 0x10, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x72, 0x69, 0x63, 0x65,
0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
@@ -161,41 +161,41 @@ var file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_rawDesc = []byt
0x5f, 0x50, 0x41, 0x52, 0x54, 0x4e, 0x45, 0x52, 0x5f, 0x53, 0x48, 0x4f, 0x57, 0x4e, 0x10, 0x05,
0x42, 0xef, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x72,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x72,
0x69, 0x63, 0x65, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_rawDescData = file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_rawDesc
+ file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_rawDescData = file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_goTypes = []interface{}{
- (HotelPriceBucketEnum_HotelPriceBucket)(0), // 0: google.ads.googleads.v16.enums.HotelPriceBucketEnum.HotelPriceBucket
- (*HotelPriceBucketEnum)(nil), // 1: google.ads.googleads.v16.enums.HotelPriceBucketEnum
+var file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_goTypes = []interface{}{
+ (HotelPriceBucketEnum_HotelPriceBucket)(0), // 0: google.ads.googleads.v17.enums.HotelPriceBucketEnum.HotelPriceBucket
+ (*HotelPriceBucketEnum)(nil), // 1: google.ads.googleads.v17.enums.HotelPriceBucketEnum
}
-var file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -203,13 +203,13 @@ var file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_depIdxs = []int
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_init() }
-func file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_init() {
- if File_google_ads_googleads_v16_enums_hotel_price_bucket_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_init() }
+func file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_init() {
+ if File_google_ads_googleads_v17_enums_hotel_price_bucket_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelPriceBucketEnum); i {
case 0:
return &v.state
@@ -226,19 +226,19 @@ func file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_hotel_price_bucket_proto = out.File
- file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_hotel_price_bucket_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_hotel_price_bucket_proto = out.File
+ file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_hotel_price_bucket_proto_depIdxs = nil
}
diff --git a/enums/hotel_rate_type.pb.go b/enums/hotel_rate_type.pb.go
index fa814d49..30ed4bb2 100644
--- a/enums/hotel_rate_type.pb.go
+++ b/enums/hotel_rate_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/hotel_rate_type.proto
+// source: google/ads/googleads/v17/enums/hotel_rate_type.proto
package enums
@@ -89,11 +89,11 @@ func (x HotelRateTypeEnum_HotelRateType) String() string {
}
func (HotelRateTypeEnum_HotelRateType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_hotel_rate_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_hotel_rate_type_proto_enumTypes[0].Descriptor()
}
func (HotelRateTypeEnum_HotelRateType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_hotel_rate_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_hotel_rate_type_proto_enumTypes[0]
}
func (x HotelRateTypeEnum_HotelRateType) Number() protoreflect.EnumNumber {
@@ -102,7 +102,7 @@ func (x HotelRateTypeEnum_HotelRateType) Number() protoreflect.EnumNumber {
// Deprecated: Use HotelRateTypeEnum_HotelRateType.Descriptor instead.
func (HotelRateTypeEnum_HotelRateType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_hotel_rate_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_hotel_rate_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible hotel rate types.
@@ -115,7 +115,7 @@ type HotelRateTypeEnum struct {
func (x *HotelRateTypeEnum) Reset() {
*x = HotelRateTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_hotel_rate_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_hotel_rate_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -128,7 +128,7 @@ func (x *HotelRateTypeEnum) String() string {
func (*HotelRateTypeEnum) ProtoMessage() {}
func (x *HotelRateTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_hotel_rate_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_hotel_rate_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -141,17 +141,17 @@ func (x *HotelRateTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelRateTypeEnum.ProtoReflect.Descriptor instead.
func (*HotelRateTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_hotel_rate_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_hotel_rate_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_hotel_rate_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_hotel_rate_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_hotel_rate_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_hotel_rate_type_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8a, 0x01, 0x0a, 0x11, 0x48, 0x6f, 0x74, 0x65, 0x6c,
0x52, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x75, 0x0a, 0x0d,
0x48, 0x6f, 0x74, 0x65, 0x6c, 0x52, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a,
@@ -163,41 +163,41 @@ var file_google_ads_googleads_v16_enums_hotel_rate_type_proto_rawDesc = []byte{
0x04, 0x12, 0x10, 0x0a, 0x0c, 0x50, 0x52, 0x49, 0x56, 0x41, 0x54, 0x45, 0x5f, 0x52, 0x41, 0x54,
0x45, 0x10, 0x05, 0x42, 0xec, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x48, 0x6f, 0x74, 0x65,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x48, 0x6f, 0x74, 0x65,
0x6c, 0x52, 0x61, 0x74, 0x65, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_hotel_rate_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_hotel_rate_type_proto_rawDescData = file_google_ads_googleads_v16_enums_hotel_rate_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_hotel_rate_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_hotel_rate_type_proto_rawDescData = file_google_ads_googleads_v17_enums_hotel_rate_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_hotel_rate_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_hotel_rate_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_hotel_rate_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_hotel_rate_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_hotel_rate_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_hotel_rate_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_hotel_rate_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_hotel_rate_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_hotel_rate_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_hotel_rate_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_hotel_rate_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_hotel_rate_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_hotel_rate_type_proto_goTypes = []interface{}{
- (HotelRateTypeEnum_HotelRateType)(0), // 0: google.ads.googleads.v16.enums.HotelRateTypeEnum.HotelRateType
- (*HotelRateTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.HotelRateTypeEnum
+var file_google_ads_googleads_v17_enums_hotel_rate_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_hotel_rate_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_hotel_rate_type_proto_goTypes = []interface{}{
+ (HotelRateTypeEnum_HotelRateType)(0), // 0: google.ads.googleads.v17.enums.HotelRateTypeEnum.HotelRateType
+ (*HotelRateTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.HotelRateTypeEnum
}
-var file_google_ads_googleads_v16_enums_hotel_rate_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_hotel_rate_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -205,13 +205,13 @@ var file_google_ads_googleads_v16_enums_hotel_rate_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_hotel_rate_type_proto_init() }
-func file_google_ads_googleads_v16_enums_hotel_rate_type_proto_init() {
- if File_google_ads_googleads_v16_enums_hotel_rate_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_hotel_rate_type_proto_init() }
+func file_google_ads_googleads_v17_enums_hotel_rate_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_hotel_rate_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_hotel_rate_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_hotel_rate_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelRateTypeEnum); i {
case 0:
return &v.state
@@ -228,19 +228,19 @@ func file_google_ads_googleads_v16_enums_hotel_rate_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_hotel_rate_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_hotel_rate_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_hotel_rate_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_hotel_rate_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_hotel_rate_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_hotel_rate_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_hotel_rate_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_hotel_rate_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_hotel_rate_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_hotel_rate_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_hotel_rate_type_proto = out.File
- file_google_ads_googleads_v16_enums_hotel_rate_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_hotel_rate_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_hotel_rate_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_hotel_rate_type_proto = out.File
+ file_google_ads_googleads_v17_enums_hotel_rate_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_hotel_rate_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_hotel_rate_type_proto_depIdxs = nil
}
diff --git a/enums/hotel_reconciliation_status.pb.go b/enums/hotel_reconciliation_status.pb.go
index 58aafe3f..805cac3f 100644
--- a/enums/hotel_reconciliation_status.pb.go
+++ b/enums/hotel_reconciliation_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/hotel_reconciliation_status.proto
+// source: google/ads/googleads/v17/enums/hotel_reconciliation_status.proto
package enums
@@ -89,11 +89,11 @@ func (x HotelReconciliationStatusEnum_HotelReconciliationStatus) String() string
}
func (HotelReconciliationStatusEnum_HotelReconciliationStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_enumTypes[0].Descriptor()
}
func (HotelReconciliationStatusEnum_HotelReconciliationStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_enumTypes[0]
}
func (x HotelReconciliationStatusEnum_HotelReconciliationStatus) Number() protoreflect.EnumNumber {
@@ -102,7 +102,7 @@ func (x HotelReconciliationStatusEnum_HotelReconciliationStatus) Number() protor
// Deprecated: Use HotelReconciliationStatusEnum_HotelReconciliationStatus.Descriptor instead.
func (HotelReconciliationStatusEnum_HotelReconciliationStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for HotelReconciliationStatus.
@@ -115,7 +115,7 @@ type HotelReconciliationStatusEnum struct {
func (x *HotelReconciliationStatusEnum) Reset() {
*x = HotelReconciliationStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -128,7 +128,7 @@ func (x *HotelReconciliationStatusEnum) String() string {
func (*HotelReconciliationStatusEnum) ProtoMessage() {}
func (x *HotelReconciliationStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -141,18 +141,18 @@ func (x *HotelReconciliationStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use HotelReconciliationStatusEnum.ProtoReflect.Descriptor instead.
func (*HotelReconciliationStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0xad, 0x01, 0x0a, 0x1d, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x52, 0x65, 0x63, 0x6f,
0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x8b, 0x01, 0x0a, 0x19, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x52, 0x65,
@@ -166,42 +166,42 @@ var file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_rawDes
0x45, 0x44, 0x10, 0x04, 0x12, 0x0c, 0x0a, 0x08, 0x43, 0x41, 0x4e, 0x43, 0x45, 0x4c, 0x45, 0x44,
0x10, 0x05, 0x42, 0xf8, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x48, 0x6f, 0x74, 0x65, 0x6c,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x48, 0x6f, 0x74, 0x65, 0x6c,
0x52, 0x65, 0x63, 0x6f, 0x6e, 0x63, 0x69, 0x6c, 0x69, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,
0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_rawDescData = file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_rawDescData = file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_goTypes = []interface{}{
- (HotelReconciliationStatusEnum_HotelReconciliationStatus)(0), // 0: google.ads.googleads.v16.enums.HotelReconciliationStatusEnum.HotelReconciliationStatus
- (*HotelReconciliationStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.HotelReconciliationStatusEnum
+var file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_goTypes = []interface{}{
+ (HotelReconciliationStatusEnum_HotelReconciliationStatus)(0), // 0: google.ads.googleads.v17.enums.HotelReconciliationStatusEnum.HotelReconciliationStatus
+ (*HotelReconciliationStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.HotelReconciliationStatusEnum
}
-var file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -209,13 +209,13 @@ var file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_init() }
-func file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_init() {
- if File_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_init() }
+func file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HotelReconciliationStatusEnum); i {
case 0:
return &v.state
@@ -232,19 +232,19 @@ func file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto = out.File
- file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_hotel_reconciliation_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto = out.File
+ file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_hotel_reconciliation_status_proto_depIdxs = nil
}
diff --git a/enums/identity_verification_program.pb.go b/enums/identity_verification_program.pb.go
index 4034283e..655ae0be 100644
--- a/enums/identity_verification_program.pb.go
+++ b/enums/identity_verification_program.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/identity_verification_program.proto
+// source: google/ads/googleads/v17/enums/identity_verification_program.proto
package enums
@@ -71,11 +71,11 @@ func (x IdentityVerificationProgramEnum_IdentityVerificationProgram) String() st
}
func (IdentityVerificationProgramEnum_IdentityVerificationProgram) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_identity_verification_program_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_identity_verification_program_proto_enumTypes[0].Descriptor()
}
func (IdentityVerificationProgramEnum_IdentityVerificationProgram) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_identity_verification_program_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_identity_verification_program_proto_enumTypes[0]
}
func (x IdentityVerificationProgramEnum_IdentityVerificationProgram) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x IdentityVerificationProgramEnum_IdentityVerificationProgram) Number() pr
// Deprecated: Use IdentityVerificationProgramEnum_IdentityVerificationProgram.Descriptor instead.
func (IdentityVerificationProgramEnum_IdentityVerificationProgram) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_identity_verification_program_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_identity_verification_program_proto_rawDescGZIP(), []int{0, 0}
}
// Container for IdentityVerificationProgram.
@@ -97,7 +97,7 @@ type IdentityVerificationProgramEnum struct {
func (x *IdentityVerificationProgramEnum) Reset() {
*x = IdentityVerificationProgramEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_identity_verification_program_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_identity_verification_program_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *IdentityVerificationProgramEnum) String() string {
func (*IdentityVerificationProgramEnum) ProtoMessage() {}
func (x *IdentityVerificationProgramEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_identity_verification_program_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_identity_verification_program_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,18 +123,18 @@ func (x *IdentityVerificationProgramEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use IdentityVerificationProgramEnum.ProtoReflect.Descriptor instead.
func (*IdentityVerificationProgramEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_identity_verification_program_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_identity_verification_program_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_identity_verification_program_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_identity_verification_program_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_identity_verification_program_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_identity_verification_program_proto_rawDesc = []byte{
0x0a, 0x42, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69,
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x61, 0x6d, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x22, 0x84, 0x01, 0x0a, 0x1f, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74,
0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f,
0x67, 0x72, 0x61, 0x6d, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x61, 0x0a, 0x1b, 0x49, 0x64, 0x65, 0x6e,
@@ -145,42 +145,42 @@ var file_google_ads_googleads_v16_enums_identity_verification_program_proto_rawD
0x53, 0x45, 0x52, 0x5f, 0x49, 0x44, 0x45, 0x4e, 0x54, 0x49, 0x54, 0x59, 0x5f, 0x56, 0x45, 0x52,
0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x02, 0x42, 0xfa, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x20, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69,
0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x67, 0x72, 0x61, 0x6d, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_identity_verification_program_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_identity_verification_program_proto_rawDescData = file_google_ads_googleads_v16_enums_identity_verification_program_proto_rawDesc
+ file_google_ads_googleads_v17_enums_identity_verification_program_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_identity_verification_program_proto_rawDescData = file_google_ads_googleads_v17_enums_identity_verification_program_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_identity_verification_program_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_identity_verification_program_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_identity_verification_program_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_identity_verification_program_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_identity_verification_program_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_identity_verification_program_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_identity_verification_program_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_identity_verification_program_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_identity_verification_program_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_identity_verification_program_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_identity_verification_program_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_identity_verification_program_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_identity_verification_program_proto_goTypes = []interface{}{
- (IdentityVerificationProgramEnum_IdentityVerificationProgram)(0), // 0: google.ads.googleads.v16.enums.IdentityVerificationProgramEnum.IdentityVerificationProgram
- (*IdentityVerificationProgramEnum)(nil), // 1: google.ads.googleads.v16.enums.IdentityVerificationProgramEnum
+var file_google_ads_googleads_v17_enums_identity_verification_program_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_identity_verification_program_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_identity_verification_program_proto_goTypes = []interface{}{
+ (IdentityVerificationProgramEnum_IdentityVerificationProgram)(0), // 0: google.ads.googleads.v17.enums.IdentityVerificationProgramEnum.IdentityVerificationProgram
+ (*IdentityVerificationProgramEnum)(nil), // 1: google.ads.googleads.v17.enums.IdentityVerificationProgramEnum
}
-var file_google_ads_googleads_v16_enums_identity_verification_program_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_identity_verification_program_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -188,13 +188,13 @@ var file_google_ads_googleads_v16_enums_identity_verification_program_proto_depI
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_identity_verification_program_proto_init() }
-func file_google_ads_googleads_v16_enums_identity_verification_program_proto_init() {
- if File_google_ads_googleads_v16_enums_identity_verification_program_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_identity_verification_program_proto_init() }
+func file_google_ads_googleads_v17_enums_identity_verification_program_proto_init() {
+ if File_google_ads_googleads_v17_enums_identity_verification_program_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_identity_verification_program_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_identity_verification_program_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*IdentityVerificationProgramEnum); i {
case 0:
return &v.state
@@ -211,19 +211,19 @@ func file_google_ads_googleads_v16_enums_identity_verification_program_proto_ini
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_identity_verification_program_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_identity_verification_program_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_identity_verification_program_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_identity_verification_program_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_identity_verification_program_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_identity_verification_program_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_identity_verification_program_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_identity_verification_program_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_identity_verification_program_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_identity_verification_program_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_identity_verification_program_proto = out.File
- file_google_ads_googleads_v16_enums_identity_verification_program_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_identity_verification_program_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_identity_verification_program_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_identity_verification_program_proto = out.File
+ file_google_ads_googleads_v17_enums_identity_verification_program_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_identity_verification_program_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_identity_verification_program_proto_depIdxs = nil
}
diff --git a/enums/identity_verification_program_status.pb.go b/enums/identity_verification_program_status.pb.go
index ccd2a968..ea24f9a3 100644
--- a/enums/identity_verification_program_status.pb.go
+++ b/enums/identity_verification_program_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/identity_verification_program_status.proto
+// source: google/ads/googleads/v17/enums/identity_verification_program_status.proto
package enums
@@ -83,11 +83,11 @@ func (x IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus)
}
func (IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_enumTypes[0].Descriptor()
}
func (IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_enumTypes[0]
}
func (x IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus) Number() protoreflect.EnumNumber {
@@ -96,7 +96,7 @@ func (x IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus)
// Deprecated: Use IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus.Descriptor instead.
func (IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for IdentityVerificationProgramStatus.
@@ -109,7 +109,7 @@ type IdentityVerificationProgramStatusEnum struct {
func (x *IdentityVerificationProgramStatusEnum) Reset() {
*x = IdentityVerificationProgramStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -122,7 +122,7 @@ func (x *IdentityVerificationProgramStatusEnum) String() string {
func (*IdentityVerificationProgramStatusEnum) ProtoMessage() {}
func (x *IdentityVerificationProgramStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -135,19 +135,19 @@ func (x *IdentityVerificationProgramStatusEnum) ProtoReflect() protoreflect.Mess
// Deprecated: Use IdentityVerificationProgramStatusEnum.ProtoReflect.Descriptor instead.
func (*IdentityVerificationProgramStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_identity_verification_program_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_identity_verification_program_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_rawDesc = []byte{
0x0a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69,
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x6f, 0x67, 0x72, 0x61, 0x6d, 0x5f, 0x73,
0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xb2, 0x01, 0x0a, 0x25,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xb2, 0x01, 0x0a, 0x25,
0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x67, 0x72, 0x61, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75,
0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x88, 0x01, 0x0a, 0x21, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69,
@@ -161,42 +161,42 @@ var file_google_ads_googleads_v16_enums_identity_verification_program_status_pro
0x53, 0x10, 0x04, 0x12, 0x0b, 0x0a, 0x07, 0x46, 0x41, 0x49, 0x4c, 0x55, 0x52, 0x45, 0x10, 0x05,
0x42, 0x80, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x26, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x26, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74,
0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f,
0x67, 0x72, 0x61, 0x6d, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_rawDescData = file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_rawDescData = file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_goTypes = []interface{}{
- (IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus)(0), // 0: google.ads.googleads.v16.enums.IdentityVerificationProgramStatusEnum.IdentityVerificationProgramStatus
- (*IdentityVerificationProgramStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.IdentityVerificationProgramStatusEnum
+var file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_goTypes = []interface{}{
+ (IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus)(0), // 0: google.ads.googleads.v17.enums.IdentityVerificationProgramStatusEnum.IdentityVerificationProgramStatus
+ (*IdentityVerificationProgramStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.IdentityVerificationProgramStatusEnum
}
-var file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -204,13 +204,13 @@ var file_google_ads_googleads_v16_enums_identity_verification_program_status_pro
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_init() }
-func file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_init() {
- if File_google_ads_googleads_v16_enums_identity_verification_program_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_init() }
+func file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_identity_verification_program_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*IdentityVerificationProgramStatusEnum); i {
case 0:
return &v.state
@@ -227,19 +227,19 @@ func file_google_ads_googleads_v16_enums_identity_verification_program_status_pr
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_identity_verification_program_status_proto = out.File
- file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_identity_verification_program_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_identity_verification_program_status_proto = out.File
+ file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_identity_verification_program_status_proto_depIdxs = nil
}
diff --git a/enums/image_placeholder_field.pb.go b/enums/image_placeholder_field.pb.go
index 7b148efa..47c72505 100644
--- a/enums/image_placeholder_field.pb.go
+++ b/enums/image_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/image_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/image_placeholder_field.proto
package enums
@@ -71,11 +71,11 @@ func (x ImagePlaceholderFieldEnum_ImagePlaceholderField) String() string {
}
func (ImagePlaceholderFieldEnum_ImagePlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_image_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_image_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (ImagePlaceholderFieldEnum_ImagePlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_image_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_image_placeholder_field_proto_enumTypes[0]
}
func (x ImagePlaceholderFieldEnum_ImagePlaceholderField) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x ImagePlaceholderFieldEnum_ImagePlaceholderField) Number() protoreflect.E
// Deprecated: Use ImagePlaceholderFieldEnum_ImagePlaceholderField.Descriptor instead.
func (ImagePlaceholderFieldEnum_ImagePlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_image_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_image_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Advertiser Provided Image placeholder fields.
@@ -97,7 +97,7 @@ type ImagePlaceholderFieldEnum struct {
func (x *ImagePlaceholderFieldEnum) Reset() {
*x = ImagePlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_image_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_image_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *ImagePlaceholderFieldEnum) String() string {
func (*ImagePlaceholderFieldEnum) ProtoMessage() {}
func (x *ImagePlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_image_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_image_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,18 +123,18 @@ func (x *ImagePlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ImagePlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*ImagePlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_image_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_image_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_image_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_image_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_image_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_image_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64,
0x65, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x60,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x60,
0x0a, 0x19, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64,
0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x43, 0x0a, 0x15, 0x49,
0x6d, 0x61, 0x67, 0x65, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46,
@@ -143,41 +143,41 @@ var file_google_ads_googleads_v16_enums_image_placeholder_field_proto_rawDesc =
0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x41, 0x53, 0x53, 0x45, 0x54, 0x5f, 0x49, 0x44, 0x10, 0x02,
0x42, 0xf4, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x50, 0x6c,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x50, 0x6c,
0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_image_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_image_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_image_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_image_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_image_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_image_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_image_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_image_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_image_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_image_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_image_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_image_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_image_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_image_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_image_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_image_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_image_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_image_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_image_placeholder_field_proto_goTypes = []interface{}{
- (ImagePlaceholderFieldEnum_ImagePlaceholderField)(0), // 0: google.ads.googleads.v16.enums.ImagePlaceholderFieldEnum.ImagePlaceholderField
- (*ImagePlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.ImagePlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_image_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_image_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_image_placeholder_field_proto_goTypes = []interface{}{
+ (ImagePlaceholderFieldEnum_ImagePlaceholderField)(0), // 0: google.ads.googleads.v17.enums.ImagePlaceholderFieldEnum.ImagePlaceholderField
+ (*ImagePlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.ImagePlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_image_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_image_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -185,13 +185,13 @@ var file_google_ads_googleads_v16_enums_image_placeholder_field_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_image_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_image_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_image_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_image_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_image_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_image_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_image_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_image_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ImagePlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -208,19 +208,19 @@ func file_google_ads_googleads_v16_enums_image_placeholder_field_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_image_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_image_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_image_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_image_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_image_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_image_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_image_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_image_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_image_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_image_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_image_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_image_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_image_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_image_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_image_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_image_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_image_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_image_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/income_range_type.pb.go b/enums/income_range_type.pb.go
index 37062f30..4444a807 100644
--- a/enums/income_range_type.pb.go
+++ b/enums/income_range_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/income_range_type.proto
+// source: google/ads/googleads/v17/enums/income_range_type.proto
package enums
@@ -95,11 +95,11 @@ func (x IncomeRangeTypeEnum_IncomeRangeType) String() string {
}
func (IncomeRangeTypeEnum_IncomeRangeType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_income_range_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_income_range_type_proto_enumTypes[0].Descriptor()
}
func (IncomeRangeTypeEnum_IncomeRangeType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_income_range_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_income_range_type_proto_enumTypes[0]
}
func (x IncomeRangeTypeEnum_IncomeRangeType) Number() protoreflect.EnumNumber {
@@ -108,7 +108,7 @@ func (x IncomeRangeTypeEnum_IncomeRangeType) Number() protoreflect.EnumNumber {
// Deprecated: Use IncomeRangeTypeEnum_IncomeRangeType.Descriptor instead.
func (IncomeRangeTypeEnum_IncomeRangeType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_income_range_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_income_range_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the type of demographic income ranges.
@@ -121,7 +121,7 @@ type IncomeRangeTypeEnum struct {
func (x *IncomeRangeTypeEnum) Reset() {
*x = IncomeRangeTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_income_range_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_income_range_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -134,7 +134,7 @@ func (x *IncomeRangeTypeEnum) String() string {
func (*IncomeRangeTypeEnum) ProtoMessage() {}
func (x *IncomeRangeTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_income_range_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_income_range_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -147,18 +147,18 @@ func (x *IncomeRangeTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use IncomeRangeTypeEnum.ProtoReflect.Descriptor instead.
func (*IncomeRangeTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_income_range_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_income_range_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_income_range_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_income_range_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_income_range_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_income_range_type_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x69, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x74, 0x79,
0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x83, 0x02, 0x0a, 0x13, 0x49, 0x6e, 0x63,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x83, 0x02, 0x0a, 0x13, 0x49, 0x6e, 0x63,
0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0xeb, 0x01, 0x0a, 0x0f, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65,
0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46,
@@ -176,42 +176,42 @@ var file_google_ads_googleads_v16_enums_income_range_type_proto_rawDesc = []byte
0x19, 0x49, 0x4e, 0x43, 0x4f, 0x4d, 0x45, 0x5f, 0x52, 0x41, 0x4e, 0x47, 0x45, 0x5f, 0x55, 0x4e,
0x44, 0x45, 0x54, 0x45, 0x52, 0x4d, 0x49, 0x4e, 0x45, 0x44, 0x10, 0xb0, 0x90, 0x1f, 0x42, 0xee,
0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x14, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x52, 0x61, 0x6e,
0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_income_range_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_income_range_type_proto_rawDescData = file_google_ads_googleads_v16_enums_income_range_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_income_range_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_income_range_type_proto_rawDescData = file_google_ads_googleads_v17_enums_income_range_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_income_range_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_income_range_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_income_range_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_income_range_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_income_range_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_income_range_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_income_range_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_income_range_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_income_range_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_income_range_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_income_range_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_income_range_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_income_range_type_proto_goTypes = []interface{}{
- (IncomeRangeTypeEnum_IncomeRangeType)(0), // 0: google.ads.googleads.v16.enums.IncomeRangeTypeEnum.IncomeRangeType
- (*IncomeRangeTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.IncomeRangeTypeEnum
+var file_google_ads_googleads_v17_enums_income_range_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_income_range_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_income_range_type_proto_goTypes = []interface{}{
+ (IncomeRangeTypeEnum_IncomeRangeType)(0), // 0: google.ads.googleads.v17.enums.IncomeRangeTypeEnum.IncomeRangeType
+ (*IncomeRangeTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.IncomeRangeTypeEnum
}
-var file_google_ads_googleads_v16_enums_income_range_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_income_range_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -219,13 +219,13 @@ var file_google_ads_googleads_v16_enums_income_range_type_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_income_range_type_proto_init() }
-func file_google_ads_googleads_v16_enums_income_range_type_proto_init() {
- if File_google_ads_googleads_v16_enums_income_range_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_income_range_type_proto_init() }
+func file_google_ads_googleads_v17_enums_income_range_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_income_range_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_income_range_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_income_range_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*IncomeRangeTypeEnum); i {
case 0:
return &v.state
@@ -242,19 +242,19 @@ func file_google_ads_googleads_v16_enums_income_range_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_income_range_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_income_range_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_income_range_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_income_range_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_income_range_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_income_range_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_income_range_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_income_range_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_income_range_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_income_range_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_income_range_type_proto = out.File
- file_google_ads_googleads_v16_enums_income_range_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_income_range_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_income_range_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_income_range_type_proto = out.File
+ file_google_ads_googleads_v17_enums_income_range_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_income_range_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_income_range_type_proto_depIdxs = nil
}
diff --git a/enums/interaction_event_type.pb.go b/enums/interaction_event_type.pb.go
index c90b88ad..1d1c4017 100644
--- a/enums/interaction_event_type.pb.go
+++ b/enums/interaction_event_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/interaction_event_type.proto
+// source: google/ads/googleads/v17/enums/interaction_event_type.proto
package enums
@@ -89,11 +89,11 @@ func (x InteractionEventTypeEnum_InteractionEventType) String() string {
}
func (InteractionEventTypeEnum_InteractionEventType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_interaction_event_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_interaction_event_type_proto_enumTypes[0].Descriptor()
}
func (InteractionEventTypeEnum_InteractionEventType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_interaction_event_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_interaction_event_type_proto_enumTypes[0]
}
func (x InteractionEventTypeEnum_InteractionEventType) Number() protoreflect.EnumNumber {
@@ -102,7 +102,7 @@ func (x InteractionEventTypeEnum_InteractionEventType) Number() protoreflect.Enu
// Deprecated: Use InteractionEventTypeEnum_InteractionEventType.Descriptor instead.
func (InteractionEventTypeEnum_InteractionEventType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_interaction_event_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_interaction_event_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing types of payable and free interactions.
@@ -115,7 +115,7 @@ type InteractionEventTypeEnum struct {
func (x *InteractionEventTypeEnum) Reset() {
*x = InteractionEventTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_interaction_event_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_interaction_event_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -128,7 +128,7 @@ func (x *InteractionEventTypeEnum) String() string {
func (*InteractionEventTypeEnum) ProtoMessage() {}
func (x *InteractionEventTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_interaction_event_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_interaction_event_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -141,18 +141,18 @@ func (x *InteractionEventTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use InteractionEventTypeEnum.ProtoReflect.Descriptor instead.
func (*InteractionEventTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_interaction_event_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_interaction_event_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_interaction_event_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_interaction_event_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_interaction_event_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_interaction_event_type_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x76, 0x65,
0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x85, 0x01,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x85, 0x01,
0x0a, 0x18, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65,
0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x69, 0x0a, 0x14, 0x49, 0x6e,
0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x54, 0x79,
@@ -163,42 +163,42 @@ var file_google_ads_googleads_v16_enums_interaction_event_type_proto_rawDesc = [
0x49, 0x44, 0x45, 0x4f, 0x5f, 0x56, 0x49, 0x45, 0x57, 0x10, 0x04, 0x12, 0x08, 0x0a, 0x04, 0x4e,
0x4f, 0x4e, 0x45, 0x10, 0x05, 0x42, 0xf3, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x49, 0x6e,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x49, 0x6e,
0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x54, 0x79,
0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_interaction_event_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_interaction_event_type_proto_rawDescData = file_google_ads_googleads_v16_enums_interaction_event_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_interaction_event_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_interaction_event_type_proto_rawDescData = file_google_ads_googleads_v17_enums_interaction_event_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_interaction_event_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_interaction_event_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_interaction_event_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_interaction_event_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_interaction_event_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_interaction_event_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_interaction_event_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_interaction_event_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_interaction_event_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_interaction_event_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_interaction_event_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_interaction_event_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_interaction_event_type_proto_goTypes = []interface{}{
- (InteractionEventTypeEnum_InteractionEventType)(0), // 0: google.ads.googleads.v16.enums.InteractionEventTypeEnum.InteractionEventType
- (*InteractionEventTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.InteractionEventTypeEnum
+var file_google_ads_googleads_v17_enums_interaction_event_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_interaction_event_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_interaction_event_type_proto_goTypes = []interface{}{
+ (InteractionEventTypeEnum_InteractionEventType)(0), // 0: google.ads.googleads.v17.enums.InteractionEventTypeEnum.InteractionEventType
+ (*InteractionEventTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.InteractionEventTypeEnum
}
-var file_google_ads_googleads_v16_enums_interaction_event_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_interaction_event_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -206,13 +206,13 @@ var file_google_ads_googleads_v16_enums_interaction_event_type_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_interaction_event_type_proto_init() }
-func file_google_ads_googleads_v16_enums_interaction_event_type_proto_init() {
- if File_google_ads_googleads_v16_enums_interaction_event_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_interaction_event_type_proto_init() }
+func file_google_ads_googleads_v17_enums_interaction_event_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_interaction_event_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_interaction_event_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_interaction_event_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*InteractionEventTypeEnum); i {
case 0:
return &v.state
@@ -229,19 +229,19 @@ func file_google_ads_googleads_v16_enums_interaction_event_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_interaction_event_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_interaction_event_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_interaction_event_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_interaction_event_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_interaction_event_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_interaction_event_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_interaction_event_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_interaction_event_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_interaction_event_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_interaction_event_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_interaction_event_type_proto = out.File
- file_google_ads_googleads_v16_enums_interaction_event_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_interaction_event_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_interaction_event_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_interaction_event_type_proto = out.File
+ file_google_ads_googleads_v17_enums_interaction_event_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_interaction_event_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_interaction_event_type_proto_depIdxs = nil
}
diff --git a/enums/interaction_type.pb.go b/enums/interaction_type.pb.go
index 024d18a8..adb649ac 100644
--- a/enums/interaction_type.pb.go
+++ b/enums/interaction_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/interaction_type.proto
+// source: google/ads/googleads/v17/enums/interaction_type.proto
package enums
@@ -71,11 +71,11 @@ func (x InteractionTypeEnum_InteractionType) String() string {
}
func (InteractionTypeEnum_InteractionType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_interaction_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_interaction_type_proto_enumTypes[0].Descriptor()
}
func (InteractionTypeEnum_InteractionType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_interaction_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_interaction_type_proto_enumTypes[0]
}
func (x InteractionTypeEnum_InteractionType) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x InteractionTypeEnum_InteractionType) Number() protoreflect.EnumNumber {
// Deprecated: Use InteractionTypeEnum_InteractionType.Descriptor instead.
func (InteractionTypeEnum_InteractionType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_interaction_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_interaction_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible interaction types.
@@ -97,7 +97,7 @@ type InteractionTypeEnum struct {
func (x *InteractionTypeEnum) Reset() {
*x = InteractionTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_interaction_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_interaction_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *InteractionTypeEnum) String() string {
func (*InteractionTypeEnum) ProtoMessage() {}
func (x *InteractionTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_interaction_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_interaction_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,60 +123,60 @@ func (x *InteractionTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use InteractionTypeEnum.ProtoReflect.Descriptor instead.
func (*InteractionTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_interaction_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_interaction_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_interaction_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_interaction_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_interaction_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_interaction_type_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70,
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x52, 0x0a, 0x13, 0x49, 0x6e, 0x74, 0x65, 0x72,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x52, 0x0a, 0x13, 0x49, 0x6e, 0x74, 0x65, 0x72,
0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x3b,
0x0a, 0x0f, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70,
0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44,
0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12,
0x0a, 0x0a, 0x05, 0x43, 0x41, 0x4c, 0x4c, 0x53, 0x10, 0xc0, 0x3e, 0x42, 0xee, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x14, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54,
0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_interaction_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_interaction_type_proto_rawDescData = file_google_ads_googleads_v16_enums_interaction_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_interaction_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_interaction_type_proto_rawDescData = file_google_ads_googleads_v17_enums_interaction_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_interaction_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_interaction_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_interaction_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_interaction_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_interaction_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_interaction_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_interaction_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_interaction_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_interaction_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_interaction_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_interaction_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_interaction_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_interaction_type_proto_goTypes = []interface{}{
- (InteractionTypeEnum_InteractionType)(0), // 0: google.ads.googleads.v16.enums.InteractionTypeEnum.InteractionType
- (*InteractionTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.InteractionTypeEnum
+var file_google_ads_googleads_v17_enums_interaction_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_interaction_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_interaction_type_proto_goTypes = []interface{}{
+ (InteractionTypeEnum_InteractionType)(0), // 0: google.ads.googleads.v17.enums.InteractionTypeEnum.InteractionType
+ (*InteractionTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.InteractionTypeEnum
}
-var file_google_ads_googleads_v16_enums_interaction_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_interaction_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -184,13 +184,13 @@ var file_google_ads_googleads_v16_enums_interaction_type_proto_depIdxs = []int32
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_interaction_type_proto_init() }
-func file_google_ads_googleads_v16_enums_interaction_type_proto_init() {
- if File_google_ads_googleads_v16_enums_interaction_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_interaction_type_proto_init() }
+func file_google_ads_googleads_v17_enums_interaction_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_interaction_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_interaction_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_interaction_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*InteractionTypeEnum); i {
case 0:
return &v.state
@@ -207,19 +207,19 @@ func file_google_ads_googleads_v16_enums_interaction_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_interaction_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_interaction_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_interaction_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_interaction_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_interaction_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_interaction_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_interaction_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_interaction_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_interaction_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_interaction_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_interaction_type_proto = out.File
- file_google_ads_googleads_v16_enums_interaction_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_interaction_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_interaction_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_interaction_type_proto = out.File
+ file_google_ads_googleads_v17_enums_interaction_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_interaction_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_interaction_type_proto_depIdxs = nil
}
diff --git a/enums/invoice_type.pb.go b/enums/invoice_type.pb.go
index 391864ea..9f3bb0fa 100644
--- a/enums/invoice_type.pb.go
+++ b/enums/invoice_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/invoice_type.proto
+// source: google/ads/googleads/v17/enums/invoice_type.proto
package enums
@@ -75,11 +75,11 @@ func (x InvoiceTypeEnum_InvoiceType) String() string {
}
func (InvoiceTypeEnum_InvoiceType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_invoice_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_invoice_type_proto_enumTypes[0].Descriptor()
}
func (InvoiceTypeEnum_InvoiceType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_invoice_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_invoice_type_proto_enumTypes[0]
}
func (x InvoiceTypeEnum_InvoiceType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x InvoiceTypeEnum_InvoiceType) Number() protoreflect.EnumNumber {
// Deprecated: Use InvoiceTypeEnum_InvoiceType.Descriptor instead.
func (InvoiceTypeEnum_InvoiceType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_invoice_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_invoice_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the type of invoices.
@@ -101,7 +101,7 @@ type InvoiceTypeEnum struct {
func (x *InvoiceTypeEnum) Reset() {
*x = InvoiceTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_invoice_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_invoice_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *InvoiceTypeEnum) String() string {
func (*InvoiceTypeEnum) ProtoMessage() {}
func (x *InvoiceTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_invoice_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_invoice_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,17 +127,17 @@ func (x *InvoiceTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use InvoiceTypeEnum.ProtoReflect.Descriptor instead.
func (*InvoiceTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_invoice_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_invoice_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_invoice_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_invoice_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_invoice_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_invoice_type_proto_rawDesc = []byte{
0x0a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x22, 0x5c, 0x0a, 0x0f, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x54, 0x79,
0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x49, 0x0a, 0x0b, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63,
0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49,
@@ -146,41 +146,41 @@ var file_google_ads_googleads_v16_enums_invoice_type_proto_rawDesc = []byte{
0x4d, 0x4f, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x49, 0x4e, 0x56, 0x4f, 0x49, 0x43, 0x45, 0x10,
0x03, 0x42, 0xea, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x10, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x10, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63,
0x65, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_invoice_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_invoice_type_proto_rawDescData = file_google_ads_googleads_v16_enums_invoice_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_invoice_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_invoice_type_proto_rawDescData = file_google_ads_googleads_v17_enums_invoice_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_invoice_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_invoice_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_invoice_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_invoice_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_invoice_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_invoice_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_invoice_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_invoice_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_invoice_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_invoice_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_invoice_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_invoice_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_invoice_type_proto_goTypes = []interface{}{
- (InvoiceTypeEnum_InvoiceType)(0), // 0: google.ads.googleads.v16.enums.InvoiceTypeEnum.InvoiceType
- (*InvoiceTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.InvoiceTypeEnum
+var file_google_ads_googleads_v17_enums_invoice_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_invoice_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_invoice_type_proto_goTypes = []interface{}{
+ (InvoiceTypeEnum_InvoiceType)(0), // 0: google.ads.googleads.v17.enums.InvoiceTypeEnum.InvoiceType
+ (*InvoiceTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.InvoiceTypeEnum
}
-var file_google_ads_googleads_v16_enums_invoice_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_invoice_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -188,13 +188,13 @@ var file_google_ads_googleads_v16_enums_invoice_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_invoice_type_proto_init() }
-func file_google_ads_googleads_v16_enums_invoice_type_proto_init() {
- if File_google_ads_googleads_v16_enums_invoice_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_invoice_type_proto_init() }
+func file_google_ads_googleads_v17_enums_invoice_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_invoice_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_invoice_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_invoice_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*InvoiceTypeEnum); i {
case 0:
return &v.state
@@ -211,19 +211,19 @@ func file_google_ads_googleads_v16_enums_invoice_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_invoice_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_invoice_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_invoice_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_invoice_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_invoice_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_invoice_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_invoice_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_invoice_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_invoice_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_invoice_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_invoice_type_proto = out.File
- file_google_ads_googleads_v16_enums_invoice_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_invoice_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_invoice_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_invoice_type_proto = out.File
+ file_google_ads_googleads_v17_enums_invoice_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_invoice_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_invoice_type_proto_depIdxs = nil
}
diff --git a/enums/job_placeholder_field.pb.go b/enums/job_placeholder_field.pb.go
index 40e321db..2ecec862 100644
--- a/enums/job_placeholder_field.pb.go
+++ b/enums/job_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/job_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/job_placeholder_field.proto
package enums
@@ -155,11 +155,11 @@ func (x JobPlaceholderFieldEnum_JobPlaceholderField) String() string {
}
func (JobPlaceholderFieldEnum_JobPlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_job_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_job_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (JobPlaceholderFieldEnum_JobPlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_job_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_job_placeholder_field_proto_enumTypes[0]
}
func (x JobPlaceholderFieldEnum_JobPlaceholderField) Number() protoreflect.EnumNumber {
@@ -168,7 +168,7 @@ func (x JobPlaceholderFieldEnum_JobPlaceholderField) Number() protoreflect.EnumN
// Deprecated: Use JobPlaceholderFieldEnum_JobPlaceholderField.Descriptor instead.
func (JobPlaceholderFieldEnum_JobPlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_job_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_job_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Job placeholder fields.
@@ -183,7 +183,7 @@ type JobPlaceholderFieldEnum struct {
func (x *JobPlaceholderFieldEnum) Reset() {
*x = JobPlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_job_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_job_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -196,7 +196,7 @@ func (x *JobPlaceholderFieldEnum) String() string {
func (*JobPlaceholderFieldEnum) ProtoMessage() {}
func (x *JobPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_job_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_job_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -209,18 +209,18 @@ func (x *JobPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use JobPlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*JobPlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_job_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_job_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_job_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_job_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_job_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_job_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6a, 0x6f, 0x62, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72,
0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xf1, 0x02, 0x0a,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xf1, 0x02, 0x0a,
0x17, 0x4a, 0x6f, 0x62, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46,
0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xd5, 0x02, 0x0a, 0x13, 0x4a, 0x6f, 0x62,
0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64,
@@ -246,41 +246,41 @@ var file_google_ads_googleads_v16_enums_job_placeholder_field_proto_rawDesc = []
0x53, 0x5f, 0x41, 0x50, 0x50, 0x5f, 0x53, 0x54, 0x4f, 0x52, 0x45, 0x5f, 0x49, 0x44, 0x10, 0x13,
0x42, 0xf3, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x4a, 0x6f, 0x62, 0x73, 0x50, 0x6c, 0x61,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x4a, 0x6f, 0x62, 0x73, 0x50, 0x6c, 0x61,
0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_job_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_job_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_job_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_job_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_job_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_job_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_job_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_job_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_job_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_job_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_job_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_job_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_job_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_job_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_job_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_job_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_job_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_job_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_job_placeholder_field_proto_goTypes = []interface{}{
- (JobPlaceholderFieldEnum_JobPlaceholderField)(0), // 0: google.ads.googleads.v16.enums.JobPlaceholderFieldEnum.JobPlaceholderField
- (*JobPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.JobPlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_job_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_job_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_job_placeholder_field_proto_goTypes = []interface{}{
+ (JobPlaceholderFieldEnum_JobPlaceholderField)(0), // 0: google.ads.googleads.v17.enums.JobPlaceholderFieldEnum.JobPlaceholderField
+ (*JobPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.JobPlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_job_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_job_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -288,13 +288,13 @@ var file_google_ads_googleads_v16_enums_job_placeholder_field_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_job_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_job_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_job_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_job_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_job_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_job_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_job_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_job_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*JobPlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -311,19 +311,19 @@ func file_google_ads_googleads_v16_enums_job_placeholder_field_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_job_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_job_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_job_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_job_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_job_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_job_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_job_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_job_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_job_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_job_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_job_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_job_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_job_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_job_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_job_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_job_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_job_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_job_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/keyword_match_type.pb.go b/enums/keyword_match_type.pb.go
index 394be600..45c1905f 100644
--- a/enums/keyword_match_type.pb.go
+++ b/enums/keyword_match_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/keyword_match_type.proto
+// source: google/ads/googleads/v17/enums/keyword_match_type.proto
package enums
@@ -79,11 +79,11 @@ func (x KeywordMatchTypeEnum_KeywordMatchType) String() string {
}
func (KeywordMatchTypeEnum_KeywordMatchType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_keyword_match_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_keyword_match_type_proto_enumTypes[0].Descriptor()
}
func (KeywordMatchTypeEnum_KeywordMatchType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_keyword_match_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_keyword_match_type_proto_enumTypes[0]
}
func (x KeywordMatchTypeEnum_KeywordMatchType) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x KeywordMatchTypeEnum_KeywordMatchType) Number() protoreflect.EnumNumber
// Deprecated: Use KeywordMatchTypeEnum_KeywordMatchType.Descriptor instead.
func (KeywordMatchTypeEnum_KeywordMatchType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_keyword_match_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_keyword_match_type_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing Keyword match types.
@@ -105,7 +105,7 @@ type KeywordMatchTypeEnum struct {
func (x *KeywordMatchTypeEnum) Reset() {
*x = KeywordMatchTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_keyword_match_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_keyword_match_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *KeywordMatchTypeEnum) String() string {
func (*KeywordMatchTypeEnum) ProtoMessage() {}
func (x *KeywordMatchTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_keyword_match_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_keyword_match_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *KeywordMatchTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use KeywordMatchTypeEnum.ProtoReflect.Descriptor instead.
func (*KeywordMatchTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_keyword_match_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_keyword_match_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_keyword_match_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_keyword_match_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_keyword_match_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_keyword_match_type_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x74,
0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6a, 0x0a, 0x14, 0x4b, 0x65, 0x79,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6a, 0x0a, 0x14, 0x4b, 0x65, 0x79,
0x77, 0x6f, 0x72, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x52, 0x0a, 0x10, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x4d, 0x61, 0x74, 0x63,
0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49,
@@ -151,41 +151,41 @@ var file_google_ads_googleads_v16_enums_keyword_match_type_proto_rawDesc = []byt
0x0a, 0x06, 0x50, 0x48, 0x52, 0x41, 0x53, 0x45, 0x10, 0x03, 0x12, 0x09, 0x0a, 0x05, 0x42, 0x52,
0x4f, 0x41, 0x44, 0x10, 0x04, 0x42, 0xef, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x4b, 0x65,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x4b, 0x65,
0x79, 0x77, 0x6f, 0x72, 0x64, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_keyword_match_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_keyword_match_type_proto_rawDescData = file_google_ads_googleads_v16_enums_keyword_match_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_keyword_match_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_keyword_match_type_proto_rawDescData = file_google_ads_googleads_v17_enums_keyword_match_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_keyword_match_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_keyword_match_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_keyword_match_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_keyword_match_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_keyword_match_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_keyword_match_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_keyword_match_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_keyword_match_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_keyword_match_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_keyword_match_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_keyword_match_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_keyword_match_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_keyword_match_type_proto_goTypes = []interface{}{
- (KeywordMatchTypeEnum_KeywordMatchType)(0), // 0: google.ads.googleads.v16.enums.KeywordMatchTypeEnum.KeywordMatchType
- (*KeywordMatchTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.KeywordMatchTypeEnum
+var file_google_ads_googleads_v17_enums_keyword_match_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_keyword_match_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_keyword_match_type_proto_goTypes = []interface{}{
+ (KeywordMatchTypeEnum_KeywordMatchType)(0), // 0: google.ads.googleads.v17.enums.KeywordMatchTypeEnum.KeywordMatchType
+ (*KeywordMatchTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.KeywordMatchTypeEnum
}
-var file_google_ads_googleads_v16_enums_keyword_match_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_keyword_match_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -193,13 +193,13 @@ var file_google_ads_googleads_v16_enums_keyword_match_type_proto_depIdxs = []int
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_keyword_match_type_proto_init() }
-func file_google_ads_googleads_v16_enums_keyword_match_type_proto_init() {
- if File_google_ads_googleads_v16_enums_keyword_match_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_keyword_match_type_proto_init() }
+func file_google_ads_googleads_v17_enums_keyword_match_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_keyword_match_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_keyword_match_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_keyword_match_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordMatchTypeEnum); i {
case 0:
return &v.state
@@ -216,19 +216,19 @@ func file_google_ads_googleads_v16_enums_keyword_match_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_keyword_match_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_keyword_match_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_keyword_match_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_keyword_match_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_keyword_match_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_keyword_match_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_keyword_match_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_keyword_match_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_keyword_match_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_keyword_match_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_keyword_match_type_proto = out.File
- file_google_ads_googleads_v16_enums_keyword_match_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_keyword_match_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_keyword_match_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_keyword_match_type_proto = out.File
+ file_google_ads_googleads_v17_enums_keyword_match_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_keyword_match_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_keyword_match_type_proto_depIdxs = nil
}
diff --git a/enums/keyword_plan_aggregate_metric_type.pb.go b/enums/keyword_plan_aggregate_metric_type.pb.go
index 7131c68f..e14012f0 100644
--- a/enums/keyword_plan_aggregate_metric_type.pb.go
+++ b/enums/keyword_plan_aggregate_metric_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/keyword_plan_aggregate_metric_type.proto
+// source: google/ads/googleads/v17/enums/keyword_plan_aggregate_metric_type.proto
package enums
@@ -71,11 +71,11 @@ func (x KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType) Strin
}
func (KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_enumTypes[0].Descriptor()
}
func (KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_enumTypes[0]
}
func (x KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType) Numbe
// Deprecated: Use KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType.Descriptor instead.
func (KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_rawDescGZIP(), []int{0, 0}
}
// The enumeration of keyword plan aggregate metric types.
@@ -97,7 +97,7 @@ type KeywordPlanAggregateMetricTypeEnum struct {
func (x *KeywordPlanAggregateMetricTypeEnum) Reset() {
*x = KeywordPlanAggregateMetricTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *KeywordPlanAggregateMetricTypeEnum) String() string {
func (*KeywordPlanAggregateMetricTypeEnum) ProtoMessage() {}
func (x *KeywordPlanAggregateMetricTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,19 +123,19 @@ func (x *KeywordPlanAggregateMetricTypeEnum) ProtoReflect() protoreflect.Message
// Deprecated: Use KeywordPlanAggregateMetricTypeEnum.ProtoReflect.Descriptor instead.
func (*KeywordPlanAggregateMetricTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_rawDesc = []byte{
0x0a, 0x47, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x61, 0x67,
0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x5f, 0x74,
0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x70, 0x0a, 0x22, 0x4b, 0x65, 0x79,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x70, 0x0a, 0x22, 0x4b, 0x65, 0x79,
0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74,
0x65, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x4a, 0x0a, 0x1e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x67,
@@ -144,43 +144,43 @@ var file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto
0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12,
0x0a, 0x0a, 0x06, 0x44, 0x45, 0x56, 0x49, 0x43, 0x45, 0x10, 0x02, 0x42, 0xfd, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x23, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41,
0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x54, 0x79,
0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_rawDescData = file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_rawDescData = file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_goTypes = []interface{}{
- (KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType)(0), // 0: google.ads.googleads.v16.enums.KeywordPlanAggregateMetricTypeEnum.KeywordPlanAggregateMetricType
- (*KeywordPlanAggregateMetricTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.KeywordPlanAggregateMetricTypeEnum
+var file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_goTypes = []interface{}{
+ (KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType)(0), // 0: google.ads.googleads.v17.enums.KeywordPlanAggregateMetricTypeEnum.KeywordPlanAggregateMetricType
+ (*KeywordPlanAggregateMetricTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.KeywordPlanAggregateMetricTypeEnum
}
-var file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -188,13 +188,13 @@ var file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_init() }
-func file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_init() {
- if File_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_init() }
+func file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordPlanAggregateMetricTypeEnum); i {
case 0:
return &v.state
@@ -211,19 +211,19 @@ func file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_prot
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto = out.File
- file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_keyword_plan_aggregate_metric_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto = out.File
+ file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_keyword_plan_aggregate_metric_type_proto_depIdxs = nil
}
diff --git a/enums/keyword_plan_competition_level.pb.go b/enums/keyword_plan_competition_level.pb.go
index 6ec48b63..8d3055bd 100644
--- a/enums/keyword_plan_competition_level.pb.go
+++ b/enums/keyword_plan_competition_level.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/keyword_plan_competition_level.proto
+// source: google/ads/googleads/v17/enums/keyword_plan_competition_level.proto
package enums
@@ -79,11 +79,11 @@ func (x KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel) String() st
}
func (KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_enumTypes[0].Descriptor()
}
func (KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_enumTypes[0]
}
func (x KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel) Number() pr
// Deprecated: Use KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel.Descriptor instead.
func (KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enumeration of keyword competition levels. The competition
@@ -109,7 +109,7 @@ type KeywordPlanCompetitionLevelEnum struct {
func (x *KeywordPlanCompetitionLevelEnum) Reset() {
*x = KeywordPlanCompetitionLevelEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -122,7 +122,7 @@ func (x *KeywordPlanCompetitionLevelEnum) String() string {
func (*KeywordPlanCompetitionLevelEnum) ProtoMessage() {}
func (x *KeywordPlanCompetitionLevelEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -135,18 +135,18 @@ func (x *KeywordPlanCompetitionLevelEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use KeywordPlanCompetitionLevelEnum.ProtoReflect.Descriptor instead.
func (*KeywordPlanCompetitionLevelEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x6f,
0x6d, 0x70, 0x65, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7d, 0x0a, 0x1f, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64,
0x50, 0x6c, 0x61, 0x6e, 0x43, 0x6f, 0x6d, 0x70, 0x65, 0x74, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x4c,
0x65, 0x76, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5a, 0x0a, 0x1b, 0x4b, 0x65, 0x79, 0x77,
@@ -157,42 +157,42 @@ var file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_raw
0x0a, 0x06, 0x4d, 0x45, 0x44, 0x49, 0x55, 0x4d, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x48, 0x49,
0x47, 0x48, 0x10, 0x04, 0x42, 0xfa, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x4b, 0x65, 0x79,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x4b, 0x65, 0x79,
0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x6f, 0x6d, 0x70, 0x65, 0x74, 0x69, 0x74,
0x69, 0x6f, 0x6e, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_rawDescData = file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_rawDesc
+ file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_rawDescData = file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_goTypes = []interface{}{
- (KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel)(0), // 0: google.ads.googleads.v16.enums.KeywordPlanCompetitionLevelEnum.KeywordPlanCompetitionLevel
- (*KeywordPlanCompetitionLevelEnum)(nil), // 1: google.ads.googleads.v16.enums.KeywordPlanCompetitionLevelEnum
+var file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_goTypes = []interface{}{
+ (KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel)(0), // 0: google.ads.googleads.v17.enums.KeywordPlanCompetitionLevelEnum.KeywordPlanCompetitionLevel
+ (*KeywordPlanCompetitionLevelEnum)(nil), // 1: google.ads.googleads.v17.enums.KeywordPlanCompetitionLevelEnum
}
-var file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -200,13 +200,13 @@ var file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_init() }
-func file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_init() {
- if File_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_init() }
+func file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_init() {
+ if File_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordPlanCompetitionLevelEnum); i {
case 0:
return &v.state
@@ -223,19 +223,19 @@ func file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto = out.File
- file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_keyword_plan_competition_level_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto = out.File
+ file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_keyword_plan_competition_level_proto_depIdxs = nil
}
diff --git a/enums/keyword_plan_concept_group_type.pb.go b/enums/keyword_plan_concept_group_type.pb.go
index 372de6a5..60fc9e85 100644
--- a/enums/keyword_plan_concept_group_type.pb.go
+++ b/enums/keyword_plan_concept_group_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/keyword_plan_concept_group_type.proto
+// source: google/ads/googleads/v17/enums/keyword_plan_concept_group_type.proto
package enums
@@ -84,11 +84,11 @@ func (x KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType) String() st
}
func (KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_enumTypes[0].Descriptor()
}
func (KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_enumTypes[0]
}
func (x KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType) Number() protoreflect.EnumNumber {
@@ -97,7 +97,7 @@ func (x KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType) Number() pr
// Deprecated: Use KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType.Descriptor instead.
func (KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enumeration of keyword plan concept group types.
@@ -110,7 +110,7 @@ type KeywordPlanConceptGroupTypeEnum struct {
func (x *KeywordPlanConceptGroupTypeEnum) Reset() {
*x = KeywordPlanConceptGroupTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -123,7 +123,7 @@ func (x *KeywordPlanConceptGroupTypeEnum) String() string {
func (*KeywordPlanConceptGroupTypeEnum) ProtoMessage() {}
func (x *KeywordPlanConceptGroupTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -136,18 +136,18 @@ func (x *KeywordPlanConceptGroupTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use KeywordPlanConceptGroupTypeEnum.ProtoReflect.Descriptor instead.
func (*KeywordPlanConceptGroupTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_rawDesc = []byte{
0x0a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x6f,
0x6e, 0x63, 0x65, 0x70, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8a, 0x01, 0x0a, 0x1f, 0x4b, 0x65, 0x79, 0x77, 0x6f,
0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x6f, 0x6e, 0x63, 0x65, 0x70, 0x74, 0x47, 0x72, 0x6f,
0x75, 0x70, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x67, 0x0a, 0x1b, 0x4b, 0x65,
@@ -159,42 +159,42 @@ var file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_ra
0x44, 0x53, 0x10, 0x03, 0x12, 0x0d, 0x0a, 0x09, 0x4e, 0x4f, 0x4e, 0x5f, 0x42, 0x52, 0x41, 0x4e,
0x44, 0x10, 0x04, 0x42, 0xfa, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x4b, 0x65, 0x79, 0x77,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x4b, 0x65, 0x79, 0x77,
0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x6f, 0x6e, 0x63, 0x65, 0x70, 0x74, 0x47, 0x72,
0x6f, 0x75, 0x70, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_rawDescData = file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_rawDescData = file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_goTypes = []interface{}{
- (KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType)(0), // 0: google.ads.googleads.v16.enums.KeywordPlanConceptGroupTypeEnum.KeywordPlanConceptGroupType
- (*KeywordPlanConceptGroupTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.KeywordPlanConceptGroupTypeEnum
+var file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_goTypes = []interface{}{
+ (KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType)(0), // 0: google.ads.googleads.v17.enums.KeywordPlanConceptGroupTypeEnum.KeywordPlanConceptGroupType
+ (*KeywordPlanConceptGroupTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.KeywordPlanConceptGroupTypeEnum
}
-var file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -202,13 +202,13 @@ var file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_de
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_init() }
-func file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_init() {
- if File_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_init() }
+func file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordPlanConceptGroupTypeEnum); i {
case 0:
return &v.state
@@ -225,19 +225,19 @@ func file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_i
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto = out.File
- file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_keyword_plan_concept_group_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto = out.File
+ file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_keyword_plan_concept_group_type_proto_depIdxs = nil
}
diff --git a/enums/keyword_plan_forecast_interval.pb.go b/enums/keyword_plan_forecast_interval.pb.go
index 32def7d3..58f93249 100644
--- a/enums/keyword_plan_forecast_interval.pb.go
+++ b/enums/keyword_plan_forecast_interval.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/keyword_plan_forecast_interval.proto
+// source: google/ads/googleads/v17/enums/keyword_plan_forecast_interval.proto
package enums
@@ -82,11 +82,11 @@ func (x KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval) String() st
}
func (KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_enumTypes[0].Descriptor()
}
func (KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_enumTypes[0]
}
func (x KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval) Number() protoreflect.EnumNumber {
@@ -95,7 +95,7 @@ func (x KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval) Number() pr
// Deprecated: Use KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval.Descriptor instead.
func (KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enumeration of forecast intervals.
@@ -108,7 +108,7 @@ type KeywordPlanForecastIntervalEnum struct {
func (x *KeywordPlanForecastIntervalEnum) Reset() {
*x = KeywordPlanForecastIntervalEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -121,7 +121,7 @@ func (x *KeywordPlanForecastIntervalEnum) String() string {
func (*KeywordPlanForecastIntervalEnum) ProtoMessage() {}
func (x *KeywordPlanForecastIntervalEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -134,18 +134,18 @@ func (x *KeywordPlanForecastIntervalEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use KeywordPlanForecastIntervalEnum.ProtoReflect.Descriptor instead.
func (*KeywordPlanForecastIntervalEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x66, 0x6f,
0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8f, 0x01, 0x0a, 0x1f, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72,
0x64, 0x50, 0x6c, 0x61, 0x6e, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x49, 0x6e, 0x74,
0x65, 0x72, 0x76, 0x61, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x6c, 0x0a, 0x1b, 0x4b, 0x65, 0x79,
@@ -157,42 +157,42 @@ var file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_raw
0x4e, 0x54, 0x48, 0x10, 0x04, 0x12, 0x10, 0x0a, 0x0c, 0x4e, 0x45, 0x58, 0x54, 0x5f, 0x51, 0x55,
0x41, 0x52, 0x54, 0x45, 0x52, 0x10, 0x05, 0x42, 0xfa, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20,
0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x46, 0x6f, 0x72, 0x65, 0x63,
0x61, 0x73, 0x74, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x76, 0x61, 0x6c, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_rawDescData = file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_rawDesc
+ file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_rawDescData = file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_goTypes = []interface{}{
- (KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval)(0), // 0: google.ads.googleads.v16.enums.KeywordPlanForecastIntervalEnum.KeywordPlanForecastInterval
- (*KeywordPlanForecastIntervalEnum)(nil), // 1: google.ads.googleads.v16.enums.KeywordPlanForecastIntervalEnum
+var file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_goTypes = []interface{}{
+ (KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval)(0), // 0: google.ads.googleads.v17.enums.KeywordPlanForecastIntervalEnum.KeywordPlanForecastInterval
+ (*KeywordPlanForecastIntervalEnum)(nil), // 1: google.ads.googleads.v17.enums.KeywordPlanForecastIntervalEnum
}
-var file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -200,13 +200,13 @@ var file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_init() }
-func file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_init() {
- if File_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_init() }
+func file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_init() {
+ if File_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordPlanForecastIntervalEnum); i {
case 0:
return &v.state
@@ -223,19 +223,19 @@ func file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto = out.File
- file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_keyword_plan_forecast_interval_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto = out.File
+ file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_keyword_plan_forecast_interval_proto_depIdxs = nil
}
diff --git a/enums/keyword_plan_keyword_annotation.pb.go b/enums/keyword_plan_keyword_annotation.pb.go
index ef847f95..8f912593 100644
--- a/enums/keyword_plan_keyword_annotation.pb.go
+++ b/enums/keyword_plan_keyword_annotation.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/keyword_plan_keyword_annotation.proto
+// source: google/ads/googleads/v17/enums/keyword_plan_keyword_annotation.proto
package enums
@@ -71,11 +71,11 @@ func (x KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation) String()
}
func (KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_enumTypes[0].Descriptor()
}
func (KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_enumTypes[0]
}
func (x KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation) Number()
// Deprecated: Use KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation.Descriptor instead.
func (KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enumeration of keyword plan keyword annotations.
@@ -97,7 +97,7 @@ type KeywordPlanKeywordAnnotationEnum struct {
func (x *KeywordPlanKeywordAnnotationEnum) Reset() {
*x = KeywordPlanKeywordAnnotationEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *KeywordPlanKeywordAnnotationEnum) String() string {
func (*KeywordPlanKeywordAnnotationEnum) ProtoMessage() {}
func (x *KeywordPlanKeywordAnnotationEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,18 +123,18 @@ func (x *KeywordPlanKeywordAnnotationEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use KeywordPlanKeywordAnnotationEnum.ProtoReflect.Descriptor instead.
func (*KeywordPlanKeywordAnnotationEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_rawDesc = []byte{
0x0a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x6b, 0x65,
0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x75, 0x0a, 0x20, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72,
0x64, 0x50, 0x6c, 0x61, 0x6e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x6e, 0x6e, 0x6f,
0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x51, 0x0a, 0x1c, 0x4b, 0x65,
@@ -144,43 +144,43 @@ var file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_ra
0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x13, 0x0a, 0x0f, 0x4b, 0x45, 0x59, 0x57,
0x4f, 0x52, 0x44, 0x5f, 0x43, 0x4f, 0x4e, 0x43, 0x45, 0x50, 0x54, 0x10, 0x02, 0x42, 0xfb, 0x01,
0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61,
0x6e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_rawDescData = file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_rawDesc
+ file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_rawDescData = file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_goTypes = []interface{}{
- (KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation)(0), // 0: google.ads.googleads.v16.enums.KeywordPlanKeywordAnnotationEnum.KeywordPlanKeywordAnnotation
- (*KeywordPlanKeywordAnnotationEnum)(nil), // 1: google.ads.googleads.v16.enums.KeywordPlanKeywordAnnotationEnum
+var file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_goTypes = []interface{}{
+ (KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation)(0), // 0: google.ads.googleads.v17.enums.KeywordPlanKeywordAnnotationEnum.KeywordPlanKeywordAnnotation
+ (*KeywordPlanKeywordAnnotationEnum)(nil), // 1: google.ads.googleads.v17.enums.KeywordPlanKeywordAnnotationEnum
}
-var file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -188,13 +188,13 @@ var file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_de
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_init() }
-func file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_init() {
- if File_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_init() }
+func file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_init() {
+ if File_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordPlanKeywordAnnotationEnum); i {
case 0:
return &v.state
@@ -211,19 +211,19 @@ func file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_i
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto = out.File
- file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_keyword_plan_keyword_annotation_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto = out.File
+ file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_keyword_plan_keyword_annotation_proto_depIdxs = nil
}
diff --git a/enums/keyword_plan_network.pb.go b/enums/keyword_plan_network.pb.go
index f7e12f73..23521e3d 100644
--- a/enums/keyword_plan_network.pb.go
+++ b/enums/keyword_plan_network.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/keyword_plan_network.proto
+// source: google/ads/googleads/v17/enums/keyword_plan_network.proto
package enums
@@ -75,11 +75,11 @@ func (x KeywordPlanNetworkEnum_KeywordPlanNetwork) String() string {
}
func (KeywordPlanNetworkEnum_KeywordPlanNetwork) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_keyword_plan_network_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_keyword_plan_network_proto_enumTypes[0].Descriptor()
}
func (KeywordPlanNetworkEnum_KeywordPlanNetwork) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_keyword_plan_network_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_keyword_plan_network_proto_enumTypes[0]
}
func (x KeywordPlanNetworkEnum_KeywordPlanNetwork) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x KeywordPlanNetworkEnum_KeywordPlanNetwork) Number() protoreflect.EnumNum
// Deprecated: Use KeywordPlanNetworkEnum_KeywordPlanNetwork.Descriptor instead.
func (KeywordPlanNetworkEnum_KeywordPlanNetwork) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_keyword_plan_network_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_keyword_plan_network_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enumeration of keyword plan forecastable network types.
@@ -101,7 +101,7 @@ type KeywordPlanNetworkEnum struct {
func (x *KeywordPlanNetworkEnum) Reset() {
*x = KeywordPlanNetworkEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_keyword_plan_network_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_keyword_plan_network_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *KeywordPlanNetworkEnum) String() string {
func (*KeywordPlanNetworkEnum) ProtoMessage() {}
func (x *KeywordPlanNetworkEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_keyword_plan_network_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_keyword_plan_network_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *KeywordPlanNetworkEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use KeywordPlanNetworkEnum.ProtoReflect.Descriptor instead.
func (*KeywordPlanNetworkEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_keyword_plan_network_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_keyword_plan_network_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_keyword_plan_network_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_keyword_plan_network_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_keyword_plan_network_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_keyword_plan_network_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x6e, 0x65,
0x74, 0x77, 0x6f, 0x72, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7f, 0x0a, 0x16, 0x4b,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7f, 0x0a, 0x16, 0x4b,
0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72,
0x6b, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x65, 0x0a, 0x12, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64,
0x50, 0x6c, 0x61, 0x6e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x12, 0x0f, 0x0a, 0x0b, 0x55,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_enums_keyword_plan_network_proto_rawDesc = []b
0x47, 0x4f, 0x4f, 0x47, 0x4c, 0x45, 0x5f, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x5f, 0x41, 0x4e,
0x44, 0x5f, 0x50, 0x41, 0x52, 0x54, 0x4e, 0x45, 0x52, 0x53, 0x10, 0x03, 0x42, 0xf1, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x17, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e,
0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_keyword_plan_network_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_keyword_plan_network_proto_rawDescData = file_google_ads_googleads_v16_enums_keyword_plan_network_proto_rawDesc
+ file_google_ads_googleads_v17_enums_keyword_plan_network_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_keyword_plan_network_proto_rawDescData = file_google_ads_googleads_v17_enums_keyword_plan_network_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_keyword_plan_network_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_keyword_plan_network_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_keyword_plan_network_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_keyword_plan_network_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_keyword_plan_network_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_keyword_plan_network_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_keyword_plan_network_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_keyword_plan_network_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_keyword_plan_network_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_keyword_plan_network_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_keyword_plan_network_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_keyword_plan_network_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_keyword_plan_network_proto_goTypes = []interface{}{
- (KeywordPlanNetworkEnum_KeywordPlanNetwork)(0), // 0: google.ads.googleads.v16.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork
- (*KeywordPlanNetworkEnum)(nil), // 1: google.ads.googleads.v16.enums.KeywordPlanNetworkEnum
+var file_google_ads_googleads_v17_enums_keyword_plan_network_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_keyword_plan_network_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_keyword_plan_network_proto_goTypes = []interface{}{
+ (KeywordPlanNetworkEnum_KeywordPlanNetwork)(0), // 0: google.ads.googleads.v17.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork
+ (*KeywordPlanNetworkEnum)(nil), // 1: google.ads.googleads.v17.enums.KeywordPlanNetworkEnum
}
-var file_google_ads_googleads_v16_enums_keyword_plan_network_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_keyword_plan_network_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_keyword_plan_network_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_keyword_plan_network_proto_init() }
-func file_google_ads_googleads_v16_enums_keyword_plan_network_proto_init() {
- if File_google_ads_googleads_v16_enums_keyword_plan_network_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_keyword_plan_network_proto_init() }
+func file_google_ads_googleads_v17_enums_keyword_plan_network_proto_init() {
+ if File_google_ads_googleads_v17_enums_keyword_plan_network_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_keyword_plan_network_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_keyword_plan_network_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordPlanNetworkEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_keyword_plan_network_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_keyword_plan_network_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_keyword_plan_network_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_keyword_plan_network_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_keyword_plan_network_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_keyword_plan_network_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_keyword_plan_network_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_keyword_plan_network_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_keyword_plan_network_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_keyword_plan_network_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_keyword_plan_network_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_keyword_plan_network_proto = out.File
- file_google_ads_googleads_v16_enums_keyword_plan_network_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_keyword_plan_network_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_keyword_plan_network_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_keyword_plan_network_proto = out.File
+ file_google_ads_googleads_v17_enums_keyword_plan_network_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_keyword_plan_network_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_keyword_plan_network_proto_depIdxs = nil
}
diff --git a/enums/label_status.pb.go b/enums/label_status.pb.go
index 929e7d46..f22f0650 100644
--- a/enums/label_status.pb.go
+++ b/enums/label_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/label_status.proto
+// source: google/ads/googleads/v17/enums/label_status.proto
package enums
@@ -75,11 +75,11 @@ func (x LabelStatusEnum_LabelStatus) String() string {
}
func (LabelStatusEnum_LabelStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_label_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_label_status_proto_enumTypes[0].Descriptor()
}
func (LabelStatusEnum_LabelStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_label_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_label_status_proto_enumTypes[0]
}
func (x LabelStatusEnum_LabelStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x LabelStatusEnum_LabelStatus) Number() protoreflect.EnumNumber {
// Deprecated: Use LabelStatusEnum_LabelStatus.Descriptor instead.
func (LabelStatusEnum_LabelStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_label_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_label_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible status of a label.
@@ -101,7 +101,7 @@ type LabelStatusEnum struct {
func (x *LabelStatusEnum) Reset() {
*x = LabelStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_label_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_label_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *LabelStatusEnum) String() string {
func (*LabelStatusEnum) ProtoMessage() {}
func (x *LabelStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_label_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_label_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,17 +127,17 @@ func (x *LabelStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LabelStatusEnum.ProtoReflect.Descriptor instead.
func (*LabelStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_label_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_label_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_label_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_label_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_label_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_label_status_proto_rawDesc = []byte{
0x0a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x22, 0x58, 0x0a, 0x0f, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x45, 0x0a, 0x0b, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49,
@@ -145,42 +145,42 @@ var file_google_ads_googleads_v16_enums_label_status_proto_rawDesc = []byte{
0x4e, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02,
0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42, 0xea, 0x01,
0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x42, 0x10, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75,
0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73,
- 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45,
+ 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
- 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_label_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_label_status_proto_rawDescData = file_google_ads_googleads_v16_enums_label_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_label_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_label_status_proto_rawDescData = file_google_ads_googleads_v17_enums_label_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_label_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_label_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_label_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_label_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_label_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_label_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_label_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_label_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_label_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_label_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_label_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_label_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_label_status_proto_goTypes = []interface{}{
- (LabelStatusEnum_LabelStatus)(0), // 0: google.ads.googleads.v16.enums.LabelStatusEnum.LabelStatus
- (*LabelStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.LabelStatusEnum
+var file_google_ads_googleads_v17_enums_label_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_label_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_label_status_proto_goTypes = []interface{}{
+ (LabelStatusEnum_LabelStatus)(0), // 0: google.ads.googleads.v17.enums.LabelStatusEnum.LabelStatus
+ (*LabelStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.LabelStatusEnum
}
-var file_google_ads_googleads_v16_enums_label_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_label_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -188,13 +188,13 @@ var file_google_ads_googleads_v16_enums_label_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_label_status_proto_init() }
-func file_google_ads_googleads_v16_enums_label_status_proto_init() {
- if File_google_ads_googleads_v16_enums_label_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_label_status_proto_init() }
+func file_google_ads_googleads_v17_enums_label_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_label_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_label_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_label_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LabelStatusEnum); i {
case 0:
return &v.state
@@ -211,19 +211,19 @@ func file_google_ads_googleads_v16_enums_label_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_label_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_label_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_label_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_label_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_label_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_label_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_label_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_label_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_label_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_label_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_label_status_proto = out.File
- file_google_ads_googleads_v16_enums_label_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_label_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_label_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_label_status_proto = out.File
+ file_google_ads_googleads_v17_enums_label_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_label_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_label_status_proto_depIdxs = nil
}
diff --git a/enums/lead_form_call_to_action_type.pb.go b/enums/lead_form_call_to_action_type.pb.go
index 48fb3c07..cf4a2261 100644
--- a/enums/lead_form_call_to_action_type.pb.go
+++ b/enums/lead_form_call_to_action_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/lead_form_call_to_action_type.proto
+// source: google/ads/googleads/v17/enums/lead_form_call_to_action_type.proto
package enums
@@ -123,11 +123,11 @@ func (x LeadFormCallToActionTypeEnum_LeadFormCallToActionType) String() string {
}
func (LeadFormCallToActionTypeEnum_LeadFormCallToActionType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_enumTypes[0].Descriptor()
}
func (LeadFormCallToActionTypeEnum_LeadFormCallToActionType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_enumTypes[0]
}
func (x LeadFormCallToActionTypeEnum_LeadFormCallToActionType) Number() protoreflect.EnumNumber {
@@ -136,7 +136,7 @@ func (x LeadFormCallToActionTypeEnum_LeadFormCallToActionType) Number() protoref
// Deprecated: Use LeadFormCallToActionTypeEnum_LeadFormCallToActionType.Descriptor instead.
func (LeadFormCallToActionTypeEnum_LeadFormCallToActionType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_rawDescGZIP(), []int{0, 0}
}
// Describes the type of call-to-action phrases in a lead form.
@@ -149,7 +149,7 @@ type LeadFormCallToActionTypeEnum struct {
func (x *LeadFormCallToActionTypeEnum) Reset() {
*x = LeadFormCallToActionTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -162,7 +162,7 @@ func (x *LeadFormCallToActionTypeEnum) String() string {
func (*LeadFormCallToActionTypeEnum) ProtoMessage() {}
func (x *LeadFormCallToActionTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -175,18 +175,18 @@ func (x *LeadFormCallToActionTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LeadFormCallToActionTypeEnum.ProtoReflect.Descriptor instead.
func (*LeadFormCallToActionTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_rawDesc = []byte{
0x0a, 0x42, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x5f,
0x74, 0x6f, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x22, 0xab, 0x02, 0x0a, 0x1c, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72,
0x6d, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70,
0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x8a, 0x02, 0x0a, 0x18, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f,
@@ -208,42 +208,42 @@ var file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_rawD
0x0e, 0x12, 0x0f, 0x0a, 0x0b, 0x47, 0x45, 0x54, 0x5f, 0x53, 0x54, 0x41, 0x52, 0x54, 0x45, 0x44,
0x10, 0x0f, 0x42, 0xf7, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x4c, 0x65, 0x61, 0x64, 0x46,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x4c, 0x65, 0x61, 0x64, 0x46,
0x6f, 0x72, 0x6d, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54,
0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_rawDescData = file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_rawDescData = file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_goTypes = []interface{}{
- (LeadFormCallToActionTypeEnum_LeadFormCallToActionType)(0), // 0: google.ads.googleads.v16.enums.LeadFormCallToActionTypeEnum.LeadFormCallToActionType
- (*LeadFormCallToActionTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.LeadFormCallToActionTypeEnum
+var file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_goTypes = []interface{}{
+ (LeadFormCallToActionTypeEnum_LeadFormCallToActionType)(0), // 0: google.ads.googleads.v17.enums.LeadFormCallToActionTypeEnum.LeadFormCallToActionType
+ (*LeadFormCallToActionTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.LeadFormCallToActionTypeEnum
}
-var file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -251,13 +251,13 @@ var file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_depI
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_init() }
-func file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_init() {
- if File_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_init() }
+func file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LeadFormCallToActionTypeEnum); i {
case 0:
return &v.state
@@ -274,19 +274,19 @@ func file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_ini
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto = out.File
- file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_lead_form_call_to_action_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto = out.File
+ file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_lead_form_call_to_action_type_proto_depIdxs = nil
}
diff --git a/enums/lead_form_desired_intent.pb.go b/enums/lead_form_desired_intent.pb.go
index 4c9f18c0..1cd667e5 100644
--- a/enums/lead_form_desired_intent.pb.go
+++ b/enums/lead_form_desired_intent.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/lead_form_desired_intent.proto
+// source: google/ads/googleads/v17/enums/lead_form_desired_intent.proto
package enums
@@ -75,11 +75,11 @@ func (x LeadFormDesiredIntentEnum_LeadFormDesiredIntent) String() string {
}
func (LeadFormDesiredIntentEnum_LeadFormDesiredIntent) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_enumTypes[0].Descriptor()
}
func (LeadFormDesiredIntentEnum_LeadFormDesiredIntent) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_enumTypes[0]
}
func (x LeadFormDesiredIntentEnum_LeadFormDesiredIntent) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x LeadFormDesiredIntentEnum_LeadFormDesiredIntent) Number() protoreflect.E
// Deprecated: Use LeadFormDesiredIntentEnum_LeadFormDesiredIntent.Descriptor instead.
func (LeadFormDesiredIntentEnum_LeadFormDesiredIntent) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_rawDescGZIP(), []int{0, 0}
}
// Describes the chosen level of intent of generated leads.
@@ -101,7 +101,7 @@ type LeadFormDesiredIntentEnum struct {
func (x *LeadFormDesiredIntentEnum) Reset() {
*x = LeadFormDesiredIntentEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *LeadFormDesiredIntentEnum) String() string {
func (*LeadFormDesiredIntentEnum) ProtoMessage() {}
func (x *LeadFormDesiredIntentEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *LeadFormDesiredIntentEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LeadFormDesiredIntentEnum.ProtoReflect.Descriptor instead.
func (*LeadFormDesiredIntentEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_lead_form_desired_intent_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_lead_form_desired_intent_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x64, 0x65, 0x73, 0x69, 0x72,
0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
0x73, 0x0a, 0x19, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x44, 0x65, 0x73, 0x69, 0x72,
0x65, 0x64, 0x49, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x56, 0x0a, 0x15,
0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x44, 0x65, 0x73, 0x69, 0x72, 0x65, 0x64, 0x49,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_rawDesc =
0x54, 0x10, 0x02, 0x12, 0x0f, 0x0a, 0x0b, 0x48, 0x49, 0x47, 0x48, 0x5f, 0x49, 0x4e, 0x54, 0x45,
0x4e, 0x54, 0x10, 0x03, 0x42, 0xf4, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x4c, 0x65, 0x61,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x4c, 0x65, 0x61,
0x64, 0x46, 0x6f, 0x72, 0x6d, 0x44, 0x65, 0x73, 0x69, 0x72, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x65,
0x6e, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_rawDescData = file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_rawDesc
+ file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_rawDescData = file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_goTypes = []interface{}{
- (LeadFormDesiredIntentEnum_LeadFormDesiredIntent)(0), // 0: google.ads.googleads.v16.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent
- (*LeadFormDesiredIntentEnum)(nil), // 1: google.ads.googleads.v16.enums.LeadFormDesiredIntentEnum
+var file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_goTypes = []interface{}{
+ (LeadFormDesiredIntentEnum_LeadFormDesiredIntent)(0), // 0: google.ads.googleads.v17.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent
+ (*LeadFormDesiredIntentEnum)(nil), // 1: google.ads.googleads.v17.enums.LeadFormDesiredIntentEnum
}
-var file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_init() }
-func file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_init() {
- if File_google_ads_googleads_v16_enums_lead_form_desired_intent_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_init() }
+func file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_init() {
+ if File_google_ads_googleads_v17_enums_lead_form_desired_intent_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LeadFormDesiredIntentEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_lead_form_desired_intent_proto = out.File
- file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_lead_form_desired_intent_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_lead_form_desired_intent_proto = out.File
+ file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_lead_form_desired_intent_proto_depIdxs = nil
}
diff --git a/enums/lead_form_field_user_input_type.pb.go b/enums/lead_form_field_user_input_type.pb.go
index ea58b1d0..1d4c8a39 100644
--- a/enums/lead_form_field_user_input_type.pb.go
+++ b/enums/lead_form_field_user_input_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/lead_form_field_user_input_type.proto
+// source: google/ads/googleads/v17/enums/lead_form_field_user_input_type.proto
package enums
@@ -820,11 +820,11 @@ func (x LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType) String() stri
}
func (LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_enumTypes[0].Descriptor()
}
func (LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_enumTypes[0]
}
func (x LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType) Number() protoreflect.EnumNumber {
@@ -833,7 +833,7 @@ func (x LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType) Number() prot
// Deprecated: Use LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType.Descriptor instead.
func (LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_rawDescGZIP(), []int{0, 0}
}
// Describes the input type of a lead form field.
@@ -846,7 +846,7 @@ type LeadFormFieldUserInputTypeEnum struct {
func (x *LeadFormFieldUserInputTypeEnum) Reset() {
*x = LeadFormFieldUserInputTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -859,7 +859,7 @@ func (x *LeadFormFieldUserInputTypeEnum) String() string {
func (*LeadFormFieldUserInputTypeEnum) ProtoMessage() {}
func (x *LeadFormFieldUserInputTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -872,18 +872,18 @@ func (x *LeadFormFieldUserInputTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LeadFormFieldUserInputTypeEnum.ProtoReflect.Descriptor instead.
func (*LeadFormFieldUserInputTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_rawDesc = []byte{
0x0a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64,
0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc8, 0x13, 0x0a, 0x1e, 0x4c, 0x65, 0x61, 0x64, 0x46,
0x6f, 0x72, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x70, 0x75,
0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xa5, 0x13, 0x0a, 0x1a, 0x4c, 0x65,
@@ -1043,42 +1043,42 @@ var file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_ra
0x5f, 0x41, 0x43, 0x43, 0x4f, 0x4d, 0x4d, 0x4f, 0x44, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x97,
0x08, 0x42, 0xf9, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1f, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1f, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f,
0x72, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x70, 0x75, 0x74,
0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_rawDescData = file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_rawDescData = file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_goTypes = []interface{}{
- (LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType)(0), // 0: google.ads.googleads.v16.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType
- (*LeadFormFieldUserInputTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.LeadFormFieldUserInputTypeEnum
+var file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_goTypes = []interface{}{
+ (LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType)(0), // 0: google.ads.googleads.v17.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType
+ (*LeadFormFieldUserInputTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.LeadFormFieldUserInputTypeEnum
}
-var file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -1086,13 +1086,13 @@ var file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_de
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_init() }
-func file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_init() {
- if File_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_init() }
+func file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LeadFormFieldUserInputTypeEnum); i {
case 0:
return &v.state
@@ -1109,19 +1109,19 @@ func file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_i
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto = out.File
- file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_lead_form_field_user_input_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto = out.File
+ file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_lead_form_field_user_input_type_proto_depIdxs = nil
}
diff --git a/enums/lead_form_post_submit_call_to_action_type.pb.go b/enums/lead_form_post_submit_call_to_action_type.pb.go
index 40e8f7f7..48573430 100644
--- a/enums/lead_form_post_submit_call_to_action_type.pb.go
+++ b/enums/lead_form_post_submit_call_to_action_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/lead_form_post_submit_call_to_action_type.proto
+// source: google/ads/googleads/v17/enums/lead_form_post_submit_call_to_action_type.proto
package enums
@@ -84,11 +84,11 @@ func (x LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionTyp
}
func (LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_enumTypes[0].Descriptor()
}
func (LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_enumTypes[0]
}
func (x LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType) Number() protoreflect.EnumNumber {
@@ -97,7 +97,7 @@ func (x LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionTyp
// Deprecated: Use LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType.Descriptor instead.
func (LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_rawDescGZIP(), []int{0, 0}
}
// Describes the type of post-submit call-to-action phrases for a lead form.
@@ -110,7 +110,7 @@ type LeadFormPostSubmitCallToActionTypeEnum struct {
func (x *LeadFormPostSubmitCallToActionTypeEnum) Reset() {
*x = LeadFormPostSubmitCallToActionTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -123,7 +123,7 @@ func (x *LeadFormPostSubmitCallToActionTypeEnum) String() string {
func (*LeadFormPostSubmitCallToActionTypeEnum) ProtoMessage() {}
func (x *LeadFormPostSubmitCallToActionTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -136,19 +136,19 @@ func (x *LeadFormPostSubmitCallToActionTypeEnum) ProtoReflect() protoreflect.Mes
// Deprecated: Use LeadFormPostSubmitCallToActionTypeEnum.ProtoReflect.Descriptor instead.
func (*LeadFormPostSubmitCallToActionTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_rawDesc = []byte{
0x0a, 0x4e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x70, 0x6f, 0x73, 0x74, 0x5f,
0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x6f, 0x5f, 0x61,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0xa8, 0x01, 0x0a, 0x26, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x50, 0x6f, 0x73,
0x74, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x7e, 0x0a, 0x22, 0x4c,
@@ -161,43 +161,43 @@ var file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_typ
0x0a, 0x4c, 0x45, 0x41, 0x52, 0x4e, 0x5f, 0x4d, 0x4f, 0x52, 0x45, 0x10, 0x04, 0x12, 0x0c, 0x0a,
0x08, 0x53, 0x48, 0x4f, 0x50, 0x5f, 0x4e, 0x4f, 0x57, 0x10, 0x05, 0x42, 0x81, 0x02, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x27, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x50, 0x6f, 0x73, 0x74,
0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69,
0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_rawDescData = file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_rawDescData = file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_goTypes = []interface{}{
- (LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType)(0), // 0: google.ads.googleads.v16.enums.LeadFormPostSubmitCallToActionTypeEnum.LeadFormPostSubmitCallToActionType
- (*LeadFormPostSubmitCallToActionTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.LeadFormPostSubmitCallToActionTypeEnum
+var file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_goTypes = []interface{}{
+ (LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType)(0), // 0: google.ads.googleads.v17.enums.LeadFormPostSubmitCallToActionTypeEnum.LeadFormPostSubmitCallToActionType
+ (*LeadFormPostSubmitCallToActionTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.LeadFormPostSubmitCallToActionTypeEnum
}
-var file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -206,14 +206,14 @@ var file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_typ
}
func init() {
- file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_init()
+ file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_init()
}
-func file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_init() {
- if File_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto != nil {
+func file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LeadFormPostSubmitCallToActionTypeEnum); i {
case 0:
return &v.state
@@ -230,19 +230,19 @@ func file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_ty
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto = out.File
- file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_lead_form_post_submit_call_to_action_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto = out.File
+ file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_lead_form_post_submit_call_to_action_type_proto_depIdxs = nil
}
diff --git a/enums/legacy_app_install_ad_app_store.pb.go b/enums/legacy_app_install_ad_app_store.pb.go
index 7e1b63f6..e72528ff 100644
--- a/enums/legacy_app_install_ad_app_store.pb.go
+++ b/enums/legacy_app_install_ad_app_store.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/legacy_app_install_ad_app_store.proto
+// source: google/ads/googleads/v17/enums/legacy_app_install_ad_app_store.proto
package enums
@@ -87,11 +87,11 @@ func (x LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore) String() stri
}
func (LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_enumTypes[0].Descriptor()
}
func (LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_enumTypes[0]
}
func (x LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore) Number() prot
// Deprecated: Use LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore.Descriptor instead.
func (LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing app store type in a legacy app install ad.
@@ -113,7 +113,7 @@ type LegacyAppInstallAdAppStoreEnum struct {
func (x *LegacyAppInstallAdAppStoreEnum) Reset() {
*x = LegacyAppInstallAdAppStoreEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +126,7 @@ func (x *LegacyAppInstallAdAppStoreEnum) String() string {
func (*LegacyAppInstallAdAppStoreEnum) ProtoMessage() {}
func (x *LegacyAppInstallAdAppStoreEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,18 +139,18 @@ func (x *LegacyAppInstallAdAppStoreEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LegacyAppInstallAdAppStoreEnum.ProtoReflect.Descriptor instead.
func (*LegacyAppInstallAdAppStoreEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_rawDesc = []byte{
0x0a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x69, 0x6e, 0x73, 0x74,
0x61, 0x6c, 0x6c, 0x5f, 0x61, 0x64, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc1, 0x01, 0x0a, 0x1e, 0x4c, 0x65, 0x67, 0x61, 0x63,
0x79, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x41, 0x64, 0x41, 0x70, 0x70,
0x53, 0x74, 0x6f, 0x72, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x9e, 0x01, 0x0a, 0x1a, 0x4c, 0x65,
@@ -165,42 +165,42 @@ var file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_ra
0x5f, 0x53, 0x54, 0x4f, 0x52, 0x45, 0x10, 0x05, 0x12, 0x10, 0x0a, 0x0c, 0x43, 0x4e, 0x5f, 0x41,
0x50, 0x50, 0x5f, 0x53, 0x54, 0x4f, 0x52, 0x45, 0x10, 0x06, 0x42, 0xf9, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x1f, 0x4c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x73, 0x74,
0x61, 0x6c, 0x6c, 0x41, 0x64, 0x41, 0x70, 0x70, 0x53, 0x74, 0x6f, 0x72, 0x65, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_rawDescData = file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_rawDesc
+ file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_rawDescData = file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_goTypes = []interface{}{
- (LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore)(0), // 0: google.ads.googleads.v16.enums.LegacyAppInstallAdAppStoreEnum.LegacyAppInstallAdAppStore
- (*LegacyAppInstallAdAppStoreEnum)(nil), // 1: google.ads.googleads.v16.enums.LegacyAppInstallAdAppStoreEnum
+var file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_goTypes = []interface{}{
+ (LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore)(0), // 0: google.ads.googleads.v17.enums.LegacyAppInstallAdAppStoreEnum.LegacyAppInstallAdAppStore
+ (*LegacyAppInstallAdAppStoreEnum)(nil), // 1: google.ads.googleads.v17.enums.LegacyAppInstallAdAppStoreEnum
}
-var file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -208,13 +208,13 @@ var file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_de
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_init() }
-func file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_init() {
- if File_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_init() }
+func file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_init() {
+ if File_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LegacyAppInstallAdAppStoreEnum); i {
case 0:
return &v.state
@@ -231,19 +231,19 @@ func file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_i
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto = out.File
- file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_legacy_app_install_ad_app_store_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto = out.File
+ file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_legacy_app_install_ad_app_store_proto_depIdxs = nil
}
diff --git a/enums/linked_account_type.pb.go b/enums/linked_account_type.pb.go
index d23bf9cb..e0881721 100644
--- a/enums/linked_account_type.pb.go
+++ b/enums/linked_account_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/linked_account_type.proto
+// source: google/ads/googleads/v17/enums/linked_account_type.proto
package enums
@@ -72,11 +72,11 @@ func (x LinkedAccountTypeEnum_LinkedAccountType) String() string {
}
func (LinkedAccountTypeEnum_LinkedAccountType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_linked_account_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_linked_account_type_proto_enumTypes[0].Descriptor()
}
func (LinkedAccountTypeEnum_LinkedAccountType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_linked_account_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_linked_account_type_proto_enumTypes[0]
}
func (x LinkedAccountTypeEnum_LinkedAccountType) Number() protoreflect.EnumNumber {
@@ -85,7 +85,7 @@ func (x LinkedAccountTypeEnum_LinkedAccountType) Number() protoreflect.EnumNumbe
// Deprecated: Use LinkedAccountTypeEnum_LinkedAccountType.Descriptor instead.
func (LinkedAccountTypeEnum_LinkedAccountType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_linked_account_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_linked_account_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing different types of Linked accounts.
@@ -98,7 +98,7 @@ type LinkedAccountTypeEnum struct {
func (x *LinkedAccountTypeEnum) Reset() {
*x = LinkedAccountTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_linked_account_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_linked_account_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -111,7 +111,7 @@ func (x *LinkedAccountTypeEnum) String() string {
func (*LinkedAccountTypeEnum) ProtoMessage() {}
func (x *LinkedAccountTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_linked_account_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_linked_account_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -124,18 +124,18 @@ func (x *LinkedAccountTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LinkedAccountTypeEnum.ProtoReflect.Descriptor instead.
func (*LinkedAccountTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_linked_account_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_linked_account_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_linked_account_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_linked_account_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_linked_account_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_linked_account_type_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f,
0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x69, 0x0a, 0x15, 0x4c, 0x69,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x69, 0x0a, 0x15, 0x4c, 0x69,
0x6e, 0x6b, 0x65, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0x50, 0x0a, 0x11, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x41, 0x63, 0x63,
0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50,
@@ -144,41 +144,41 @@ var file_google_ads_googleads_v16_enums_linked_account_type_proto_rawDesc = []by
0x50, 0x41, 0x52, 0x54, 0x59, 0x5f, 0x41, 0x50, 0x50, 0x5f, 0x41, 0x4e, 0x41, 0x4c, 0x59, 0x54,
0x49, 0x43, 0x53, 0x10, 0x02, 0x42, 0xf0, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x4c, 0x69,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x4c, 0x69,
0x6e, 0x6b, 0x65, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_linked_account_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_linked_account_type_proto_rawDescData = file_google_ads_googleads_v16_enums_linked_account_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_linked_account_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_linked_account_type_proto_rawDescData = file_google_ads_googleads_v17_enums_linked_account_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_linked_account_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_linked_account_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_linked_account_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_linked_account_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_linked_account_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_linked_account_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_linked_account_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_linked_account_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_linked_account_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_linked_account_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_linked_account_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_linked_account_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_linked_account_type_proto_goTypes = []interface{}{
- (LinkedAccountTypeEnum_LinkedAccountType)(0), // 0: google.ads.googleads.v16.enums.LinkedAccountTypeEnum.LinkedAccountType
- (*LinkedAccountTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.LinkedAccountTypeEnum
+var file_google_ads_googleads_v17_enums_linked_account_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_linked_account_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_linked_account_type_proto_goTypes = []interface{}{
+ (LinkedAccountTypeEnum_LinkedAccountType)(0), // 0: google.ads.googleads.v17.enums.LinkedAccountTypeEnum.LinkedAccountType
+ (*LinkedAccountTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.LinkedAccountTypeEnum
}
-var file_google_ads_googleads_v16_enums_linked_account_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_linked_account_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -186,13 +186,13 @@ var file_google_ads_googleads_v16_enums_linked_account_type_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_linked_account_type_proto_init() }
-func file_google_ads_googleads_v16_enums_linked_account_type_proto_init() {
- if File_google_ads_googleads_v16_enums_linked_account_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_linked_account_type_proto_init() }
+func file_google_ads_googleads_v17_enums_linked_account_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_linked_account_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_linked_account_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_linked_account_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LinkedAccountTypeEnum); i {
case 0:
return &v.state
@@ -209,19 +209,19 @@ func file_google_ads_googleads_v16_enums_linked_account_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_linked_account_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_linked_account_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_linked_account_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_linked_account_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_linked_account_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_linked_account_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_linked_account_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_linked_account_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_linked_account_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_linked_account_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_linked_account_type_proto = out.File
- file_google_ads_googleads_v16_enums_linked_account_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_linked_account_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_linked_account_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_linked_account_type_proto = out.File
+ file_google_ads_googleads_v17_enums_linked_account_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_linked_account_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_linked_account_type_proto_depIdxs = nil
}
diff --git a/enums/linked_product_type.pb.go b/enums/linked_product_type.pb.go
index 013377bf..6bbd76ae 100644
--- a/enums/linked_product_type.pb.go
+++ b/enums/linked_product_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/linked_product_type.proto
+// source: google/ads/googleads/v17/enums/linked_product_type.proto
package enums
@@ -88,11 +88,11 @@ func (x LinkedProductTypeEnum_LinkedProductType) String() string {
}
func (LinkedProductTypeEnum_LinkedProductType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_linked_product_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_linked_product_type_proto_enumTypes[0].Descriptor()
}
func (LinkedProductTypeEnum_LinkedProductType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_linked_product_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_linked_product_type_proto_enumTypes[0]
}
func (x LinkedProductTypeEnum_LinkedProductType) Number() protoreflect.EnumNumber {
@@ -101,7 +101,7 @@ func (x LinkedProductTypeEnum_LinkedProductType) Number() protoreflect.EnumNumbe
// Deprecated: Use LinkedProductTypeEnum_LinkedProductType.Descriptor instead.
func (LinkedProductTypeEnum_LinkedProductType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_linked_product_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_linked_product_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing different types of linked products.
@@ -114,7 +114,7 @@ type LinkedProductTypeEnum struct {
func (x *LinkedProductTypeEnum) Reset() {
*x = LinkedProductTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_linked_product_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_linked_product_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -127,7 +127,7 @@ func (x *LinkedProductTypeEnum) String() string {
func (*LinkedProductTypeEnum) ProtoMessage() {}
func (x *LinkedProductTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_linked_product_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_linked_product_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -140,18 +140,18 @@ func (x *LinkedProductTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LinkedProductTypeEnum.ProtoReflect.Descriptor instead.
func (*LinkedProductTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_linked_product_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_linked_product_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_linked_product_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_linked_product_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_linked_product_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_linked_product_type_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f,
0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xad, 0x01, 0x0a, 0x15, 0x4c,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xad, 0x01, 0x0a, 0x15, 0x4c,
0x69, 0x6e, 0x6b, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x93, 0x01, 0x0a, 0x11, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x50,
0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e,
@@ -164,42 +164,42 @@ var file_google_ads_googleads_v16_enums_linked_product_type_proto_rawDesc = []by
0x08, 0x12, 0x17, 0x0a, 0x13, 0x41, 0x44, 0x56, 0x45, 0x52, 0x54, 0x49, 0x53, 0x49, 0x4e, 0x47,
0x5f, 0x50, 0x41, 0x52, 0x54, 0x4e, 0x45, 0x52, 0x10, 0x09, 0x42, 0xf0, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x16, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_linked_product_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_linked_product_type_proto_rawDescData = file_google_ads_googleads_v16_enums_linked_product_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_linked_product_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_linked_product_type_proto_rawDescData = file_google_ads_googleads_v17_enums_linked_product_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_linked_product_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_linked_product_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_linked_product_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_linked_product_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_linked_product_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_linked_product_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_linked_product_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_linked_product_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_linked_product_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_linked_product_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_linked_product_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_linked_product_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_linked_product_type_proto_goTypes = []interface{}{
- (LinkedProductTypeEnum_LinkedProductType)(0), // 0: google.ads.googleads.v16.enums.LinkedProductTypeEnum.LinkedProductType
- (*LinkedProductTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.LinkedProductTypeEnum
+var file_google_ads_googleads_v17_enums_linked_product_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_linked_product_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_linked_product_type_proto_goTypes = []interface{}{
+ (LinkedProductTypeEnum_LinkedProductType)(0), // 0: google.ads.googleads.v17.enums.LinkedProductTypeEnum.LinkedProductType
+ (*LinkedProductTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.LinkedProductTypeEnum
}
-var file_google_ads_googleads_v16_enums_linked_product_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_linked_product_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -207,13 +207,13 @@ var file_google_ads_googleads_v16_enums_linked_product_type_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_linked_product_type_proto_init() }
-func file_google_ads_googleads_v16_enums_linked_product_type_proto_init() {
- if File_google_ads_googleads_v16_enums_linked_product_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_linked_product_type_proto_init() }
+func file_google_ads_googleads_v17_enums_linked_product_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_linked_product_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_linked_product_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_linked_product_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LinkedProductTypeEnum); i {
case 0:
return &v.state
@@ -230,19 +230,19 @@ func file_google_ads_googleads_v16_enums_linked_product_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_linked_product_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_linked_product_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_linked_product_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_linked_product_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_linked_product_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_linked_product_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_linked_product_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_linked_product_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_linked_product_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_linked_product_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_linked_product_type_proto = out.File
- file_google_ads_googleads_v16_enums_linked_product_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_linked_product_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_linked_product_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_linked_product_type_proto = out.File
+ file_google_ads_googleads_v17_enums_linked_product_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_linked_product_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_linked_product_type_proto_depIdxs = nil
}
diff --git a/enums/listing_group_filter_custom_attribute_index.pb.go b/enums/listing_group_filter_custom_attribute_index.pb.go
index 5692f994..bff231e9 100644
--- a/enums/listing_group_filter_custom_attribute_index.pb.go
+++ b/enums/listing_group_filter_custom_attribute_index.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/listing_group_filter_custom_attribute_index.proto
+// source: google/ads/googleads/v17/enums/listing_group_filter_custom_attribute_index.proto
package enums
@@ -87,11 +87,11 @@ func (x ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttri
}
func (ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_enumTypes[0].Descriptor()
}
func (ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_enumTypes[0]
}
func (x ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttri
// Deprecated: Use ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex.Descriptor instead.
func (ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the indexes of custom attribute used in
@@ -114,7 +114,7 @@ type ListingGroupFilterCustomAttributeIndexEnum struct {
func (x *ListingGroupFilterCustomAttributeIndexEnum) Reset() {
*x = ListingGroupFilterCustomAttributeIndexEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -127,7 +127,7 @@ func (x *ListingGroupFilterCustomAttributeIndexEnum) String() string {
func (*ListingGroupFilterCustomAttributeIndexEnum) ProtoMessage() {}
func (x *ListingGroupFilterCustomAttributeIndexEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -140,19 +140,19 @@ func (x *ListingGroupFilterCustomAttributeIndexEnum) ProtoReflect() protoreflect
// Deprecated: Use ListingGroupFilterCustomAttributeIndexEnum.ProtoReflect.Descriptor instead.
func (*ListingGroupFilterCustomAttributeIndexEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_rawDesc = []byte{
0x0a, 0x50, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x74, 0x74,
0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0xb1, 0x01, 0x0a, 0x2a, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72,
0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41,
0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x45, 0x6e, 0x75,
@@ -166,43 +166,43 @@ var file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_in
0x0a, 0x06, 0x49, 0x4e, 0x44, 0x45, 0x58, 0x33, 0x10, 0x05, 0x12, 0x0a, 0x0a, 0x06, 0x49, 0x4e,
0x44, 0x45, 0x58, 0x34, 0x10, 0x06, 0x42, 0x85, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2b, 0x4c,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2b, 0x4c,
0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65,
0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
0x49, 0x6e, 0x64, 0x65, 0x78, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_rawDescData = file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_rawDesc
+ file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_rawDescData = file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_goTypes = []interface{}{
- (ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex)(0), // 0: google.ads.googleads.v16.enums.ListingGroupFilterCustomAttributeIndexEnum.ListingGroupFilterCustomAttributeIndex
- (*ListingGroupFilterCustomAttributeIndexEnum)(nil), // 1: google.ads.googleads.v16.enums.ListingGroupFilterCustomAttributeIndexEnum
+var file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_goTypes = []interface{}{
+ (ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex)(0), // 0: google.ads.googleads.v17.enums.ListingGroupFilterCustomAttributeIndexEnum.ListingGroupFilterCustomAttributeIndex
+ (*ListingGroupFilterCustomAttributeIndexEnum)(nil), // 1: google.ads.googleads.v17.enums.ListingGroupFilterCustomAttributeIndexEnum
}
-var file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -211,14 +211,14 @@ var file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_in
}
func init() {
- file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_init()
+ file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_init()
}
-func file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_init() {
- if File_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto != nil {
+func file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_init() {
+ if File_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListingGroupFilterCustomAttributeIndexEnum); i {
case 0:
return &v.state
@@ -235,19 +235,19 @@ func file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_i
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto = out.File
- file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_listing_group_filter_custom_attribute_index_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto = out.File
+ file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_listing_group_filter_custom_attribute_index_proto_depIdxs = nil
}
diff --git a/enums/listing_group_filter_listing_source.pb.go b/enums/listing_group_filter_listing_source.pb.go
index 70379cfa..2517e25e 100644
--- a/enums/listing_group_filter_listing_source.pb.go
+++ b/enums/listing_group_filter_listing_source.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/listing_group_filter_listing_source.proto
+// source: google/ads/googleads/v17/enums/listing_group_filter_listing_source.proto
package enums
@@ -77,11 +77,11 @@ func (x ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource) Str
}
func (ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_enumTypes[0].Descriptor()
}
func (ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_enumTypes[0]
}
func (x ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource) Number() protoreflect.EnumNumber {
@@ -90,7 +90,7 @@ func (x ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource) Num
// Deprecated: Use ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource.Descriptor instead.
func (ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the source of listings filtered by a listing
@@ -104,7 +104,7 @@ type ListingGroupFilterListingSourceEnum struct {
func (x *ListingGroupFilterListingSourceEnum) Reset() {
*x = ListingGroupFilterListingSourceEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -117,7 +117,7 @@ func (x *ListingGroupFilterListingSourceEnum) String() string {
func (*ListingGroupFilterListingSourceEnum) ProtoMessage() {}
func (x *ListingGroupFilterListingSourceEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -130,19 +130,19 @@ func (x *ListingGroupFilterListingSourceEnum) ProtoReflect() protoreflect.Messag
// Deprecated: Use ListingGroupFilterListingSourceEnum.ProtoReflect.Descriptor instead.
func (*ListingGroupFilterListingSourceEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_rawDesc = []byte{
0x0a, 0x48, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x6f,
0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x81, 0x01, 0x0a, 0x23, 0x4c,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x81, 0x01, 0x0a, 0x23, 0x4c,
0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65,
0x72, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0x5a, 0x0a, 0x1f, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f,
@@ -152,43 +152,43 @@ var file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_prot
0x4e, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x53, 0x48, 0x4f, 0x50, 0x50, 0x49, 0x4e, 0x47, 0x10,
0x02, 0x12, 0x0b, 0x0a, 0x07, 0x57, 0x45, 0x42, 0x50, 0x41, 0x47, 0x45, 0x10, 0x03, 0x42, 0xfe,
0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x24, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72,
0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67,
0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_rawDescData = file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_rawDesc
+ file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_rawDescData = file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_goTypes = []interface{}{
- (ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource)(0), // 0: google.ads.googleads.v16.enums.ListingGroupFilterListingSourceEnum.ListingGroupFilterListingSource
- (*ListingGroupFilterListingSourceEnum)(nil), // 1: google.ads.googleads.v16.enums.ListingGroupFilterListingSourceEnum
+var file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_goTypes = []interface{}{
+ (ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource)(0), // 0: google.ads.googleads.v17.enums.ListingGroupFilterListingSourceEnum.ListingGroupFilterListingSource
+ (*ListingGroupFilterListingSourceEnum)(nil), // 1: google.ads.googleads.v17.enums.ListingGroupFilterListingSourceEnum
}
-var file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -196,13 +196,13 @@ var file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_prot
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_init() }
-func file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_init() {
- if File_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_init() }
+func file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_init() {
+ if File_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListingGroupFilterListingSourceEnum); i {
case 0:
return &v.state
@@ -219,19 +219,19 @@ func file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_pro
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto = out.File
- file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_listing_group_filter_listing_source_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto = out.File
+ file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_listing_group_filter_listing_source_proto_depIdxs = nil
}
diff --git a/enums/listing_group_filter_product_category_level.pb.go b/enums/listing_group_filter_product_category_level.pb.go
index 55080154..fa1b3767 100644
--- a/enums/listing_group_filter_product_category_level.pb.go
+++ b/enums/listing_group_filter_product_category_level.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/listing_group_filter_product_category_level.proto
+// source: google/ads/googleads/v17/enums/listing_group_filter_product_category_level.proto
package enums
@@ -87,11 +87,11 @@ func (x ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCate
}
func (ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_enumTypes[0].Descriptor()
}
func (ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_enumTypes[0]
}
func (x ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCate
// Deprecated: Use ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel.Descriptor instead.
func (ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the levels of product category used in
@@ -114,7 +114,7 @@ type ListingGroupFilterProductCategoryLevelEnum struct {
func (x *ListingGroupFilterProductCategoryLevelEnum) Reset() {
*x = ListingGroupFilterProductCategoryLevelEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -127,7 +127,7 @@ func (x *ListingGroupFilterProductCategoryLevelEnum) String() string {
func (*ListingGroupFilterProductCategoryLevelEnum) ProtoMessage() {}
func (x *ListingGroupFilterProductCategoryLevelEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -140,19 +140,19 @@ func (x *ListingGroupFilterProductCategoryLevelEnum) ProtoReflect() protoreflect
// Deprecated: Use ListingGroupFilterProductCategoryLevelEnum.ProtoReflect.Descriptor instead.
func (*ListingGroupFilterProductCategoryLevelEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_rawDesc = []byte{
0x0a, 0x50, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x61,
0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0xb1, 0x01, 0x0a, 0x2a, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72,
0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x45, 0x6e, 0x75,
@@ -166,43 +166,43 @@ var file_google_ads_googleads_v16_enums_listing_group_filter_product_category_le
0x0a, 0x06, 0x4c, 0x45, 0x56, 0x45, 0x4c, 0x34, 0x10, 0x05, 0x12, 0x0a, 0x0a, 0x06, 0x4c, 0x45,
0x56, 0x45, 0x4c, 0x35, 0x10, 0x06, 0x42, 0x85, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2b, 0x4c,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2b, 0x4c,
0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65,
0x72, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79,
0x4c, 0x65, 0x76, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_rawDescData = file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_rawDesc
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_rawDescData = file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_goTypes = []interface{}{
- (ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel)(0), // 0: google.ads.googleads.v16.enums.ListingGroupFilterProductCategoryLevelEnum.ListingGroupFilterProductCategoryLevel
- (*ListingGroupFilterProductCategoryLevelEnum)(nil), // 1: google.ads.googleads.v16.enums.ListingGroupFilterProductCategoryLevelEnum
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_goTypes = []interface{}{
+ (ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel)(0), // 0: google.ads.googleads.v17.enums.ListingGroupFilterProductCategoryLevelEnum.ListingGroupFilterProductCategoryLevel
+ (*ListingGroupFilterProductCategoryLevelEnum)(nil), // 1: google.ads.googleads.v17.enums.ListingGroupFilterProductCategoryLevelEnum
}
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -211,14 +211,14 @@ var file_google_ads_googleads_v16_enums_listing_group_filter_product_category_le
}
func init() {
- file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_init()
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_init()
}
-func file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_init() {
- if File_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto != nil {
+func file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_init() {
+ if File_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListingGroupFilterProductCategoryLevelEnum); i {
case 0:
return &v.state
@@ -235,19 +235,19 @@ func file_google_ads_googleads_v16_enums_listing_group_filter_product_category_l
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto = out.File
- file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_listing_group_filter_product_category_level_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto = out.File
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_category_level_proto_depIdxs = nil
}
diff --git a/enums/listing_group_filter_product_channel.pb.go b/enums/listing_group_filter_product_channel.pb.go
index 4fa347b6..e0fdced7 100644
--- a/enums/listing_group_filter_product_channel.pb.go
+++ b/enums/listing_group_filter_product_channel.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/listing_group_filter_product_channel.proto
+// source: google/ads/googleads/v17/enums/listing_group_filter_product_channel.proto
package enums
@@ -75,11 +75,11 @@ func (x ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel) S
}
func (ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_enumTypes[0].Descriptor()
}
func (ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_enumTypes[0]
}
func (x ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel) N
// Deprecated: Use ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel.Descriptor instead.
func (ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_rawDescGZIP(), []int{0, 0}
}
// Locality of a product offer.
@@ -101,7 +101,7 @@ type ListingGroupFilterProductChannelEnum struct {
func (x *ListingGroupFilterProductChannelEnum) Reset() {
*x = ListingGroupFilterProductChannelEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *ListingGroupFilterProductChannelEnum) String() string {
func (*ListingGroupFilterProductChannelEnum) ProtoMessage() {}
func (x *ListingGroupFilterProductChannelEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,19 +127,19 @@ func (x *ListingGroupFilterProductChannelEnum) ProtoReflect() protoreflect.Messa
// Deprecated: Use ListingGroupFilterProductChannelEnum.ProtoReflect.Descriptor instead.
func (*ListingGroupFilterProductChannelEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_rawDesc = []byte{
0x0a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x68,
0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7f, 0x0a, 0x24, 0x4c,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7f, 0x0a, 0x24, 0x4c,
0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65,
0x72, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0x57, 0x0a, 0x20, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72,
@@ -149,43 +149,43 @@ var file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_pro
0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x4f, 0x4e, 0x4c, 0x49, 0x4e, 0x45, 0x10,
0x02, 0x12, 0x09, 0x0a, 0x05, 0x4c, 0x4f, 0x43, 0x41, 0x4c, 0x10, 0x03, 0x42, 0xff, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x25, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75,
0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x68,
0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_rawDescData = file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_rawDesc
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_rawDescData = file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_goTypes = []interface{}{
- (ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel)(0), // 0: google.ads.googleads.v16.enums.ListingGroupFilterProductChannelEnum.ListingGroupFilterProductChannel
- (*ListingGroupFilterProductChannelEnum)(nil), // 1: google.ads.googleads.v16.enums.ListingGroupFilterProductChannelEnum
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_goTypes = []interface{}{
+ (ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel)(0), // 0: google.ads.googleads.v17.enums.ListingGroupFilterProductChannelEnum.ListingGroupFilterProductChannel
+ (*ListingGroupFilterProductChannelEnum)(nil), // 1: google.ads.googleads.v17.enums.ListingGroupFilterProductChannelEnum
}
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -193,13 +193,13 @@ var file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_pro
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_init() }
-func file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_init() {
- if File_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_init() }
+func file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_init() {
+ if File_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListingGroupFilterProductChannelEnum); i {
case 0:
return &v.state
@@ -216,19 +216,19 @@ func file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_pr
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto = out.File
- file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_listing_group_filter_product_channel_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto = out.File
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_channel_proto_depIdxs = nil
}
diff --git a/enums/listing_group_filter_product_condition.pb.go b/enums/listing_group_filter_product_condition.pb.go
index 7bbc6a29..4a5a45be 100644
--- a/enums/listing_group_filter_product_condition.pb.go
+++ b/enums/listing_group_filter_product_condition.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/listing_group_filter_product_condition.proto
+// source: google/ads/googleads/v17/enums/listing_group_filter_product_condition.proto
package enums
@@ -79,11 +79,11 @@ func (x ListingGroupFilterProductConditionEnum_ListingGroupFilterProductConditio
}
func (ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_enumTypes[0].Descriptor()
}
func (ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_enumTypes[0]
}
func (x ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x ListingGroupFilterProductConditionEnum_ListingGroupFilterProductConditio
// Deprecated: Use ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition.Descriptor instead.
func (ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_rawDescGZIP(), []int{0, 0}
}
// Condition of a product offer.
@@ -105,7 +105,7 @@ type ListingGroupFilterProductConditionEnum struct {
func (x *ListingGroupFilterProductConditionEnum) Reset() {
*x = ListingGroupFilterProductConditionEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *ListingGroupFilterProductConditionEnum) String() string {
func (*ListingGroupFilterProductConditionEnum) ProtoMessage() {}
func (x *ListingGroupFilterProductConditionEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,19 +131,19 @@ func (x *ListingGroupFilterProductConditionEnum) ProtoReflect() protoreflect.Mes
// Deprecated: Use ListingGroupFilterProductConditionEnum.ProtoReflect.Descriptor instead.
func (*ListingGroupFilterProductConditionEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_rawDesc = []byte{
0x0a, 0x4b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6f,
0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x90, 0x01,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x90, 0x01,
0x0a, 0x26, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69,
0x6c, 0x74, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x6f, 0x6e, 0x64, 0x69,
0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x66, 0x0a, 0x22, 0x4c, 0x69, 0x73, 0x74,
@@ -155,42 +155,42 @@ var file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_p
0x53, 0x48, 0x45, 0x44, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x55, 0x53, 0x45, 0x44, 0x10, 0x04,
0x42, 0x81, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x27, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x27, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67,
0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x64, 0x75,
0x63, 0x74, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_rawDescData = file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_rawDesc
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_rawDescData = file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_goTypes = []interface{}{
- (ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition)(0), // 0: google.ads.googleads.v16.enums.ListingGroupFilterProductConditionEnum.ListingGroupFilterProductCondition
- (*ListingGroupFilterProductConditionEnum)(nil), // 1: google.ads.googleads.v16.enums.ListingGroupFilterProductConditionEnum
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_goTypes = []interface{}{
+ (ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition)(0), // 0: google.ads.googleads.v17.enums.ListingGroupFilterProductConditionEnum.ListingGroupFilterProductCondition
+ (*ListingGroupFilterProductConditionEnum)(nil), // 1: google.ads.googleads.v17.enums.ListingGroupFilterProductConditionEnum
}
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -198,13 +198,13 @@ var file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_p
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_init() }
-func file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_init() {
- if File_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_init() }
+func file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_init() {
+ if File_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListingGroupFilterProductConditionEnum); i {
case 0:
return &v.state
@@ -221,19 +221,19 @@ func file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto = out.File
- file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_listing_group_filter_product_condition_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto = out.File
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_condition_proto_depIdxs = nil
}
diff --git a/enums/listing_group_filter_product_type_level.pb.go b/enums/listing_group_filter_product_type_level.pb.go
index 92b5c959..96d0f492 100644
--- a/enums/listing_group_filter_product_type_level.pb.go
+++ b/enums/listing_group_filter_product_type_level.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/listing_group_filter_product_type_level.proto
+// source: google/ads/googleads/v17/enums/listing_group_filter_product_type_level.proto
package enums
@@ -87,11 +87,11 @@ func (x ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLeve
}
func (ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_enumTypes[0].Descriptor()
}
func (ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_enumTypes[0]
}
func (x ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLeve
// Deprecated: Use ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel.Descriptor instead.
func (ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_rawDescGZIP(), []int{0, 0}
}
// Level of the type of a product offer.
@@ -113,7 +113,7 @@ type ListingGroupFilterProductTypeLevelEnum struct {
func (x *ListingGroupFilterProductTypeLevelEnum) Reset() {
*x = ListingGroupFilterProductTypeLevelEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +126,7 @@ func (x *ListingGroupFilterProductTypeLevelEnum) String() string {
func (*ListingGroupFilterProductTypeLevelEnum) ProtoMessage() {}
func (x *ListingGroupFilterProductTypeLevelEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,19 +139,19 @@ func (x *ListingGroupFilterProductTypeLevelEnum) ProtoReflect() protoreflect.Mes
// Deprecated: Use ListingGroupFilterProductTypeLevelEnum.ProtoReflect.Descriptor instead.
func (*ListingGroupFilterProductTypeLevelEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_rawDesc = []byte{
0x0a, 0x4c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79,
0x70, 0x65, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa8,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa8,
0x01, 0x0a, 0x26, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65,
0x4c, 0x65, 0x76, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x7e, 0x0a, 0x22, 0x4c, 0x69, 0x73,
@@ -164,43 +164,43 @@ var file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_
0x04, 0x12, 0x0a, 0x0a, 0x06, 0x4c, 0x45, 0x56, 0x45, 0x4c, 0x34, 0x10, 0x05, 0x12, 0x0a, 0x0a,
0x06, 0x4c, 0x45, 0x56, 0x45, 0x4c, 0x35, 0x10, 0x06, 0x42, 0x81, 0x02, 0x0a, 0x22, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x42, 0x27, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69,
0x6c, 0x74, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x4c,
0x65, 0x76, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_rawDescData = file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_rawDesc
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_rawDescData = file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_goTypes = []interface{}{
- (ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel)(0), // 0: google.ads.googleads.v16.enums.ListingGroupFilterProductTypeLevelEnum.ListingGroupFilterProductTypeLevel
- (*ListingGroupFilterProductTypeLevelEnum)(nil), // 1: google.ads.googleads.v16.enums.ListingGroupFilterProductTypeLevelEnum
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_goTypes = []interface{}{
+ (ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel)(0), // 0: google.ads.googleads.v17.enums.ListingGroupFilterProductTypeLevelEnum.ListingGroupFilterProductTypeLevel
+ (*ListingGroupFilterProductTypeLevelEnum)(nil), // 1: google.ads.googleads.v17.enums.ListingGroupFilterProductTypeLevelEnum
}
-var file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -208,13 +208,13 @@ var file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_init() }
-func file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_init() {
- if File_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_init() }
+func file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_init() {
+ if File_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListingGroupFilterProductTypeLevelEnum); i {
case 0:
return &v.state
@@ -231,19 +231,19 @@ func file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto = out.File
- file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_listing_group_filter_product_type_level_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto = out.File
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_listing_group_filter_product_type_level_proto_depIdxs = nil
}
diff --git a/enums/listing_group_filter_type_enum.pb.go b/enums/listing_group_filter_type_enum.pb.go
index 3b27b080..61cdfefd 100644
--- a/enums/listing_group_filter_type_enum.pb.go
+++ b/enums/listing_group_filter_type_enum.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/listing_group_filter_type_enum.proto
+// source: google/ads/googleads/v17/enums/listing_group_filter_type_enum.proto
package enums
@@ -79,11 +79,11 @@ func (x ListingGroupFilterTypeEnum_ListingGroupFilterType) String() string {
}
func (ListingGroupFilterTypeEnum_ListingGroupFilterType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_enumTypes[0].Descriptor()
}
func (ListingGroupFilterTypeEnum_ListingGroupFilterType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_enumTypes[0]
}
func (x ListingGroupFilterTypeEnum_ListingGroupFilterType) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x ListingGroupFilterTypeEnum_ListingGroupFilterType) Number() protoreflect
// Deprecated: Use ListingGroupFilterTypeEnum_ListingGroupFilterType.Descriptor instead.
func (ListingGroupFilterTypeEnum_ListingGroupFilterType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the type of the listing group filter node.
@@ -105,7 +105,7 @@ type ListingGroupFilterTypeEnum struct {
func (x *ListingGroupFilterTypeEnum) Reset() {
*x = ListingGroupFilterTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *ListingGroupFilterTypeEnum) String() string {
func (*ListingGroupFilterTypeEnum) ProtoMessage() {}
func (x *ListingGroupFilterTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *ListingGroupFilterTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListingGroupFilterTypeEnum.ProtoReflect.Descriptor instead.
func (*ListingGroupFilterTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8b, 0x01, 0x0a, 0x1a, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e,
0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x6d, 0x0a, 0x16, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47,
@@ -154,42 +154,42 @@ var file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_raw
0x12, 0x11, 0x0a, 0x0d, 0x55, 0x4e, 0x49, 0x54, 0x5f, 0x45, 0x58, 0x43, 0x4c, 0x55, 0x44, 0x45,
0x44, 0x10, 0x04, 0x42, 0xf9, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1f, 0x4c, 0x69, 0x73, 0x74,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1f, 0x4c, 0x69, 0x73, 0x74,
0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x54, 0x79,
0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_rawDescData = file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_rawDesc
+ file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_rawDescData = file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_goTypes = []interface{}{
- (ListingGroupFilterTypeEnum_ListingGroupFilterType)(0), // 0: google.ads.googleads.v16.enums.ListingGroupFilterTypeEnum.ListingGroupFilterType
- (*ListingGroupFilterTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ListingGroupFilterTypeEnum
+var file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_goTypes = []interface{}{
+ (ListingGroupFilterTypeEnum_ListingGroupFilterType)(0), // 0: google.ads.googleads.v17.enums.ListingGroupFilterTypeEnum.ListingGroupFilterType
+ (*ListingGroupFilterTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ListingGroupFilterTypeEnum
}
-var file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_init() }
-func file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_init() {
- if File_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_init() }
+func file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_init() {
+ if File_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListingGroupFilterTypeEnum); i {
case 0:
return &v.state
@@ -220,19 +220,19 @@ func file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto = out.File
- file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_listing_group_filter_type_enum_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto = out.File
+ file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_listing_group_filter_type_enum_proto_depIdxs = nil
}
diff --git a/enums/listing_group_type.pb.go b/enums/listing_group_type.pb.go
index 53f36d1d..6e36f7ad 100644
--- a/enums/listing_group_type.pb.go
+++ b/enums/listing_group_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/listing_group_type.proto
+// source: google/ads/googleads/v17/enums/listing_group_type.proto
package enums
@@ -77,11 +77,11 @@ func (x ListingGroupTypeEnum_ListingGroupType) String() string {
}
func (ListingGroupTypeEnum_ListingGroupType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_listing_group_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_listing_group_type_proto_enumTypes[0].Descriptor()
}
func (ListingGroupTypeEnum_ListingGroupType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_listing_group_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_listing_group_type_proto_enumTypes[0]
}
func (x ListingGroupTypeEnum_ListingGroupType) Number() protoreflect.EnumNumber {
@@ -90,7 +90,7 @@ func (x ListingGroupTypeEnum_ListingGroupType) Number() protoreflect.EnumNumber
// Deprecated: Use ListingGroupTypeEnum_ListingGroupType.Descriptor instead.
func (ListingGroupTypeEnum_ListingGroupType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_listing_group_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_listing_group_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the type of the listing group.
@@ -103,7 +103,7 @@ type ListingGroupTypeEnum struct {
func (x *ListingGroupTypeEnum) Reset() {
*x = ListingGroupTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_listing_group_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_listing_group_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -116,7 +116,7 @@ func (x *ListingGroupTypeEnum) String() string {
func (*ListingGroupTypeEnum) ProtoMessage() {}
func (x *ListingGroupTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_listing_group_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_listing_group_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -129,18 +129,18 @@ func (x *ListingGroupTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListingGroupTypeEnum.ProtoReflect.Descriptor instead.
func (*ListingGroupTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_listing_group_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_listing_group_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_listing_group_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_listing_group_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_listing_group_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_listing_group_type_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x74,
0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x63, 0x0a, 0x14, 0x4c, 0x69, 0x73,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x63, 0x0a, 0x14, 0x4c, 0x69, 0x73,
0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x4b, 0x0a, 0x10, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75,
0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_enums_listing_group_type_proto_rawDesc = []byt
0x4e, 0x10, 0x01, 0x12, 0x0f, 0x0a, 0x0b, 0x53, 0x55, 0x42, 0x44, 0x49, 0x56, 0x49, 0x53, 0x49,
0x4f, 0x4e, 0x10, 0x02, 0x12, 0x08, 0x0a, 0x04, 0x55, 0x4e, 0x49, 0x54, 0x10, 0x03, 0x42, 0xef,
0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72,
0x6f, 0x75, 0x70, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_listing_group_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_listing_group_type_proto_rawDescData = file_google_ads_googleads_v16_enums_listing_group_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_listing_group_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_listing_group_type_proto_rawDescData = file_google_ads_googleads_v17_enums_listing_group_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_listing_group_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_listing_group_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_listing_group_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_listing_group_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_listing_group_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_listing_group_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_listing_group_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_listing_group_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_listing_group_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_listing_group_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_listing_group_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_listing_group_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_listing_group_type_proto_goTypes = []interface{}{
- (ListingGroupTypeEnum_ListingGroupType)(0), // 0: google.ads.googleads.v16.enums.ListingGroupTypeEnum.ListingGroupType
- (*ListingGroupTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ListingGroupTypeEnum
+var file_google_ads_googleads_v17_enums_listing_group_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_listing_group_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_listing_group_type_proto_goTypes = []interface{}{
+ (ListingGroupTypeEnum_ListingGroupType)(0), // 0: google.ads.googleads.v17.enums.ListingGroupTypeEnum.ListingGroupType
+ (*ListingGroupTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ListingGroupTypeEnum
}
-var file_google_ads_googleads_v16_enums_listing_group_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_listing_group_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_listing_group_type_proto_depIdxs = []int
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_listing_group_type_proto_init() }
-func file_google_ads_googleads_v16_enums_listing_group_type_proto_init() {
- if File_google_ads_googleads_v16_enums_listing_group_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_listing_group_type_proto_init() }
+func file_google_ads_googleads_v17_enums_listing_group_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_listing_group_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_listing_group_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_listing_group_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListingGroupTypeEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_listing_group_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_listing_group_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_listing_group_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_listing_group_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_listing_group_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_listing_group_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_listing_group_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_listing_group_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_listing_group_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_listing_group_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_listing_group_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_listing_group_type_proto = out.File
- file_google_ads_googleads_v16_enums_listing_group_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_listing_group_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_listing_group_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_listing_group_type_proto = out.File
+ file_google_ads_googleads_v17_enums_listing_group_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_listing_group_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_listing_group_type_proto_depIdxs = nil
}
diff --git a/enums/listing_type.pb.go b/enums/listing_type.pb.go
index df45dd43..75299a50 100644
--- a/enums/listing_type.pb.go
+++ b/enums/listing_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/listing_type.proto
+// source: google/ads/googleads/v17/enums/listing_type.proto
package enums
@@ -71,11 +71,11 @@ func (x ListingTypeEnum_ListingType) String() string {
}
func (ListingTypeEnum_ListingType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_listing_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_listing_type_proto_enumTypes[0].Descriptor()
}
func (ListingTypeEnum_ListingType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_listing_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_listing_type_proto_enumTypes[0]
}
func (x ListingTypeEnum_ListingType) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x ListingTypeEnum_ListingType) Number() protoreflect.EnumNumber {
// Deprecated: Use ListingTypeEnum_ListingType.Descriptor instead.
func (ListingTypeEnum_ListingType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_listing_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_listing_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible listing types.
@@ -97,7 +97,7 @@ type ListingTypeEnum struct {
func (x *ListingTypeEnum) Reset() {
*x = ListingTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_listing_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_listing_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *ListingTypeEnum) String() string {
func (*ListingTypeEnum) ProtoMessage() {}
func (x *ListingTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_listing_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_listing_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,17 +123,17 @@ func (x *ListingTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListingTypeEnum.ProtoReflect.Descriptor instead.
func (*ListingTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_listing_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_listing_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_listing_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_listing_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_listing_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_listing_type_proto_rawDesc = []byte{
0x0a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x22, 0x4c, 0x0a, 0x0f, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x54, 0x79,
0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x39, 0x0a, 0x0b, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e,
0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49,
@@ -141,41 +141,41 @@ var file_google_ads_googleads_v16_enums_listing_type_proto_rawDesc = []byte{
0x4e, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x56, 0x45, 0x48, 0x49, 0x43, 0x4c, 0x45, 0x53, 0x10,
0x02, 0x42, 0xea, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x10, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x10, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e,
0x67, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_listing_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_listing_type_proto_rawDescData = file_google_ads_googleads_v16_enums_listing_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_listing_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_listing_type_proto_rawDescData = file_google_ads_googleads_v17_enums_listing_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_listing_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_listing_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_listing_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_listing_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_listing_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_listing_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_listing_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_listing_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_listing_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_listing_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_listing_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_listing_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_listing_type_proto_goTypes = []interface{}{
- (ListingTypeEnum_ListingType)(0), // 0: google.ads.googleads.v16.enums.ListingTypeEnum.ListingType
- (*ListingTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ListingTypeEnum
+var file_google_ads_googleads_v17_enums_listing_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_listing_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_listing_type_proto_goTypes = []interface{}{
+ (ListingTypeEnum_ListingType)(0), // 0: google.ads.googleads.v17.enums.ListingTypeEnum.ListingType
+ (*ListingTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ListingTypeEnum
}
-var file_google_ads_googleads_v16_enums_listing_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_listing_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -183,13 +183,13 @@ var file_google_ads_googleads_v16_enums_listing_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_listing_type_proto_init() }
-func file_google_ads_googleads_v16_enums_listing_type_proto_init() {
- if File_google_ads_googleads_v16_enums_listing_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_listing_type_proto_init() }
+func file_google_ads_googleads_v17_enums_listing_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_listing_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_listing_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_listing_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListingTypeEnum); i {
case 0:
return &v.state
@@ -206,19 +206,19 @@ func file_google_ads_googleads_v16_enums_listing_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_listing_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_listing_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_listing_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_listing_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_listing_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_listing_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_listing_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_listing_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_listing_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_listing_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_listing_type_proto = out.File
- file_google_ads_googleads_v16_enums_listing_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_listing_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_listing_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_listing_type_proto = out.File
+ file_google_ads_googleads_v17_enums_listing_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_listing_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_listing_type_proto_depIdxs = nil
}
diff --git a/enums/local_placeholder_field.pb.go b/enums/local_placeholder_field.pb.go
index 15f3e376..b1378685 100644
--- a/enums/local_placeholder_field.pb.go
+++ b/enums/local_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/local_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/local_placeholder_field.proto
package enums
@@ -161,11 +161,11 @@ func (x LocalPlaceholderFieldEnum_LocalPlaceholderField) String() string {
}
func (LocalPlaceholderFieldEnum_LocalPlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_local_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_local_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (LocalPlaceholderFieldEnum_LocalPlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_local_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_local_placeholder_field_proto_enumTypes[0]
}
func (x LocalPlaceholderFieldEnum_LocalPlaceholderField) Number() protoreflect.EnumNumber {
@@ -174,7 +174,7 @@ func (x LocalPlaceholderFieldEnum_LocalPlaceholderField) Number() protoreflect.E
// Deprecated: Use LocalPlaceholderFieldEnum_LocalPlaceholderField.Descriptor instead.
func (LocalPlaceholderFieldEnum_LocalPlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_local_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Local placeholder fields.
@@ -189,7 +189,7 @@ type LocalPlaceholderFieldEnum struct {
func (x *LocalPlaceholderFieldEnum) Reset() {
*x = LocalPlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_local_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -202,7 +202,7 @@ func (x *LocalPlaceholderFieldEnum) String() string {
func (*LocalPlaceholderFieldEnum) ProtoMessage() {}
func (x *LocalPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_local_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -215,18 +215,18 @@ func (x *LocalPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocalPlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*LocalPlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_local_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_local_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_local_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_local_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_local_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64,
0x65, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa8,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa8,
0x03, 0x0a, 0x19, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c,
0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x8a, 0x03, 0x0a,
0x15, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65,
@@ -255,42 +255,42 @@ var file_google_ads_googleads_v16_enums_local_placeholder_field_proto_rawDesc =
0x4b, 0x10, 0x13, 0x12, 0x14, 0x0a, 0x10, 0x49, 0x4f, 0x53, 0x5f, 0x41, 0x50, 0x50, 0x5f, 0x53,
0x54, 0x4f, 0x52, 0x45, 0x5f, 0x49, 0x44, 0x10, 0x14, 0x42, 0xf4, 0x01, 0x0a, 0x22, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x42, 0x1a, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64,
0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_local_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_local_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_local_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_local_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_local_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_local_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_local_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_local_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_local_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_local_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_local_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_local_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_local_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_local_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_local_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_local_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_local_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_local_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_local_placeholder_field_proto_goTypes = []interface{}{
- (LocalPlaceholderFieldEnum_LocalPlaceholderField)(0), // 0: google.ads.googleads.v16.enums.LocalPlaceholderFieldEnum.LocalPlaceholderField
- (*LocalPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.LocalPlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_local_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_local_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_local_placeholder_field_proto_goTypes = []interface{}{
+ (LocalPlaceholderFieldEnum_LocalPlaceholderField)(0), // 0: google.ads.googleads.v17.enums.LocalPlaceholderFieldEnum.LocalPlaceholderField
+ (*LocalPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.LocalPlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_local_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_local_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -298,13 +298,13 @@ var file_google_ads_googleads_v16_enums_local_placeholder_field_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_local_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_local_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_local_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_local_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_local_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_local_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_local_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_local_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocalPlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -321,19 +321,19 @@ func file_google_ads_googleads_v16_enums_local_placeholder_field_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_local_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_local_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_local_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_local_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_local_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_local_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_local_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_local_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_local_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_local_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_local_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_local_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_local_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_local_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_local_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_local_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_local_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_local_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/local_services_business_registration_check_rejection_reason.pb.go b/enums/local_services_business_registration_check_rejection_reason.pb.go
index 372ea1f5..48fcb6a5 100644
--- a/enums/local_services_business_registration_check_rejection_reason.pb.go
+++ b/enums/local_services_business_registration_check_rejection_reason.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/local_services_business_registration_check_rejection_reason.proto
+// source: google/ads/googleads/v17/enums/local_services_business_registration_check_rejection_reason.proto
package enums
@@ -105,11 +105,11 @@ func (x LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesB
}
func (LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_enumTypes[0].Descriptor()
}
func (LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_enumTypes[0]
}
func (x LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason) Number() protoreflect.EnumNumber {
@@ -118,7 +118,7 @@ func (x LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesB
// Deprecated: Use LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason.Descriptor instead.
func (LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the rejection reason of a local services
@@ -132,7 +132,7 @@ type LocalServicesBusinessRegistrationCheckRejectionReasonEnum struct {
func (x *LocalServicesBusinessRegistrationCheckRejectionReasonEnum) Reset() {
*x = LocalServicesBusinessRegistrationCheckRejectionReasonEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -145,7 +145,7 @@ func (x *LocalServicesBusinessRegistrationCheckRejectionReasonEnum) String() str
func (*LocalServicesBusinessRegistrationCheckRejectionReasonEnum) ProtoMessage() {}
func (x *LocalServicesBusinessRegistrationCheckRejectionReasonEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -158,20 +158,20 @@ func (x *LocalServicesBusinessRegistrationCheckRejectionReasonEnum) ProtoReflect
// Deprecated: Use LocalServicesBusinessRegistrationCheckRejectionReasonEnum.ProtoReflect.Descriptor instead.
func (*LocalServicesBusinessRegistrationCheckRejectionReasonEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_rawDesc = []byte{
0x0a, 0x60, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f,
0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x5f, 0x72, 0x65, 0x6a, 0x65,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0xef, 0x02, 0x0a, 0x39, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76,
0x69, 0x63, 0x65, 0x73, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x52, 0x65, 0x67, 0x69,
0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x6a,
@@ -197,7 +197,7 @@ var file_google_ads_googleads_v16_enums_local_services_business_registration_che
0x49, 0x46, 0x49, 0x41, 0x42, 0x4c, 0x45, 0x10, 0x09, 0x12, 0x09, 0x0a, 0x05, 0x4f, 0x54, 0x48,
0x45, 0x52, 0x10, 0x0a, 0x42, 0x94, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x3a, 0x4c, 0x6f, 0x63,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x3a, 0x4c, 0x6f, 0x63,
0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65,
0x73, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68,
0x65, 0x63, 0x6b, 0x52, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x61, 0x73,
@@ -205,36 +205,36 @@ var file_google_ads_googleads_v16_enums_local_services_business_registration_che
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_rawDescData = file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_rawDesc
+ file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_rawDescData = file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_goTypes = []interface{}{
- (LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason)(0), // 0: google.ads.googleads.v16.enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum.LocalServicesBusinessRegistrationCheckRejectionReason
- (*LocalServicesBusinessRegistrationCheckRejectionReasonEnum)(nil), // 1: google.ads.googleads.v16.enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum
+var file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_goTypes = []interface{}{
+ (LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason)(0), // 0: google.ads.googleads.v17.enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum.LocalServicesBusinessRegistrationCheckRejectionReason
+ (*LocalServicesBusinessRegistrationCheckRejectionReasonEnum)(nil), // 1: google.ads.googleads.v17.enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum
}
-var file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -243,14 +243,14 @@ var file_google_ads_googleads_v16_enums_local_services_business_registration_che
}
func init() {
- file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_init()
+ file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_init()
}
-func file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_init() {
- if File_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto != nil {
+func file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_init() {
+ if File_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocalServicesBusinessRegistrationCheckRejectionReasonEnum); i {
case 0:
return &v.state
@@ -267,19 +267,19 @@ func file_google_ads_googleads_v16_enums_local_services_business_registration_ch
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto = out.File
- file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_local_services_business_registration_check_rejection_reason_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto = out.File
+ file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_local_services_business_registration_check_rejection_reason_proto_depIdxs = nil
}
diff --git a/enums/local_services_business_registration_type.pb.go b/enums/local_services_business_registration_type.pb.go
index e0a21667..c380f3f0 100644
--- a/enums/local_services_business_registration_type.pb.go
+++ b/enums/local_services_business_registration_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/local_services_business_registration_type.proto
+// source: google/ads/googleads/v17/enums/local_services_business_registration_type.proto
package enums
@@ -76,11 +76,11 @@ func (x LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrat
}
func (LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_enumTypes[0].Descriptor()
}
func (LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_enumTypes[0]
}
func (x LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType) Number() protoreflect.EnumNumber {
@@ -89,7 +89,7 @@ func (x LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrat
// Deprecated: Use LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType.Descriptor instead.
func (LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the type of business registration check
@@ -103,7 +103,7 @@ type LocalServicesBusinessRegistrationTypeEnum struct {
func (x *LocalServicesBusinessRegistrationTypeEnum) Reset() {
*x = LocalServicesBusinessRegistrationTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -116,7 +116,7 @@ func (x *LocalServicesBusinessRegistrationTypeEnum) String() string {
func (*LocalServicesBusinessRegistrationTypeEnum) ProtoMessage() {}
func (x *LocalServicesBusinessRegistrationTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -129,19 +129,19 @@ func (x *LocalServicesBusinessRegistrationTypeEnum) ProtoReflect() protoreflect.
// Deprecated: Use LocalServicesBusinessRegistrationTypeEnum.ProtoReflect.Descriptor instead.
func (*LocalServicesBusinessRegistrationTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_local_services_business_registration_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_local_services_business_registration_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_rawDesc = []byte{
0x0a, 0x4e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f,
0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0x8c, 0x01, 0x0a, 0x29, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63,
0x65, 0x73, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74,
0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5f,
@@ -152,43 +152,43 @@ var file_google_ads_googleads_v16_enums_local_services_business_registration_typ
0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x4e, 0x55, 0x4d, 0x42, 0x45, 0x52, 0x10,
0x02, 0x12, 0x0c, 0x0a, 0x08, 0x44, 0x4f, 0x43, 0x55, 0x4d, 0x45, 0x4e, 0x54, 0x10, 0x03, 0x42,
0x84, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2a, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72,
0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x52, 0x65, 0x67,
0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_rawDescData = file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_rawDescData = file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_goTypes = []interface{}{
- (LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType)(0), // 0: google.ads.googleads.v16.enums.LocalServicesBusinessRegistrationTypeEnum.LocalServicesBusinessRegistrationType
- (*LocalServicesBusinessRegistrationTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.LocalServicesBusinessRegistrationTypeEnum
+var file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_goTypes = []interface{}{
+ (LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType)(0), // 0: google.ads.googleads.v17.enums.LocalServicesBusinessRegistrationTypeEnum.LocalServicesBusinessRegistrationType
+ (*LocalServicesBusinessRegistrationTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.LocalServicesBusinessRegistrationTypeEnum
}
-var file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,14 +197,14 @@ var file_google_ads_googleads_v16_enums_local_services_business_registration_typ
}
func init() {
- file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_init()
+ file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_init()
}
-func file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_init() {
- if File_google_ads_googleads_v16_enums_local_services_business_registration_type_proto != nil {
+func file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_local_services_business_registration_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocalServicesBusinessRegistrationTypeEnum); i {
case 0:
return &v.state
@@ -221,19 +221,19 @@ func file_google_ads_googleads_v16_enums_local_services_business_registration_ty
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_local_services_business_registration_type_proto = out.File
- file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_local_services_business_registration_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_local_services_business_registration_type_proto = out.File
+ file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_local_services_business_registration_type_proto_depIdxs = nil
}
diff --git a/enums/local_services_conversation_type.pb.go b/enums/local_services_conversation_type.pb.go
index 0a40479b..e92039c2 100644
--- a/enums/local_services_conversation_type.pb.go
+++ b/enums/local_services_conversation_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/local_services_conversation_type.proto
+// source: google/ads/googleads/v17/enums/local_services_conversation_type.proto
package enums
@@ -52,6 +52,10 @@ const (
LocalServicesLeadConversationTypeEnum_SMS LocalServicesLeadConversationTypeEnum_ConversationType = 5
// Booking lead conversation.
LocalServicesLeadConversationTypeEnum_BOOKING LocalServicesLeadConversationTypeEnum_ConversationType = 6
+ // WhatsApp lead conversation.
+ LocalServicesLeadConversationTypeEnum_WHATSAPP LocalServicesLeadConversationTypeEnum_ConversationType = 7
+ // Lead conversation created through Google Ads API.
+ LocalServicesLeadConversationTypeEnum_ADS_API LocalServicesLeadConversationTypeEnum_ConversationType = 8
)
// Enum value maps for LocalServicesLeadConversationTypeEnum_ConversationType.
@@ -64,6 +68,8 @@ var (
4: "PHONE_CALL",
5: "SMS",
6: "BOOKING",
+ 7: "WHATSAPP",
+ 8: "ADS_API",
}
LocalServicesLeadConversationTypeEnum_ConversationType_value = map[string]int32{
"UNSPECIFIED": 0,
@@ -73,6 +79,8 @@ var (
"PHONE_CALL": 4,
"SMS": 5,
"BOOKING": 6,
+ "WHATSAPP": 7,
+ "ADS_API": 8,
}
)
@@ -87,11 +95,11 @@ func (x LocalServicesLeadConversationTypeEnum_ConversationType) String() string
}
func (LocalServicesLeadConversationTypeEnum_ConversationType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_enumTypes[0].Descriptor()
}
func (LocalServicesLeadConversationTypeEnum_ConversationType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_enumTypes[0]
}
func (x LocalServicesLeadConversationTypeEnum_ConversationType) Number() protoreflect.EnumNumber {
@@ -100,7 +108,7 @@ func (x LocalServicesLeadConversationTypeEnum_ConversationType) Number() protore
// Deprecated: Use LocalServicesLeadConversationTypeEnum_ConversationType.Descriptor instead.
func (LocalServicesLeadConversationTypeEnum_ConversationType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible types of lead conversation.
@@ -113,7 +121,7 @@ type LocalServicesLeadConversationTypeEnum struct {
func (x *LocalServicesLeadConversationTypeEnum) Reset() {
*x = LocalServicesLeadConversationTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +134,7 @@ func (x *LocalServicesLeadConversationTypeEnum) String() string {
func (*LocalServicesLeadConversationTypeEnum) ProtoMessage() {}
func (x *LocalServicesLeadConversationTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,66 +147,68 @@ func (x *LocalServicesLeadConversationTypeEnum) ProtoReflect() protoreflect.Mess
// Deprecated: Use LocalServicesLeadConversationTypeEnum.ProtoReflect.Descriptor instead.
func (*LocalServicesLeadConversationTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_local_services_conversation_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_local_services_conversation_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_rawDesc = []byte{
0x0a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f,
0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70,
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x97, 0x01, 0x0a, 0x25, 0x4c, 0x6f, 0x63, 0x61,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xb3, 0x01, 0x0a, 0x25, 0x4c, 0x6f, 0x63, 0x61,
0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x43, 0x6f, 0x6e,
0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75,
- 0x6d, 0x22, 0x6e, 0x0a, 0x10, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49,
- 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57,
- 0x4e, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x4d, 0x41, 0x49, 0x4c, 0x10, 0x02, 0x12, 0x0b,
- 0x0a, 0x07, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x10, 0x03, 0x12, 0x0e, 0x0a, 0x0a, 0x50,
- 0x48, 0x4f, 0x4e, 0x45, 0x5f, 0x43, 0x41, 0x4c, 0x4c, 0x10, 0x04, 0x12, 0x07, 0x0a, 0x03, 0x53,
- 0x4d, 0x53, 0x10, 0x05, 0x12, 0x0b, 0x0a, 0x07, 0x42, 0x4f, 0x4f, 0x4b, 0x49, 0x4e, 0x47, 0x10,
- 0x06, 0x42, 0xfc, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x22, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53,
- 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
- 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
- 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
- 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x6d, 0x22, 0x89, 0x01, 0x0a, 0x10, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
+ 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f,
+ 0x57, 0x4e, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x4d, 0x41, 0x49, 0x4c, 0x10, 0x02, 0x12,
+ 0x0b, 0x0a, 0x07, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x10, 0x03, 0x12, 0x0e, 0x0a, 0x0a,
+ 0x50, 0x48, 0x4f, 0x4e, 0x45, 0x5f, 0x43, 0x41, 0x4c, 0x4c, 0x10, 0x04, 0x12, 0x07, 0x0a, 0x03,
+ 0x53, 0x4d, 0x53, 0x10, 0x05, 0x12, 0x0b, 0x0a, 0x07, 0x42, 0x4f, 0x4f, 0x4b, 0x49, 0x4e, 0x47,
+ 0x10, 0x06, 0x12, 0x0c, 0x0a, 0x08, 0x57, 0x48, 0x41, 0x54, 0x53, 0x41, 0x50, 0x50, 0x10, 0x07,
+ 0x12, 0x0b, 0x0a, 0x07, 0x41, 0x44, 0x53, 0x5f, 0x41, 0x50, 0x49, 0x10, 0x08, 0x42, 0xfc, 0x01,
+ 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
+ 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x22, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69,
+ 0x63, 0x65, 0x73, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54,
+ 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
+ 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
+ 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
+ 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
+ 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_rawDescData = file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_rawDescData = file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_goTypes = []interface{}{
- (LocalServicesLeadConversationTypeEnum_ConversationType)(0), // 0: google.ads.googleads.v16.enums.LocalServicesLeadConversationTypeEnum.ConversationType
- (*LocalServicesLeadConversationTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.LocalServicesLeadConversationTypeEnum
+var file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_goTypes = []interface{}{
+ (LocalServicesLeadConversationTypeEnum_ConversationType)(0), // 0: google.ads.googleads.v17.enums.LocalServicesLeadConversationTypeEnum.ConversationType
+ (*LocalServicesLeadConversationTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.LocalServicesLeadConversationTypeEnum
}
-var file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -206,13 +216,13 @@ var file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_d
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_init() }
-func file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_init() {
- if File_google_ads_googleads_v16_enums_local_services_conversation_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_init() }
+func file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_local_services_conversation_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocalServicesLeadConversationTypeEnum); i {
case 0:
return &v.state
@@ -229,19 +239,19 @@ func file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_local_services_conversation_type_proto = out.File
- file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_local_services_conversation_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_local_services_conversation_type_proto = out.File
+ file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_local_services_conversation_type_proto_depIdxs = nil
}
diff --git a/enums/local_services_employee_status.pb.go b/enums/local_services_employee_status.pb.go
index cc322c65..21e8be07 100644
--- a/enums/local_services_employee_status.pb.go
+++ b/enums/local_services_employee_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/local_services_employee_status.proto
+// source: google/ads/googleads/v17/enums/local_services_employee_status.proto
package enums
@@ -75,11 +75,11 @@ func (x LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus) String() st
}
func (LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_local_services_employee_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_local_services_employee_status_proto_enumTypes[0].Descriptor()
}
func (LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_local_services_employee_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_local_services_employee_status_proto_enumTypes[0]
}
func (x LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus) Number() pr
// Deprecated: Use LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus.Descriptor instead.
func (LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_employee_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_local_services_employee_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the status of local services employee.
@@ -101,7 +101,7 @@ type LocalServicesEmployeeStatusEnum struct {
func (x *LocalServicesEmployeeStatusEnum) Reset() {
*x = LocalServicesEmployeeStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_local_services_employee_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_employee_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *LocalServicesEmployeeStatusEnum) String() string {
func (*LocalServicesEmployeeStatusEnum) ProtoMessage() {}
func (x *LocalServicesEmployeeStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_local_services_employee_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_employee_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *LocalServicesEmployeeStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocalServicesEmployeeStatusEnum.ProtoReflect.Descriptor instead.
func (*LocalServicesEmployeeStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_employee_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_local_services_employee_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_local_services_employee_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_local_services_employee_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_local_services_employee_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_local_services_employee_status_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f,
0x65, 0x6d, 0x70, 0x6c, 0x6f, 0x79, 0x65, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x78, 0x0a, 0x1f, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65,
0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x45, 0x6d, 0x70, 0x6c, 0x6f, 0x79, 0x65, 0x65, 0x53, 0x74,
0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x55, 0x0a, 0x1b, 0x4c, 0x6f, 0x63, 0x61,
@@ -148,43 +148,43 @@ var file_google_ads_googleads_v16_enums_local_services_employee_status_proto_raw
0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44,
0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42,
0xfa, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72,
0x76, 0x69, 0x63, 0x65, 0x73, 0x45, 0x6d, 0x70, 0x6c, 0x6f, 0x79, 0x65, 0x65, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_local_services_employee_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_local_services_employee_status_proto_rawDescData = file_google_ads_googleads_v16_enums_local_services_employee_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_local_services_employee_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_local_services_employee_status_proto_rawDescData = file_google_ads_googleads_v17_enums_local_services_employee_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_local_services_employee_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_local_services_employee_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_local_services_employee_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_local_services_employee_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_local_services_employee_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_local_services_employee_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_local_services_employee_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_local_services_employee_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_local_services_employee_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_local_services_employee_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_local_services_employee_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_employee_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_employee_status_proto_goTypes = []interface{}{
- (LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus)(0), // 0: google.ads.googleads.v16.enums.LocalServicesEmployeeStatusEnum.LocalServicesEmployeeStatus
- (*LocalServicesEmployeeStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.LocalServicesEmployeeStatusEnum
+var file_google_ads_googleads_v17_enums_local_services_employee_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_employee_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_employee_status_proto_goTypes = []interface{}{
+ (LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus)(0), // 0: google.ads.googleads.v17.enums.LocalServicesEmployeeStatusEnum.LocalServicesEmployeeStatus
+ (*LocalServicesEmployeeStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.LocalServicesEmployeeStatusEnum
}
-var file_google_ads_googleads_v16_enums_local_services_employee_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_local_services_employee_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -192,13 +192,13 @@ var file_google_ads_googleads_v16_enums_local_services_employee_status_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_local_services_employee_status_proto_init() }
-func file_google_ads_googleads_v16_enums_local_services_employee_status_proto_init() {
- if File_google_ads_googleads_v16_enums_local_services_employee_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_local_services_employee_status_proto_init() }
+func file_google_ads_googleads_v17_enums_local_services_employee_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_local_services_employee_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_local_services_employee_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_local_services_employee_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocalServicesEmployeeStatusEnum); i {
case 0:
return &v.state
@@ -215,19 +215,19 @@ func file_google_ads_googleads_v16_enums_local_services_employee_status_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_local_services_employee_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_local_services_employee_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_local_services_employee_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_local_services_employee_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_local_services_employee_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_local_services_employee_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_local_services_employee_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_local_services_employee_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_local_services_employee_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_local_services_employee_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_local_services_employee_status_proto = out.File
- file_google_ads_googleads_v16_enums_local_services_employee_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_local_services_employee_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_local_services_employee_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_local_services_employee_status_proto = out.File
+ file_google_ads_googleads_v17_enums_local_services_employee_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_local_services_employee_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_local_services_employee_status_proto_depIdxs = nil
}
diff --git a/enums/local_services_employee_type.pb.go b/enums/local_services_employee_type.pb.go
index d6006847..19136069 100644
--- a/enums/local_services_employee_type.pb.go
+++ b/enums/local_services_employee_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/local_services_employee_type.proto
+// source: google/ads/googleads/v17/enums/local_services_employee_type.proto
package enums
@@ -75,11 +75,11 @@ func (x LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType) String() string
}
func (LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_local_services_employee_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_local_services_employee_type_proto_enumTypes[0].Descriptor()
}
func (LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_local_services_employee_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_local_services_employee_type_proto_enumTypes[0]
}
func (x LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType) Number() protor
// Deprecated: Use LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType.Descriptor instead.
func (LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_employee_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_local_services_employee_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the types of local services employee.
@@ -101,7 +101,7 @@ type LocalServicesEmployeeTypeEnum struct {
func (x *LocalServicesEmployeeTypeEnum) Reset() {
*x = LocalServicesEmployeeTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_local_services_employee_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_employee_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *LocalServicesEmployeeTypeEnum) String() string {
func (*LocalServicesEmployeeTypeEnum) ProtoMessage() {}
func (x *LocalServicesEmployeeTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_local_services_employee_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_employee_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *LocalServicesEmployeeTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocalServicesEmployeeTypeEnum.ProtoReflect.Descriptor instead.
func (*LocalServicesEmployeeTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_employee_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_local_services_employee_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_local_services_employee_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_local_services_employee_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_local_services_employee_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_local_services_employee_type_proto_rawDesc = []byte{
0x0a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f,
0x65, 0x6d, 0x70, 0x6c, 0x6f, 0x79, 0x65, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x22, 0x7c, 0x0a, 0x1d, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76,
0x69, 0x63, 0x65, 0x73, 0x45, 0x6d, 0x70, 0x6c, 0x6f, 0x79, 0x65, 0x65, 0x54, 0x79, 0x70, 0x65,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5b, 0x0a, 0x19, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72,
@@ -149,42 +149,42 @@ var file_google_ads_googleads_v16_enums_local_services_employee_type_proto_rawDe
0x52, 0x10, 0x02, 0x12, 0x0c, 0x0a, 0x08, 0x45, 0x4d, 0x50, 0x4c, 0x4f, 0x59, 0x45, 0x45, 0x10,
0x03, 0x42, 0xf8, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53,
0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x45, 0x6d, 0x70, 0x6c, 0x6f, 0x79, 0x65, 0x65, 0x54,
0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_local_services_employee_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_local_services_employee_type_proto_rawDescData = file_google_ads_googleads_v16_enums_local_services_employee_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_local_services_employee_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_local_services_employee_type_proto_rawDescData = file_google_ads_googleads_v17_enums_local_services_employee_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_local_services_employee_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_local_services_employee_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_local_services_employee_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_local_services_employee_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_local_services_employee_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_local_services_employee_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_local_services_employee_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_local_services_employee_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_local_services_employee_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_local_services_employee_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_local_services_employee_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_employee_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_employee_type_proto_goTypes = []interface{}{
- (LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType)(0), // 0: google.ads.googleads.v16.enums.LocalServicesEmployeeTypeEnum.LocalServicesEmployeeType
- (*LocalServicesEmployeeTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.LocalServicesEmployeeTypeEnum
+var file_google_ads_googleads_v17_enums_local_services_employee_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_employee_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_employee_type_proto_goTypes = []interface{}{
+ (LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType)(0), // 0: google.ads.googleads.v17.enums.LocalServicesEmployeeTypeEnum.LocalServicesEmployeeType
+ (*LocalServicesEmployeeTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.LocalServicesEmployeeTypeEnum
}
-var file_google_ads_googleads_v16_enums_local_services_employee_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_local_services_employee_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -192,13 +192,13 @@ var file_google_ads_googleads_v16_enums_local_services_employee_type_proto_depId
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_local_services_employee_type_proto_init() }
-func file_google_ads_googleads_v16_enums_local_services_employee_type_proto_init() {
- if File_google_ads_googleads_v16_enums_local_services_employee_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_local_services_employee_type_proto_init() }
+func file_google_ads_googleads_v17_enums_local_services_employee_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_local_services_employee_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_local_services_employee_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_local_services_employee_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocalServicesEmployeeTypeEnum); i {
case 0:
return &v.state
@@ -215,19 +215,19 @@ func file_google_ads_googleads_v16_enums_local_services_employee_type_proto_init
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_local_services_employee_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_local_services_employee_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_local_services_employee_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_local_services_employee_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_local_services_employee_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_local_services_employee_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_local_services_employee_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_local_services_employee_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_local_services_employee_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_local_services_employee_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_local_services_employee_type_proto = out.File
- file_google_ads_googleads_v16_enums_local_services_employee_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_local_services_employee_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_local_services_employee_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_local_services_employee_type_proto = out.File
+ file_google_ads_googleads_v17_enums_local_services_employee_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_local_services_employee_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_local_services_employee_type_proto_depIdxs = nil
}
diff --git a/enums/local_services_insurance_rejection_reason.pb.go b/enums/local_services_insurance_rejection_reason.pb.go
index a883f8a0..e6eea164 100644
--- a/enums/local_services_insurance_rejection_reason.pb.go
+++ b/enums/local_services_insurance_rejection_reason.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/local_services_insurance_rejection_reason.proto
+// source: google/ads/googleads/v17/enums/local_services_insurance_rejection_reason.proto
package enums
@@ -127,11 +127,11 @@ func (x LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectio
}
func (LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_enumTypes[0].Descriptor()
}
func (LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_enumTypes[0]
}
func (x LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason) Number() protoreflect.EnumNumber {
@@ -140,7 +140,7 @@ func (x LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectio
// Deprecated: Use LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason.Descriptor instead.
func (LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the rejection reason of a local services
@@ -154,7 +154,7 @@ type LocalServicesInsuranceRejectionReasonEnum struct {
func (x *LocalServicesInsuranceRejectionReasonEnum) Reset() {
*x = LocalServicesInsuranceRejectionReasonEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -167,7 +167,7 @@ func (x *LocalServicesInsuranceRejectionReasonEnum) String() string {
func (*LocalServicesInsuranceRejectionReasonEnum) ProtoMessage() {}
func (x *LocalServicesInsuranceRejectionReasonEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -180,19 +180,19 @@ func (x *LocalServicesInsuranceRejectionReasonEnum) ProtoReflect() protoreflect.
// Deprecated: Use LocalServicesInsuranceRejectionReasonEnum.ProtoReflect.Descriptor instead.
func (*LocalServicesInsuranceRejectionReasonEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_rawDesc = []byte{
0x0a, 0x4e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f,
0x69, 0x6e, 0x73, 0x75, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0xb2, 0x03, 0x0a, 0x29, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63,
0x65, 0x73, 0x49, 0x6e, 0x73, 0x75, 0x72, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x6a, 0x65, 0x63,
0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x84,
@@ -222,43 +222,43 @@ var file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reaso
0x4f, 0x4e, 0x5f, 0x46, 0x49, 0x4e, 0x41, 0x4c, 0x10, 0x0e, 0x12, 0x09, 0x0a, 0x05, 0x4f, 0x54,
0x48, 0x45, 0x52, 0x10, 0x0f, 0x42, 0x84, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2a, 0x4c, 0x6f,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2a, 0x4c, 0x6f,
0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x49, 0x6e, 0x73, 0x75, 0x72,
0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x61,
0x73, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_rawDescData = file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_rawDesc
+ file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_rawDescData = file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_goTypes = []interface{}{
- (LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason)(0), // 0: google.ads.googleads.v16.enums.LocalServicesInsuranceRejectionReasonEnum.LocalServicesInsuranceRejectionReason
- (*LocalServicesInsuranceRejectionReasonEnum)(nil), // 1: google.ads.googleads.v16.enums.LocalServicesInsuranceRejectionReasonEnum
+var file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_goTypes = []interface{}{
+ (LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason)(0), // 0: google.ads.googleads.v17.enums.LocalServicesInsuranceRejectionReasonEnum.LocalServicesInsuranceRejectionReason
+ (*LocalServicesInsuranceRejectionReasonEnum)(nil), // 1: google.ads.googleads.v17.enums.LocalServicesInsuranceRejectionReasonEnum
}
-var file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -267,14 +267,14 @@ var file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reaso
}
func init() {
- file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_init()
+ file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_init()
}
-func file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_init() {
- if File_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto != nil {
+func file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_init() {
+ if File_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocalServicesInsuranceRejectionReasonEnum); i {
case 0:
return &v.state
@@ -291,19 +291,19 @@ func file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reas
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto = out.File
- file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_local_services_insurance_rejection_reason_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto = out.File
+ file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_local_services_insurance_rejection_reason_proto_depIdxs = nil
}
diff --git a/enums/local_services_lead_credit_state.pb.go b/enums/local_services_lead_credit_state.pb.go
index 53a2c7bb..8460cae9 100644
--- a/enums/local_services_lead_credit_state.pb.go
+++ b/enums/local_services_lead_credit_state.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/local_services_lead_credit_state.proto
+// source: google/ads/googleads/v17/enums/local_services_lead_credit_state.proto
package enums
@@ -75,11 +75,11 @@ func (x LocalServicesCreditStateEnum_CreditState) String() string {
}
func (LocalServicesCreditStateEnum_CreditState) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_enumTypes[0].Descriptor()
}
func (LocalServicesCreditStateEnum_CreditState) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_enumTypes[0]
}
func (x LocalServicesCreditStateEnum_CreditState) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x LocalServicesCreditStateEnum_CreditState) Number() protoreflect.EnumNumb
// Deprecated: Use LocalServicesCreditStateEnum_CreditState.Descriptor instead.
func (LocalServicesCreditStateEnum_CreditState) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible credit states of a lead.
@@ -101,7 +101,7 @@ type LocalServicesCreditStateEnum struct {
func (x *LocalServicesCreditStateEnum) Reset() {
*x = LocalServicesCreditStateEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *LocalServicesCreditStateEnum) String() string {
func (*LocalServicesCreditStateEnum) ProtoMessage() {}
func (x *LocalServicesCreditStateEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,19 +127,19 @@ func (x *LocalServicesCreditStateEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocalServicesCreditStateEnum.ProtoReflect.Descriptor instead.
func (*LocalServicesCreditStateEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_rawDesc = []byte{
0x0a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f,
0x6c, 0x65, 0x61, 0x64, 0x5f, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74,
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x66, 0x0a, 0x1c, 0x4c, 0x6f, 0x63, 0x61, 0x6c,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x66, 0x0a, 0x1c, 0x4c, 0x6f, 0x63, 0x61, 0x6c,
0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x53, 0x74,
0x61, 0x74, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x46, 0x0a, 0x0b, 0x43, 0x72, 0x65, 0x64, 0x69,
0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
@@ -147,43 +147,43 @@ var file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_r
0x57, 0x4e, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x50, 0x45, 0x4e, 0x44, 0x49, 0x4e, 0x47, 0x10,
0x02, 0x12, 0x0c, 0x0a, 0x08, 0x43, 0x52, 0x45, 0x44, 0x49, 0x54, 0x45, 0x44, 0x10, 0x03, 0x42,
0xfb, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72,
0x76, 0x69, 0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x53,
0x74, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_rawDescData = file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_rawDesc
+ file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_rawDescData = file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_goTypes = []interface{}{
- (LocalServicesCreditStateEnum_CreditState)(0), // 0: google.ads.googleads.v16.enums.LocalServicesCreditStateEnum.CreditState
- (*LocalServicesCreditStateEnum)(nil), // 1: google.ads.googleads.v16.enums.LocalServicesCreditStateEnum
+var file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_goTypes = []interface{}{
+ (LocalServicesCreditStateEnum_CreditState)(0), // 0: google.ads.googleads.v17.enums.LocalServicesCreditStateEnum.CreditState
+ (*LocalServicesCreditStateEnum)(nil), // 1: google.ads.googleads.v17.enums.LocalServicesCreditStateEnum
}
-var file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_d
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_init() }
-func file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_init() {
- if File_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_init() }
+func file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_init() {
+ if File_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocalServicesCreditStateEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto = out.File
- file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_local_services_lead_credit_state_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto = out.File
+ file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_local_services_lead_credit_state_proto_depIdxs = nil
}
diff --git a/enums/local_services_lead_status.pb.go b/enums/local_services_lead_status.pb.go
index a68bf4cb..71d740ee 100644
--- a/enums/local_services_lead_status.pb.go
+++ b/enums/local_services_lead_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/local_services_lead_status.proto
+// source: google/ads/googleads/v17/enums/local_services_lead_status.proto
package enums
@@ -99,11 +99,11 @@ func (x LocalServicesLeadStatusEnum_LeadStatus) String() string {
}
func (LocalServicesLeadStatusEnum_LeadStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_local_services_lead_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_local_services_lead_status_proto_enumTypes[0].Descriptor()
}
func (LocalServicesLeadStatusEnum_LeadStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_local_services_lead_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_local_services_lead_status_proto_enumTypes[0]
}
func (x LocalServicesLeadStatusEnum_LeadStatus) Number() protoreflect.EnumNumber {
@@ -112,7 +112,7 @@ func (x LocalServicesLeadStatusEnum_LeadStatus) Number() protoreflect.EnumNumber
// Deprecated: Use LocalServicesLeadStatusEnum_LeadStatus.Descriptor instead.
func (LocalServicesLeadStatusEnum_LeadStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_lead_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_local_services_lead_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of lead.
@@ -125,7 +125,7 @@ type LocalServicesLeadStatusEnum struct {
func (x *LocalServicesLeadStatusEnum) Reset() {
*x = LocalServicesLeadStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_local_services_lead_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_lead_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -138,7 +138,7 @@ func (x *LocalServicesLeadStatusEnum) String() string {
func (*LocalServicesLeadStatusEnum) ProtoMessage() {}
func (x *LocalServicesLeadStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_local_services_lead_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_lead_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -151,18 +151,18 @@ func (x *LocalServicesLeadStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocalServicesLeadStatusEnum.ProtoReflect.Descriptor instead.
func (*LocalServicesLeadStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_lead_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_local_services_lead_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_local_services_lead_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_local_services_lead_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_local_services_lead_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_local_services_lead_status_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f,
0x6c, 0x65, 0x61, 0x64, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x22, 0xba, 0x01, 0x0a, 0x1b, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69,
0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x9a, 0x01, 0x0a, 0x0a, 0x4c, 0x65, 0x61, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
@@ -176,42 +176,42 @@ var file_google_ads_googleads_v16_enums_local_services_lead_status_proto_rawDesc
0x55, 0x4d, 0x45, 0x52, 0x5f, 0x44, 0x45, 0x43, 0x4c, 0x49, 0x4e, 0x45, 0x44, 0x10, 0x08, 0x12,
0x0d, 0x0a, 0x09, 0x57, 0x49, 0x50, 0x45, 0x44, 0x5f, 0x4f, 0x55, 0x54, 0x10, 0x09, 0x42, 0xf6,
0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76,
0x69, 0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_local_services_lead_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_local_services_lead_status_proto_rawDescData = file_google_ads_googleads_v16_enums_local_services_lead_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_local_services_lead_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_local_services_lead_status_proto_rawDescData = file_google_ads_googleads_v17_enums_local_services_lead_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_local_services_lead_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_local_services_lead_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_local_services_lead_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_local_services_lead_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_local_services_lead_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_local_services_lead_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_local_services_lead_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_local_services_lead_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_local_services_lead_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_local_services_lead_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_local_services_lead_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_lead_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_lead_status_proto_goTypes = []interface{}{
- (LocalServicesLeadStatusEnum_LeadStatus)(0), // 0: google.ads.googleads.v16.enums.LocalServicesLeadStatusEnum.LeadStatus
- (*LocalServicesLeadStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.LocalServicesLeadStatusEnum
+var file_google_ads_googleads_v17_enums_local_services_lead_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_lead_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_lead_status_proto_goTypes = []interface{}{
+ (LocalServicesLeadStatusEnum_LeadStatus)(0), // 0: google.ads.googleads.v17.enums.LocalServicesLeadStatusEnum.LeadStatus
+ (*LocalServicesLeadStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.LocalServicesLeadStatusEnum
}
-var file_google_ads_googleads_v16_enums_local_services_lead_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_local_services_lead_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -219,13 +219,13 @@ var file_google_ads_googleads_v16_enums_local_services_lead_status_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_local_services_lead_status_proto_init() }
-func file_google_ads_googleads_v16_enums_local_services_lead_status_proto_init() {
- if File_google_ads_googleads_v16_enums_local_services_lead_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_local_services_lead_status_proto_init() }
+func file_google_ads_googleads_v17_enums_local_services_lead_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_local_services_lead_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_local_services_lead_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_local_services_lead_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocalServicesLeadStatusEnum); i {
case 0:
return &v.state
@@ -242,19 +242,19 @@ func file_google_ads_googleads_v16_enums_local_services_lead_status_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_local_services_lead_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_local_services_lead_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_local_services_lead_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_local_services_lead_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_local_services_lead_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_local_services_lead_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_local_services_lead_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_local_services_lead_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_local_services_lead_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_local_services_lead_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_local_services_lead_status_proto = out.File
- file_google_ads_googleads_v16_enums_local_services_lead_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_local_services_lead_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_local_services_lead_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_local_services_lead_status_proto = out.File
+ file_google_ads_googleads_v17_enums_local_services_lead_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_local_services_lead_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_local_services_lead_status_proto_depIdxs = nil
}
diff --git a/enums/local_services_lead_type.pb.go b/enums/local_services_lead_type.pb.go
index 8cf6d05c..adadd409 100644
--- a/enums/local_services_lead_type.pb.go
+++ b/enums/local_services_lead_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/local_services_lead_type.proto
+// source: google/ads/googleads/v17/enums/local_services_lead_type.proto
package enums
@@ -79,11 +79,11 @@ func (x LocalServicesLeadTypeEnum_LeadType) String() string {
}
func (LocalServicesLeadTypeEnum_LeadType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_local_services_lead_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_local_services_lead_type_proto_enumTypes[0].Descriptor()
}
func (LocalServicesLeadTypeEnum_LeadType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_local_services_lead_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_local_services_lead_type_proto_enumTypes[0]
}
func (x LocalServicesLeadTypeEnum_LeadType) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x LocalServicesLeadTypeEnum_LeadType) Number() protoreflect.EnumNumber {
// Deprecated: Use LocalServicesLeadTypeEnum_LeadType.Descriptor instead.
func (LocalServicesLeadTypeEnum_LeadType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_lead_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_local_services_lead_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible types of lead.
@@ -105,7 +105,7 @@ type LocalServicesLeadTypeEnum struct {
func (x *LocalServicesLeadTypeEnum) Reset() {
*x = LocalServicesLeadTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_local_services_lead_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_lead_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *LocalServicesLeadTypeEnum) String() string {
func (*LocalServicesLeadTypeEnum) ProtoMessage() {}
func (x *LocalServicesLeadTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_local_services_lead_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_lead_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *LocalServicesLeadTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocalServicesLeadTypeEnum.ProtoReflect.Descriptor instead.
func (*LocalServicesLeadTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_lead_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_local_services_lead_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_local_services_lead_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_local_services_lead_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_local_services_lead_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_local_services_lead_type_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f,
0x6c, 0x65, 0x61, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
0x6f, 0x0a, 0x19, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73,
0x4c, 0x65, 0x61, 0x64, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x52, 0x0a, 0x08,
0x4c, 0x65, 0x61, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50,
@@ -152,41 +152,41 @@ var file_google_ads_googleads_v16_enums_local_services_lead_type_proto_rawDesc =
0x4c, 0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07, 0x42, 0x4f, 0x4f, 0x4b, 0x49, 0x4e, 0x47, 0x10, 0x04,
0x42, 0xf4, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65,
0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_local_services_lead_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_local_services_lead_type_proto_rawDescData = file_google_ads_googleads_v16_enums_local_services_lead_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_local_services_lead_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_local_services_lead_type_proto_rawDescData = file_google_ads_googleads_v17_enums_local_services_lead_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_local_services_lead_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_local_services_lead_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_local_services_lead_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_local_services_lead_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_local_services_lead_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_local_services_lead_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_local_services_lead_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_local_services_lead_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_local_services_lead_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_local_services_lead_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_local_services_lead_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_lead_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_lead_type_proto_goTypes = []interface{}{
- (LocalServicesLeadTypeEnum_LeadType)(0), // 0: google.ads.googleads.v16.enums.LocalServicesLeadTypeEnum.LeadType
- (*LocalServicesLeadTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.LocalServicesLeadTypeEnum
+var file_google_ads_googleads_v17_enums_local_services_lead_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_lead_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_lead_type_proto_goTypes = []interface{}{
+ (LocalServicesLeadTypeEnum_LeadType)(0), // 0: google.ads.googleads.v17.enums.LocalServicesLeadTypeEnum.LeadType
+ (*LocalServicesLeadTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.LocalServicesLeadTypeEnum
}
-var file_google_ads_googleads_v16_enums_local_services_lead_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_local_services_lead_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -194,13 +194,13 @@ var file_google_ads_googleads_v16_enums_local_services_lead_type_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_local_services_lead_type_proto_init() }
-func file_google_ads_googleads_v16_enums_local_services_lead_type_proto_init() {
- if File_google_ads_googleads_v16_enums_local_services_lead_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_local_services_lead_type_proto_init() }
+func file_google_ads_googleads_v17_enums_local_services_lead_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_local_services_lead_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_local_services_lead_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_local_services_lead_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocalServicesLeadTypeEnum); i {
case 0:
return &v.state
@@ -217,19 +217,19 @@ func file_google_ads_googleads_v16_enums_local_services_lead_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_local_services_lead_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_local_services_lead_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_local_services_lead_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_local_services_lead_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_local_services_lead_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_local_services_lead_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_local_services_lead_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_local_services_lead_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_local_services_lead_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_local_services_lead_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_local_services_lead_type_proto = out.File
- file_google_ads_googleads_v16_enums_local_services_lead_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_local_services_lead_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_local_services_lead_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_local_services_lead_type_proto = out.File
+ file_google_ads_googleads_v17_enums_local_services_lead_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_local_services_lead_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_local_services_lead_type_proto_depIdxs = nil
}
diff --git a/enums/local_services_license_rejection_reason.pb.go b/enums/local_services_license_rejection_reason.pb.go
index 880d74b5..706d4c30 100644
--- a/enums/local_services_license_rejection_reason.pb.go
+++ b/enums/local_services_license_rejection_reason.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/local_services_license_rejection_reason.proto
+// source: google/ads/googleads/v17/enums/local_services_license_rejection_reason.proto
package enums
@@ -96,11 +96,11 @@ func (x LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionRea
}
func (LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_enumTypes[0].Descriptor()
}
func (LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_enumTypes[0]
}
func (x LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason) Number() protoreflect.EnumNumber {
@@ -109,7 +109,7 @@ func (x LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionRea
// Deprecated: Use LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason.Descriptor instead.
func (LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the rejection reason of a local services
@@ -123,7 +123,7 @@ type LocalServicesLicenseRejectionReasonEnum struct {
func (x *LocalServicesLicenseRejectionReasonEnum) Reset() {
*x = LocalServicesLicenseRejectionReasonEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -136,7 +136,7 @@ func (x *LocalServicesLicenseRejectionReasonEnum) String() string {
func (*LocalServicesLicenseRejectionReasonEnum) ProtoMessage() {}
func (x *LocalServicesLicenseRejectionReasonEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -149,19 +149,19 @@ func (x *LocalServicesLicenseRejectionReasonEnum) ProtoReflect() protoreflect.Me
// Deprecated: Use LocalServicesLicenseRejectionReasonEnum.ProtoReflect.Descriptor instead.
func (*LocalServicesLicenseRejectionReasonEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_rawDesc = []byte{
0x0a, 0x4c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f,
0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x5f, 0x72, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f,
0x6e, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xf3,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xf3,
0x01, 0x0a, 0x27, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73,
0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x52, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,
0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xc7, 0x01, 0x0a, 0x23, 0x4c,
@@ -179,43 +179,43 @@ var file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_
0x54, 0x5f, 0x4f, 0x52, 0x5f, 0x49, 0x44, 0x10, 0x07, 0x12, 0x09, 0x0a, 0x05, 0x4f, 0x54, 0x48,
0x45, 0x52, 0x10, 0x08, 0x42, 0x82, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x28, 0x4c, 0x6f, 0x63,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x28, 0x4c, 0x6f, 0x63,
0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73,
0x65, 0x52, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_rawDescData = file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_rawDesc
+ file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_rawDescData = file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_goTypes = []interface{}{
- (LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason)(0), // 0: google.ads.googleads.v16.enums.LocalServicesLicenseRejectionReasonEnum.LocalServicesLicenseRejectionReason
- (*LocalServicesLicenseRejectionReasonEnum)(nil), // 1: google.ads.googleads.v16.enums.LocalServicesLicenseRejectionReasonEnum
+var file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_goTypes = []interface{}{
+ (LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason)(0), // 0: google.ads.googleads.v17.enums.LocalServicesLicenseRejectionReasonEnum.LocalServicesLicenseRejectionReason
+ (*LocalServicesLicenseRejectionReasonEnum)(nil), // 1: google.ads.googleads.v17.enums.LocalServicesLicenseRejectionReasonEnum
}
-var file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -223,13 +223,13 @@ var file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_init() }
-func file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_init() {
- if File_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_init() }
+func file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_init() {
+ if File_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocalServicesLicenseRejectionReasonEnum); i {
case 0:
return &v.state
@@ -246,19 +246,19 @@ func file_google_ads_googleads_v16_enums_local_services_license_rejection_reason
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto = out.File
- file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_local_services_license_rejection_reason_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto = out.File
+ file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_local_services_license_rejection_reason_proto_depIdxs = nil
}
diff --git a/enums/local_services_participant_type.pb.go b/enums/local_services_participant_type.pb.go
index 27842f60..5529bdf3 100644
--- a/enums/local_services_participant_type.pb.go
+++ b/enums/local_services_participant_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/local_services_participant_type.proto
+// source: google/ads/googleads/v17/enums/local_services_participant_type.proto
package enums
@@ -75,11 +75,11 @@ func (x LocalServicesParticipantTypeEnum_ParticipantType) String() string {
}
func (LocalServicesParticipantTypeEnum_ParticipantType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_local_services_participant_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_local_services_participant_type_proto_enumTypes[0].Descriptor()
}
func (LocalServicesParticipantTypeEnum_ParticipantType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_local_services_participant_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_local_services_participant_type_proto_enumTypes[0]
}
func (x LocalServicesParticipantTypeEnum_ParticipantType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x LocalServicesParticipantTypeEnum_ParticipantType) Number() protoreflect.
// Deprecated: Use LocalServicesParticipantTypeEnum_ParticipantType.Descriptor instead.
func (LocalServicesParticipantTypeEnum_ParticipantType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_participant_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_local_services_participant_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible types of lead conversation
@@ -102,7 +102,7 @@ type LocalServicesParticipantTypeEnum struct {
func (x *LocalServicesParticipantTypeEnum) Reset() {
*x = LocalServicesParticipantTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_local_services_participant_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_participant_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -115,7 +115,7 @@ func (x *LocalServicesParticipantTypeEnum) String() string {
func (*LocalServicesParticipantTypeEnum) ProtoMessage() {}
func (x *LocalServicesParticipantTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_local_services_participant_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_participant_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -128,18 +128,18 @@ func (x *LocalServicesParticipantTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocalServicesParticipantTypeEnum.ProtoReflect.Descriptor instead.
func (*LocalServicesParticipantTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_participant_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_local_services_participant_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_local_services_participant_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_local_services_participant_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_local_services_participant_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_local_services_participant_type_proto_rawDesc = []byte{
0x0a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f,
0x70, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x71, 0x0a, 0x20, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53,
0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x50, 0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61,
0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4d, 0x0a, 0x0f, 0x50, 0x61,
@@ -149,42 +149,42 @@ var file_google_ads_googleads_v16_enums_local_services_participant_type_proto_ra
0x44, 0x56, 0x45, 0x52, 0x54, 0x49, 0x53, 0x45, 0x52, 0x10, 0x02, 0x12, 0x0c, 0x0a, 0x08, 0x43,
0x4f, 0x4e, 0x53, 0x55, 0x4d, 0x45, 0x52, 0x10, 0x03, 0x42, 0xfb, 0x01, 0x0a, 0x22, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x42, 0x21, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x50,
0x61, 0x72, 0x74, 0x69, 0x63, 0x69, 0x70, 0x61, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_local_services_participant_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_local_services_participant_type_proto_rawDescData = file_google_ads_googleads_v16_enums_local_services_participant_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_local_services_participant_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_local_services_participant_type_proto_rawDescData = file_google_ads_googleads_v17_enums_local_services_participant_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_local_services_participant_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_local_services_participant_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_local_services_participant_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_local_services_participant_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_local_services_participant_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_local_services_participant_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_local_services_participant_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_local_services_participant_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_local_services_participant_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_local_services_participant_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_local_services_participant_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_participant_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_participant_type_proto_goTypes = []interface{}{
- (LocalServicesParticipantTypeEnum_ParticipantType)(0), // 0: google.ads.googleads.v16.enums.LocalServicesParticipantTypeEnum.ParticipantType
- (*LocalServicesParticipantTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.LocalServicesParticipantTypeEnum
+var file_google_ads_googleads_v17_enums_local_services_participant_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_participant_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_participant_type_proto_goTypes = []interface{}{
+ (LocalServicesParticipantTypeEnum_ParticipantType)(0), // 0: google.ads.googleads.v17.enums.LocalServicesParticipantTypeEnum.ParticipantType
+ (*LocalServicesParticipantTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.LocalServicesParticipantTypeEnum
}
-var file_google_ads_googleads_v16_enums_local_services_participant_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_local_services_participant_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -192,13 +192,13 @@ var file_google_ads_googleads_v16_enums_local_services_participant_type_proto_de
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_local_services_participant_type_proto_init() }
-func file_google_ads_googleads_v16_enums_local_services_participant_type_proto_init() {
- if File_google_ads_googleads_v16_enums_local_services_participant_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_local_services_participant_type_proto_init() }
+func file_google_ads_googleads_v17_enums_local_services_participant_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_local_services_participant_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_local_services_participant_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_local_services_participant_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocalServicesParticipantTypeEnum); i {
case 0:
return &v.state
@@ -215,19 +215,19 @@ func file_google_ads_googleads_v16_enums_local_services_participant_type_proto_i
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_local_services_participant_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_local_services_participant_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_local_services_participant_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_local_services_participant_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_local_services_participant_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_local_services_participant_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_local_services_participant_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_local_services_participant_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_local_services_participant_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_local_services_participant_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_local_services_participant_type_proto = out.File
- file_google_ads_googleads_v16_enums_local_services_participant_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_local_services_participant_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_local_services_participant_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_local_services_participant_type_proto = out.File
+ file_google_ads_googleads_v17_enums_local_services_participant_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_local_services_participant_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_local_services_participant_type_proto_depIdxs = nil
}
diff --git a/enums/local_services_verification_artifact_status.pb.go b/enums/local_services_verification_artifact_status.pb.go
index 3b2c5aa5..34e7819d 100644
--- a/enums/local_services_verification_artifact_status.pb.go
+++ b/enums/local_services_verification_artifact_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/local_services_verification_artifact_status.proto
+// source: google/ads/googleads/v17/enums/local_services_verification_artifact_status.proto
package enums
@@ -87,11 +87,11 @@ func (x LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArt
}
func (LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_enumTypes[0].Descriptor()
}
func (LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_enumTypes[0]
}
func (x LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArt
// Deprecated: Use LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus.Descriptor instead.
func (LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the status of local services verification
@@ -114,7 +114,7 @@ type LocalServicesVerificationArtifactStatusEnum struct {
func (x *LocalServicesVerificationArtifactStatusEnum) Reset() {
*x = LocalServicesVerificationArtifactStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -127,7 +127,7 @@ func (x *LocalServicesVerificationArtifactStatusEnum) String() string {
func (*LocalServicesVerificationArtifactStatusEnum) ProtoMessage() {}
func (x *LocalServicesVerificationArtifactStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -140,19 +140,19 @@ func (x *LocalServicesVerificationArtifactStatusEnum) ProtoReflect() protoreflec
// Deprecated: Use LocalServicesVerificationArtifactStatusEnum.ProtoReflect.Descriptor instead.
func (*LocalServicesVerificationArtifactStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_rawDesc = []byte{
0x0a, 0x50, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f,
0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x74,
0x69, 0x66, 0x61, 0x63, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0xbe, 0x01, 0x0a, 0x2b, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76,
0x69, 0x63, 0x65, 0x73, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e,
@@ -167,43 +167,43 @@ var file_google_ads_googleads_v16_enums_local_services_verification_artifact_sta
0x4f, 0x4e, 0x10, 0x05, 0x12, 0x0d, 0x0a, 0x09, 0x43, 0x41, 0x4e, 0x43, 0x45, 0x4c, 0x4c, 0x45,
0x44, 0x10, 0x06, 0x42, 0x86, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2c, 0x4c, 0x6f, 0x63, 0x61,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2c, 0x4c, 0x6f, 0x63, 0x61,
0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x72, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_rawDescData = file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_rawDescData = file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_goTypes = []interface{}{
- (LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus)(0), // 0: google.ads.googleads.v16.enums.LocalServicesVerificationArtifactStatusEnum.LocalServicesVerificationArtifactStatus
- (*LocalServicesVerificationArtifactStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.LocalServicesVerificationArtifactStatusEnum
+var file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_goTypes = []interface{}{
+ (LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus)(0), // 0: google.ads.googleads.v17.enums.LocalServicesVerificationArtifactStatusEnum.LocalServicesVerificationArtifactStatus
+ (*LocalServicesVerificationArtifactStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.LocalServicesVerificationArtifactStatusEnum
}
-var file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -212,14 +212,14 @@ var file_google_ads_googleads_v16_enums_local_services_verification_artifact_sta
}
func init() {
- file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_init()
+ file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_init()
}
-func file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_init() {
- if File_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto != nil {
+func file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocalServicesVerificationArtifactStatusEnum); i {
case 0:
return &v.state
@@ -236,19 +236,19 @@ func file_google_ads_googleads_v16_enums_local_services_verification_artifact_st
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto = out.File
- file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_local_services_verification_artifact_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto = out.File
+ file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_local_services_verification_artifact_status_proto_depIdxs = nil
}
diff --git a/enums/local_services_verification_artifact_type.pb.go b/enums/local_services_verification_artifact_type.pb.go
index 2374d2b4..2236e343 100644
--- a/enums/local_services_verification_artifact_type.pb.go
+++ b/enums/local_services_verification_artifact_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/local_services_verification_artifact_type.proto
+// source: google/ads/googleads/v17/enums/local_services_verification_artifact_type.proto
package enums
@@ -83,11 +83,11 @@ func (x LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtif
}
func (LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_enumTypes[0].Descriptor()
}
func (LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_enumTypes[0]
}
func (x LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType) Number() protoreflect.EnumNumber {
@@ -96,7 +96,7 @@ func (x LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtif
// Deprecated: Use LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType.Descriptor instead.
func (LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the type of local services verification
@@ -110,7 +110,7 @@ type LocalServicesVerificationArtifactTypeEnum struct {
func (x *LocalServicesVerificationArtifactTypeEnum) Reset() {
*x = LocalServicesVerificationArtifactTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -123,7 +123,7 @@ func (x *LocalServicesVerificationArtifactTypeEnum) String() string {
func (*LocalServicesVerificationArtifactTypeEnum) ProtoMessage() {}
func (x *LocalServicesVerificationArtifactTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -136,19 +136,19 @@ func (x *LocalServicesVerificationArtifactTypeEnum) ProtoReflect() protoreflect.
// Deprecated: Use LocalServicesVerificationArtifactTypeEnum.ProtoReflect.Descriptor instead.
func (*LocalServicesVerificationArtifactTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_rawDesc = []byte{
0x0a, 0x4e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f,
0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x72, 0x74,
0x69, 0x66, 0x61, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0xc6, 0x01, 0x0a, 0x29, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63,
0x65, 0x73, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x72,
0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x98,
@@ -163,43 +163,43 @@ var file_google_ads_googleads_v16_enums_local_services_verification_artifact_typ
0x4e, 0x45, 0x53, 0x53, 0x5f, 0x52, 0x45, 0x47, 0x49, 0x53, 0x54, 0x52, 0x41, 0x54, 0x49, 0x4f,
0x4e, 0x5f, 0x43, 0x48, 0x45, 0x43, 0x4b, 0x10, 0x05, 0x42, 0x84, 0x02, 0x0a, 0x22, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x42, 0x2a, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x56,
0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x72, 0x74, 0x69, 0x66,
0x61, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_rawDescData = file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_rawDescData = file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_goTypes = []interface{}{
- (LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType)(0), // 0: google.ads.googleads.v16.enums.LocalServicesVerificationArtifactTypeEnum.LocalServicesVerificationArtifactType
- (*LocalServicesVerificationArtifactTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.LocalServicesVerificationArtifactTypeEnum
+var file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_goTypes = []interface{}{
+ (LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType)(0), // 0: google.ads.googleads.v17.enums.LocalServicesVerificationArtifactTypeEnum.LocalServicesVerificationArtifactType
+ (*LocalServicesVerificationArtifactTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.LocalServicesVerificationArtifactTypeEnum
}
-var file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -208,14 +208,14 @@ var file_google_ads_googleads_v16_enums_local_services_verification_artifact_typ
}
func init() {
- file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_init()
+ file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_init()
}
-func file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_init() {
- if File_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto != nil {
+func file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocalServicesVerificationArtifactTypeEnum); i {
case 0:
return &v.state
@@ -232,19 +232,19 @@ func file_google_ads_googleads_v16_enums_local_services_verification_artifact_ty
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto = out.File
- file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_local_services_verification_artifact_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto = out.File
+ file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_local_services_verification_artifact_type_proto_depIdxs = nil
}
diff --git a/enums/local_services_verification_status.pb.go b/enums/local_services_verification_status.pb.go
index 03ec4f08..698faa29 100644
--- a/enums/local_services_verification_status.pb.go
+++ b/enums/local_services_verification_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/local_services_verification_status.proto
+// source: google/ads/googleads/v17/enums/local_services_verification_status.proto
package enums
@@ -96,11 +96,11 @@ func (x LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus) Str
}
func (LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_local_services_verification_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_local_services_verification_status_proto_enumTypes[0].Descriptor()
}
func (LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_local_services_verification_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_local_services_verification_status_proto_enumTypes[0]
}
func (x LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus) Number() protoreflect.EnumNumber {
@@ -109,7 +109,7 @@ func (x LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus) Num
// Deprecated: Use LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus.Descriptor instead.
func (LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_verification_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_local_services_verification_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing status of a particular Local Services Ads
@@ -123,7 +123,7 @@ type LocalServicesVerificationStatusEnum struct {
func (x *LocalServicesVerificationStatusEnum) Reset() {
*x = LocalServicesVerificationStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_local_services_verification_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_verification_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -136,7 +136,7 @@ func (x *LocalServicesVerificationStatusEnum) String() string {
func (*LocalServicesVerificationStatusEnum) ProtoMessage() {}
func (x *LocalServicesVerificationStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_local_services_verification_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_local_services_verification_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -149,19 +149,19 @@ func (x *LocalServicesVerificationStatusEnum) ProtoReflect() protoreflect.Messag
// Deprecated: Use LocalServicesVerificationStatusEnum.ProtoReflect.Descriptor instead.
func (*LocalServicesVerificationStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_local_services_verification_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_local_services_verification_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_local_services_verification_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_local_services_verification_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_local_services_verification_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_local_services_verification_status_proto_rawDesc = []byte{
0x0a, 0x47, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x5f,
0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61,
0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe8, 0x01, 0x0a, 0x23, 0x4c, 0x6f,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe8, 0x01, 0x0a, 0x23, 0x4c, 0x6f,
0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x56, 0x65, 0x72, 0x69, 0x66,
0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0xc0, 0x01, 0x0a, 0x1f, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69,
@@ -178,42 +178,42 @@ var file_google_ads_googleads_v16_enums_local_services_verification_status_proto
0x50, 0x45, 0x4e, 0x44, 0x49, 0x4e, 0x47, 0x5f, 0x45, 0x53, 0x43, 0x41, 0x4c, 0x41, 0x54, 0x49,
0x4f, 0x4e, 0x10, 0x08, 0x42, 0xfe, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x24, 0x4c, 0x6f, 0x63,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x24, 0x4c, 0x6f, 0x63,
0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69,
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_local_services_verification_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_local_services_verification_status_proto_rawDescData = file_google_ads_googleads_v16_enums_local_services_verification_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_local_services_verification_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_local_services_verification_status_proto_rawDescData = file_google_ads_googleads_v17_enums_local_services_verification_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_local_services_verification_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_local_services_verification_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_local_services_verification_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_local_services_verification_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_local_services_verification_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_local_services_verification_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_local_services_verification_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_local_services_verification_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_local_services_verification_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_local_services_verification_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_local_services_verification_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_verification_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_local_services_verification_status_proto_goTypes = []interface{}{
- (LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus)(0), // 0: google.ads.googleads.v16.enums.LocalServicesVerificationStatusEnum.LocalServicesVerificationStatus
- (*LocalServicesVerificationStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.LocalServicesVerificationStatusEnum
+var file_google_ads_googleads_v17_enums_local_services_verification_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_verification_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_local_services_verification_status_proto_goTypes = []interface{}{
+ (LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus)(0), // 0: google.ads.googleads.v17.enums.LocalServicesVerificationStatusEnum.LocalServicesVerificationStatus
+ (*LocalServicesVerificationStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.LocalServicesVerificationStatusEnum
}
-var file_google_ads_googleads_v16_enums_local_services_verification_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_local_services_verification_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -221,13 +221,13 @@ var file_google_ads_googleads_v16_enums_local_services_verification_status_proto
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_local_services_verification_status_proto_init() }
-func file_google_ads_googleads_v16_enums_local_services_verification_status_proto_init() {
- if File_google_ads_googleads_v16_enums_local_services_verification_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_local_services_verification_status_proto_init() }
+func file_google_ads_googleads_v17_enums_local_services_verification_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_local_services_verification_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_local_services_verification_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_local_services_verification_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocalServicesVerificationStatusEnum); i {
case 0:
return &v.state
@@ -244,19 +244,19 @@ func file_google_ads_googleads_v16_enums_local_services_verification_status_prot
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_local_services_verification_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_local_services_verification_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_local_services_verification_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_local_services_verification_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_local_services_verification_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_local_services_verification_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_local_services_verification_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_local_services_verification_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_local_services_verification_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_local_services_verification_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_local_services_verification_status_proto = out.File
- file_google_ads_googleads_v16_enums_local_services_verification_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_local_services_verification_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_local_services_verification_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_local_services_verification_status_proto = out.File
+ file_google_ads_googleads_v17_enums_local_services_verification_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_local_services_verification_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_local_services_verification_status_proto_depIdxs = nil
}
diff --git a/enums/location_extension_targeting_criterion_field.pb.go b/enums/location_extension_targeting_criterion_field.pb.go
index f9915d21..295a66d9 100644
--- a/enums/location_extension_targeting_criterion_field.pb.go
+++ b/enums/location_extension_targeting_criterion_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/location_extension_targeting_criterion_field.proto
+// source: google/ads/googleads/v17/enums/location_extension_targeting_criterion_field.proto
package enums
@@ -91,11 +91,11 @@ func (x LocationExtensionTargetingCriterionFieldEnum_LocationExtensionTargetingC
}
func (LocationExtensionTargetingCriterionFieldEnum_LocationExtensionTargetingCriterionField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_enumTypes[0].Descriptor()
}
func (LocationExtensionTargetingCriterionFieldEnum_LocationExtensionTargetingCriterionField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_enumTypes[0]
}
func (x LocationExtensionTargetingCriterionFieldEnum_LocationExtensionTargetingCriterionField) Number() protoreflect.EnumNumber {
@@ -104,7 +104,7 @@ func (x LocationExtensionTargetingCriterionFieldEnum_LocationExtensionTargetingC
// Deprecated: Use LocationExtensionTargetingCriterionFieldEnum_LocationExtensionTargetingCriterionField.Descriptor instead.
func (LocationExtensionTargetingCriterionFieldEnum_LocationExtensionTargetingCriterionField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Location Extension Targeting criterion fields.
@@ -117,7 +117,7 @@ type LocationExtensionTargetingCriterionFieldEnum struct {
func (x *LocationExtensionTargetingCriterionFieldEnum) Reset() {
*x = LocationExtensionTargetingCriterionFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -130,7 +130,7 @@ func (x *LocationExtensionTargetingCriterionFieldEnum) String() string {
func (*LocationExtensionTargetingCriterionFieldEnum) ProtoMessage() {}
func (x *LocationExtensionTargetingCriterionFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -143,19 +143,19 @@ func (x *LocationExtensionTargetingCriterionFieldEnum) ProtoReflect() protorefle
// Deprecated: Use LocationExtensionTargetingCriterionFieldEnum.ProtoReflect.Descriptor instead.
func (*LocationExtensionTargetingCriterionFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_rawDesc = []byte{
0x0a, 0x51, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x72,
0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x22, 0xdc, 0x01, 0x0a, 0x2c, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69,
0x6e, 0x67, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x46, 0x69, 0x65, 0x6c, 0x64,
@@ -172,43 +172,43 @@ var file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_f
0x12, 0x10, 0x0a, 0x0c, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x52, 0x59, 0x5f, 0x43, 0x4f, 0x44, 0x45,
0x10, 0x07, 0x42, 0x87, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2d, 0x4c, 0x6f, 0x63, 0x61, 0x74,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2d, 0x4c, 0x6f, 0x63, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67,
0x65, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x46, 0x69,
0x65, 0x6c, 0x64, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_rawDescData = file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_rawDescData = file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_goTypes = []interface{}{
- (LocationExtensionTargetingCriterionFieldEnum_LocationExtensionTargetingCriterionField)(0), // 0: google.ads.googleads.v16.enums.LocationExtensionTargetingCriterionFieldEnum.LocationExtensionTargetingCriterionField
- (*LocationExtensionTargetingCriterionFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.LocationExtensionTargetingCriterionFieldEnum
+var file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_goTypes = []interface{}{
+ (LocationExtensionTargetingCriterionFieldEnum_LocationExtensionTargetingCriterionField)(0), // 0: google.ads.googleads.v17.enums.LocationExtensionTargetingCriterionFieldEnum.LocationExtensionTargetingCriterionField
+ (*LocationExtensionTargetingCriterionFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.LocationExtensionTargetingCriterionFieldEnum
}
-var file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -217,14 +217,14 @@ var file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_f
}
func init() {
- file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_init()
+ file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_init()
}
-func file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_init() {
- if File_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto != nil {
+func file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocationExtensionTargetingCriterionFieldEnum); i {
case 0:
return &v.state
@@ -241,19 +241,19 @@ func file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto = out.File
- file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_location_extension_targeting_criterion_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto = out.File
+ file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_location_extension_targeting_criterion_field_proto_depIdxs = nil
}
diff --git a/enums/location_group_radius_units.pb.go b/enums/location_group_radius_units.pb.go
index 882225aa..2a8d26fc 100644
--- a/enums/location_group_radius_units.pb.go
+++ b/enums/location_group_radius_units.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/location_group_radius_units.proto
+// source: google/ads/googleads/v17/enums/location_group_radius_units.proto
package enums
@@ -79,11 +79,11 @@ func (x LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits) String() string {
}
func (LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_location_group_radius_units_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_location_group_radius_units_proto_enumTypes[0].Descriptor()
}
func (LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_location_group_radius_units_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_location_group_radius_units_proto_enumTypes[0]
}
func (x LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits) Number() protoref
// Deprecated: Use LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits.Descriptor instead.
func (LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_location_group_radius_units_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_location_group_radius_units_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing unit of radius in location group.
@@ -105,7 +105,7 @@ type LocationGroupRadiusUnitsEnum struct {
func (x *LocationGroupRadiusUnitsEnum) Reset() {
*x = LocationGroupRadiusUnitsEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_location_group_radius_units_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_location_group_radius_units_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *LocationGroupRadiusUnitsEnum) String() string {
func (*LocationGroupRadiusUnitsEnum) ProtoMessage() {}
func (x *LocationGroupRadiusUnitsEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_location_group_radius_units_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_location_group_radius_units_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *LocationGroupRadiusUnitsEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocationGroupRadiusUnitsEnum.ProtoReflect.Descriptor instead.
func (*LocationGroupRadiusUnitsEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_location_group_radius_units_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_location_group_radius_units_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_location_group_radius_units_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_location_group_radius_units_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_location_group_radius_units_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_location_group_radius_units_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f,
0x72, 0x61, 0x64, 0x69, 0x75, 0x73, 0x5f, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x80, 0x01, 0x0a, 0x1c, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47,
0x72, 0x6f, 0x75, 0x70, 0x52, 0x61, 0x64, 0x69, 0x75, 0x73, 0x55, 0x6e, 0x69, 0x74, 0x73, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0x60, 0x0a, 0x18, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47,
@@ -153,42 +153,42 @@ var file_google_ads_googleads_v16_enums_location_group_radius_units_proto_rawDes
0x45, 0x53, 0x10, 0x03, 0x12, 0x0f, 0x0a, 0x0b, 0x4d, 0x49, 0x4c, 0x4c, 0x49, 0x5f, 0x4d, 0x49,
0x4c, 0x45, 0x53, 0x10, 0x04, 0x42, 0xf7, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x4c, 0x6f,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x4c, 0x6f,
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x61, 0x64, 0x69, 0x75,
0x73, 0x55, 0x6e, 0x69, 0x74, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_location_group_radius_units_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_location_group_radius_units_proto_rawDescData = file_google_ads_googleads_v16_enums_location_group_radius_units_proto_rawDesc
+ file_google_ads_googleads_v17_enums_location_group_radius_units_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_location_group_radius_units_proto_rawDescData = file_google_ads_googleads_v17_enums_location_group_radius_units_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_location_group_radius_units_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_location_group_radius_units_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_location_group_radius_units_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_location_group_radius_units_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_location_group_radius_units_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_location_group_radius_units_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_location_group_radius_units_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_location_group_radius_units_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_location_group_radius_units_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_location_group_radius_units_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_location_group_radius_units_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_location_group_radius_units_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_location_group_radius_units_proto_goTypes = []interface{}{
- (LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits)(0), // 0: google.ads.googleads.v16.enums.LocationGroupRadiusUnitsEnum.LocationGroupRadiusUnits
- (*LocationGroupRadiusUnitsEnum)(nil), // 1: google.ads.googleads.v16.enums.LocationGroupRadiusUnitsEnum
+var file_google_ads_googleads_v17_enums_location_group_radius_units_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_location_group_radius_units_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_location_group_radius_units_proto_goTypes = []interface{}{
+ (LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits)(0), // 0: google.ads.googleads.v17.enums.LocationGroupRadiusUnitsEnum.LocationGroupRadiusUnits
+ (*LocationGroupRadiusUnitsEnum)(nil), // 1: google.ads.googleads.v17.enums.LocationGroupRadiusUnitsEnum
}
-var file_google_ads_googleads_v16_enums_location_group_radius_units_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_location_group_radius_units_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -196,13 +196,13 @@ var file_google_ads_googleads_v16_enums_location_group_radius_units_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_location_group_radius_units_proto_init() }
-func file_google_ads_googleads_v16_enums_location_group_radius_units_proto_init() {
- if File_google_ads_googleads_v16_enums_location_group_radius_units_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_location_group_radius_units_proto_init() }
+func file_google_ads_googleads_v17_enums_location_group_radius_units_proto_init() {
+ if File_google_ads_googleads_v17_enums_location_group_radius_units_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_location_group_radius_units_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_location_group_radius_units_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocationGroupRadiusUnitsEnum); i {
case 0:
return &v.state
@@ -219,19 +219,19 @@ func file_google_ads_googleads_v16_enums_location_group_radius_units_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_location_group_radius_units_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_location_group_radius_units_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_location_group_radius_units_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_location_group_radius_units_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_location_group_radius_units_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_location_group_radius_units_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_location_group_radius_units_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_location_group_radius_units_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_location_group_radius_units_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_location_group_radius_units_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_location_group_radius_units_proto = out.File
- file_google_ads_googleads_v16_enums_location_group_radius_units_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_location_group_radius_units_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_location_group_radius_units_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_location_group_radius_units_proto = out.File
+ file_google_ads_googleads_v17_enums_location_group_radius_units_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_location_group_radius_units_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_location_group_radius_units_proto_depIdxs = nil
}
diff --git a/enums/location_ownership_type.pb.go b/enums/location_ownership_type.pb.go
index 9782abcc..292b4780 100644
--- a/enums/location_ownership_type.pb.go
+++ b/enums/location_ownership_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/location_ownership_type.proto
+// source: google/ads/googleads/v17/enums/location_ownership_type.proto
package enums
@@ -75,11 +75,11 @@ func (x LocationOwnershipTypeEnum_LocationOwnershipType) String() string {
}
func (LocationOwnershipTypeEnum_LocationOwnershipType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_location_ownership_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_location_ownership_type_proto_enumTypes[0].Descriptor()
}
func (LocationOwnershipTypeEnum_LocationOwnershipType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_location_ownership_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_location_ownership_type_proto_enumTypes[0]
}
func (x LocationOwnershipTypeEnum_LocationOwnershipType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x LocationOwnershipTypeEnum_LocationOwnershipType) Number() protoreflect.E
// Deprecated: Use LocationOwnershipTypeEnum_LocationOwnershipType.Descriptor instead.
func (LocationOwnershipTypeEnum_LocationOwnershipType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_location_ownership_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_location_ownership_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible types of a location ownership.
@@ -101,7 +101,7 @@ type LocationOwnershipTypeEnum struct {
func (x *LocationOwnershipTypeEnum) Reset() {
*x = LocationOwnershipTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_location_ownership_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_location_ownership_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *LocationOwnershipTypeEnum) String() string {
func (*LocationOwnershipTypeEnum) ProtoMessage() {}
func (x *LocationOwnershipTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_location_ownership_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_location_ownership_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *LocationOwnershipTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocationOwnershipTypeEnum.ProtoReflect.Descriptor instead.
func (*LocationOwnershipTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_location_ownership_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_location_ownership_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_location_ownership_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_location_ownership_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_location_ownership_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_location_ownership_type_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x73,
0x68, 0x69, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x75,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x75,
0x0a, 0x19, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x73,
0x68, 0x69, 0x70, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x58, 0x0a, 0x15, 0x4c,
0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x73, 0x68, 0x69, 0x70,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_enums_location_ownership_type_proto_rawDesc =
0x57, 0x4e, 0x45, 0x52, 0x10, 0x02, 0x12, 0x0d, 0x0a, 0x09, 0x41, 0x46, 0x46, 0x49, 0x4c, 0x49,
0x41, 0x54, 0x45, 0x10, 0x03, 0x42, 0xf4, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x4c, 0x6f,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x4c, 0x6f,
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x73, 0x68, 0x69, 0x70, 0x54,
0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_location_ownership_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_location_ownership_type_proto_rawDescData = file_google_ads_googleads_v16_enums_location_ownership_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_location_ownership_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_location_ownership_type_proto_rawDescData = file_google_ads_googleads_v17_enums_location_ownership_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_location_ownership_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_location_ownership_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_location_ownership_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_location_ownership_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_location_ownership_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_location_ownership_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_location_ownership_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_location_ownership_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_location_ownership_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_location_ownership_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_location_ownership_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_location_ownership_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_location_ownership_type_proto_goTypes = []interface{}{
- (LocationOwnershipTypeEnum_LocationOwnershipType)(0), // 0: google.ads.googleads.v16.enums.LocationOwnershipTypeEnum.LocationOwnershipType
- (*LocationOwnershipTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.LocationOwnershipTypeEnum
+var file_google_ads_googleads_v17_enums_location_ownership_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_location_ownership_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_location_ownership_type_proto_goTypes = []interface{}{
+ (LocationOwnershipTypeEnum_LocationOwnershipType)(0), // 0: google.ads.googleads.v17.enums.LocationOwnershipTypeEnum.LocationOwnershipType
+ (*LocationOwnershipTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.LocationOwnershipTypeEnum
}
-var file_google_ads_googleads_v16_enums_location_ownership_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_location_ownership_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_location_ownership_type_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_location_ownership_type_proto_init() }
-func file_google_ads_googleads_v16_enums_location_ownership_type_proto_init() {
- if File_google_ads_googleads_v16_enums_location_ownership_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_location_ownership_type_proto_init() }
+func file_google_ads_googleads_v17_enums_location_ownership_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_location_ownership_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_location_ownership_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_location_ownership_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocationOwnershipTypeEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_location_ownership_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_location_ownership_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_location_ownership_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_location_ownership_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_location_ownership_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_location_ownership_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_location_ownership_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_location_ownership_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_location_ownership_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_location_ownership_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_location_ownership_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_location_ownership_type_proto = out.File
- file_google_ads_googleads_v16_enums_location_ownership_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_location_ownership_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_location_ownership_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_location_ownership_type_proto = out.File
+ file_google_ads_googleads_v17_enums_location_ownership_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_location_ownership_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_location_ownership_type_proto_depIdxs = nil
}
diff --git a/enums/location_placeholder_field.pb.go b/enums/location_placeholder_field.pb.go
index 53d18aa8..3c5d11c5 100644
--- a/enums/location_placeholder_field.pb.go
+++ b/enums/location_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/location_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/location_placeholder_field.proto
package enums
@@ -99,11 +99,11 @@ func (x LocationPlaceholderFieldEnum_LocationPlaceholderField) String() string {
}
func (LocationPlaceholderFieldEnum_LocationPlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_location_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_location_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (LocationPlaceholderFieldEnum_LocationPlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_location_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_location_placeholder_field_proto_enumTypes[0]
}
func (x LocationPlaceholderFieldEnum_LocationPlaceholderField) Number() protoreflect.EnumNumber {
@@ -112,7 +112,7 @@ func (x LocationPlaceholderFieldEnum_LocationPlaceholderField) Number() protoref
// Deprecated: Use LocationPlaceholderFieldEnum_LocationPlaceholderField.Descriptor instead.
func (LocationPlaceholderFieldEnum_LocationPlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_location_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_location_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Location placeholder fields.
@@ -125,7 +125,7 @@ type LocationPlaceholderFieldEnum struct {
func (x *LocationPlaceholderFieldEnum) Reset() {
*x = LocationPlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_location_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_location_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -138,7 +138,7 @@ func (x *LocationPlaceholderFieldEnum) String() string {
func (*LocationPlaceholderFieldEnum) ProtoMessage() {}
func (x *LocationPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_location_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_location_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -151,18 +151,18 @@ func (x *LocationPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocationPlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*LocationPlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_location_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_location_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_location_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_location_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_location_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_location_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68,
0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x22, 0xe1, 0x01, 0x0a, 0x1c, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6c,
0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0xc0, 0x01, 0x0a, 0x18, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50,
@@ -179,42 +179,42 @@ var file_google_ads_googleads_v16_enums_location_placeholder_field_proto_rawDesc
0x45, 0x10, 0x08, 0x12, 0x10, 0x0a, 0x0c, 0x50, 0x48, 0x4f, 0x4e, 0x45, 0x5f, 0x4e, 0x55, 0x4d,
0x42, 0x45, 0x52, 0x10, 0x09, 0x42, 0xf7, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x4c, 0x6f,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x4c, 0x6f,
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65,
0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_location_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_location_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_location_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_location_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_location_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_location_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_location_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_location_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_location_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_location_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_location_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_location_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_location_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_location_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_location_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_location_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_location_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_location_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_location_placeholder_field_proto_goTypes = []interface{}{
- (LocationPlaceholderFieldEnum_LocationPlaceholderField)(0), // 0: google.ads.googleads.v16.enums.LocationPlaceholderFieldEnum.LocationPlaceholderField
- (*LocationPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.LocationPlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_location_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_location_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_location_placeholder_field_proto_goTypes = []interface{}{
+ (LocationPlaceholderFieldEnum_LocationPlaceholderField)(0), // 0: google.ads.googleads.v17.enums.LocationPlaceholderFieldEnum.LocationPlaceholderField
+ (*LocationPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.LocationPlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_location_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_location_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -222,13 +222,13 @@ var file_google_ads_googleads_v16_enums_location_placeholder_field_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_location_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_location_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_location_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_location_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_location_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_location_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_location_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_location_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocationPlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -245,19 +245,19 @@ func file_google_ads_googleads_v16_enums_location_placeholder_field_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_location_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_location_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_location_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_location_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_location_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_location_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_location_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_location_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_location_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_location_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_location_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_location_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_location_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_location_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_location_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_location_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_location_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_location_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/location_source_type.pb.go b/enums/location_source_type.pb.go
index 4dc1f5d9..b42e00fb 100644
--- a/enums/location_source_type.pb.go
+++ b/enums/location_source_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/location_source_type.proto
+// source: google/ads/googleads/v17/enums/location_source_type.proto
package enums
@@ -75,11 +75,11 @@ func (x LocationSourceTypeEnum_LocationSourceType) String() string {
}
func (LocationSourceTypeEnum_LocationSourceType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_location_source_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_location_source_type_proto_enumTypes[0].Descriptor()
}
func (LocationSourceTypeEnum_LocationSourceType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_location_source_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_location_source_type_proto_enumTypes[0]
}
func (x LocationSourceTypeEnum_LocationSourceType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x LocationSourceTypeEnum_LocationSourceType) Number() protoreflect.EnumNum
// Deprecated: Use LocationSourceTypeEnum_LocationSourceType.Descriptor instead.
func (LocationSourceTypeEnum_LocationSourceType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_location_source_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_location_source_type_proto_rawDescGZIP(), []int{0, 0}
}
// Used to distinguish the location source type.
@@ -101,7 +101,7 @@ type LocationSourceTypeEnum struct {
func (x *LocationSourceTypeEnum) Reset() {
*x = LocationSourceTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_location_source_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_location_source_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *LocationSourceTypeEnum) String() string {
func (*LocationSourceTypeEnum) ProtoMessage() {}
func (x *LocationSourceTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_location_source_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_location_source_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *LocationSourceTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocationSourceTypeEnum.ProtoReflect.Descriptor instead.
func (*LocationSourceTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_location_source_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_location_source_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_location_source_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_location_source_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_location_source_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_location_source_type_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x73, 0x0a, 0x16, 0x4c,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x73, 0x0a, 0x16, 0x4c,
0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70,
0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x59, 0x0a, 0x12, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55,
@@ -148,41 +148,41 @@ var file_google_ads_googleads_v16_enums_location_source_type_proto_rawDesc = []b
0x02, 0x12, 0x0d, 0x0a, 0x09, 0x41, 0x46, 0x46, 0x49, 0x4c, 0x49, 0x41, 0x54, 0x45, 0x10, 0x03,
0x42, 0xf1, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_location_source_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_location_source_type_proto_rawDescData = file_google_ads_googleads_v16_enums_location_source_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_location_source_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_location_source_type_proto_rawDescData = file_google_ads_googleads_v17_enums_location_source_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_location_source_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_location_source_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_location_source_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_location_source_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_location_source_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_location_source_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_location_source_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_location_source_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_location_source_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_location_source_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_location_source_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_location_source_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_location_source_type_proto_goTypes = []interface{}{
- (LocationSourceTypeEnum_LocationSourceType)(0), // 0: google.ads.googleads.v16.enums.LocationSourceTypeEnum.LocationSourceType
- (*LocationSourceTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.LocationSourceTypeEnum
+var file_google_ads_googleads_v17_enums_location_source_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_location_source_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_location_source_type_proto_goTypes = []interface{}{
+ (LocationSourceTypeEnum_LocationSourceType)(0), // 0: google.ads.googleads.v17.enums.LocationSourceTypeEnum.LocationSourceType
+ (*LocationSourceTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.LocationSourceTypeEnum
}
-var file_google_ads_googleads_v16_enums_location_source_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_location_source_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_enums_location_source_type_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_location_source_type_proto_init() }
-func file_google_ads_googleads_v16_enums_location_source_type_proto_init() {
- if File_google_ads_googleads_v16_enums_location_source_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_location_source_type_proto_init() }
+func file_google_ads_googleads_v17_enums_location_source_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_location_source_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_location_source_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_location_source_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocationSourceTypeEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_enums_location_source_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_location_source_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_location_source_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_location_source_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_location_source_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_location_source_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_location_source_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_location_source_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_location_source_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_location_source_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_location_source_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_location_source_type_proto = out.File
- file_google_ads_googleads_v16_enums_location_source_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_location_source_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_location_source_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_location_source_type_proto = out.File
+ file_google_ads_googleads_v17_enums_location_source_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_location_source_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_location_source_type_proto_depIdxs = nil
}
diff --git a/enums/location_string_filter_type.pb.go b/enums/location_string_filter_type.pb.go
index a17c3286..ba55b374 100644
--- a/enums/location_string_filter_type.pb.go
+++ b/enums/location_string_filter_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/location_string_filter_type.proto
+// source: google/ads/googleads/v17/enums/location_string_filter_type.proto
package enums
@@ -71,11 +71,11 @@ func (x LocationStringFilterTypeEnum_LocationStringFilterType) String() string {
}
func (LocationStringFilterTypeEnum_LocationStringFilterType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_location_string_filter_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_location_string_filter_type_proto_enumTypes[0].Descriptor()
}
func (LocationStringFilterTypeEnum_LocationStringFilterType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_location_string_filter_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_location_string_filter_type_proto_enumTypes[0]
}
func (x LocationStringFilterTypeEnum_LocationStringFilterType) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x LocationStringFilterTypeEnum_LocationStringFilterType) Number() protoref
// Deprecated: Use LocationStringFilterTypeEnum_LocationStringFilterType.Descriptor instead.
func (LocationStringFilterTypeEnum_LocationStringFilterType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_location_string_filter_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_location_string_filter_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible types of a location string filter.
@@ -97,7 +97,7 @@ type LocationStringFilterTypeEnum struct {
func (x *LocationStringFilterTypeEnum) Reset() {
*x = LocationStringFilterTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_location_string_filter_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_location_string_filter_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *LocationStringFilterTypeEnum) String() string {
func (*LocationStringFilterTypeEnum) ProtoMessage() {}
func (x *LocationStringFilterTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_location_string_filter_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_location_string_filter_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,18 +123,18 @@ func (x *LocationStringFilterTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LocationStringFilterTypeEnum.ProtoReflect.Descriptor instead.
func (*LocationStringFilterTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_location_string_filter_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_location_string_filter_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_location_string_filter_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_location_string_filter_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_location_string_filter_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_location_string_filter_type_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x63, 0x0a, 0x1c, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,
0x72, 0x69, 0x6e, 0x67, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0x43, 0x0a, 0x18, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74,
@@ -143,42 +143,42 @@ var file_google_ads_googleads_v16_enums_location_string_filter_type_proto_rawDes
0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05,
0x45, 0x58, 0x41, 0x43, 0x54, 0x10, 0x02, 0x42, 0xf7, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d,
0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x46, 0x69,
0x6c, 0x74, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_location_string_filter_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_location_string_filter_type_proto_rawDescData = file_google_ads_googleads_v16_enums_location_string_filter_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_location_string_filter_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_location_string_filter_type_proto_rawDescData = file_google_ads_googleads_v17_enums_location_string_filter_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_location_string_filter_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_location_string_filter_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_location_string_filter_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_location_string_filter_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_location_string_filter_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_location_string_filter_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_location_string_filter_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_location_string_filter_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_location_string_filter_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_location_string_filter_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_location_string_filter_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_location_string_filter_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_location_string_filter_type_proto_goTypes = []interface{}{
- (LocationStringFilterTypeEnum_LocationStringFilterType)(0), // 0: google.ads.googleads.v16.enums.LocationStringFilterTypeEnum.LocationStringFilterType
- (*LocationStringFilterTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.LocationStringFilterTypeEnum
+var file_google_ads_googleads_v17_enums_location_string_filter_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_location_string_filter_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_location_string_filter_type_proto_goTypes = []interface{}{
+ (LocationStringFilterTypeEnum_LocationStringFilterType)(0), // 0: google.ads.googleads.v17.enums.LocationStringFilterTypeEnum.LocationStringFilterType
+ (*LocationStringFilterTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.LocationStringFilterTypeEnum
}
-var file_google_ads_googleads_v16_enums_location_string_filter_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_location_string_filter_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -186,13 +186,13 @@ var file_google_ads_googleads_v16_enums_location_string_filter_type_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_location_string_filter_type_proto_init() }
-func file_google_ads_googleads_v16_enums_location_string_filter_type_proto_init() {
- if File_google_ads_googleads_v16_enums_location_string_filter_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_location_string_filter_type_proto_init() }
+func file_google_ads_googleads_v17_enums_location_string_filter_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_location_string_filter_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_location_string_filter_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_location_string_filter_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LocationStringFilterTypeEnum); i {
case 0:
return &v.state
@@ -209,19 +209,19 @@ func file_google_ads_googleads_v16_enums_location_string_filter_type_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_location_string_filter_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_location_string_filter_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_location_string_filter_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_location_string_filter_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_location_string_filter_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_location_string_filter_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_location_string_filter_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_location_string_filter_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_location_string_filter_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_location_string_filter_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_location_string_filter_type_proto = out.File
- file_google_ads_googleads_v16_enums_location_string_filter_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_location_string_filter_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_location_string_filter_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_location_string_filter_type_proto = out.File
+ file_google_ads_googleads_v17_enums_location_string_filter_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_location_string_filter_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_location_string_filter_type_proto_depIdxs = nil
}
diff --git a/enums/lookalike_expansion_level.pb.go b/enums/lookalike_expansion_level.pb.go
index dd0444c9..a069e376 100644
--- a/enums/lookalike_expansion_level.pb.go
+++ b/enums/lookalike_expansion_level.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/lookalike_expansion_level.proto
+// source: google/ads/googleads/v17/enums/lookalike_expansion_level.proto
package enums
@@ -81,11 +81,11 @@ func (x LookalikeExpansionLevelEnum_LookalikeExpansionLevel) String() string {
}
func (LookalikeExpansionLevelEnum_LookalikeExpansionLevel) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_enumTypes[0].Descriptor()
}
func (LookalikeExpansionLevelEnum_LookalikeExpansionLevel) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_enumTypes[0]
}
func (x LookalikeExpansionLevelEnum_LookalikeExpansionLevel) Number() protoreflect.EnumNumber {
@@ -94,7 +94,7 @@ func (x LookalikeExpansionLevelEnum_LookalikeExpansionLevel) Number() protorefle
// Deprecated: Use LookalikeExpansionLevelEnum_LookalikeExpansionLevel.Descriptor instead.
func (LookalikeExpansionLevelEnum_LookalikeExpansionLevel) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_rawDescGZIP(), []int{0, 0}
}
// Lookalike Expansion level proto
@@ -107,7 +107,7 @@ type LookalikeExpansionLevelEnum struct {
func (x *LookalikeExpansionLevelEnum) Reset() {
*x = LookalikeExpansionLevelEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -120,7 +120,7 @@ func (x *LookalikeExpansionLevelEnum) String() string {
func (*LookalikeExpansionLevelEnum) ProtoMessage() {}
func (x *LookalikeExpansionLevelEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -133,18 +133,18 @@ func (x *LookalikeExpansionLevelEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LookalikeExpansionLevelEnum.ProtoReflect.Descriptor instead.
func (*LookalikeExpansionLevelEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_lookalike_expansion_level_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_lookalike_expansion_level_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x61, 0x6c, 0x69, 0x6b, 0x65, 0x5f, 0x65, 0x78, 0x70, 0x61, 0x6e,
0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0x7b, 0x0a, 0x1b, 0x4c, 0x6f, 0x6f, 0x6b, 0x61, 0x6c, 0x69, 0x6b, 0x65, 0x45, 0x78, 0x70,
0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x5c, 0x0a, 0x17, 0x4c, 0x6f, 0x6f, 0x6b, 0x61, 0x6c, 0x69, 0x6b, 0x65, 0x45, 0x78, 0x70, 0x61,
@@ -154,42 +154,42 @@ var file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_rawDesc
0x4f, 0x57, 0x10, 0x02, 0x12, 0x0c, 0x0a, 0x08, 0x42, 0x41, 0x4c, 0x41, 0x4e, 0x43, 0x45, 0x44,
0x10, 0x03, 0x12, 0x09, 0x0a, 0x05, 0x42, 0x52, 0x4f, 0x41, 0x44, 0x10, 0x04, 0x42, 0xf6, 0x01,
0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x4c, 0x6f, 0x6f, 0x6b, 0x61, 0x6c, 0x69, 0x6b, 0x65, 0x45,
0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_rawDescData = file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_rawDesc
+ file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_rawDescData = file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_goTypes = []interface{}{
- (LookalikeExpansionLevelEnum_LookalikeExpansionLevel)(0), // 0: google.ads.googleads.v16.enums.LookalikeExpansionLevelEnum.LookalikeExpansionLevel
- (*LookalikeExpansionLevelEnum)(nil), // 1: google.ads.googleads.v16.enums.LookalikeExpansionLevelEnum
+var file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_goTypes = []interface{}{
+ (LookalikeExpansionLevelEnum_LookalikeExpansionLevel)(0), // 0: google.ads.googleads.v17.enums.LookalikeExpansionLevelEnum.LookalikeExpansionLevel
+ (*LookalikeExpansionLevelEnum)(nil), // 1: google.ads.googleads.v17.enums.LookalikeExpansionLevelEnum
}
-var file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_init() }
-func file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_init() {
- if File_google_ads_googleads_v16_enums_lookalike_expansion_level_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_init() }
+func file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_init() {
+ if File_google_ads_googleads_v17_enums_lookalike_expansion_level_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LookalikeExpansionLevelEnum); i {
case 0:
return &v.state
@@ -220,19 +220,19 @@ func file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_lookalike_expansion_level_proto = out.File
- file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_lookalike_expansion_level_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_lookalike_expansion_level_proto = out.File
+ file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_lookalike_expansion_level_proto_depIdxs = nil
}
diff --git a/enums/manager_link_status.pb.go b/enums/manager_link_status.pb.go
index 8e98a88c..33246576 100644
--- a/enums/manager_link_status.pb.go
+++ b/enums/manager_link_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/manager_link_status.proto
+// source: google/ads/googleads/v17/enums/manager_link_status.proto
package enums
@@ -89,11 +89,11 @@ func (x ManagerLinkStatusEnum_ManagerLinkStatus) String() string {
}
func (ManagerLinkStatusEnum_ManagerLinkStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_manager_link_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_manager_link_status_proto_enumTypes[0].Descriptor()
}
func (ManagerLinkStatusEnum_ManagerLinkStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_manager_link_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_manager_link_status_proto_enumTypes[0]
}
func (x ManagerLinkStatusEnum_ManagerLinkStatus) Number() protoreflect.EnumNumber {
@@ -102,7 +102,7 @@ func (x ManagerLinkStatusEnum_ManagerLinkStatus) Number() protoreflect.EnumNumbe
// Deprecated: Use ManagerLinkStatusEnum_ManagerLinkStatus.Descriptor instead.
func (ManagerLinkStatusEnum_ManagerLinkStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_manager_link_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_manager_link_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible status of a manager and client link.
@@ -115,7 +115,7 @@ type ManagerLinkStatusEnum struct {
func (x *ManagerLinkStatusEnum) Reset() {
*x = ManagerLinkStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_manager_link_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_manager_link_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -128,7 +128,7 @@ func (x *ManagerLinkStatusEnum) String() string {
func (*ManagerLinkStatusEnum) ProtoMessage() {}
func (x *ManagerLinkStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_manager_link_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_manager_link_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -141,18 +141,18 @@ func (x *ManagerLinkStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ManagerLinkStatusEnum.ProtoReflect.Descriptor instead.
func (*ManagerLinkStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_manager_link_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_manager_link_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_manager_link_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_manager_link_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_manager_link_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_manager_link_status_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x73, 0x74,
0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8c, 0x01, 0x0a, 0x15, 0x4d,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8c, 0x01, 0x0a, 0x15, 0x4d,
0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x73, 0x0a, 0x11, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c,
0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53,
@@ -163,42 +163,42 @@ var file_google_ads_googleads_v16_enums_manager_link_status_proto_rawDesc = []by
0x0a, 0x07, 0x52, 0x45, 0x46, 0x55, 0x53, 0x45, 0x44, 0x10, 0x05, 0x12, 0x0c, 0x0a, 0x08, 0x43,
0x41, 0x4e, 0x43, 0x45, 0x4c, 0x45, 0x44, 0x10, 0x06, 0x42, 0xf0, 0x01, 0x0a, 0x22, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x42, 0x16, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_manager_link_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_manager_link_status_proto_rawDescData = file_google_ads_googleads_v16_enums_manager_link_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_manager_link_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_manager_link_status_proto_rawDescData = file_google_ads_googleads_v17_enums_manager_link_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_manager_link_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_manager_link_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_manager_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_manager_link_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_manager_link_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_manager_link_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_manager_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_manager_link_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_manager_link_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_manager_link_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_manager_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_manager_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_manager_link_status_proto_goTypes = []interface{}{
- (ManagerLinkStatusEnum_ManagerLinkStatus)(0), // 0: google.ads.googleads.v16.enums.ManagerLinkStatusEnum.ManagerLinkStatus
- (*ManagerLinkStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.ManagerLinkStatusEnum
+var file_google_ads_googleads_v17_enums_manager_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_manager_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_manager_link_status_proto_goTypes = []interface{}{
+ (ManagerLinkStatusEnum_ManagerLinkStatus)(0), // 0: google.ads.googleads.v17.enums.ManagerLinkStatusEnum.ManagerLinkStatus
+ (*ManagerLinkStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.ManagerLinkStatusEnum
}
-var file_google_ads_googleads_v16_enums_manager_link_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_manager_link_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -206,13 +206,13 @@ var file_google_ads_googleads_v16_enums_manager_link_status_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_manager_link_status_proto_init() }
-func file_google_ads_googleads_v16_enums_manager_link_status_proto_init() {
- if File_google_ads_googleads_v16_enums_manager_link_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_manager_link_status_proto_init() }
+func file_google_ads_googleads_v17_enums_manager_link_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_manager_link_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_manager_link_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_manager_link_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ManagerLinkStatusEnum); i {
case 0:
return &v.state
@@ -229,19 +229,19 @@ func file_google_ads_googleads_v16_enums_manager_link_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_manager_link_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_manager_link_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_manager_link_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_manager_link_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_manager_link_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_manager_link_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_manager_link_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_manager_link_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_manager_link_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_manager_link_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_manager_link_status_proto = out.File
- file_google_ads_googleads_v16_enums_manager_link_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_manager_link_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_manager_link_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_manager_link_status_proto = out.File
+ file_google_ads_googleads_v17_enums_manager_link_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_manager_link_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_manager_link_status_proto_depIdxs = nil
}
diff --git a/enums/matching_function_context_type.pb.go b/enums/matching_function_context_type.pb.go
index ab95f3e9..b80791bf 100644
--- a/enums/matching_function_context_type.pb.go
+++ b/enums/matching_function_context_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/matching_function_context_type.proto
+// source: google/ads/googleads/v17/enums/matching_function_context_type.proto
package enums
@@ -79,11 +79,11 @@ func (x MatchingFunctionContextTypeEnum_MatchingFunctionContextType) String() st
}
func (MatchingFunctionContextTypeEnum_MatchingFunctionContextType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_matching_function_context_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_matching_function_context_type_proto_enumTypes[0].Descriptor()
}
func (MatchingFunctionContextTypeEnum_MatchingFunctionContextType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_matching_function_context_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_matching_function_context_type_proto_enumTypes[0]
}
func (x MatchingFunctionContextTypeEnum_MatchingFunctionContextType) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x MatchingFunctionContextTypeEnum_MatchingFunctionContextType) Number() pr
// Deprecated: Use MatchingFunctionContextTypeEnum_MatchingFunctionContextType.Descriptor instead.
func (MatchingFunctionContextTypeEnum_MatchingFunctionContextType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_matching_function_context_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_matching_function_context_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for context types for an operand in a matching function.
@@ -105,7 +105,7 @@ type MatchingFunctionContextTypeEnum struct {
func (x *MatchingFunctionContextTypeEnum) Reset() {
*x = MatchingFunctionContextTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_matching_function_context_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_matching_function_context_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *MatchingFunctionContextTypeEnum) String() string {
func (*MatchingFunctionContextTypeEnum) ProtoMessage() {}
func (x *MatchingFunctionContextTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_matching_function_context_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_matching_function_context_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *MatchingFunctionContextTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use MatchingFunctionContextTypeEnum.ProtoReflect.Descriptor instead.
func (*MatchingFunctionContextTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_matching_function_context_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_matching_function_context_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_matching_function_context_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_matching_function_context_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_matching_function_context_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_matching_function_context_type_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x5f, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x97, 0x01, 0x0a, 0x1f, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69,
0x6e, 0x67, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78,
0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x74, 0x0a, 0x1b, 0x4d, 0x61, 0x74,
@@ -154,43 +154,43 @@ var file_google_ads_googleads_v16_enums_matching_function_context_type_proto_raw
0x43, 0x45, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x03, 0x12, 0x14, 0x0a, 0x10, 0x46, 0x45, 0x45,
0x44, 0x5f, 0x49, 0x54, 0x45, 0x4d, 0x5f, 0x53, 0x45, 0x54, 0x5f, 0x49, 0x44, 0x10, 0x04, 0x42,
0xfa, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67,
0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x54,
0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_matching_function_context_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_matching_function_context_type_proto_rawDescData = file_google_ads_googleads_v16_enums_matching_function_context_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_matching_function_context_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_matching_function_context_type_proto_rawDescData = file_google_ads_googleads_v17_enums_matching_function_context_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_matching_function_context_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_matching_function_context_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_matching_function_context_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_matching_function_context_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_matching_function_context_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_matching_function_context_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_matching_function_context_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_matching_function_context_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_matching_function_context_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_matching_function_context_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_matching_function_context_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_matching_function_context_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_matching_function_context_type_proto_goTypes = []interface{}{
- (MatchingFunctionContextTypeEnum_MatchingFunctionContextType)(0), // 0: google.ads.googleads.v16.enums.MatchingFunctionContextTypeEnum.MatchingFunctionContextType
- (*MatchingFunctionContextTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.MatchingFunctionContextTypeEnum
+var file_google_ads_googleads_v17_enums_matching_function_context_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_matching_function_context_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_matching_function_context_type_proto_goTypes = []interface{}{
+ (MatchingFunctionContextTypeEnum_MatchingFunctionContextType)(0), // 0: google.ads.googleads.v17.enums.MatchingFunctionContextTypeEnum.MatchingFunctionContextType
+ (*MatchingFunctionContextTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.MatchingFunctionContextTypeEnum
}
-var file_google_ads_googleads_v16_enums_matching_function_context_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_matching_function_context_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -198,13 +198,13 @@ var file_google_ads_googleads_v16_enums_matching_function_context_type_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_matching_function_context_type_proto_init() }
-func file_google_ads_googleads_v16_enums_matching_function_context_type_proto_init() {
- if File_google_ads_googleads_v16_enums_matching_function_context_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_matching_function_context_type_proto_init() }
+func file_google_ads_googleads_v17_enums_matching_function_context_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_matching_function_context_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_matching_function_context_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_matching_function_context_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MatchingFunctionContextTypeEnum); i {
case 0:
return &v.state
@@ -221,19 +221,19 @@ func file_google_ads_googleads_v16_enums_matching_function_context_type_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_matching_function_context_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_matching_function_context_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_matching_function_context_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_matching_function_context_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_matching_function_context_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_matching_function_context_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_matching_function_context_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_matching_function_context_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_matching_function_context_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_matching_function_context_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_matching_function_context_type_proto = out.File
- file_google_ads_googleads_v16_enums_matching_function_context_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_matching_function_context_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_matching_function_context_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_matching_function_context_type_proto = out.File
+ file_google_ads_googleads_v17_enums_matching_function_context_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_matching_function_context_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_matching_function_context_type_proto_depIdxs = nil
}
diff --git a/enums/matching_function_operator.pb.go b/enums/matching_function_operator.pb.go
index affbf8a5..5f0bfd8c 100644
--- a/enums/matching_function_operator.pb.go
+++ b/enums/matching_function_operator.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/matching_function_operator.proto
+// source: google/ads/googleads/v17/enums/matching_function_operator.proto
package enums
@@ -93,11 +93,11 @@ func (x MatchingFunctionOperatorEnum_MatchingFunctionOperator) String() string {
}
func (MatchingFunctionOperatorEnum_MatchingFunctionOperator) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_matching_function_operator_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_matching_function_operator_proto_enumTypes[0].Descriptor()
}
func (MatchingFunctionOperatorEnum_MatchingFunctionOperator) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_matching_function_operator_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_matching_function_operator_proto_enumTypes[0]
}
func (x MatchingFunctionOperatorEnum_MatchingFunctionOperator) Number() protoreflect.EnumNumber {
@@ -106,7 +106,7 @@ func (x MatchingFunctionOperatorEnum_MatchingFunctionOperator) Number() protoref
// Deprecated: Use MatchingFunctionOperatorEnum_MatchingFunctionOperator.Descriptor instead.
func (MatchingFunctionOperatorEnum_MatchingFunctionOperator) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_matching_function_operator_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_matching_function_operator_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing matching function operator.
@@ -119,7 +119,7 @@ type MatchingFunctionOperatorEnum struct {
func (x *MatchingFunctionOperatorEnum) Reset() {
*x = MatchingFunctionOperatorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_matching_function_operator_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_matching_function_operator_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -132,7 +132,7 @@ func (x *MatchingFunctionOperatorEnum) String() string {
func (*MatchingFunctionOperatorEnum) ProtoMessage() {}
func (x *MatchingFunctionOperatorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_matching_function_operator_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_matching_function_operator_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -145,18 +145,18 @@ func (x *MatchingFunctionOperatorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use MatchingFunctionOperatorEnum.ProtoReflect.Descriptor instead.
func (*MatchingFunctionOperatorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_matching_function_operator_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_matching_function_operator_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_matching_function_operator_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_matching_function_operator_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_matching_function_operator_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_matching_function_operator_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x5f, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x22, 0x95, 0x01, 0x0a, 0x1c, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x46, 0x75,
0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0x75, 0x0a, 0x18, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x46, 0x75,
@@ -168,42 +168,42 @@ var file_google_ads_googleads_v16_enums_matching_function_operator_proto_rawDesc
0x0a, 0x03, 0x41, 0x4e, 0x44, 0x10, 0x05, 0x12, 0x10, 0x0a, 0x0c, 0x43, 0x4f, 0x4e, 0x54, 0x41,
0x49, 0x4e, 0x53, 0x5f, 0x41, 0x4e, 0x59, 0x10, 0x06, 0x42, 0xf7, 0x01, 0x0a, 0x22, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x42, 0x1d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69,
0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_matching_function_operator_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_matching_function_operator_proto_rawDescData = file_google_ads_googleads_v16_enums_matching_function_operator_proto_rawDesc
+ file_google_ads_googleads_v17_enums_matching_function_operator_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_matching_function_operator_proto_rawDescData = file_google_ads_googleads_v17_enums_matching_function_operator_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_matching_function_operator_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_matching_function_operator_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_matching_function_operator_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_matching_function_operator_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_matching_function_operator_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_matching_function_operator_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_matching_function_operator_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_matching_function_operator_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_matching_function_operator_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_matching_function_operator_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_matching_function_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_matching_function_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_matching_function_operator_proto_goTypes = []interface{}{
- (MatchingFunctionOperatorEnum_MatchingFunctionOperator)(0), // 0: google.ads.googleads.v16.enums.MatchingFunctionOperatorEnum.MatchingFunctionOperator
- (*MatchingFunctionOperatorEnum)(nil), // 1: google.ads.googleads.v16.enums.MatchingFunctionOperatorEnum
+var file_google_ads_googleads_v17_enums_matching_function_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_matching_function_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_matching_function_operator_proto_goTypes = []interface{}{
+ (MatchingFunctionOperatorEnum_MatchingFunctionOperator)(0), // 0: google.ads.googleads.v17.enums.MatchingFunctionOperatorEnum.MatchingFunctionOperator
+ (*MatchingFunctionOperatorEnum)(nil), // 1: google.ads.googleads.v17.enums.MatchingFunctionOperatorEnum
}
-var file_google_ads_googleads_v16_enums_matching_function_operator_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_matching_function_operator_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -211,13 +211,13 @@ var file_google_ads_googleads_v16_enums_matching_function_operator_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_matching_function_operator_proto_init() }
-func file_google_ads_googleads_v16_enums_matching_function_operator_proto_init() {
- if File_google_ads_googleads_v16_enums_matching_function_operator_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_matching_function_operator_proto_init() }
+func file_google_ads_googleads_v17_enums_matching_function_operator_proto_init() {
+ if File_google_ads_googleads_v17_enums_matching_function_operator_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_matching_function_operator_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_matching_function_operator_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MatchingFunctionOperatorEnum); i {
case 0:
return &v.state
@@ -234,19 +234,19 @@ func file_google_ads_googleads_v16_enums_matching_function_operator_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_matching_function_operator_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_matching_function_operator_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_matching_function_operator_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_matching_function_operator_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_matching_function_operator_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_matching_function_operator_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_matching_function_operator_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_matching_function_operator_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_matching_function_operator_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_matching_function_operator_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_matching_function_operator_proto = out.File
- file_google_ads_googleads_v16_enums_matching_function_operator_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_matching_function_operator_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_matching_function_operator_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_matching_function_operator_proto = out.File
+ file_google_ads_googleads_v17_enums_matching_function_operator_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_matching_function_operator_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_matching_function_operator_proto_depIdxs = nil
}
diff --git a/enums/media_type.pb.go b/enums/media_type.pb.go
index 9ca36d0b..f82a21b4 100644
--- a/enums/media_type.pb.go
+++ b/enums/media_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/media_type.proto
+// source: google/ads/googleads/v17/enums/media_type.proto
package enums
@@ -93,11 +93,11 @@ func (x MediaTypeEnum_MediaType) String() string {
}
func (MediaTypeEnum_MediaType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_media_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_media_type_proto_enumTypes[0].Descriptor()
}
func (MediaTypeEnum_MediaType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_media_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_media_type_proto_enumTypes[0]
}
func (x MediaTypeEnum_MediaType) Number() protoreflect.EnumNumber {
@@ -106,7 +106,7 @@ func (x MediaTypeEnum_MediaType) Number() protoreflect.EnumNumber {
// Deprecated: Use MediaTypeEnum_MediaType.Descriptor instead.
func (MediaTypeEnum_MediaType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_media_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_media_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the types of media.
@@ -119,7 +119,7 @@ type MediaTypeEnum struct {
func (x *MediaTypeEnum) Reset() {
*x = MediaTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_media_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_media_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -132,7 +132,7 @@ func (x *MediaTypeEnum) String() string {
func (*MediaTypeEnum) ProtoMessage() {}
func (x *MediaTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_media_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_media_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -145,17 +145,17 @@ func (x *MediaTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use MediaTypeEnum.ProtoReflect.Descriptor instead.
func (*MediaTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_media_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_media_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_media_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_media_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_media_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_media_type_proto_rawDesc = []byte{
0x0a, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x22, 0x8a, 0x01, 0x0a, 0x0d, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x54, 0x79, 0x70, 0x65, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0x79, 0x0a, 0x09, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x54, 0x79, 0x70, 0x65,
0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
@@ -166,42 +166,42 @@ var file_google_ads_googleads_v16_enums_media_type_proto_rawDesc = []byte{
0x12, 0x09, 0x0a, 0x05, 0x56, 0x49, 0x44, 0x45, 0x4f, 0x10, 0x06, 0x12, 0x11, 0x0a, 0x0d, 0x44,
0x59, 0x4e, 0x41, 0x4d, 0x49, 0x43, 0x5f, 0x49, 0x4d, 0x41, 0x47, 0x45, 0x10, 0x07, 0x42, 0xe8,
0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x54, 0x79, 0x70, 0x65,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_enums_media_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_media_type_proto_rawDescData = file_google_ads_googleads_v16_enums_media_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_media_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_media_type_proto_rawDescData = file_google_ads_googleads_v17_enums_media_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_media_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_media_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_media_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_media_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_media_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_media_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_media_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_media_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_media_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_media_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_media_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_media_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_media_type_proto_goTypes = []interface{}{
- (MediaTypeEnum_MediaType)(0), // 0: google.ads.googleads.v16.enums.MediaTypeEnum.MediaType
- (*MediaTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.MediaTypeEnum
+var file_google_ads_googleads_v17_enums_media_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_media_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_media_type_proto_goTypes = []interface{}{
+ (MediaTypeEnum_MediaType)(0), // 0: google.ads.googleads.v17.enums.MediaTypeEnum.MediaType
+ (*MediaTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.MediaTypeEnum
}
-var file_google_ads_googleads_v16_enums_media_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_media_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -209,13 +209,13 @@ var file_google_ads_googleads_v16_enums_media_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_media_type_proto_init() }
-func file_google_ads_googleads_v16_enums_media_type_proto_init() {
- if File_google_ads_googleads_v16_enums_media_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_media_type_proto_init() }
+func file_google_ads_googleads_v17_enums_media_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_media_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_media_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_media_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MediaTypeEnum); i {
case 0:
return &v.state
@@ -232,19 +232,19 @@ func file_google_ads_googleads_v16_enums_media_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_media_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_media_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_media_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_media_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_media_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_media_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_media_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_media_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_media_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_media_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_media_type_proto = out.File
- file_google_ads_googleads_v16_enums_media_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_media_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_media_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_media_type_proto = out.File
+ file_google_ads_googleads_v17_enums_media_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_media_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_media_type_proto_depIdxs = nil
}
diff --git a/enums/message_placeholder_field.pb.go b/enums/message_placeholder_field.pb.go
index 18fd612e..6cd4d7fe 100644
--- a/enums/message_placeholder_field.pb.go
+++ b/enums/message_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/message_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/message_placeholder_field.proto
package enums
@@ -89,11 +89,11 @@ func (x MessagePlaceholderFieldEnum_MessagePlaceholderField) String() string {
}
func (MessagePlaceholderFieldEnum_MessagePlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_message_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_message_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (MessagePlaceholderFieldEnum_MessagePlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_message_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_message_placeholder_field_proto_enumTypes[0]
}
func (x MessagePlaceholderFieldEnum_MessagePlaceholderField) Number() protoreflect.EnumNumber {
@@ -102,7 +102,7 @@ func (x MessagePlaceholderFieldEnum_MessagePlaceholderField) Number() protorefle
// Deprecated: Use MessagePlaceholderFieldEnum_MessagePlaceholderField.Descriptor instead.
func (MessagePlaceholderFieldEnum_MessagePlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_message_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_message_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Message placeholder fields.
@@ -115,7 +115,7 @@ type MessagePlaceholderFieldEnum struct {
func (x *MessagePlaceholderFieldEnum) Reset() {
*x = MessagePlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_message_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_message_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -128,7 +128,7 @@ func (x *MessagePlaceholderFieldEnum) String() string {
func (*MessagePlaceholderFieldEnum) ProtoMessage() {}
func (x *MessagePlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_message_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_message_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -141,18 +141,18 @@ func (x *MessagePlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use MessagePlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*MessagePlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_message_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_message_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_message_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_message_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_message_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_message_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f,
0x6c, 0x64, 0x65, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0xbc, 0x01, 0x0a, 0x1b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x50, 0x6c, 0x61, 0x63,
0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x9c, 0x01, 0x0a, 0x17, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x50, 0x6c, 0x61, 0x63,
@@ -166,42 +166,42 @@ var file_google_ads_googleads_v16_enums_message_placeholder_field_proto_rawDesc
0x45, 0x4e, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x10, 0x05, 0x12, 0x10, 0x0a,
0x0c, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x10, 0x06, 0x42,
0xf6, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x50,
0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_message_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_message_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_message_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_message_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_message_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_message_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_message_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_message_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_message_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_message_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_message_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_message_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_message_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_message_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_message_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_message_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_message_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_message_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_message_placeholder_field_proto_goTypes = []interface{}{
- (MessagePlaceholderFieldEnum_MessagePlaceholderField)(0), // 0: google.ads.googleads.v16.enums.MessagePlaceholderFieldEnum.MessagePlaceholderField
- (*MessagePlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.MessagePlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_message_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_message_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_message_placeholder_field_proto_goTypes = []interface{}{
+ (MessagePlaceholderFieldEnum_MessagePlaceholderField)(0), // 0: google.ads.googleads.v17.enums.MessagePlaceholderFieldEnum.MessagePlaceholderField
+ (*MessagePlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.MessagePlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_message_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_message_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -209,13 +209,13 @@ var file_google_ads_googleads_v16_enums_message_placeholder_field_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_message_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_message_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_message_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_message_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_message_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_message_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_message_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_message_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MessagePlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -232,19 +232,19 @@ func file_google_ads_googleads_v16_enums_message_placeholder_field_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_message_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_message_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_message_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_message_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_message_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_message_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_message_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_message_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_message_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_message_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_message_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_message_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_message_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_message_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_message_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_message_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_message_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_message_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/mime_type.pb.go b/enums/mime_type.pb.go
index 781769a4..dfa52be2 100644
--- a/enums/mime_type.pb.go
+++ b/enums/mime_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/mime_type.proto
+// source: google/ads/googleads/v17/enums/mime_type.proto
package enums
@@ -117,11 +117,11 @@ func (x MimeTypeEnum_MimeType) String() string {
}
func (MimeTypeEnum_MimeType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_mime_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_mime_type_proto_enumTypes[0].Descriptor()
}
func (MimeTypeEnum_MimeType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_mime_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_mime_type_proto_enumTypes[0]
}
func (x MimeTypeEnum_MimeType) Number() protoreflect.EnumNumber {
@@ -130,7 +130,7 @@ func (x MimeTypeEnum_MimeType) Number() protoreflect.EnumNumber {
// Deprecated: Use MimeTypeEnum_MimeType.Descriptor instead.
func (MimeTypeEnum_MimeType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_mime_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_mime_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the mime types.
@@ -143,7 +143,7 @@ type MimeTypeEnum struct {
func (x *MimeTypeEnum) Reset() {
*x = MimeTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_mime_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_mime_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -156,7 +156,7 @@ func (x *MimeTypeEnum) String() string {
func (*MimeTypeEnum) ProtoMessage() {}
func (x *MimeTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_mime_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_mime_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -169,17 +169,17 @@ func (x *MimeTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use MimeTypeEnum.ProtoReflect.Descriptor instead.
func (*MimeTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_mime_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_mime_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_mime_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_mime_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_mime_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_mime_type_proto_rawDesc = []byte{
0x0a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6d, 0x69, 0x6d, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0xdc, 0x01, 0x0a, 0x0c, 0x4d, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0xcb, 0x01, 0x0a, 0x08, 0x4d, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f,
0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12,
@@ -195,42 +195,42 @@ var file_google_ads_googleads_v16_enums_mime_type_proto_rawDesc = []byte{
0x0a, 0x09, 0x41, 0x55, 0x44, 0x49, 0x4f, 0x5f, 0x4d, 0x50, 0x33, 0x10, 0x0c, 0x12, 0x10, 0x0a,
0x0c, 0x48, 0x54, 0x4d, 0x4c, 0x35, 0x5f, 0x41, 0x44, 0x5f, 0x5a, 0x49, 0x50, 0x10, 0x0d, 0x42,
0xe7, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0d, 0x4d, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_enums_mime_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_mime_type_proto_rawDescData = file_google_ads_googleads_v16_enums_mime_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_mime_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_mime_type_proto_rawDescData = file_google_ads_googleads_v17_enums_mime_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_mime_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_mime_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_mime_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_mime_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_mime_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_mime_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_mime_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_mime_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_mime_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_mime_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_mime_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_mime_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_mime_type_proto_goTypes = []interface{}{
- (MimeTypeEnum_MimeType)(0), // 0: google.ads.googleads.v16.enums.MimeTypeEnum.MimeType
- (*MimeTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.MimeTypeEnum
+var file_google_ads_googleads_v17_enums_mime_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_mime_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_mime_type_proto_goTypes = []interface{}{
+ (MimeTypeEnum_MimeType)(0), // 0: google.ads.googleads.v17.enums.MimeTypeEnum.MimeType
+ (*MimeTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.MimeTypeEnum
}
-var file_google_ads_googleads_v16_enums_mime_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_mime_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -238,13 +238,13 @@ var file_google_ads_googleads_v16_enums_mime_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_mime_type_proto_init() }
-func file_google_ads_googleads_v16_enums_mime_type_proto_init() {
- if File_google_ads_googleads_v16_enums_mime_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_mime_type_proto_init() }
+func file_google_ads_googleads_v17_enums_mime_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_mime_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_mime_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_mime_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MimeTypeEnum); i {
case 0:
return &v.state
@@ -261,19 +261,19 @@ func file_google_ads_googleads_v16_enums_mime_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_mime_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_mime_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_mime_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_mime_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_mime_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_mime_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_mime_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_mime_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_mime_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_mime_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_mime_type_proto = out.File
- file_google_ads_googleads_v16_enums_mime_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_mime_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_mime_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_mime_type_proto = out.File
+ file_google_ads_googleads_v17_enums_mime_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_mime_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_mime_type_proto_depIdxs = nil
}
diff --git a/enums/minute_of_hour.pb.go b/enums/minute_of_hour.pb.go
index a97b0522..1109fe26 100644
--- a/enums/minute_of_hour.pb.go
+++ b/enums/minute_of_hour.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/minute_of_hour.proto
+// source: google/ads/googleads/v17/enums/minute_of_hour.proto
package enums
@@ -83,11 +83,11 @@ func (x MinuteOfHourEnum_MinuteOfHour) String() string {
}
func (MinuteOfHourEnum_MinuteOfHour) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_minute_of_hour_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_minute_of_hour_proto_enumTypes[0].Descriptor()
}
func (MinuteOfHourEnum_MinuteOfHour) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_minute_of_hour_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_minute_of_hour_proto_enumTypes[0]
}
func (x MinuteOfHourEnum_MinuteOfHour) Number() protoreflect.EnumNumber {
@@ -96,7 +96,7 @@ func (x MinuteOfHourEnum_MinuteOfHour) Number() protoreflect.EnumNumber {
// Deprecated: Use MinuteOfHourEnum_MinuteOfHour.Descriptor instead.
func (MinuteOfHourEnum_MinuteOfHour) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_minute_of_hour_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_minute_of_hour_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enumeration of quarter-hours.
@@ -109,7 +109,7 @@ type MinuteOfHourEnum struct {
func (x *MinuteOfHourEnum) Reset() {
*x = MinuteOfHourEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_minute_of_hour_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_minute_of_hour_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -122,7 +122,7 @@ func (x *MinuteOfHourEnum) String() string {
func (*MinuteOfHourEnum) ProtoMessage() {}
func (x *MinuteOfHourEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_minute_of_hour_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_minute_of_hour_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -135,17 +135,17 @@ func (x *MinuteOfHourEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use MinuteOfHourEnum.ProtoReflect.Descriptor instead.
func (*MinuteOfHourEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_minute_of_hour_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_minute_of_hour_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_minute_of_hour_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_minute_of_hour_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_minute_of_hour_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_minute_of_hour_proto_rawDesc = []byte{
0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x5f, 0x6f, 0x66, 0x5f, 0x68, 0x6f, 0x75, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x73, 0x0a, 0x10, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x4f,
0x66, 0x48, 0x6f, 0x75, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5f, 0x0a, 0x0c, 0x4d, 0x69, 0x6e,
0x75, 0x74, 0x65, 0x4f, 0x66, 0x48, 0x6f, 0x75, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53,
@@ -155,41 +155,41 @@ var file_google_ads_googleads_v16_enums_minute_of_hour_proto_rawDesc = []byte{
0x0a, 0x06, 0x54, 0x48, 0x49, 0x52, 0x54, 0x59, 0x10, 0x04, 0x12, 0x0e, 0x0a, 0x0a, 0x46, 0x4f,
0x52, 0x54, 0x59, 0x5f, 0x46, 0x49, 0x56, 0x45, 0x10, 0x05, 0x42, 0xeb, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x11, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x4f, 0x66, 0x48, 0x6f, 0x75, 0x72, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_minute_of_hour_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_minute_of_hour_proto_rawDescData = file_google_ads_googleads_v16_enums_minute_of_hour_proto_rawDesc
+ file_google_ads_googleads_v17_enums_minute_of_hour_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_minute_of_hour_proto_rawDescData = file_google_ads_googleads_v17_enums_minute_of_hour_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_minute_of_hour_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_minute_of_hour_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_minute_of_hour_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_minute_of_hour_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_minute_of_hour_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_minute_of_hour_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_minute_of_hour_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_minute_of_hour_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_minute_of_hour_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_minute_of_hour_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_minute_of_hour_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_minute_of_hour_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_minute_of_hour_proto_goTypes = []interface{}{
- (MinuteOfHourEnum_MinuteOfHour)(0), // 0: google.ads.googleads.v16.enums.MinuteOfHourEnum.MinuteOfHour
- (*MinuteOfHourEnum)(nil), // 1: google.ads.googleads.v16.enums.MinuteOfHourEnum
+var file_google_ads_googleads_v17_enums_minute_of_hour_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_minute_of_hour_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_minute_of_hour_proto_goTypes = []interface{}{
+ (MinuteOfHourEnum_MinuteOfHour)(0), // 0: google.ads.googleads.v17.enums.MinuteOfHourEnum.MinuteOfHour
+ (*MinuteOfHourEnum)(nil), // 1: google.ads.googleads.v17.enums.MinuteOfHourEnum
}
-var file_google_ads_googleads_v16_enums_minute_of_hour_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_minute_of_hour_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_enums_minute_of_hour_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_minute_of_hour_proto_init() }
-func file_google_ads_googleads_v16_enums_minute_of_hour_proto_init() {
- if File_google_ads_googleads_v16_enums_minute_of_hour_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_minute_of_hour_proto_init() }
+func file_google_ads_googleads_v17_enums_minute_of_hour_proto_init() {
+ if File_google_ads_googleads_v17_enums_minute_of_hour_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_minute_of_hour_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_minute_of_hour_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MinuteOfHourEnum); i {
case 0:
return &v.state
@@ -220,19 +220,19 @@ func file_google_ads_googleads_v16_enums_minute_of_hour_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_minute_of_hour_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_minute_of_hour_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_minute_of_hour_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_minute_of_hour_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_minute_of_hour_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_minute_of_hour_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_minute_of_hour_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_minute_of_hour_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_minute_of_hour_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_minute_of_hour_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_minute_of_hour_proto = out.File
- file_google_ads_googleads_v16_enums_minute_of_hour_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_minute_of_hour_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_minute_of_hour_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_minute_of_hour_proto = out.File
+ file_google_ads_googleads_v17_enums_minute_of_hour_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_minute_of_hour_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_minute_of_hour_proto_depIdxs = nil
}
diff --git a/enums/mobile_app_vendor.pb.go b/enums/mobile_app_vendor.pb.go
index a7836208..d1f8d8c1 100644
--- a/enums/mobile_app_vendor.pb.go
+++ b/enums/mobile_app_vendor.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/mobile_app_vendor.proto
+// source: google/ads/googleads/v17/enums/mobile_app_vendor.proto
package enums
@@ -75,11 +75,11 @@ func (x MobileAppVendorEnum_MobileAppVendor) String() string {
}
func (MobileAppVendorEnum_MobileAppVendor) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_enumTypes[0].Descriptor()
}
func (MobileAppVendorEnum_MobileAppVendor) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_enumTypes[0]
}
func (x MobileAppVendorEnum_MobileAppVendor) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x MobileAppVendorEnum_MobileAppVendor) Number() protoreflect.EnumNumber {
// Deprecated: Use MobileAppVendorEnum_MobileAppVendor.Descriptor instead.
func (MobileAppVendorEnum_MobileAppVendor) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing different types of mobile app vendors.
@@ -101,7 +101,7 @@ type MobileAppVendorEnum struct {
func (x *MobileAppVendorEnum) Reset() {
*x = MobileAppVendorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *MobileAppVendorEnum) String() string {
func (*MobileAppVendorEnum) ProtoMessage() {}
func (x *MobileAppVendorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *MobileAppVendorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use MobileAppVendorEnum.ProtoReflect.Descriptor instead.
func (*MobileAppVendorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_mobile_app_vendor_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_mobile_app_vendor_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x76, 0x65, 0x6e, 0x64,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x71, 0x0a, 0x13, 0x4d, 0x6f, 0x62, 0x69,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x71, 0x0a, 0x13, 0x4d, 0x6f, 0x62, 0x69,
0x6c, 0x65, 0x41, 0x70, 0x70, 0x56, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x5a, 0x0a, 0x0f, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x56, 0x65, 0x6e, 0x64,
0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45,
@@ -147,42 +147,42 @@ var file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_rawDesc = []byte
0x4f, 0x52, 0x45, 0x10, 0x02, 0x12, 0x14, 0x0a, 0x10, 0x47, 0x4f, 0x4f, 0x47, 0x4c, 0x45, 0x5f,
0x41, 0x50, 0x50, 0x5f, 0x53, 0x54, 0x4f, 0x52, 0x45, 0x10, 0x03, 0x42, 0xee, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x14, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x56, 0x65, 0x6e,
0x64, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_rawDescData = file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_rawDesc
+ file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_rawDescData = file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_goTypes = []interface{}{
- (MobileAppVendorEnum_MobileAppVendor)(0), // 0: google.ads.googleads.v16.enums.MobileAppVendorEnum.MobileAppVendor
- (*MobileAppVendorEnum)(nil), // 1: google.ads.googleads.v16.enums.MobileAppVendorEnum
+var file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_goTypes = []interface{}{
+ (MobileAppVendorEnum_MobileAppVendor)(0), // 0: google.ads.googleads.v17.enums.MobileAppVendorEnum.MobileAppVendor
+ (*MobileAppVendorEnum)(nil), // 1: google.ads.googleads.v17.enums.MobileAppVendorEnum
}
-var file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_init() }
-func file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_init() {
- if File_google_ads_googleads_v16_enums_mobile_app_vendor_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_init() }
+func file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_init() {
+ if File_google_ads_googleads_v17_enums_mobile_app_vendor_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MobileAppVendorEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_mobile_app_vendor_proto = out.File
- file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_mobile_app_vendor_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_mobile_app_vendor_proto = out.File
+ file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_mobile_app_vendor_proto_depIdxs = nil
}
diff --git a/enums/mobile_device_type.pb.go b/enums/mobile_device_type.pb.go
index 4557031a..2b4899a5 100644
--- a/enums/mobile_device_type.pb.go
+++ b/enums/mobile_device_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/mobile_device_type.proto
+// source: google/ads/googleads/v17/enums/mobile_device_type.proto
package enums
@@ -75,11 +75,11 @@ func (x MobileDeviceTypeEnum_MobileDeviceType) String() string {
}
func (MobileDeviceTypeEnum_MobileDeviceType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_mobile_device_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_mobile_device_type_proto_enumTypes[0].Descriptor()
}
func (MobileDeviceTypeEnum_MobileDeviceType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_mobile_device_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_mobile_device_type_proto_enumTypes[0]
}
func (x MobileDeviceTypeEnum_MobileDeviceType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x MobileDeviceTypeEnum_MobileDeviceType) Number() protoreflect.EnumNumber
// Deprecated: Use MobileDeviceTypeEnum_MobileDeviceType.Descriptor instead.
func (MobileDeviceTypeEnum_MobileDeviceType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_mobile_device_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_mobile_device_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the types of mobile device.
@@ -101,7 +101,7 @@ type MobileDeviceTypeEnum struct {
func (x *MobileDeviceTypeEnum) Reset() {
*x = MobileDeviceTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_mobile_device_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_mobile_device_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *MobileDeviceTypeEnum) String() string {
func (*MobileDeviceTypeEnum) ProtoMessage() {}
func (x *MobileDeviceTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_mobile_device_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_mobile_device_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *MobileDeviceTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use MobileDeviceTypeEnum.ProtoReflect.Descriptor instead.
func (*MobileDeviceTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_mobile_device_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_mobile_device_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_mobile_device_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_mobile_device_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_mobile_device_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_mobile_device_type_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x74,
0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x60, 0x0a, 0x14, 0x4d, 0x6f, 0x62,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x60, 0x0a, 0x14, 0x4d, 0x6f, 0x62,
0x69, 0x6c, 0x65, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x48, 0x0a, 0x10, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x76, 0x69, 0x63,
0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49,
@@ -146,42 +146,42 @@ var file_google_ads_googleads_v16_enums_mobile_device_type_proto_rawDesc = []byt
0x4e, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x4d, 0x4f, 0x42, 0x49, 0x4c, 0x45, 0x10, 0x02, 0x12,
0x0a, 0x0a, 0x06, 0x54, 0x41, 0x42, 0x4c, 0x45, 0x54, 0x10, 0x03, 0x42, 0xef, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x15, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65,
0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_mobile_device_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_mobile_device_type_proto_rawDescData = file_google_ads_googleads_v16_enums_mobile_device_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_mobile_device_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_mobile_device_type_proto_rawDescData = file_google_ads_googleads_v17_enums_mobile_device_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_mobile_device_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_mobile_device_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_mobile_device_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_mobile_device_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_mobile_device_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_mobile_device_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_mobile_device_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_mobile_device_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_mobile_device_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_mobile_device_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_mobile_device_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_mobile_device_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_mobile_device_type_proto_goTypes = []interface{}{
- (MobileDeviceTypeEnum_MobileDeviceType)(0), // 0: google.ads.googleads.v16.enums.MobileDeviceTypeEnum.MobileDeviceType
- (*MobileDeviceTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.MobileDeviceTypeEnum
+var file_google_ads_googleads_v17_enums_mobile_device_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_mobile_device_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_mobile_device_type_proto_goTypes = []interface{}{
+ (MobileDeviceTypeEnum_MobileDeviceType)(0), // 0: google.ads.googleads.v17.enums.MobileDeviceTypeEnum.MobileDeviceType
+ (*MobileDeviceTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.MobileDeviceTypeEnum
}
-var file_google_ads_googleads_v16_enums_mobile_device_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_mobile_device_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -189,13 +189,13 @@ var file_google_ads_googleads_v16_enums_mobile_device_type_proto_depIdxs = []int
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_mobile_device_type_proto_init() }
-func file_google_ads_googleads_v16_enums_mobile_device_type_proto_init() {
- if File_google_ads_googleads_v16_enums_mobile_device_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_mobile_device_type_proto_init() }
+func file_google_ads_googleads_v17_enums_mobile_device_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_mobile_device_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_mobile_device_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_mobile_device_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MobileDeviceTypeEnum); i {
case 0:
return &v.state
@@ -212,19 +212,19 @@ func file_google_ads_googleads_v16_enums_mobile_device_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_mobile_device_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_mobile_device_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_mobile_device_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_mobile_device_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_mobile_device_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_mobile_device_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_mobile_device_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_mobile_device_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_mobile_device_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_mobile_device_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_mobile_device_type_proto = out.File
- file_google_ads_googleads_v16_enums_mobile_device_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_mobile_device_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_mobile_device_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_mobile_device_type_proto = out.File
+ file_google_ads_googleads_v17_enums_mobile_device_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_mobile_device_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_mobile_device_type_proto_depIdxs = nil
}
diff --git a/enums/month_of_year.pb.go b/enums/month_of_year.pb.go
index 2fa1d1e0..f923cc73 100644
--- a/enums/month_of_year.pb.go
+++ b/enums/month_of_year.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/month_of_year.proto
+// source: google/ads/googleads/v17/enums/month_of_year.proto
package enums
@@ -115,11 +115,11 @@ func (x MonthOfYearEnum_MonthOfYear) String() string {
}
func (MonthOfYearEnum_MonthOfYear) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_month_of_year_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_month_of_year_proto_enumTypes[0].Descriptor()
}
func (MonthOfYearEnum_MonthOfYear) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_month_of_year_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_month_of_year_proto_enumTypes[0]
}
func (x MonthOfYearEnum_MonthOfYear) Number() protoreflect.EnumNumber {
@@ -128,7 +128,7 @@ func (x MonthOfYearEnum_MonthOfYear) Number() protoreflect.EnumNumber {
// Deprecated: Use MonthOfYearEnum_MonthOfYear.Descriptor instead.
func (MonthOfYearEnum_MonthOfYear) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_month_of_year_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_month_of_year_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enumeration of months of the year, for example, "January".
@@ -141,7 +141,7 @@ type MonthOfYearEnum struct {
func (x *MonthOfYearEnum) Reset() {
*x = MonthOfYearEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_month_of_year_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_month_of_year_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -154,7 +154,7 @@ func (x *MonthOfYearEnum) String() string {
func (*MonthOfYearEnum) ProtoMessage() {}
func (x *MonthOfYearEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_month_of_year_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_month_of_year_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -167,17 +167,17 @@ func (x *MonthOfYearEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use MonthOfYearEnum.ProtoReflect.Descriptor instead.
func (*MonthOfYearEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_month_of_year_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_month_of_year_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_month_of_year_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_month_of_year_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_month_of_year_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_month_of_year_proto_rawDesc = []byte{
0x0a, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x5f, 0x6f, 0x66, 0x5f, 0x79, 0x65, 0x61, 0x72, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x22, 0xd1, 0x01, 0x0a, 0x0f, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x4f, 0x66,
0x59, 0x65, 0x61, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xbd, 0x01, 0x0a, 0x0b, 0x4d, 0x6f, 0x6e,
0x74, 0x68, 0x4f, 0x66, 0x59, 0x65, 0x61, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50,
@@ -193,41 +193,41 @@ var file_google_ads_googleads_v16_enums_month_of_year_proto_rawDesc = []byte{
0x4e, 0x4f, 0x56, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x10, 0x0c, 0x12, 0x0c, 0x0a, 0x08, 0x44, 0x45,
0x43, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x10, 0x0d, 0x42, 0xea, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
0x10, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x4f, 0x66, 0x59, 0x65, 0x61, 0x72, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_month_of_year_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_month_of_year_proto_rawDescData = file_google_ads_googleads_v16_enums_month_of_year_proto_rawDesc
+ file_google_ads_googleads_v17_enums_month_of_year_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_month_of_year_proto_rawDescData = file_google_ads_googleads_v17_enums_month_of_year_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_month_of_year_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_month_of_year_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_month_of_year_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_month_of_year_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_month_of_year_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_month_of_year_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_month_of_year_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_month_of_year_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_month_of_year_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_month_of_year_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_month_of_year_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_month_of_year_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_month_of_year_proto_goTypes = []interface{}{
- (MonthOfYearEnum_MonthOfYear)(0), // 0: google.ads.googleads.v16.enums.MonthOfYearEnum.MonthOfYear
- (*MonthOfYearEnum)(nil), // 1: google.ads.googleads.v16.enums.MonthOfYearEnum
+var file_google_ads_googleads_v17_enums_month_of_year_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_month_of_year_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_month_of_year_proto_goTypes = []interface{}{
+ (MonthOfYearEnum_MonthOfYear)(0), // 0: google.ads.googleads.v17.enums.MonthOfYearEnum.MonthOfYear
+ (*MonthOfYearEnum)(nil), // 1: google.ads.googleads.v17.enums.MonthOfYearEnum
}
-var file_google_ads_googleads_v16_enums_month_of_year_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_month_of_year_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -235,13 +235,13 @@ var file_google_ads_googleads_v16_enums_month_of_year_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_month_of_year_proto_init() }
-func file_google_ads_googleads_v16_enums_month_of_year_proto_init() {
- if File_google_ads_googleads_v16_enums_month_of_year_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_month_of_year_proto_init() }
+func file_google_ads_googleads_v17_enums_month_of_year_proto_init() {
+ if File_google_ads_googleads_v17_enums_month_of_year_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_month_of_year_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_month_of_year_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MonthOfYearEnum); i {
case 0:
return &v.state
@@ -258,19 +258,19 @@ func file_google_ads_googleads_v16_enums_month_of_year_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_month_of_year_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_month_of_year_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_month_of_year_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_month_of_year_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_month_of_year_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_month_of_year_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_month_of_year_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_month_of_year_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_month_of_year_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_month_of_year_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_month_of_year_proto = out.File
- file_google_ads_googleads_v16_enums_month_of_year_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_month_of_year_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_month_of_year_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_month_of_year_proto = out.File
+ file_google_ads_googleads_v17_enums_month_of_year_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_month_of_year_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_month_of_year_proto_depIdxs = nil
}
diff --git a/enums/negative_geo_target_type.pb.go b/enums/negative_geo_target_type.pb.go
index 2c60a2e8..90132d51 100644
--- a/enums/negative_geo_target_type.pb.go
+++ b/enums/negative_geo_target_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/negative_geo_target_type.proto
+// source: google/ads/googleads/v17/enums/negative_geo_target_type.proto
package enums
@@ -77,11 +77,11 @@ func (x NegativeGeoTargetTypeEnum_NegativeGeoTargetType) String() string {
}
func (NegativeGeoTargetTypeEnum_NegativeGeoTargetType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_enumTypes[0].Descriptor()
}
func (NegativeGeoTargetTypeEnum_NegativeGeoTargetType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_enumTypes[0]
}
func (x NegativeGeoTargetTypeEnum_NegativeGeoTargetType) Number() protoreflect.EnumNumber {
@@ -90,7 +90,7 @@ func (x NegativeGeoTargetTypeEnum_NegativeGeoTargetType) Number() protoreflect.E
// Deprecated: Use NegativeGeoTargetTypeEnum_NegativeGeoTargetType.Descriptor instead.
func (NegativeGeoTargetTypeEnum_NegativeGeoTargetType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible negative geo target types.
@@ -103,7 +103,7 @@ type NegativeGeoTargetTypeEnum struct {
func (x *NegativeGeoTargetTypeEnum) Reset() {
*x = NegativeGeoTargetTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -116,7 +116,7 @@ func (x *NegativeGeoTargetTypeEnum) String() string {
func (*NegativeGeoTargetTypeEnum) ProtoMessage() {}
func (x *NegativeGeoTargetTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -129,18 +129,18 @@ func (x *NegativeGeoTargetTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use NegativeGeoTargetTypeEnum.ProtoReflect.Descriptor instead.
func (*NegativeGeoTargetTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_negative_geo_target_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_negative_geo_target_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61,
0x72, 0x67, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
0x7a, 0x0a, 0x19, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x47, 0x65, 0x6f, 0x54, 0x61,
0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5d, 0x0a, 0x15,
0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65,
@@ -150,42 +150,42 @@ var file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_rawDesc =
0x4f, 0x52, 0x5f, 0x49, 0x4e, 0x54, 0x45, 0x52, 0x45, 0x53, 0x54, 0x10, 0x04, 0x12, 0x0c, 0x0a,
0x08, 0x50, 0x52, 0x45, 0x53, 0x45, 0x4e, 0x43, 0x45, 0x10, 0x05, 0x42, 0xf4, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x1a, 0x4e, 0x65, 0x67, 0x61, 0x74, 0x69, 0x76, 0x65, 0x47, 0x65, 0x6f, 0x54,
0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_rawDescData = file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_rawDescData = file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_goTypes = []interface{}{
- (NegativeGeoTargetTypeEnum_NegativeGeoTargetType)(0), // 0: google.ads.googleads.v16.enums.NegativeGeoTargetTypeEnum.NegativeGeoTargetType
- (*NegativeGeoTargetTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.NegativeGeoTargetTypeEnum
+var file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_goTypes = []interface{}{
+ (NegativeGeoTargetTypeEnum_NegativeGeoTargetType)(0), // 0: google.ads.googleads.v17.enums.NegativeGeoTargetTypeEnum.NegativeGeoTargetType
+ (*NegativeGeoTargetTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.NegativeGeoTargetTypeEnum
}
-var file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -193,13 +193,13 @@ var file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_init() }
-func file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_init() {
- if File_google_ads_googleads_v16_enums_negative_geo_target_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_init() }
+func file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_negative_geo_target_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*NegativeGeoTargetTypeEnum); i {
case 0:
return &v.state
@@ -216,19 +216,19 @@ func file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_negative_geo_target_type_proto = out.File
- file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_negative_geo_target_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_negative_geo_target_type_proto = out.File
+ file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_negative_geo_target_type_proto_depIdxs = nil
}
diff --git a/enums/offline_conversion_diagnostic_status_enum.pb.go b/enums/offline_conversion_diagnostic_status_enum.pb.go
index 1a74e070..6171c23b 100644
--- a/enums/offline_conversion_diagnostic_status_enum.pb.go
+++ b/enums/offline_conversion_diagnostic_status_enum.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/offline_conversion_diagnostic_status_enum.proto
+// source: google/ads/googleads/v17/enums/offline_conversion_diagnostic_status_enum.proto
package enums
@@ -87,11 +87,11 @@ func (x OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus)
}
func (OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_enumTypes[0].Descriptor()
}
func (OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_enumTypes[0]
}
func (x OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus)
// Deprecated: Use OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus.Descriptor instead.
func (OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_rawDescGZIP(), []int{0, 0}
}
// All possible statuses for oci diagnostics.
@@ -113,7 +113,7 @@ type OfflineConversionDiagnosticStatusEnum struct {
func (x *OfflineConversionDiagnosticStatusEnum) Reset() {
*x = OfflineConversionDiagnosticStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +126,7 @@ func (x *OfflineConversionDiagnosticStatusEnum) String() string {
func (*OfflineConversionDiagnosticStatusEnum) ProtoMessage() {}
func (x *OfflineConversionDiagnosticStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,19 +139,19 @@ func (x *OfflineConversionDiagnosticStatusEnum) ProtoReflect() protoreflect.Mess
// Deprecated: Use OfflineConversionDiagnosticStatusEnum.ProtoReflect.Descriptor instead.
func (*OfflineConversionDiagnosticStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_rawDesc = []byte{
0x0a, 0x4e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x69, 0x61, 0x67, 0x6e, 0x6f, 0x73, 0x74, 0x69, 0x63, 0x5f, 0x73,
0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0xaf, 0x01, 0x0a, 0x25, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x43, 0x6f, 0x6e, 0x76,
0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x69, 0x61, 0x67, 0x6e, 0x6f, 0x73, 0x74, 0x69, 0x63,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x85, 0x01, 0x0a, 0x21, 0x4f,
@@ -165,43 +165,43 @@ var file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enu
0x4e, 0x4f, 0x5f, 0x52, 0x45, 0x43, 0x45, 0x4e, 0x54, 0x5f, 0x55, 0x50, 0x4c, 0x4f, 0x41, 0x44,
0x10, 0x06, 0x42, 0x84, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2a, 0x4f, 0x66, 0x66, 0x6c, 0x69,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2a, 0x4f, 0x66, 0x66, 0x6c, 0x69,
0x6e, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x44, 0x69, 0x61, 0x67,
0x6e, 0x6f, 0x73, 0x74, 0x69, 0x63, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_rawDescData = file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_rawDesc
+ file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_rawDescData = file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_goTypes = []interface{}{
- (OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus)(0), // 0: google.ads.googleads.v16.enums.OfflineConversionDiagnosticStatusEnum.OfflineConversionDiagnosticStatus
- (*OfflineConversionDiagnosticStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.OfflineConversionDiagnosticStatusEnum
+var file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_goTypes = []interface{}{
+ (OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus)(0), // 0: google.ads.googleads.v17.enums.OfflineConversionDiagnosticStatusEnum.OfflineConversionDiagnosticStatus
+ (*OfflineConversionDiagnosticStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.OfflineConversionDiagnosticStatusEnum
}
-var file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -210,14 +210,14 @@ var file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enu
}
func init() {
- file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_init()
+ file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_init()
}
-func file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_init() {
- if File_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto != nil {
+func file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_init() {
+ if File_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*OfflineConversionDiagnosticStatusEnum); i {
case 0:
return &v.state
@@ -234,19 +234,19 @@ func file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_en
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto = out.File
- file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_offline_conversion_diagnostic_status_enum_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto = out.File
+ file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_offline_conversion_diagnostic_status_enum_proto_depIdxs = nil
}
diff --git a/enums/offline_event_upload_client_enum.pb.go b/enums/offline_event_upload_client_enum.pb.go
index 0548a559..d549423a 100644
--- a/enums/offline_event_upload_client_enum.pb.go
+++ b/enums/offline_event_upload_client_enum.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/offline_event_upload_client_enum.proto
+// source: google/ads/googleads/v17/enums/offline_event_upload_client_enum.proto
package enums
@@ -80,11 +80,11 @@ func (x OfflineEventUploadClientEnum_OfflineEventUploadClient) String() string {
}
func (OfflineEventUploadClientEnum_OfflineEventUploadClient) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_enumTypes[0].Descriptor()
}
func (OfflineEventUploadClientEnum_OfflineEventUploadClient) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_enumTypes[0]
}
func (x OfflineEventUploadClientEnum_OfflineEventUploadClient) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x OfflineEventUploadClientEnum_OfflineEventUploadClient) Number() protoref
// Deprecated: Use OfflineEventUploadClientEnum_OfflineEventUploadClient.Descriptor instead.
func (OfflineEventUploadClientEnum_OfflineEventUploadClient) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_rawDescGZIP(), []int{0, 0}
}
// All possible clients for an offline upload event.
@@ -106,7 +106,7 @@ type OfflineEventUploadClientEnum struct {
func (x *OfflineEventUploadClientEnum) Reset() {
*x = OfflineEventUploadClientEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *OfflineEventUploadClientEnum) String() string {
func (*OfflineEventUploadClientEnum) ProtoMessage() {}
func (x *OfflineEventUploadClientEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,19 +132,19 @@ func (x *OfflineEventUploadClientEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use OfflineEventUploadClientEnum.ProtoReflect.Descriptor instead.
func (*OfflineEventUploadClientEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_rawDesc = []byte{
0x0a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x75,
0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x65, 0x6e, 0x75,
0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x9f, 0x01, 0x0a, 0x1c, 0x4f, 0x66, 0x66, 0x6c,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x9f, 0x01, 0x0a, 0x1c, 0x4f, 0x66, 0x66, 0x6c,
0x69, 0x6e, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x6c,
0x69, 0x65, 0x6e, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x7f, 0x0a, 0x18, 0x4f, 0x66, 0x66, 0x6c,
0x69, 0x6e, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x6c,
@@ -156,42 +156,42 @@ var file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_r
0x03, 0x12, 0x16, 0x0a, 0x12, 0x41, 0x44, 0x53, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x5f, 0x43, 0x4f,
0x4e, 0x4e, 0x45, 0x43, 0x54, 0x4f, 0x52, 0x10, 0x04, 0x42, 0xfb, 0x01, 0x0a, 0x22, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x42, 0x21, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x55, 0x70,
0x6c, 0x6f, 0x61, 0x64, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_rawDescData = file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_rawDesc
+ file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_rawDescData = file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_goTypes = []interface{}{
- (OfflineEventUploadClientEnum_OfflineEventUploadClient)(0), // 0: google.ads.googleads.v16.enums.OfflineEventUploadClientEnum.OfflineEventUploadClient
- (*OfflineEventUploadClientEnum)(nil), // 1: google.ads.googleads.v16.enums.OfflineEventUploadClientEnum
+var file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_goTypes = []interface{}{
+ (OfflineEventUploadClientEnum_OfflineEventUploadClient)(0), // 0: google.ads.googleads.v17.enums.OfflineEventUploadClientEnum.OfflineEventUploadClient
+ (*OfflineEventUploadClientEnum)(nil), // 1: google.ads.googleads.v17.enums.OfflineEventUploadClientEnum
}
-var file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -199,13 +199,13 @@ var file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_d
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_init() }
-func file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_init() {
- if File_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_init() }
+func file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_init() {
+ if File_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*OfflineEventUploadClientEnum); i {
case 0:
return &v.state
@@ -222,19 +222,19 @@ func file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto = out.File
- file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_offline_event_upload_client_enum_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto = out.File
+ file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_offline_event_upload_client_enum_proto_depIdxs = nil
}
diff --git a/enums/offline_user_data_job_failure_reason.pb.go b/enums/offline_user_data_job_failure_reason.pb.go
index 4e7ed3a4..f97caa71 100644
--- a/enums/offline_user_data_job_failure_reason.pb.go
+++ b/enums/offline_user_data_job_failure_reason.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/offline_user_data_job_failure_reason.proto
+// source: google/ads/googleads/v17/enums/offline_user_data_job_failure_reason.proto
package enums
@@ -94,11 +94,11 @@ func (x OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason) Str
}
func (OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_enumTypes[0].Descriptor()
}
func (OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_enumTypes[0]
}
func (x OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason) Number() protoreflect.EnumNumber {
@@ -107,7 +107,7 @@ func (x OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason) Num
// Deprecated: Use OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason.Descriptor instead.
func (OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing reasons why an offline user data job
@@ -121,7 +121,7 @@ type OfflineUserDataJobFailureReasonEnum struct {
func (x *OfflineUserDataJobFailureReasonEnum) Reset() {
*x = OfflineUserDataJobFailureReasonEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -134,7 +134,7 @@ func (x *OfflineUserDataJobFailureReasonEnum) String() string {
func (*OfflineUserDataJobFailureReasonEnum) ProtoMessage() {}
func (x *OfflineUserDataJobFailureReasonEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -147,19 +147,19 @@ func (x *OfflineUserDataJobFailureReasonEnum) ProtoReflect() protoreflect.Messag
// Deprecated: Use OfflineUserDataJobFailureReasonEnum.ProtoReflect.Descriptor instead.
func (*OfflineUserDataJobFailureReasonEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_rawDesc = []byte{
0x0a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x64, 0x61,
0x74, 0x61, 0x5f, 0x6a, 0x6f, 0x62, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x5f, 0x72,
0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x96, 0x02, 0x0a, 0x23,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x96, 0x02, 0x0a, 0x23,
0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a,
0x6f, 0x62, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0xee, 0x01, 0x0a, 0x1f, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55,
@@ -179,42 +179,42 @@ var file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_pro
0x52, 0x56, 0x45, 0x44, 0x5f, 0x43, 0x55, 0x52, 0x52, 0x45, 0x4e, 0x43, 0x59, 0x5f, 0x43, 0x4f,
0x44, 0x45, 0x10, 0x06, 0x42, 0xfe, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x24, 0x4f, 0x66, 0x66,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x24, 0x4f, 0x66, 0x66,
0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x46,
0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_rawDescData = file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_rawDesc
+ file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_rawDescData = file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_goTypes = []interface{}{
- (OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason)(0), // 0: google.ads.googleads.v16.enums.OfflineUserDataJobFailureReasonEnum.OfflineUserDataJobFailureReason
- (*OfflineUserDataJobFailureReasonEnum)(nil), // 1: google.ads.googleads.v16.enums.OfflineUserDataJobFailureReasonEnum
+var file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_goTypes = []interface{}{
+ (OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason)(0), // 0: google.ads.googleads.v17.enums.OfflineUserDataJobFailureReasonEnum.OfflineUserDataJobFailureReason
+ (*OfflineUserDataJobFailureReasonEnum)(nil), // 1: google.ads.googleads.v17.enums.OfflineUserDataJobFailureReasonEnum
}
-var file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -222,13 +222,13 @@ var file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_pro
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_init() }
-func file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_init() {
- if File_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_init() }
+func file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_init() {
+ if File_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*OfflineUserDataJobFailureReasonEnum); i {
case 0:
return &v.state
@@ -245,19 +245,19 @@ func file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_pr
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto = out.File
- file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_offline_user_data_job_failure_reason_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto = out.File
+ file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_offline_user_data_job_failure_reason_proto_depIdxs = nil
}
diff --git a/enums/offline_user_data_job_match_rate_range.pb.go b/enums/offline_user_data_job_match_rate_range.pb.go
index 2a2bd086..8aa3374a 100644
--- a/enums/offline_user_data_job_match_rate_range.pb.go
+++ b/enums/offline_user_data_job_match_rate_range.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/offline_user_data_job_match_rate_range.proto
+// source: google/ads/googleads/v17/enums/offline_user_data_job_match_rate_range.proto
package enums
@@ -104,11 +104,11 @@ func (x OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange) S
}
func (OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_enumTypes[0].Descriptor()
}
func (OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_enumTypes[0]
}
func (x OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange) Number() protoreflect.EnumNumber {
@@ -117,7 +117,7 @@ func (x OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange) N
// Deprecated: Use OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange.Descriptor instead.
func (OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing reasons match rate ranges for a customer match
@@ -131,7 +131,7 @@ type OfflineUserDataJobMatchRateRangeEnum struct {
func (x *OfflineUserDataJobMatchRateRangeEnum) Reset() {
*x = OfflineUserDataJobMatchRateRangeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -144,7 +144,7 @@ func (x *OfflineUserDataJobMatchRateRangeEnum) String() string {
func (*OfflineUserDataJobMatchRateRangeEnum) ProtoMessage() {}
func (x *OfflineUserDataJobMatchRateRangeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -157,19 +157,19 @@ func (x *OfflineUserDataJobMatchRateRangeEnum) ProtoReflect() protoreflect.Messa
// Deprecated: Use OfflineUserDataJobMatchRateRangeEnum.ProtoReflect.Descriptor instead.
func (*OfflineUserDataJobMatchRateRangeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_rawDesc = []byte{
0x0a, 0x4b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x64, 0x61,
0x74, 0x61, 0x5f, 0x6a, 0x6f, 0x62, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x72, 0x61, 0x74,
0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xd8, 0x02,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xd8, 0x02,
0x0a, 0x24, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74,
0x61, 0x4a, 0x6f, 0x62, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x52, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e,
0x67, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xaf, 0x02, 0x0a, 0x20, 0x4f, 0x66, 0x66, 0x6c, 0x69,
@@ -193,43 +193,43 @@ var file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_p
0x15, 0x4d, 0x41, 0x54, 0x43, 0x48, 0x5f, 0x52, 0x41, 0x4e, 0x47, 0x45, 0x5f, 0x39, 0x31, 0x5f,
0x54, 0x4f, 0x5f, 0x31, 0x30, 0x30, 0x10, 0x0a, 0x42, 0xff, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
0x25, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61,
0x4a, 0x6f, 0x62, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x52, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x67,
0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73,
- 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45,
+ 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
- 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_rawDescData = file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_rawDesc
+ file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_rawDescData = file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_goTypes = []interface{}{
- (OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange)(0), // 0: google.ads.googleads.v16.enums.OfflineUserDataJobMatchRateRangeEnum.OfflineUserDataJobMatchRateRange
- (*OfflineUserDataJobMatchRateRangeEnum)(nil), // 1: google.ads.googleads.v16.enums.OfflineUserDataJobMatchRateRangeEnum
+var file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_goTypes = []interface{}{
+ (OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange)(0), // 0: google.ads.googleads.v17.enums.OfflineUserDataJobMatchRateRangeEnum.OfflineUserDataJobMatchRateRange
+ (*OfflineUserDataJobMatchRateRangeEnum)(nil), // 1: google.ads.googleads.v17.enums.OfflineUserDataJobMatchRateRangeEnum
}
-var file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -237,13 +237,13 @@ var file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_p
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_init() }
-func file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_init() {
- if File_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_init() }
+func file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_init() {
+ if File_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*OfflineUserDataJobMatchRateRangeEnum); i {
case 0:
return &v.state
@@ -260,19 +260,19 @@ func file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto = out.File
- file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_offline_user_data_job_match_rate_range_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto = out.File
+ file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_offline_user_data_job_match_rate_range_proto_depIdxs = nil
}
diff --git a/enums/offline_user_data_job_status.pb.go b/enums/offline_user_data_job_status.pb.go
index a50af09c..b91f3bf6 100644
--- a/enums/offline_user_data_job_status.pb.go
+++ b/enums/offline_user_data_job_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/offline_user_data_job_status.proto
+// source: google/ads/googleads/v17/enums/offline_user_data_job_status.proto
package enums
@@ -83,11 +83,11 @@ func (x OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus) String() string {
}
func (OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_enumTypes[0].Descriptor()
}
func (OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_enumTypes[0]
}
func (x OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus) Number() protoreflect.EnumNumber {
@@ -96,7 +96,7 @@ func (x OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus) Number() protoref
// Deprecated: Use OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus.Descriptor instead.
func (OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing status of an offline user data job.
@@ -109,7 +109,7 @@ type OfflineUserDataJobStatusEnum struct {
func (x *OfflineUserDataJobStatusEnum) Reset() {
*x = OfflineUserDataJobStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -122,7 +122,7 @@ func (x *OfflineUserDataJobStatusEnum) String() string {
func (*OfflineUserDataJobStatusEnum) ProtoMessage() {}
func (x *OfflineUserDataJobStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -135,18 +135,18 @@ func (x *OfflineUserDataJobStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use OfflineUserDataJobStatusEnum.ProtoReflect.Descriptor instead.
func (*OfflineUserDataJobStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_offline_user_data_job_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_offline_user_data_job_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_rawDesc = []byte{
0x0a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x64, 0x61,
0x74, 0x61, 0x5f, 0x6a, 0x6f, 0x62, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x22, 0x8b, 0x01, 0x0a, 0x1c, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55,
0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x6b, 0x0a, 0x18, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55,
@@ -158,42 +158,42 @@ var file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_rawDe
0x45, 0x53, 0x53, 0x10, 0x04, 0x12, 0x0a, 0x0a, 0x06, 0x46, 0x41, 0x49, 0x4c, 0x45, 0x44, 0x10,
0x05, 0x42, 0xf7, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e,
0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_rawDescData = file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_rawDescData = file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_goTypes = []interface{}{
- (OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus)(0), // 0: google.ads.googleads.v16.enums.OfflineUserDataJobStatusEnum.OfflineUserDataJobStatus
- (*OfflineUserDataJobStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.OfflineUserDataJobStatusEnum
+var file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_goTypes = []interface{}{
+ (OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus)(0), // 0: google.ads.googleads.v17.enums.OfflineUserDataJobStatusEnum.OfflineUserDataJobStatus
+ (*OfflineUserDataJobStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.OfflineUserDataJobStatusEnum
}
-var file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -201,13 +201,13 @@ var file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_depId
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_init() }
-func file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_init() {
- if File_google_ads_googleads_v16_enums_offline_user_data_job_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_init() }
+func file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_offline_user_data_job_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*OfflineUserDataJobStatusEnum); i {
case 0:
return &v.state
@@ -224,19 +224,19 @@ func file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_init
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_offline_user_data_job_status_proto = out.File
- file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_offline_user_data_job_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_offline_user_data_job_status_proto = out.File
+ file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_offline_user_data_job_status_proto_depIdxs = nil
}
diff --git a/enums/offline_user_data_job_type.pb.go b/enums/offline_user_data_job_type.pb.go
index 02ff3f37..d56e7bce 100644
--- a/enums/offline_user_data_job_type.pb.go
+++ b/enums/offline_user_data_job_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/offline_user_data_job_type.proto
+// source: google/ads/googleads/v17/enums/offline_user_data_job_type.proto
package enums
@@ -83,11 +83,11 @@ func (x OfflineUserDataJobTypeEnum_OfflineUserDataJobType) String() string {
}
func (OfflineUserDataJobTypeEnum_OfflineUserDataJobType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_enumTypes[0].Descriptor()
}
func (OfflineUserDataJobTypeEnum_OfflineUserDataJobType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_enumTypes[0]
}
func (x OfflineUserDataJobTypeEnum_OfflineUserDataJobType) Number() protoreflect.EnumNumber {
@@ -96,7 +96,7 @@ func (x OfflineUserDataJobTypeEnum_OfflineUserDataJobType) Number() protoreflect
// Deprecated: Use OfflineUserDataJobTypeEnum_OfflineUserDataJobType.Descriptor instead.
func (OfflineUserDataJobTypeEnum_OfflineUserDataJobType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing types of an offline user data job.
@@ -109,7 +109,7 @@ type OfflineUserDataJobTypeEnum struct {
func (x *OfflineUserDataJobTypeEnum) Reset() {
*x = OfflineUserDataJobTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -122,7 +122,7 @@ func (x *OfflineUserDataJobTypeEnum) String() string {
func (*OfflineUserDataJobTypeEnum) ProtoMessage() {}
func (x *OfflineUserDataJobTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -135,18 +135,18 @@ func (x *OfflineUserDataJobTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use OfflineUserDataJobTypeEnum.ProtoReflect.Descriptor instead.
func (*OfflineUserDataJobTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_offline_user_data_job_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_offline_user_data_job_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x64, 0x61,
0x74, 0x61, 0x5f, 0x6a, 0x6f, 0x62, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x22, 0xdf, 0x01, 0x0a, 0x1a, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65,
0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0xc0, 0x01, 0x0a, 0x16, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72,
@@ -163,42 +163,42 @@ var file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_rawDesc
0x48, 0x5f, 0x57, 0x49, 0x54, 0x48, 0x5f, 0x41, 0x54, 0x54, 0x52, 0x49, 0x42, 0x55, 0x54, 0x45,
0x53, 0x10, 0x05, 0x42, 0xf5, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x4f, 0x66, 0x66, 0x6c,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x4f, 0x66, 0x66, 0x6c,
0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x54, 0x79,
0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_rawDescData = file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_rawDescData = file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_goTypes = []interface{}{
- (OfflineUserDataJobTypeEnum_OfflineUserDataJobType)(0), // 0: google.ads.googleads.v16.enums.OfflineUserDataJobTypeEnum.OfflineUserDataJobType
- (*OfflineUserDataJobTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.OfflineUserDataJobTypeEnum
+var file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_goTypes = []interface{}{
+ (OfflineUserDataJobTypeEnum_OfflineUserDataJobType)(0), // 0: google.ads.googleads.v17.enums.OfflineUserDataJobTypeEnum.OfflineUserDataJobType
+ (*OfflineUserDataJobTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.OfflineUserDataJobTypeEnum
}
-var file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -206,13 +206,13 @@ var file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_init() }
-func file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_init() {
- if File_google_ads_googleads_v16_enums_offline_user_data_job_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_init() }
+func file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_offline_user_data_job_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*OfflineUserDataJobTypeEnum); i {
case 0:
return &v.state
@@ -229,19 +229,19 @@ func file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_offline_user_data_job_type_proto = out.File
- file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_offline_user_data_job_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_offline_user_data_job_type_proto = out.File
+ file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_offline_user_data_job_type_proto_depIdxs = nil
}
diff --git a/enums/operating_system_version_operator_type.pb.go b/enums/operating_system_version_operator_type.pb.go
index df314615..1d16ec4a 100644
--- a/enums/operating_system_version_operator_type.pb.go
+++ b/enums/operating_system_version_operator_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/operating_system_version_operator_type.proto
+// source: google/ads/googleads/v17/enums/operating_system_version_operator_type.proto
package enums
@@ -75,11 +75,11 @@ func (x OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorTyp
}
func (OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_enumTypes[0].Descriptor()
}
func (OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_enumTypes[0]
}
func (x OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorTyp
// Deprecated: Use OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType.Descriptor instead.
func (OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the type of OS operators.
@@ -101,7 +101,7 @@ type OperatingSystemVersionOperatorTypeEnum struct {
func (x *OperatingSystemVersionOperatorTypeEnum) Reset() {
*x = OperatingSystemVersionOperatorTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *OperatingSystemVersionOperatorTypeEnum) String() string {
func (*OperatingSystemVersionOperatorTypeEnum) ProtoMessage() {}
func (x *OperatingSystemVersionOperatorTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,19 +127,19 @@ func (x *OperatingSystemVersionOperatorTypeEnum) ProtoReflect() protoreflect.Mes
// Deprecated: Use OperatingSystemVersionOperatorTypeEnum.ProtoReflect.Descriptor instead.
func (*OperatingSystemVersionOperatorTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_rawDesc = []byte{
0x0a, 0x4b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x79, 0x73, 0x74, 0x65,
0x6d, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
0x6f, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x97, 0x01,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x97, 0x01,
0x0a, 0x26, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65,
0x6d, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72,
0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x6d, 0x0a, 0x22, 0x4f, 0x70, 0x65, 0x72,
@@ -151,43 +151,43 @@ var file_google_ads_googleads_v16_enums_operating_system_version_operator_type_p
0x52, 0x45, 0x41, 0x54, 0x45, 0x52, 0x5f, 0x54, 0x48, 0x41, 0x4e, 0x5f, 0x45, 0x51, 0x55, 0x41,
0x4c, 0x53, 0x5f, 0x54, 0x4f, 0x10, 0x04, 0x42, 0x81, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x27,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x27,
0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x56,
0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x54, 0x79,
0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_rawDescData = file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_rawDescData = file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_goTypes = []interface{}{
- (OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType)(0), // 0: google.ads.googleads.v16.enums.OperatingSystemVersionOperatorTypeEnum.OperatingSystemVersionOperatorType
- (*OperatingSystemVersionOperatorTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.OperatingSystemVersionOperatorTypeEnum
+var file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_goTypes = []interface{}{
+ (OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType)(0), // 0: google.ads.googleads.v17.enums.OperatingSystemVersionOperatorTypeEnum.OperatingSystemVersionOperatorType
+ (*OperatingSystemVersionOperatorTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.OperatingSystemVersionOperatorTypeEnum
}
-var file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -195,13 +195,13 @@ var file_google_ads_googleads_v16_enums_operating_system_version_operator_type_p
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_init() }
-func file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_init() {
- if File_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_init() }
+func file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*OperatingSystemVersionOperatorTypeEnum); i {
case 0:
return &v.state
@@ -218,19 +218,19 @@ func file_google_ads_googleads_v16_enums_operating_system_version_operator_type_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto = out.File
- file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_operating_system_version_operator_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto = out.File
+ file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_operating_system_version_operator_type_proto_depIdxs = nil
}
diff --git a/enums/optimization_goal_type.pb.go b/enums/optimization_goal_type.pb.go
index d6014206..5269848d 100644
--- a/enums/optimization_goal_type.pb.go
+++ b/enums/optimization_goal_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/optimization_goal_type.proto
+// source: google/ads/googleads/v17/enums/optimization_goal_type.proto
package enums
@@ -84,11 +84,11 @@ func (x OptimizationGoalTypeEnum_OptimizationGoalType) String() string {
}
func (OptimizationGoalTypeEnum_OptimizationGoalType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_optimization_goal_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_optimization_goal_type_proto_enumTypes[0].Descriptor()
}
func (OptimizationGoalTypeEnum_OptimizationGoalType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_optimization_goal_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_optimization_goal_type_proto_enumTypes[0]
}
func (x OptimizationGoalTypeEnum_OptimizationGoalType) Number() protoreflect.EnumNumber {
@@ -97,7 +97,7 @@ func (x OptimizationGoalTypeEnum_OptimizationGoalType) Number() protoreflect.Enu
// Deprecated: Use OptimizationGoalTypeEnum_OptimizationGoalType.Descriptor instead.
func (OptimizationGoalTypeEnum_OptimizationGoalType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_optimization_goal_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_optimization_goal_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the type of optimization goal.
@@ -110,7 +110,7 @@ type OptimizationGoalTypeEnum struct {
func (x *OptimizationGoalTypeEnum) Reset() {
*x = OptimizationGoalTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_optimization_goal_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_optimization_goal_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -123,7 +123,7 @@ func (x *OptimizationGoalTypeEnum) String() string {
func (*OptimizationGoalTypeEnum) ProtoMessage() {}
func (x *OptimizationGoalTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_optimization_goal_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_optimization_goal_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -136,18 +136,18 @@ func (x *OptimizationGoalTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use OptimizationGoalTypeEnum.ProtoReflect.Descriptor instead.
func (*OptimizationGoalTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_optimization_goal_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_optimization_goal_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_optimization_goal_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_optimization_goal_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_optimization_goal_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_optimization_goal_type_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f,
0x61, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x93, 0x01,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x93, 0x01,
0x0a, 0x18, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f,
0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x77, 0x0a, 0x14, 0x4f, 0x70,
0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x54, 0x79,
@@ -159,42 +159,42 @@ var file_google_ads_googleads_v16_enums_optimization_goal_type_proto_rawDesc = [
0x5f, 0x50, 0x52, 0x45, 0x5f, 0x52, 0x45, 0x47, 0x49, 0x53, 0x54, 0x52, 0x41, 0x54, 0x49, 0x4f,
0x4e, 0x10, 0x04, 0x42, 0xf3, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x4f, 0x70, 0x74, 0x69,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x4f, 0x70, 0x74, 0x69,
0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_enums_optimization_goal_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_optimization_goal_type_proto_rawDescData = file_google_ads_googleads_v16_enums_optimization_goal_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_optimization_goal_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_optimization_goal_type_proto_rawDescData = file_google_ads_googleads_v17_enums_optimization_goal_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_optimization_goal_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_optimization_goal_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_optimization_goal_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_optimization_goal_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_optimization_goal_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_optimization_goal_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_optimization_goal_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_optimization_goal_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_optimization_goal_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_optimization_goal_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_optimization_goal_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_optimization_goal_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_optimization_goal_type_proto_goTypes = []interface{}{
- (OptimizationGoalTypeEnum_OptimizationGoalType)(0), // 0: google.ads.googleads.v16.enums.OptimizationGoalTypeEnum.OptimizationGoalType
- (*OptimizationGoalTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.OptimizationGoalTypeEnum
+var file_google_ads_googleads_v17_enums_optimization_goal_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_optimization_goal_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_optimization_goal_type_proto_goTypes = []interface{}{
+ (OptimizationGoalTypeEnum_OptimizationGoalType)(0), // 0: google.ads.googleads.v17.enums.OptimizationGoalTypeEnum.OptimizationGoalType
+ (*OptimizationGoalTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.OptimizationGoalTypeEnum
}
-var file_google_ads_googleads_v16_enums_optimization_goal_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_optimization_goal_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -202,13 +202,13 @@ var file_google_ads_googleads_v16_enums_optimization_goal_type_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_optimization_goal_type_proto_init() }
-func file_google_ads_googleads_v16_enums_optimization_goal_type_proto_init() {
- if File_google_ads_googleads_v16_enums_optimization_goal_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_optimization_goal_type_proto_init() }
+func file_google_ads_googleads_v17_enums_optimization_goal_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_optimization_goal_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_optimization_goal_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_optimization_goal_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*OptimizationGoalTypeEnum); i {
case 0:
return &v.state
@@ -225,19 +225,19 @@ func file_google_ads_googleads_v16_enums_optimization_goal_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_optimization_goal_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_optimization_goal_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_optimization_goal_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_optimization_goal_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_optimization_goal_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_optimization_goal_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_optimization_goal_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_optimization_goal_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_optimization_goal_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_optimization_goal_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_optimization_goal_type_proto = out.File
- file_google_ads_googleads_v16_enums_optimization_goal_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_optimization_goal_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_optimization_goal_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_optimization_goal_type_proto = out.File
+ file_google_ads_googleads_v17_enums_optimization_goal_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_optimization_goal_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_optimization_goal_type_proto_depIdxs = nil
}
diff --git a/enums/parental_status_type.pb.go b/enums/parental_status_type.pb.go
index e8f7c9ae..c43bd24a 100644
--- a/enums/parental_status_type.pb.go
+++ b/enums/parental_status_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/parental_status_type.proto
+// source: google/ads/googleads/v17/enums/parental_status_type.proto
package enums
@@ -79,11 +79,11 @@ func (x ParentalStatusTypeEnum_ParentalStatusType) String() string {
}
func (ParentalStatusTypeEnum_ParentalStatusType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_parental_status_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_parental_status_type_proto_enumTypes[0].Descriptor()
}
func (ParentalStatusTypeEnum_ParentalStatusType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_parental_status_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_parental_status_type_proto_enumTypes[0]
}
func (x ParentalStatusTypeEnum_ParentalStatusType) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x ParentalStatusTypeEnum_ParentalStatusType) Number() protoreflect.EnumNum
// Deprecated: Use ParentalStatusTypeEnum_ParentalStatusType.Descriptor instead.
func (ParentalStatusTypeEnum_ParentalStatusType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_parental_status_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_parental_status_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the type of demographic parental statuses.
@@ -105,7 +105,7 @@ type ParentalStatusTypeEnum struct {
func (x *ParentalStatusTypeEnum) Reset() {
*x = ParentalStatusTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_parental_status_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_parental_status_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *ParentalStatusTypeEnum) String() string {
func (*ParentalStatusTypeEnum) ProtoMessage() {}
func (x *ParentalStatusTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_parental_status_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_parental_status_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *ParentalStatusTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ParentalStatusTypeEnum.ProtoReflect.Descriptor instead.
func (*ParentalStatusTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_parental_status_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_parental_status_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_parental_status_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_parental_status_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_parental_status_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_parental_status_type_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7f, 0x0a, 0x16, 0x50,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7f, 0x0a, 0x16, 0x50,
0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x54, 0x79, 0x70,
0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x65, 0x0a, 0x12, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61,
0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55,
@@ -152,42 +152,42 @@ var file_google_ads_googleads_v16_enums_parental_status_type_proto_rawDesc = []b
0x50, 0x41, 0x52, 0x45, 0x4e, 0x54, 0x10, 0xad, 0x02, 0x12, 0x11, 0x0a, 0x0c, 0x55, 0x4e, 0x44,
0x45, 0x54, 0x45, 0x52, 0x4d, 0x49, 0x4e, 0x45, 0x44, 0x10, 0xae, 0x02, 0x42, 0xf1, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x17, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_parental_status_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_parental_status_type_proto_rawDescData = file_google_ads_googleads_v16_enums_parental_status_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_parental_status_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_parental_status_type_proto_rawDescData = file_google_ads_googleads_v17_enums_parental_status_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_parental_status_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_parental_status_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_parental_status_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_parental_status_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_parental_status_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_parental_status_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_parental_status_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_parental_status_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_parental_status_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_parental_status_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_parental_status_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_parental_status_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_parental_status_type_proto_goTypes = []interface{}{
- (ParentalStatusTypeEnum_ParentalStatusType)(0), // 0: google.ads.googleads.v16.enums.ParentalStatusTypeEnum.ParentalStatusType
- (*ParentalStatusTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ParentalStatusTypeEnum
+var file_google_ads_googleads_v17_enums_parental_status_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_parental_status_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_parental_status_type_proto_goTypes = []interface{}{
+ (ParentalStatusTypeEnum_ParentalStatusType)(0), // 0: google.ads.googleads.v17.enums.ParentalStatusTypeEnum.ParentalStatusType
+ (*ParentalStatusTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ParentalStatusTypeEnum
}
-var file_google_ads_googleads_v16_enums_parental_status_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_parental_status_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -195,13 +195,13 @@ var file_google_ads_googleads_v16_enums_parental_status_type_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_parental_status_type_proto_init() }
-func file_google_ads_googleads_v16_enums_parental_status_type_proto_init() {
- if File_google_ads_googleads_v16_enums_parental_status_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_parental_status_type_proto_init() }
+func file_google_ads_googleads_v17_enums_parental_status_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_parental_status_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_parental_status_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_parental_status_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ParentalStatusTypeEnum); i {
case 0:
return &v.state
@@ -218,19 +218,19 @@ func file_google_ads_googleads_v16_enums_parental_status_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_parental_status_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_parental_status_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_parental_status_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_parental_status_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_parental_status_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_parental_status_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_parental_status_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_parental_status_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_parental_status_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_parental_status_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_parental_status_type_proto = out.File
- file_google_ads_googleads_v16_enums_parental_status_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_parental_status_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_parental_status_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_parental_status_type_proto = out.File
+ file_google_ads_googleads_v17_enums_parental_status_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_parental_status_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_parental_status_type_proto_depIdxs = nil
}
diff --git a/enums/payment_mode.pb.go b/enums/payment_mode.pb.go
index 900fd043..315534c9 100644
--- a/enums/payment_mode.pb.go
+++ b/enums/payment_mode.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/payment_mode.proto
+// source: google/ads/googleads/v17/enums/payment_mode.proto
package enums
@@ -91,11 +91,11 @@ func (x PaymentModeEnum_PaymentMode) String() string {
}
func (PaymentModeEnum_PaymentMode) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_payment_mode_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_payment_mode_proto_enumTypes[0].Descriptor()
}
func (PaymentModeEnum_PaymentMode) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_payment_mode_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_payment_mode_proto_enumTypes[0]
}
func (x PaymentModeEnum_PaymentMode) Number() protoreflect.EnumNumber {
@@ -104,7 +104,7 @@ func (x PaymentModeEnum_PaymentMode) Number() protoreflect.EnumNumber {
// Deprecated: Use PaymentModeEnum_PaymentMode.Descriptor instead.
func (PaymentModeEnum_PaymentMode) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_payment_mode_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_payment_mode_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible payment modes.
@@ -117,7 +117,7 @@ type PaymentModeEnum struct {
func (x *PaymentModeEnum) Reset() {
*x = PaymentModeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_payment_mode_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_payment_mode_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -130,7 +130,7 @@ func (x *PaymentModeEnum) String() string {
func (*PaymentModeEnum) ProtoMessage() {}
func (x *PaymentModeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_payment_mode_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_payment_mode_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -143,17 +143,17 @@ func (x *PaymentModeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use PaymentModeEnum.ProtoReflect.Descriptor instead.
func (*PaymentModeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_payment_mode_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_payment_mode_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_payment_mode_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_payment_mode_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_payment_mode_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_payment_mode_proto_rawDesc = []byte{
0x0a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x22, 0x81, 0x01, 0x0a, 0x0f, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x4d,
0x6f, 0x64, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x6e, 0x0a, 0x0b, 0x50, 0x61, 0x79, 0x6d, 0x65,
0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
@@ -164,41 +164,41 @@ var file_google_ads_googleads_v16_enums_payment_mode_proto_rawDesc = []byte{
0x53, 0x49, 0x4f, 0x4e, 0x53, 0x10, 0x06, 0x12, 0x0e, 0x0a, 0x0a, 0x47, 0x55, 0x45, 0x53, 0x54,
0x5f, 0x53, 0x54, 0x41, 0x59, 0x10, 0x07, 0x42, 0xea, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x10,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x10,
0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_payment_mode_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_payment_mode_proto_rawDescData = file_google_ads_googleads_v16_enums_payment_mode_proto_rawDesc
+ file_google_ads_googleads_v17_enums_payment_mode_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_payment_mode_proto_rawDescData = file_google_ads_googleads_v17_enums_payment_mode_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_payment_mode_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_payment_mode_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_payment_mode_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_payment_mode_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_payment_mode_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_payment_mode_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_payment_mode_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_payment_mode_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_payment_mode_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_payment_mode_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_payment_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_payment_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_payment_mode_proto_goTypes = []interface{}{
- (PaymentModeEnum_PaymentMode)(0), // 0: google.ads.googleads.v16.enums.PaymentModeEnum.PaymentMode
- (*PaymentModeEnum)(nil), // 1: google.ads.googleads.v16.enums.PaymentModeEnum
+var file_google_ads_googleads_v17_enums_payment_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_payment_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_payment_mode_proto_goTypes = []interface{}{
+ (PaymentModeEnum_PaymentMode)(0), // 0: google.ads.googleads.v17.enums.PaymentModeEnum.PaymentMode
+ (*PaymentModeEnum)(nil), // 1: google.ads.googleads.v17.enums.PaymentModeEnum
}
-var file_google_ads_googleads_v16_enums_payment_mode_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_payment_mode_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -206,13 +206,13 @@ var file_google_ads_googleads_v16_enums_payment_mode_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_payment_mode_proto_init() }
-func file_google_ads_googleads_v16_enums_payment_mode_proto_init() {
- if File_google_ads_googleads_v16_enums_payment_mode_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_payment_mode_proto_init() }
+func file_google_ads_googleads_v17_enums_payment_mode_proto_init() {
+ if File_google_ads_googleads_v17_enums_payment_mode_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_payment_mode_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_payment_mode_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PaymentModeEnum); i {
case 0:
return &v.state
@@ -229,19 +229,19 @@ func file_google_ads_googleads_v16_enums_payment_mode_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_payment_mode_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_payment_mode_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_payment_mode_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_payment_mode_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_payment_mode_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_payment_mode_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_payment_mode_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_payment_mode_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_payment_mode_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_payment_mode_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_payment_mode_proto = out.File
- file_google_ads_googleads_v16_enums_payment_mode_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_payment_mode_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_payment_mode_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_payment_mode_proto = out.File
+ file_google_ads_googleads_v17_enums_payment_mode_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_payment_mode_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_payment_mode_proto_depIdxs = nil
}
diff --git a/enums/performance_max_upgrade_status.pb.go b/enums/performance_max_upgrade_status.pb.go
index 90eb0d65..d5138859 100644
--- a/enums/performance_max_upgrade_status.pb.go
+++ b/enums/performance_max_upgrade_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/performance_max_upgrade_status.proto
+// source: google/ads/googleads/v17/enums/performance_max_upgrade_status.proto
package enums
@@ -84,11 +84,11 @@ func (x PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus) String() st
}
func (PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_enumTypes[0].Descriptor()
}
func (PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_enumTypes[0]
}
func (x PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus) Number() protoreflect.EnumNumber {
@@ -97,7 +97,7 @@ func (x PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus) Number() pr
// Deprecated: Use PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus.Descriptor instead.
func (PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_rawDescGZIP(), []int{0, 0}
}
// Performance Max Upgrade status for campaign.
@@ -110,7 +110,7 @@ type PerformanceMaxUpgradeStatusEnum struct {
func (x *PerformanceMaxUpgradeStatusEnum) Reset() {
*x = PerformanceMaxUpgradeStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -123,7 +123,7 @@ func (x *PerformanceMaxUpgradeStatusEnum) String() string {
func (*PerformanceMaxUpgradeStatusEnum) ProtoMessage() {}
func (x *PerformanceMaxUpgradeStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -136,18 +136,18 @@ func (x *PerformanceMaxUpgradeStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use PerformanceMaxUpgradeStatusEnum.ProtoReflect.Descriptor instead.
func (*PerformanceMaxUpgradeStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x6d, 0x61, 0x78,
0x5f, 0x75, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xb8, 0x01, 0x0a, 0x1f, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72,
0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x78, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x94, 0x01, 0x0a, 0x1b, 0x50, 0x65,
@@ -162,42 +162,42 @@ var file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_raw
0x47, 0x52, 0x41, 0x44, 0x45, 0x5f, 0x45, 0x4c, 0x49, 0x47, 0x49, 0x42, 0x4c, 0x45, 0x10, 0x06,
0x42, 0xfa, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d,
0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x78, 0x55, 0x70, 0x67, 0x72, 0x61, 0x64, 0x65, 0x53, 0x74,
0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_rawDescData = file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_rawDescData = file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_goTypes = []interface{}{
- (PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus)(0), // 0: google.ads.googleads.v16.enums.PerformanceMaxUpgradeStatusEnum.PerformanceMaxUpgradeStatus
- (*PerformanceMaxUpgradeStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.PerformanceMaxUpgradeStatusEnum
+var file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_goTypes = []interface{}{
+ (PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus)(0), // 0: google.ads.googleads.v17.enums.PerformanceMaxUpgradeStatusEnum.PerformanceMaxUpgradeStatus
+ (*PerformanceMaxUpgradeStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.PerformanceMaxUpgradeStatusEnum
}
-var file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -205,13 +205,13 @@ var file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_init() }
-func file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_init() {
- if File_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_init() }
+func file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PerformanceMaxUpgradeStatusEnum); i {
case 0:
return &v.state
@@ -228,19 +228,19 @@ func file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto = out.File
- file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_performance_max_upgrade_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto = out.File
+ file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_performance_max_upgrade_status_proto_depIdxs = nil
}
diff --git a/enums/placeholder_type.pb.go b/enums/placeholder_type.pb.go
index 372984c4..b288ba4a 100644
--- a/enums/placeholder_type.pb.go
+++ b/enums/placeholder_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/placeholder_type.proto
+// source: google/ads/googleads/v17/enums/placeholder_type.proto
package enums
@@ -167,11 +167,11 @@ func (x PlaceholderTypeEnum_PlaceholderType) String() string {
}
func (PlaceholderTypeEnum_PlaceholderType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_placeholder_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_placeholder_type_proto_enumTypes[0].Descriptor()
}
func (PlaceholderTypeEnum_PlaceholderType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_placeholder_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_placeholder_type_proto_enumTypes[0]
}
func (x PlaceholderTypeEnum_PlaceholderType) Number() protoreflect.EnumNumber {
@@ -180,7 +180,7 @@ func (x PlaceholderTypeEnum_PlaceholderType) Number() protoreflect.EnumNumber {
// Deprecated: Use PlaceholderTypeEnum_PlaceholderType.Descriptor instead.
func (PlaceholderTypeEnum_PlaceholderType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_placeholder_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_placeholder_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible placeholder types for a feed mapping.
@@ -193,7 +193,7 @@ type PlaceholderTypeEnum struct {
func (x *PlaceholderTypeEnum) Reset() {
*x = PlaceholderTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_placeholder_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_placeholder_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -206,7 +206,7 @@ func (x *PlaceholderTypeEnum) String() string {
func (*PlaceholderTypeEnum) ProtoMessage() {}
func (x *PlaceholderTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_placeholder_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_placeholder_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -219,18 +219,18 @@ func (x *PlaceholderTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use PlaceholderTypeEnum.ProtoReflect.Descriptor instead.
func (*PlaceholderTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_placeholder_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_placeholder_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_placeholder_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_placeholder_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_placeholder_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_placeholder_type_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70,
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x9b, 0x03, 0x0a, 0x13, 0x50, 0x6c, 0x61, 0x63,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x9b, 0x03, 0x0a, 0x13, 0x50, 0x6c, 0x61, 0x63,
0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x83, 0x03, 0x0a, 0x0f, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x54,
0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
@@ -258,41 +258,41 @@ var file_google_ads_googleads_v16_enums_placeholder_type_proto_rawDesc = []byte{
0x41, 0x4d, 0x49, 0x43, 0x5f, 0x4a, 0x4f, 0x42, 0x10, 0x14, 0x12, 0x09, 0x0a, 0x05, 0x49, 0x4d,
0x41, 0x47, 0x45, 0x10, 0x15, 0x42, 0xee, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x14, 0x50, 0x6c,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x14, 0x50, 0x6c,
0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_placeholder_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_placeholder_type_proto_rawDescData = file_google_ads_googleads_v16_enums_placeholder_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_placeholder_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_placeholder_type_proto_rawDescData = file_google_ads_googleads_v17_enums_placeholder_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_placeholder_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_placeholder_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_placeholder_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_placeholder_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_placeholder_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_placeholder_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_placeholder_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_placeholder_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_placeholder_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_placeholder_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_placeholder_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_placeholder_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_placeholder_type_proto_goTypes = []interface{}{
- (PlaceholderTypeEnum_PlaceholderType)(0), // 0: google.ads.googleads.v16.enums.PlaceholderTypeEnum.PlaceholderType
- (*PlaceholderTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.PlaceholderTypeEnum
+var file_google_ads_googleads_v17_enums_placeholder_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_placeholder_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_placeholder_type_proto_goTypes = []interface{}{
+ (PlaceholderTypeEnum_PlaceholderType)(0), // 0: google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType
+ (*PlaceholderTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.PlaceholderTypeEnum
}
-var file_google_ads_googleads_v16_enums_placeholder_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_placeholder_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -300,13 +300,13 @@ var file_google_ads_googleads_v16_enums_placeholder_type_proto_depIdxs = []int32
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_placeholder_type_proto_init() }
-func file_google_ads_googleads_v16_enums_placeholder_type_proto_init() {
- if File_google_ads_googleads_v16_enums_placeholder_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_placeholder_type_proto_init() }
+func file_google_ads_googleads_v17_enums_placeholder_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_placeholder_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_placeholder_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_placeholder_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PlaceholderTypeEnum); i {
case 0:
return &v.state
@@ -323,19 +323,19 @@ func file_google_ads_googleads_v16_enums_placeholder_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_placeholder_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_placeholder_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_placeholder_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_placeholder_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_placeholder_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_placeholder_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_placeholder_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_placeholder_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_placeholder_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_placeholder_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_placeholder_type_proto = out.File
- file_google_ads_googleads_v16_enums_placeholder_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_placeholder_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_placeholder_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_placeholder_type_proto = out.File
+ file_google_ads_googleads_v17_enums_placeholder_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_placeholder_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_placeholder_type_proto_depIdxs = nil
}
diff --git a/enums/placement_type.pb.go b/enums/placement_type.pb.go
index 46870380..c1680098 100644
--- a/enums/placement_type.pb.go
+++ b/enums/placement_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/placement_type.proto
+// source: google/ads/googleads/v17/enums/placement_type.proto
package enums
@@ -91,11 +91,11 @@ func (x PlacementTypeEnum_PlacementType) String() string {
}
func (PlacementTypeEnum_PlacementType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_placement_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_placement_type_proto_enumTypes[0].Descriptor()
}
func (PlacementTypeEnum_PlacementType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_placement_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_placement_type_proto_enumTypes[0]
}
func (x PlacementTypeEnum_PlacementType) Number() protoreflect.EnumNumber {
@@ -104,7 +104,7 @@ func (x PlacementTypeEnum_PlacementType) Number() protoreflect.EnumNumber {
// Deprecated: Use PlacementTypeEnum_PlacementType.Descriptor instead.
func (PlacementTypeEnum_PlacementType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_placement_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_placement_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible placement types.
@@ -117,7 +117,7 @@ type PlacementTypeEnum struct {
func (x *PlacementTypeEnum) Reset() {
*x = PlacementTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_placement_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_placement_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -130,7 +130,7 @@ func (x *PlacementTypeEnum) String() string {
func (*PlacementTypeEnum) ProtoMessage() {}
func (x *PlacementTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_placement_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_placement_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -143,17 +143,17 @@ func (x *PlacementTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use PlacementTypeEnum.ProtoReflect.Descriptor instead.
func (*PlacementTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_placement_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_placement_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_placement_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_placement_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_placement_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_placement_type_proto_rawDesc = []byte{
0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xbe, 0x01, 0x0a, 0x11, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d,
0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xa8, 0x01, 0x0a, 0x0d,
0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a,
@@ -168,41 +168,41 @@ var file_google_ads_googleads_v16_enums_placement_type_proto_rawDesc = []byte{
0x06, 0x12, 0x13, 0x0a, 0x0f, 0x47, 0x4f, 0x4f, 0x47, 0x4c, 0x45, 0x5f, 0x50, 0x52, 0x4f, 0x44,
0x55, 0x43, 0x54, 0x53, 0x10, 0x07, 0x42, 0xec, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x50,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x50,
0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_placement_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_placement_type_proto_rawDescData = file_google_ads_googleads_v16_enums_placement_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_placement_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_placement_type_proto_rawDescData = file_google_ads_googleads_v17_enums_placement_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_placement_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_placement_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_placement_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_placement_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_placement_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_placement_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_placement_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_placement_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_placement_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_placement_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_placement_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_placement_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_placement_type_proto_goTypes = []interface{}{
- (PlacementTypeEnum_PlacementType)(0), // 0: google.ads.googleads.v16.enums.PlacementTypeEnum.PlacementType
- (*PlacementTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.PlacementTypeEnum
+var file_google_ads_googleads_v17_enums_placement_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_placement_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_placement_type_proto_goTypes = []interface{}{
+ (PlacementTypeEnum_PlacementType)(0), // 0: google.ads.googleads.v17.enums.PlacementTypeEnum.PlacementType
+ (*PlacementTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.PlacementTypeEnum
}
-var file_google_ads_googleads_v16_enums_placement_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_placement_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -210,13 +210,13 @@ var file_google_ads_googleads_v16_enums_placement_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_placement_type_proto_init() }
-func file_google_ads_googleads_v16_enums_placement_type_proto_init() {
- if File_google_ads_googleads_v16_enums_placement_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_placement_type_proto_init() }
+func file_google_ads_googleads_v17_enums_placement_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_placement_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_placement_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_placement_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PlacementTypeEnum); i {
case 0:
return &v.state
@@ -233,19 +233,19 @@ func file_google_ads_googleads_v16_enums_placement_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_placement_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_placement_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_placement_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_placement_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_placement_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_placement_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_placement_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_placement_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_placement_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_placement_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_placement_type_proto = out.File
- file_google_ads_googleads_v16_enums_placement_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_placement_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_placement_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_placement_type_proto = out.File
+ file_google_ads_googleads_v17_enums_placement_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_placement_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_placement_type_proto_depIdxs = nil
}
diff --git a/enums/policy_approval_status.pb.go b/enums/policy_approval_status.pb.go
index 7f985d35..b820fad7 100644
--- a/enums/policy_approval_status.pb.go
+++ b/enums/policy_approval_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/policy_approval_status.proto
+// source: google/ads/googleads/v17/enums/policy_approval_status.proto
package enums
@@ -88,11 +88,11 @@ func (x PolicyApprovalStatusEnum_PolicyApprovalStatus) String() string {
}
func (PolicyApprovalStatusEnum_PolicyApprovalStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_policy_approval_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_policy_approval_status_proto_enumTypes[0].Descriptor()
}
func (PolicyApprovalStatusEnum_PolicyApprovalStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_policy_approval_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_policy_approval_status_proto_enumTypes[0]
}
func (x PolicyApprovalStatusEnum_PolicyApprovalStatus) Number() protoreflect.EnumNumber {
@@ -101,7 +101,7 @@ func (x PolicyApprovalStatusEnum_PolicyApprovalStatus) Number() protoreflect.Enu
// Deprecated: Use PolicyApprovalStatusEnum_PolicyApprovalStatus.Descriptor instead.
func (PolicyApprovalStatusEnum_PolicyApprovalStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_policy_approval_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_policy_approval_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible policy approval statuses.
@@ -114,7 +114,7 @@ type PolicyApprovalStatusEnum struct {
func (x *PolicyApprovalStatusEnum) Reset() {
*x = PolicyApprovalStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_policy_approval_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_policy_approval_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -127,7 +127,7 @@ func (x *PolicyApprovalStatusEnum) String() string {
func (*PolicyApprovalStatusEnum) ProtoMessage() {}
func (x *PolicyApprovalStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_policy_approval_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_policy_approval_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -140,18 +140,18 @@ func (x *PolicyApprovalStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use PolicyApprovalStatusEnum.ProtoReflect.Descriptor instead.
func (*PolicyApprovalStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_policy_approval_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_policy_approval_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_policy_approval_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_policy_approval_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_policy_approval_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_policy_approval_status_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c,
0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa1, 0x01,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa1, 0x01,
0x0a, 0x18, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x41, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x84, 0x01, 0x0a, 0x14, 0x50,
0x6f, 0x6c, 0x69, 0x63, 0x79, 0x41, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x53, 0x74, 0x61,
@@ -164,41 +164,41 @@ var file_google_ads_googleads_v16_enums_policy_approval_status_proto_rawDesc = [
0x46, 0x5f, 0x49, 0x4e, 0x54, 0x45, 0x52, 0x45, 0x53, 0x54, 0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x10,
0x05, 0x42, 0xf3, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79,
0x41, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_policy_approval_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_policy_approval_status_proto_rawDescData = file_google_ads_googleads_v16_enums_policy_approval_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_policy_approval_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_policy_approval_status_proto_rawDescData = file_google_ads_googleads_v17_enums_policy_approval_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_policy_approval_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_policy_approval_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_policy_approval_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_policy_approval_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_policy_approval_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_policy_approval_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_policy_approval_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_policy_approval_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_policy_approval_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_policy_approval_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_policy_approval_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_policy_approval_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_policy_approval_status_proto_goTypes = []interface{}{
- (PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 0: google.ads.googleads.v16.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus
- (*PolicyApprovalStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.PolicyApprovalStatusEnum
+var file_google_ads_googleads_v17_enums_policy_approval_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_policy_approval_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_policy_approval_status_proto_goTypes = []interface{}{
+ (PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 0: google.ads.googleads.v17.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus
+ (*PolicyApprovalStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.PolicyApprovalStatusEnum
}
-var file_google_ads_googleads_v16_enums_policy_approval_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_policy_approval_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -206,13 +206,13 @@ var file_google_ads_googleads_v16_enums_policy_approval_status_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_policy_approval_status_proto_init() }
-func file_google_ads_googleads_v16_enums_policy_approval_status_proto_init() {
- if File_google_ads_googleads_v16_enums_policy_approval_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_policy_approval_status_proto_init() }
+func file_google_ads_googleads_v17_enums_policy_approval_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_policy_approval_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_policy_approval_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_policy_approval_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyApprovalStatusEnum); i {
case 0:
return &v.state
@@ -229,19 +229,19 @@ func file_google_ads_googleads_v16_enums_policy_approval_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_policy_approval_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_policy_approval_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_policy_approval_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_policy_approval_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_policy_approval_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_policy_approval_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_policy_approval_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_policy_approval_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_policy_approval_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_policy_approval_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_policy_approval_status_proto = out.File
- file_google_ads_googleads_v16_enums_policy_approval_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_policy_approval_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_policy_approval_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_policy_approval_status_proto = out.File
+ file_google_ads_googleads_v17_enums_policy_approval_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_policy_approval_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_policy_approval_status_proto_depIdxs = nil
}
diff --git a/enums/policy_review_status.pb.go b/enums/policy_review_status.pb.go
index ed527503..0ef8cf58 100644
--- a/enums/policy_review_status.pb.go
+++ b/enums/policy_review_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/policy_review_status.proto
+// source: google/ads/googleads/v17/enums/policy_review_status.proto
package enums
@@ -87,11 +87,11 @@ func (x PolicyReviewStatusEnum_PolicyReviewStatus) String() string {
}
func (PolicyReviewStatusEnum_PolicyReviewStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_policy_review_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_policy_review_status_proto_enumTypes[0].Descriptor()
}
func (PolicyReviewStatusEnum_PolicyReviewStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_policy_review_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_policy_review_status_proto_enumTypes[0]
}
func (x PolicyReviewStatusEnum_PolicyReviewStatus) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x PolicyReviewStatusEnum_PolicyReviewStatus) Number() protoreflect.EnumNum
// Deprecated: Use PolicyReviewStatusEnum_PolicyReviewStatus.Descriptor instead.
func (PolicyReviewStatusEnum_PolicyReviewStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_policy_review_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_policy_review_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible policy review statuses.
@@ -113,7 +113,7 @@ type PolicyReviewStatusEnum struct {
func (x *PolicyReviewStatusEnum) Reset() {
*x = PolicyReviewStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_policy_review_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_policy_review_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +126,7 @@ func (x *PolicyReviewStatusEnum) String() string {
func (*PolicyReviewStatusEnum) ProtoMessage() {}
func (x *PolicyReviewStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_policy_review_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_policy_review_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,18 +139,18 @@ func (x *PolicyReviewStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use PolicyReviewStatusEnum.ProtoReflect.Descriptor instead.
func (*PolicyReviewStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_policy_review_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_policy_review_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_policy_review_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_policy_review_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_policy_review_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_policy_review_status_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x73,
0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x9d, 0x01, 0x0a, 0x16,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x9d, 0x01, 0x0a, 0x16,
0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x82, 0x01, 0x0a, 0x12, 0x50, 0x6f, 0x6c, 0x69, 0x63,
0x79, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f, 0x0a,
@@ -162,42 +162,42 @@ var file_google_ads_googleads_v16_enums_policy_review_status_proto_rawDesc = []b
0x4c, 0x10, 0x04, 0x12, 0x16, 0x0a, 0x12, 0x45, 0x4c, 0x49, 0x47, 0x49, 0x42, 0x4c, 0x45, 0x5f,
0x4d, 0x41, 0x59, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x45, 0x10, 0x05, 0x42, 0xf1, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x17, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_policy_review_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_policy_review_status_proto_rawDescData = file_google_ads_googleads_v16_enums_policy_review_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_policy_review_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_policy_review_status_proto_rawDescData = file_google_ads_googleads_v17_enums_policy_review_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_policy_review_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_policy_review_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_policy_review_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_policy_review_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_policy_review_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_policy_review_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_policy_review_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_policy_review_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_policy_review_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_policy_review_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_policy_review_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_policy_review_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_policy_review_status_proto_goTypes = []interface{}{
- (PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 0: google.ads.googleads.v16.enums.PolicyReviewStatusEnum.PolicyReviewStatus
- (*PolicyReviewStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.PolicyReviewStatusEnum
+var file_google_ads_googleads_v17_enums_policy_review_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_policy_review_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_policy_review_status_proto_goTypes = []interface{}{
+ (PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 0: google.ads.googleads.v17.enums.PolicyReviewStatusEnum.PolicyReviewStatus
+ (*PolicyReviewStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.PolicyReviewStatusEnum
}
-var file_google_ads_googleads_v16_enums_policy_review_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_policy_review_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -205,13 +205,13 @@ var file_google_ads_googleads_v16_enums_policy_review_status_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_policy_review_status_proto_init() }
-func file_google_ads_googleads_v16_enums_policy_review_status_proto_init() {
- if File_google_ads_googleads_v16_enums_policy_review_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_policy_review_status_proto_init() }
+func file_google_ads_googleads_v17_enums_policy_review_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_policy_review_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_policy_review_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_policy_review_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyReviewStatusEnum); i {
case 0:
return &v.state
@@ -228,19 +228,19 @@ func file_google_ads_googleads_v16_enums_policy_review_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_policy_review_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_policy_review_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_policy_review_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_policy_review_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_policy_review_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_policy_review_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_policy_review_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_policy_review_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_policy_review_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_policy_review_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_policy_review_status_proto = out.File
- file_google_ads_googleads_v16_enums_policy_review_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_policy_review_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_policy_review_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_policy_review_status_proto = out.File
+ file_google_ads_googleads_v17_enums_policy_review_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_policy_review_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_policy_review_status_proto_depIdxs = nil
}
diff --git a/enums/policy_topic_entry_type.pb.go b/enums/policy_topic_entry_type.pb.go
index 36215ced..1e0f4294 100644
--- a/enums/policy_topic_entry_type.pb.go
+++ b/enums/policy_topic_entry_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/policy_topic_entry_type.proto
+// source: google/ads/googleads/v17/enums/policy_topic_entry_type.proto
package enums
@@ -95,11 +95,11 @@ func (x PolicyTopicEntryTypeEnum_PolicyTopicEntryType) String() string {
}
func (PolicyTopicEntryTypeEnum_PolicyTopicEntryType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_enumTypes[0].Descriptor()
}
func (PolicyTopicEntryTypeEnum_PolicyTopicEntryType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_enumTypes[0]
}
func (x PolicyTopicEntryTypeEnum_PolicyTopicEntryType) Number() protoreflect.EnumNumber {
@@ -108,7 +108,7 @@ func (x PolicyTopicEntryTypeEnum_PolicyTopicEntryType) Number() protoreflect.Enu
// Deprecated: Use PolicyTopicEntryTypeEnum_PolicyTopicEntryType.Descriptor instead.
func (PolicyTopicEntryTypeEnum_PolicyTopicEntryType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible policy topic entry types.
@@ -121,7 +121,7 @@ type PolicyTopicEntryTypeEnum struct {
func (x *PolicyTopicEntryTypeEnum) Reset() {
*x = PolicyTopicEntryTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -134,7 +134,7 @@ func (x *PolicyTopicEntryTypeEnum) String() string {
func (*PolicyTopicEntryTypeEnum) ProtoMessage() {}
func (x *PolicyTopicEntryTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -147,18 +147,18 @@ func (x *PolicyTopicEntryTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use PolicyTopicEntryTypeEnum.ProtoReflect.Descriptor instead.
func (*PolicyTopicEntryTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_policy_topic_entry_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_policy_topic_entry_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f, 0x65, 0x6e,
0x74, 0x72, 0x79, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xbd,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xbd,
0x01, 0x0a, 0x18, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x45, 0x6e,
0x74, 0x72, 0x79, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xa0, 0x01, 0x0a, 0x14,
0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x45, 0x6e, 0x74, 0x72, 0x79,
@@ -172,42 +172,42 @@ var file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_rawDesc =
0x47, 0x10, 0x06, 0x12, 0x19, 0x0a, 0x15, 0x41, 0x52, 0x45, 0x41, 0x5f, 0x4f, 0x46, 0x5f, 0x49,
0x4e, 0x54, 0x45, 0x52, 0x45, 0x53, 0x54, 0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x10, 0x07, 0x42, 0xf3,
0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70,
0x69, 0x63, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_rawDescData = file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_rawDescData = file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_goTypes = []interface{}{
- (PolicyTopicEntryTypeEnum_PolicyTopicEntryType)(0), // 0: google.ads.googleads.v16.enums.PolicyTopicEntryTypeEnum.PolicyTopicEntryType
- (*PolicyTopicEntryTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.PolicyTopicEntryTypeEnum
+var file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_goTypes = []interface{}{
+ (PolicyTopicEntryTypeEnum_PolicyTopicEntryType)(0), // 0: google.ads.googleads.v17.enums.PolicyTopicEntryTypeEnum.PolicyTopicEntryType
+ (*PolicyTopicEntryTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.PolicyTopicEntryTypeEnum
}
-var file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -215,13 +215,13 @@ var file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_init() }
-func file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_init() {
- if File_google_ads_googleads_v16_enums_policy_topic_entry_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_init() }
+func file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_policy_topic_entry_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyTopicEntryTypeEnum); i {
case 0:
return &v.state
@@ -238,19 +238,19 @@ func file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_policy_topic_entry_type_proto = out.File
- file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_policy_topic_entry_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_policy_topic_entry_type_proto = out.File
+ file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_policy_topic_entry_type_proto_depIdxs = nil
}
diff --git a/enums/policy_topic_evidence_destination_mismatch_url_type.pb.go b/enums/policy_topic_evidence_destination_mismatch_url_type.pb.go
index fb57495f..f8202747 100644
--- a/enums/policy_topic_evidence_destination_mismatch_url_type.pb.go
+++ b/enums/policy_topic_evidence_destination_mismatch_url_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/policy_topic_evidence_destination_mismatch_url_type.proto
+// source: google/ads/googleads/v17/enums/policy_topic_evidence_destination_mismatch_url_type.proto
package enums
@@ -89,11 +89,11 @@ func (x PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDes
}
func (PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_enumTypes[0].Descriptor()
}
func (PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_enumTypes[0]
}
func (x PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType) Number() protoreflect.EnumNumber {
@@ -102,7 +102,7 @@ func (x PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDes
// Deprecated: Use PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType.Descriptor instead.
func (PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible policy topic evidence destination
@@ -116,7 +116,7 @@ type PolicyTopicEvidenceDestinationMismatchUrlTypeEnum struct {
func (x *PolicyTopicEvidenceDestinationMismatchUrlTypeEnum) Reset() {
*x = PolicyTopicEvidenceDestinationMismatchUrlTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -129,7 +129,7 @@ func (x *PolicyTopicEvidenceDestinationMismatchUrlTypeEnum) String() string {
func (*PolicyTopicEvidenceDestinationMismatchUrlTypeEnum) ProtoMessage() {}
func (x *PolicyTopicEvidenceDestinationMismatchUrlTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -142,20 +142,20 @@ func (x *PolicyTopicEvidenceDestinationMismatchUrlTypeEnum) ProtoReflect() proto
// Deprecated: Use PolicyTopicEvidenceDestinationMismatchUrlTypeEnum.ProtoReflect.Descriptor instead.
func (*PolicyTopicEvidenceDestinationMismatchUrlTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDesc = []byte{
0x0a, 0x58, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f, 0x65, 0x76,
0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x6d, 0x69, 0x73, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x75, 0x72, 0x6c, 0x5f,
0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe4, 0x01, 0x0a, 0x31, 0x50,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe4, 0x01, 0x0a, 0x31, 0x50,
0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x45, 0x76, 0x69, 0x64, 0x65, 0x6e,
0x63, 0x65, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x69, 0x73,
0x6d, 0x61, 0x74, 0x63, 0x68, 0x55, 0x72, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d,
@@ -172,43 +172,43 @@ var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismat
0x4c, 0x45, 0x5f, 0x54, 0x52, 0x41, 0x43, 0x4b, 0x49, 0x4e, 0x47, 0x5f, 0x55, 0x52, 0x4c, 0x10,
0x06, 0x42, 0x8c, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x32, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x32, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79,
0x54, 0x6f, 0x70, 0x69, 0x63, 0x45, 0x76, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x44, 0x65, 0x73,
0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x69, 0x73, 0x6d, 0x61, 0x74, 0x63, 0x68,
0x55, 0x72, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescData = file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescData = file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_goTypes = []interface{}{
- (PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType)(0), // 0: google.ads.googleads.v16.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum.PolicyTopicEvidenceDestinationMismatchUrlType
- (*PolicyTopicEvidenceDestinationMismatchUrlTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum
+var file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_goTypes = []interface{}{
+ (PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType)(0), // 0: google.ads.googleads.v17.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum.PolicyTopicEvidenceDestinationMismatchUrlType
+ (*PolicyTopicEvidenceDestinationMismatchUrlTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum
}
-var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -217,14 +217,14 @@ var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismat
}
func init() {
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_init()
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_init()
}
-func file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_init() {
- if File_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto != nil {
+func file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyTopicEvidenceDestinationMismatchUrlTypeEnum); i {
case 0:
return &v.state
@@ -241,19 +241,19 @@ func file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_misma
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto = out.File
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_mismatch_url_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto = out.File
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_mismatch_url_type_proto_depIdxs = nil
}
diff --git a/enums/policy_topic_evidence_destination_not_working_device.pb.go b/enums/policy_topic_evidence_destination_not_working_device.pb.go
index fdd32ffc..b9e1133d 100644
--- a/enums/policy_topic_evidence_destination_not_working_device.pb.go
+++ b/enums/policy_topic_evidence_destination_not_working_device.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/policy_topic_evidence_destination_not_working_device.proto
+// source: google/ads/googleads/v17/enums/policy_topic_evidence_destination_not_working_device.proto
package enums
@@ -81,11 +81,11 @@ func (x PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDe
}
func (PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_enumTypes[0].Descriptor()
}
func (PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_enumTypes[0]
}
func (x PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice) Number() protoreflect.EnumNumber {
@@ -94,7 +94,7 @@ func (x PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDe
// Deprecated: Use PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice.Descriptor instead.
func (PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible policy topic evidence destination not
@@ -108,7 +108,7 @@ type PolicyTopicEvidenceDestinationNotWorkingDeviceEnum struct {
func (x *PolicyTopicEvidenceDestinationNotWorkingDeviceEnum) Reset() {
*x = PolicyTopicEvidenceDestinationNotWorkingDeviceEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -121,7 +121,7 @@ func (x *PolicyTopicEvidenceDestinationNotWorkingDeviceEnum) String() string {
func (*PolicyTopicEvidenceDestinationNotWorkingDeviceEnum) ProtoMessage() {}
func (x *PolicyTopicEvidenceDestinationNotWorkingDeviceEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -134,20 +134,20 @@ func (x *PolicyTopicEvidenceDestinationNotWorkingDeviceEnum) ProtoReflect() prot
// Deprecated: Use PolicyTopicEvidenceDestinationNotWorkingDeviceEnum.ProtoReflect.Descriptor instead.
func (*PolicyTopicEvidenceDestinationNotWorkingDeviceEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_rawDesc = []byte{
0x0a, 0x59, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f, 0x65, 0x76,
0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x6e, 0x6f, 0x74, 0x5f, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x64,
0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa7, 0x01, 0x0a, 0x32,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa7, 0x01, 0x0a, 0x32,
0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x45, 0x76, 0x69, 0x64, 0x65,
0x6e, 0x63, 0x65, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x6f,
0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x45, 0x6e,
@@ -160,43 +160,43 @@ var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_wo
0x0b, 0x0a, 0x07, 0x41, 0x4e, 0x44, 0x52, 0x4f, 0x49, 0x44, 0x10, 0x03, 0x12, 0x07, 0x0a, 0x03,
0x49, 0x4f, 0x53, 0x10, 0x04, 0x42, 0x8d, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x33, 0x50, 0x6f,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x33, 0x50, 0x6f,
0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x45, 0x76, 0x69, 0x64, 0x65, 0x6e, 0x63,
0x65, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x6f, 0x74, 0x57,
0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescData = file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_rawDesc
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescData = file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_goTypes = []interface{}{
- (PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice)(0), // 0: google.ads.googleads.v16.enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum.PolicyTopicEvidenceDestinationNotWorkingDevice
- (*PolicyTopicEvidenceDestinationNotWorkingDeviceEnum)(nil), // 1: google.ads.googleads.v16.enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum
+var file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_goTypes = []interface{}{
+ (PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice)(0), // 0: google.ads.googleads.v17.enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum.PolicyTopicEvidenceDestinationNotWorkingDevice
+ (*PolicyTopicEvidenceDestinationNotWorkingDeviceEnum)(nil), // 1: google.ads.googleads.v17.enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum
}
-var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -205,14 +205,14 @@ var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_wo
}
func init() {
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_init()
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_init()
}
-func file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_init() {
- if File_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto != nil {
+func file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_init() {
+ if File_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyTopicEvidenceDestinationNotWorkingDeviceEnum); i {
case 0:
return &v.state
@@ -229,19 +229,19 @@ func file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_w
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto = out.File
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_device_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto = out.File
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_device_proto_depIdxs = nil
}
diff --git a/enums/policy_topic_evidence_destination_not_working_dns_error_type.pb.go b/enums/policy_topic_evidence_destination_not_working_dns_error_type.pb.go
index 3d1c96da..4772302a 100644
--- a/enums/policy_topic_evidence_destination_not_working_dns_error_type.pb.go
+++ b/enums/policy_topic_evidence_destination_not_working_dns_error_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/policy_topic_evidence_destination_not_working_dns_error_type.proto
+// source: google/ads/googleads/v17/enums/policy_topic_evidence_destination_not_working_dns_error_type.proto
package enums
@@ -79,11 +79,11 @@ func (x PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvid
}
func (PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_enumTypes[0].Descriptor()
}
func (PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_enumTypes[0]
}
func (x PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvid
// Deprecated: Use PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType.Descriptor instead.
func (PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible policy topic evidence destination not
@@ -106,7 +106,7 @@ type PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum struct {
func (x *PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum) Reset() {
*x = PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum) String() stri
func (*PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum) ProtoMessage() {}
func (x *PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,20 +132,20 @@ func (x *PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum) ProtoReflect(
// Deprecated: Use PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum.ProtoReflect.Descriptor instead.
func (*PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDesc = []byte{
0x0a, 0x61, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f, 0x65, 0x76,
0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x6e, 0x6f, 0x74, 0x5f, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x64,
0x6e, 0x73, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x22, 0xc7, 0x01, 0x0a, 0x38, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f,
0x70, 0x69, 0x63, 0x45, 0x76, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x44, 0x65, 0x73, 0x74, 0x69,
0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x6f, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67,
@@ -160,7 +160,7 @@ var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_wo
0x1c, 0x0a, 0x18, 0x47, 0x4f, 0x4f, 0x47, 0x4c, 0x45, 0x5f, 0x43, 0x52, 0x41, 0x57, 0x4c, 0x45,
0x52, 0x5f, 0x44, 0x4e, 0x53, 0x5f, 0x49, 0x53, 0x53, 0x55, 0x45, 0x10, 0x03, 0x42, 0x93, 0x02,
0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x42, 0x39, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69,
0x63, 0x45, 0x76, 0x69, 0x64, 0x65, 0x6e, 0x63, 0x65, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x6f, 0x74, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x44, 0x6e,
@@ -168,36 +168,36 @@ var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_wo
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescData = file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescData = file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_goTypes = []interface{}{
- (PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType)(0), // 0: google.ads.googleads.v16.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum.PolicyTopicEvidenceDestinationNotWorkingDnsErrorType
- (*PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum
+var file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_goTypes = []interface{}{
+ (PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType)(0), // 0: google.ads.googleads.v17.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum.PolicyTopicEvidenceDestinationNotWorkingDnsErrorType
+ (*PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum
}
-var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -206,14 +206,14 @@ var file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_wo
}
func init() {
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_init()
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_init()
}
-func file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_init() {
- if File_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto != nil {
+func file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum); i {
case 0:
return &v.state
@@ -230,19 +230,19 @@ func file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_w
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto = out.File
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto = out.File
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_depIdxs = nil
}
diff --git a/enums/positive_geo_target_type.pb.go b/enums/positive_geo_target_type.pb.go
index d21debc1..17d1f308 100644
--- a/enums/positive_geo_target_type.pb.go
+++ b/enums/positive_geo_target_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/positive_geo_target_type.proto
+// source: google/ads/googleads/v17/enums/positive_geo_target_type.proto
package enums
@@ -84,11 +84,11 @@ func (x PositiveGeoTargetTypeEnum_PositiveGeoTargetType) String() string {
}
func (PositiveGeoTargetTypeEnum_PositiveGeoTargetType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_enumTypes[0].Descriptor()
}
func (PositiveGeoTargetTypeEnum_PositiveGeoTargetType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_enumTypes[0]
}
func (x PositiveGeoTargetTypeEnum_PositiveGeoTargetType) Number() protoreflect.EnumNumber {
@@ -97,7 +97,7 @@ func (x PositiveGeoTargetTypeEnum_PositiveGeoTargetType) Number() protoreflect.E
// Deprecated: Use PositiveGeoTargetTypeEnum_PositiveGeoTargetType.Descriptor instead.
func (PositiveGeoTargetTypeEnum_PositiveGeoTargetType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible positive geo target types.
@@ -110,7 +110,7 @@ type PositiveGeoTargetTypeEnum struct {
func (x *PositiveGeoTargetTypeEnum) Reset() {
*x = PositiveGeoTargetTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -123,7 +123,7 @@ func (x *PositiveGeoTargetTypeEnum) String() string {
func (*PositiveGeoTargetTypeEnum) ProtoMessage() {}
func (x *PositiveGeoTargetTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -136,18 +136,18 @@ func (x *PositiveGeoTargetTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use PositiveGeoTargetTypeEnum.ProtoReflect.Descriptor instead.
func (*PositiveGeoTargetTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_positive_geo_target_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_positive_geo_target_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61,
0x72, 0x67, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
0x8f, 0x01, 0x0a, 0x19, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x76, 0x65, 0x47, 0x65, 0x6f, 0x54,
0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x72, 0x0a,
0x15, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x76, 0x65, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67,
@@ -159,41 +159,41 @@ var file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_rawDesc =
0x54, 0x10, 0x06, 0x12, 0x0c, 0x0a, 0x08, 0x50, 0x52, 0x45, 0x53, 0x45, 0x4e, 0x43, 0x45, 0x10,
0x07, 0x42, 0xf4, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69,
0x76, 0x65, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_rawDescData = file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_rawDescData = file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_goTypes = []interface{}{
- (PositiveGeoTargetTypeEnum_PositiveGeoTargetType)(0), // 0: google.ads.googleads.v16.enums.PositiveGeoTargetTypeEnum.PositiveGeoTargetType
- (*PositiveGeoTargetTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.PositiveGeoTargetTypeEnum
+var file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_goTypes = []interface{}{
+ (PositiveGeoTargetTypeEnum_PositiveGeoTargetType)(0), // 0: google.ads.googleads.v17.enums.PositiveGeoTargetTypeEnum.PositiveGeoTargetType
+ (*PositiveGeoTargetTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.PositiveGeoTargetTypeEnum
}
-var file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -201,13 +201,13 @@ var file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_init() }
-func file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_init() {
- if File_google_ads_googleads_v16_enums_positive_geo_target_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_init() }
+func file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_positive_geo_target_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PositiveGeoTargetTypeEnum); i {
case 0:
return &v.state
@@ -224,19 +224,19 @@ func file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_positive_geo_target_type_proto = out.File
- file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_positive_geo_target_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_positive_geo_target_type_proto = out.File
+ file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_positive_geo_target_type_proto_depIdxs = nil
}
diff --git a/enums/price_extension_price_qualifier.pb.go b/enums/price_extension_price_qualifier.pb.go
index cef45180..e902a0ce 100644
--- a/enums/price_extension_price_qualifier.pb.go
+++ b/enums/price_extension_price_qualifier.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/price_extension_price_qualifier.proto
+// source: google/ads/googleads/v17/enums/price_extension_price_qualifier.proto
package enums
@@ -79,11 +79,11 @@ func (x PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier) String()
}
func (PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_enumTypes[0].Descriptor()
}
func (PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_enumTypes[0]
}
func (x PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier) Number()
// Deprecated: Use PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier.Descriptor instead.
func (PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing a price extension price qualifier.
@@ -105,7 +105,7 @@ type PriceExtensionPriceQualifierEnum struct {
func (x *PriceExtensionPriceQualifierEnum) Reset() {
*x = PriceExtensionPriceQualifierEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *PriceExtensionPriceQualifierEnum) String() string {
func (*PriceExtensionPriceQualifierEnum) ProtoMessage() {}
func (x *PriceExtensionPriceQualifierEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *PriceExtensionPriceQualifierEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use PriceExtensionPriceQualifierEnum.ProtoReflect.Descriptor instead.
func (*PriceExtensionPriceQualifierEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_rawDesc = []byte{
0x0a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x82, 0x01, 0x0a, 0x20, 0x50, 0x72, 0x69, 0x63, 0x65,
0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x51, 0x75,
0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5e, 0x0a, 0x1c, 0x50,
@@ -153,43 +153,43 @@ var file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_ra
0x4d, 0x10, 0x02, 0x12, 0x09, 0x0a, 0x05, 0x55, 0x50, 0x5f, 0x54, 0x4f, 0x10, 0x03, 0x12, 0x0b,
0x0a, 0x07, 0x41, 0x56, 0x45, 0x52, 0x41, 0x47, 0x45, 0x10, 0x04, 0x42, 0xfb, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x21, 0x50, 0x72, 0x69, 0x63, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
0x6f, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x72,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_rawDescData = file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_rawDesc
+ file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_rawDescData = file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_goTypes = []interface{}{
- (PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier)(0), // 0: google.ads.googleads.v16.enums.PriceExtensionPriceQualifierEnum.PriceExtensionPriceQualifier
- (*PriceExtensionPriceQualifierEnum)(nil), // 1: google.ads.googleads.v16.enums.PriceExtensionPriceQualifierEnum
+var file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_goTypes = []interface{}{
+ (PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier)(0), // 0: google.ads.googleads.v17.enums.PriceExtensionPriceQualifierEnum.PriceExtensionPriceQualifier
+ (*PriceExtensionPriceQualifierEnum)(nil), // 1: google.ads.googleads.v17.enums.PriceExtensionPriceQualifierEnum
}
-var file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_de
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_init() }
-func file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_init() {
- if File_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_init() }
+func file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_init() {
+ if File_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PriceExtensionPriceQualifierEnum); i {
case 0:
return &v.state
@@ -220,19 +220,19 @@ func file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_i
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto = out.File
- file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_price_extension_price_qualifier_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto = out.File
+ file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_price_extension_price_qualifier_proto_depIdxs = nil
}
diff --git a/enums/price_extension_price_unit.pb.go b/enums/price_extension_price_unit.pb.go
index 87c6aee2..f3fe5109 100644
--- a/enums/price_extension_price_unit.pb.go
+++ b/enums/price_extension_price_unit.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/price_extension_price_unit.proto
+// source: google/ads/googleads/v17/enums/price_extension_price_unit.proto
package enums
@@ -91,11 +91,11 @@ func (x PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit) String() string {
}
func (PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_enumTypes[0].Descriptor()
}
func (PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_enumTypes[0]
}
func (x PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit) Number() protoreflect.EnumNumber {
@@ -104,7 +104,7 @@ func (x PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit) Number() protorefle
// Deprecated: Use PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit.Descriptor instead.
func (PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing price extension price unit.
@@ -117,7 +117,7 @@ type PriceExtensionPriceUnitEnum struct {
func (x *PriceExtensionPriceUnitEnum) Reset() {
*x = PriceExtensionPriceUnitEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -130,7 +130,7 @@ func (x *PriceExtensionPriceUnitEnum) String() string {
func (*PriceExtensionPriceUnitEnum) ProtoMessage() {}
func (x *PriceExtensionPriceUnitEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -143,18 +143,18 @@ func (x *PriceExtensionPriceUnitEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use PriceExtensionPriceUnitEnum.ProtoReflect.Descriptor instead.
func (*PriceExtensionPriceUnitEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_price_extension_price_unit_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_price_extension_price_unit_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
0x5f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x75, 0x6e, 0x69, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x22, 0xac, 0x01, 0x0a, 0x1b, 0x50, 0x72, 0x69, 0x63, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e,
0x73, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x55, 0x6e, 0x69, 0x74, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x8c, 0x01, 0x0a, 0x17, 0x50, 0x72, 0x69, 0x63, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e,
@@ -168,42 +168,42 @@ var file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_rawDesc
0x06, 0x12, 0x0d, 0x0a, 0x09, 0x50, 0x45, 0x52, 0x5f, 0x4e, 0x49, 0x47, 0x48, 0x54, 0x10, 0x07,
0x42, 0xf6, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x50, 0x72, 0x69, 0x63, 0x65, 0x45, 0x78,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x50, 0x72, 0x69, 0x63, 0x65, 0x45, 0x78,
0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x69, 0x63, 0x65, 0x55, 0x6e, 0x69, 0x74,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_rawDescData = file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_rawDesc
+ file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_rawDescData = file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_goTypes = []interface{}{
- (PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit)(0), // 0: google.ads.googleads.v16.enums.PriceExtensionPriceUnitEnum.PriceExtensionPriceUnit
- (*PriceExtensionPriceUnitEnum)(nil), // 1: google.ads.googleads.v16.enums.PriceExtensionPriceUnitEnum
+var file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_goTypes = []interface{}{
+ (PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit)(0), // 0: google.ads.googleads.v17.enums.PriceExtensionPriceUnitEnum.PriceExtensionPriceUnit
+ (*PriceExtensionPriceUnitEnum)(nil), // 1: google.ads.googleads.v17.enums.PriceExtensionPriceUnitEnum
}
-var file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -211,13 +211,13 @@ var file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_init() }
-func file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_init() {
- if File_google_ads_googleads_v16_enums_price_extension_price_unit_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_init() }
+func file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_init() {
+ if File_google_ads_googleads_v17_enums_price_extension_price_unit_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PriceExtensionPriceUnitEnum); i {
case 0:
return &v.state
@@ -234,19 +234,19 @@ func file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_price_extension_price_unit_proto = out.File
- file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_price_extension_price_unit_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_price_extension_price_unit_proto = out.File
+ file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_price_extension_price_unit_proto_depIdxs = nil
}
diff --git a/enums/price_extension_type.pb.go b/enums/price_extension_type.pb.go
index 3bc5da0c..ebc8862a 100644
--- a/enums/price_extension_type.pb.go
+++ b/enums/price_extension_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/price_extension_type.proto
+// source: google/ads/googleads/v17/enums/price_extension_type.proto
package enums
@@ -103,11 +103,11 @@ func (x PriceExtensionTypeEnum_PriceExtensionType) String() string {
}
func (PriceExtensionTypeEnum_PriceExtensionType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_price_extension_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_price_extension_type_proto_enumTypes[0].Descriptor()
}
func (PriceExtensionTypeEnum_PriceExtensionType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_price_extension_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_price_extension_type_proto_enumTypes[0]
}
func (x PriceExtensionTypeEnum_PriceExtensionType) Number() protoreflect.EnumNumber {
@@ -116,7 +116,7 @@ func (x PriceExtensionTypeEnum_PriceExtensionType) Number() protoreflect.EnumNum
// Deprecated: Use PriceExtensionTypeEnum_PriceExtensionType.Descriptor instead.
func (PriceExtensionTypeEnum_PriceExtensionType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_price_extension_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_price_extension_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing types for a price extension.
@@ -129,7 +129,7 @@ type PriceExtensionTypeEnum struct {
func (x *PriceExtensionTypeEnum) Reset() {
*x = PriceExtensionTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_price_extension_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_price_extension_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -142,7 +142,7 @@ func (x *PriceExtensionTypeEnum) String() string {
func (*PriceExtensionTypeEnum) ProtoMessage() {}
func (x *PriceExtensionTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_price_extension_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_price_extension_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -155,18 +155,18 @@ func (x *PriceExtensionTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use PriceExtensionTypeEnum.ProtoReflect.Descriptor instead.
func (*PriceExtensionTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_price_extension_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_price_extension_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_price_extension_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_price_extension_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_price_extension_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_price_extension_type_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xeb, 0x01, 0x0a, 0x16,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xeb, 0x01, 0x0a, 0x16,
0x50, 0x72, 0x69, 0x63, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79,
0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xd0, 0x01, 0x0a, 0x12, 0x50, 0x72, 0x69, 0x63, 0x65,
0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a,
@@ -183,42 +183,42 @@ var file_google_ads_googleads_v16_enums_price_extension_type_proto_rawDesc = []b
0x52, 0x49, 0x45, 0x53, 0x10, 0x09, 0x12, 0x11, 0x0a, 0x0d, 0x53, 0x45, 0x52, 0x56, 0x49, 0x43,
0x45, 0x5f, 0x54, 0x49, 0x45, 0x52, 0x53, 0x10, 0x0a, 0x42, 0xf1, 0x01, 0x0a, 0x22, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x42, 0x17, 0x50, 0x72, 0x69, 0x63, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_price_extension_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_price_extension_type_proto_rawDescData = file_google_ads_googleads_v16_enums_price_extension_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_price_extension_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_price_extension_type_proto_rawDescData = file_google_ads_googleads_v17_enums_price_extension_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_price_extension_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_price_extension_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_price_extension_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_price_extension_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_price_extension_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_price_extension_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_price_extension_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_price_extension_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_price_extension_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_price_extension_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_price_extension_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_price_extension_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_price_extension_type_proto_goTypes = []interface{}{
- (PriceExtensionTypeEnum_PriceExtensionType)(0), // 0: google.ads.googleads.v16.enums.PriceExtensionTypeEnum.PriceExtensionType
- (*PriceExtensionTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.PriceExtensionTypeEnum
+var file_google_ads_googleads_v17_enums_price_extension_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_price_extension_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_price_extension_type_proto_goTypes = []interface{}{
+ (PriceExtensionTypeEnum_PriceExtensionType)(0), // 0: google.ads.googleads.v17.enums.PriceExtensionTypeEnum.PriceExtensionType
+ (*PriceExtensionTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.PriceExtensionTypeEnum
}
-var file_google_ads_googleads_v16_enums_price_extension_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_price_extension_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -226,13 +226,13 @@ var file_google_ads_googleads_v16_enums_price_extension_type_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_price_extension_type_proto_init() }
-func file_google_ads_googleads_v16_enums_price_extension_type_proto_init() {
- if File_google_ads_googleads_v16_enums_price_extension_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_price_extension_type_proto_init() }
+func file_google_ads_googleads_v17_enums_price_extension_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_price_extension_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_price_extension_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_price_extension_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PriceExtensionTypeEnum); i {
case 0:
return &v.state
@@ -249,19 +249,19 @@ func file_google_ads_googleads_v16_enums_price_extension_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_price_extension_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_price_extension_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_price_extension_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_price_extension_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_price_extension_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_price_extension_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_price_extension_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_price_extension_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_price_extension_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_price_extension_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_price_extension_type_proto = out.File
- file_google_ads_googleads_v16_enums_price_extension_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_price_extension_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_price_extension_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_price_extension_type_proto = out.File
+ file_google_ads_googleads_v17_enums_price_extension_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_price_extension_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_price_extension_type_proto_depIdxs = nil
}
diff --git a/enums/price_placeholder_field.pb.go b/enums/price_placeholder_field.pb.go
index 48c547eb..ec95bbb9 100644
--- a/enums/price_placeholder_field.pb.go
+++ b/enums/price_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/price_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/price_placeholder_field.proto
package enums
@@ -324,11 +324,11 @@ func (x PricePlaceholderFieldEnum_PricePlaceholderField) String() string {
}
func (PricePlaceholderFieldEnum_PricePlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_price_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_price_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (PricePlaceholderFieldEnum_PricePlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_price_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_price_placeholder_field_proto_enumTypes[0]
}
func (x PricePlaceholderFieldEnum_PricePlaceholderField) Number() protoreflect.EnumNumber {
@@ -337,7 +337,7 @@ func (x PricePlaceholderFieldEnum_PricePlaceholderField) Number() protoreflect.E
// Deprecated: Use PricePlaceholderFieldEnum_PricePlaceholderField.Descriptor instead.
func (PricePlaceholderFieldEnum_PricePlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_price_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_price_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Price placeholder fields.
@@ -350,7 +350,7 @@ type PricePlaceholderFieldEnum struct {
func (x *PricePlaceholderFieldEnum) Reset() {
*x = PricePlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_price_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_price_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -363,7 +363,7 @@ func (x *PricePlaceholderFieldEnum) String() string {
func (*PricePlaceholderFieldEnum) ProtoMessage() {}
func (x *PricePlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_price_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_price_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -376,18 +376,18 @@ func (x *PricePlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use PricePlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*PricePlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_price_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_price_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_price_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_price_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_price_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_price_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64,
0x65, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xef,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xef,
0x09, 0x0a, 0x19, 0x50, 0x72, 0x69, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c,
0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xd1, 0x09, 0x0a,
0x15, 0x50, 0x72, 0x69, 0x63, 0x65, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65,
@@ -469,41 +469,41 @@ var file_google_ads_googleads_v16_enums_price_placeholder_field_proto_rawDesc =
0x4c, 0x5f, 0x4d, 0x4f, 0x42, 0x49, 0x4c, 0x45, 0x5f, 0x55, 0x52, 0x4c, 0x53, 0x10, 0xa5, 0x06,
0x42, 0xf4, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x50, 0x72, 0x69, 0x63, 0x65, 0x50, 0x6c,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x50, 0x72, 0x69, 0x63, 0x65, 0x50, 0x6c,
0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_price_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_price_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_price_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_price_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_price_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_price_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_price_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_price_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_price_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_price_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_price_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_price_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_price_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_price_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_price_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_price_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_price_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_price_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_price_placeholder_field_proto_goTypes = []interface{}{
- (PricePlaceholderFieldEnum_PricePlaceholderField)(0), // 0: google.ads.googleads.v16.enums.PricePlaceholderFieldEnum.PricePlaceholderField
- (*PricePlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.PricePlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_price_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_price_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_price_placeholder_field_proto_goTypes = []interface{}{
+ (PricePlaceholderFieldEnum_PricePlaceholderField)(0), // 0: google.ads.googleads.v17.enums.PricePlaceholderFieldEnum.PricePlaceholderField
+ (*PricePlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.PricePlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_price_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_price_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -511,13 +511,13 @@ var file_google_ads_googleads_v16_enums_price_placeholder_field_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_price_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_price_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_price_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_price_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_price_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_price_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_price_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_price_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PricePlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -534,19 +534,19 @@ func file_google_ads_googleads_v16_enums_price_placeholder_field_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_price_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_price_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_price_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_price_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_price_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_price_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_price_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_price_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_price_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_price_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_price_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_price_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_price_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_price_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_price_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_price_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_price_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_price_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/product_availability.pb.go b/enums/product_availability.pb.go
new file mode 100644
index 00000000..e3f99aa6
--- /dev/null
+++ b/enums/product_availability.pb.go
@@ -0,0 +1,236 @@
+// Copyright 2024 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+// Code generated by protoc-gen-go. DO NOT EDIT.
+// versions:
+// protoc-gen-go v1.34.1
+// protoc v4.24.4
+// source: google/ads/googleads/v17/enums/product_availability.proto
+
+package enums
+
+import (
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
+ reflect "reflect"
+ sync "sync"
+)
+
+const (
+ // Verify that this generated code is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
+ // Verify that runtime/protoimpl is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
+)
+
+// Product availability.
+type ProductAvailabilityEnum_ProductAvailability int32
+
+const (
+ // Enum unspecified.
+ ProductAvailabilityEnum_UNSPECIFIED ProductAvailabilityEnum_ProductAvailability = 0
+ // Used for return value only. Represents values unknown in this version.
+ ProductAvailabilityEnum_UNKNOWN ProductAvailabilityEnum_ProductAvailability = 1
+ // The product is in stock.
+ ProductAvailabilityEnum_IN_STOCK ProductAvailabilityEnum_ProductAvailability = 2
+ // The product is out of stock.
+ ProductAvailabilityEnum_OUT_OF_STOCK ProductAvailabilityEnum_ProductAvailability = 3
+ // The product can be preordered.
+ ProductAvailabilityEnum_PREORDER ProductAvailabilityEnum_ProductAvailability = 4
+)
+
+// Enum value maps for ProductAvailabilityEnum_ProductAvailability.
+var (
+ ProductAvailabilityEnum_ProductAvailability_name = map[int32]string{
+ 0: "UNSPECIFIED",
+ 1: "UNKNOWN",
+ 2: "IN_STOCK",
+ 3: "OUT_OF_STOCK",
+ 4: "PREORDER",
+ }
+ ProductAvailabilityEnum_ProductAvailability_value = map[string]int32{
+ "UNSPECIFIED": 0,
+ "UNKNOWN": 1,
+ "IN_STOCK": 2,
+ "OUT_OF_STOCK": 3,
+ "PREORDER": 4,
+ }
+)
+
+func (x ProductAvailabilityEnum_ProductAvailability) Enum() *ProductAvailabilityEnum_ProductAvailability {
+ p := new(ProductAvailabilityEnum_ProductAvailability)
+ *p = x
+ return p
+}
+
+func (x ProductAvailabilityEnum_ProductAvailability) String() string {
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+}
+
+func (ProductAvailabilityEnum_ProductAvailability) Descriptor() protoreflect.EnumDescriptor {
+ return file_google_ads_googleads_v17_enums_product_availability_proto_enumTypes[0].Descriptor()
+}
+
+func (ProductAvailabilityEnum_ProductAvailability) Type() protoreflect.EnumType {
+ return &file_google_ads_googleads_v17_enums_product_availability_proto_enumTypes[0]
+}
+
+func (x ProductAvailabilityEnum_ProductAvailability) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
+// Deprecated: Use ProductAvailabilityEnum_ProductAvailability.Descriptor instead.
+func (ProductAvailabilityEnum_ProductAvailability) EnumDescriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_enums_product_availability_proto_rawDescGZIP(), []int{0, 0}
+}
+
+// The availability of a product.
+type ProductAvailabilityEnum struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+}
+
+func (x *ProductAvailabilityEnum) Reset() {
+ *x = ProductAvailabilityEnum{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_google_ads_googleads_v17_enums_product_availability_proto_msgTypes[0]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *ProductAvailabilityEnum) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ProductAvailabilityEnum) ProtoMessage() {}
+
+func (x *ProductAvailabilityEnum) ProtoReflect() protoreflect.Message {
+ mi := &file_google_ads_googleads_v17_enums_product_availability_proto_msgTypes[0]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use ProductAvailabilityEnum.ProtoReflect.Descriptor instead.
+func (*ProductAvailabilityEnum) Descriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_enums_product_availability_proto_rawDescGZIP(), []int{0}
+}
+
+var File_google_ads_googleads_v17_enums_product_availability_proto protoreflect.FileDescriptor
+
+var file_google_ads_googleads_v17_enums_product_availability_proto_rawDesc = []byte{
+ 0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62,
+ 0x69, 0x6c, 0x69, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7c, 0x0a, 0x17, 0x50,
+ 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69,
+ 0x74, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x61, 0x0a, 0x13, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63,
+ 0x74, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x0f, 0x0a,
+ 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b,
+ 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x49,
+ 0x4e, 0x5f, 0x53, 0x54, 0x4f, 0x43, 0x4b, 0x10, 0x02, 0x12, 0x10, 0x0a, 0x0c, 0x4f, 0x55, 0x54,
+ 0x5f, 0x4f, 0x46, 0x5f, 0x53, 0x54, 0x4f, 0x43, 0x4b, 0x10, 0x03, 0x12, 0x0c, 0x0a, 0x08, 0x50,
+ 0x52, 0x45, 0x4f, 0x52, 0x44, 0x45, 0x52, 0x10, 0x04, 0x42, 0xf2, 0x01, 0x0a, 0x22, 0x63, 0x6f,
+ 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x42, 0x18, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x41, 0x76, 0x61, 0x69, 0x6c, 0x61, 0x62,
+ 0x69, 0x6c, 0x69, 0x74, 0x79, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
+ 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
+ 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+}
+
+var (
+ file_google_ads_googleads_v17_enums_product_availability_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_product_availability_proto_rawDescData = file_google_ads_googleads_v17_enums_product_availability_proto_rawDesc
+)
+
+func file_google_ads_googleads_v17_enums_product_availability_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_product_availability_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_product_availability_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_product_availability_proto_rawDescData)
+ })
+ return file_google_ads_googleads_v17_enums_product_availability_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_enums_product_availability_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_product_availability_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_product_availability_proto_goTypes = []interface{}{
+ (ProductAvailabilityEnum_ProductAvailability)(0), // 0: google.ads.googleads.v17.enums.ProductAvailabilityEnum.ProductAvailability
+ (*ProductAvailabilityEnum)(nil), // 1: google.ads.googleads.v17.enums.ProductAvailabilityEnum
+}
+var file_google_ads_googleads_v17_enums_product_availability_proto_depIdxs = []int32{
+ 0, // [0:0] is the sub-list for method output_type
+ 0, // [0:0] is the sub-list for method input_type
+ 0, // [0:0] is the sub-list for extension type_name
+ 0, // [0:0] is the sub-list for extension extendee
+ 0, // [0:0] is the sub-list for field type_name
+}
+
+func init() { file_google_ads_googleads_v17_enums_product_availability_proto_init() }
+func file_google_ads_googleads_v17_enums_product_availability_proto_init() {
+ if File_google_ads_googleads_v17_enums_product_availability_proto != nil {
+ return
+ }
+ if !protoimpl.UnsafeEnabled {
+ file_google_ads_googleads_v17_enums_product_availability_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*ProductAvailabilityEnum); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ }
+ type x struct{}
+ out := protoimpl.TypeBuilder{
+ File: protoimpl.DescBuilder{
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
+ RawDescriptor: file_google_ads_googleads_v17_enums_product_availability_proto_rawDesc,
+ NumEnums: 1,
+ NumMessages: 1,
+ NumExtensions: 0,
+ NumServices: 0,
+ },
+ GoTypes: file_google_ads_googleads_v17_enums_product_availability_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_product_availability_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_product_availability_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_product_availability_proto_msgTypes,
+ }.Build()
+ File_google_ads_googleads_v17_enums_product_availability_proto = out.File
+ file_google_ads_googleads_v17_enums_product_availability_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_product_availability_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_product_availability_proto_depIdxs = nil
+}
diff --git a/enums/product_category_level.pb.go b/enums/product_category_level.pb.go
index 330013f7..a583ac85 100644
--- a/enums/product_category_level.pb.go
+++ b/enums/product_category_level.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/product_category_level.proto
+// source: google/ads/googleads/v17/enums/product_category_level.proto
package enums
@@ -87,11 +87,11 @@ func (x ProductCategoryLevelEnum_ProductCategoryLevel) String() string {
}
func (ProductCategoryLevelEnum_ProductCategoryLevel) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_product_category_level_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_product_category_level_proto_enumTypes[0].Descriptor()
}
func (ProductCategoryLevelEnum_ProductCategoryLevel) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_product_category_level_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_product_category_level_proto_enumTypes[0]
}
func (x ProductCategoryLevelEnum_ProductCategoryLevel) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x ProductCategoryLevelEnum_ProductCategoryLevel) Number() protoreflect.Enu
// Deprecated: Use ProductCategoryLevelEnum_ProductCategoryLevel.Descriptor instead.
func (ProductCategoryLevelEnum_ProductCategoryLevel) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_product_category_level_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_product_category_level_proto_rawDescGZIP(), []int{0, 0}
}
// Level of a product category.
@@ -113,7 +113,7 @@ type ProductCategoryLevelEnum struct {
func (x *ProductCategoryLevelEnum) Reset() {
*x = ProductCategoryLevelEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_product_category_level_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_product_category_level_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +126,7 @@ func (x *ProductCategoryLevelEnum) String() string {
func (*ProductCategoryLevelEnum) ProtoMessage() {}
func (x *ProductCategoryLevelEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_product_category_level_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_product_category_level_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,18 +139,18 @@ func (x *ProductCategoryLevelEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductCategoryLevelEnum.ProtoReflect.Descriptor instead.
func (*ProductCategoryLevelEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_product_category_level_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_product_category_level_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_product_category_level_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_product_category_level_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_product_category_level_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_product_category_level_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
0x79, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8c, 0x01,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8c, 0x01,
0x0a, 0x18, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
0x79, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x70, 0x0a, 0x14, 0x50, 0x72,
0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x4c, 0x65, 0x76,
@@ -161,42 +161,42 @@ var file_google_ads_googleads_v16_enums_product_category_level_proto_rawDesc = [
0x4c, 0x33, 0x10, 0x04, 0x12, 0x0a, 0x0a, 0x06, 0x4c, 0x45, 0x56, 0x45, 0x4c, 0x34, 0x10, 0x05,
0x12, 0x0a, 0x0a, 0x06, 0x4c, 0x45, 0x56, 0x45, 0x4c, 0x35, 0x10, 0x06, 0x42, 0xf3, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x19, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65,
0x67, 0x6f, 0x72, 0x79, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_product_category_level_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_product_category_level_proto_rawDescData = file_google_ads_googleads_v16_enums_product_category_level_proto_rawDesc
+ file_google_ads_googleads_v17_enums_product_category_level_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_product_category_level_proto_rawDescData = file_google_ads_googleads_v17_enums_product_category_level_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_product_category_level_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_product_category_level_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_product_category_level_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_product_category_level_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_product_category_level_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_product_category_level_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_product_category_level_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_product_category_level_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_product_category_level_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_product_category_level_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_product_category_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_product_category_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_product_category_level_proto_goTypes = []interface{}{
- (ProductCategoryLevelEnum_ProductCategoryLevel)(0), // 0: google.ads.googleads.v16.enums.ProductCategoryLevelEnum.ProductCategoryLevel
- (*ProductCategoryLevelEnum)(nil), // 1: google.ads.googleads.v16.enums.ProductCategoryLevelEnum
+var file_google_ads_googleads_v17_enums_product_category_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_product_category_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_product_category_level_proto_goTypes = []interface{}{
+ (ProductCategoryLevelEnum_ProductCategoryLevel)(0), // 0: google.ads.googleads.v17.enums.ProductCategoryLevelEnum.ProductCategoryLevel
+ (*ProductCategoryLevelEnum)(nil), // 1: google.ads.googleads.v17.enums.ProductCategoryLevelEnum
}
-var file_google_ads_googleads_v16_enums_product_category_level_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_product_category_level_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -204,13 +204,13 @@ var file_google_ads_googleads_v16_enums_product_category_level_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_product_category_level_proto_init() }
-func file_google_ads_googleads_v16_enums_product_category_level_proto_init() {
- if File_google_ads_googleads_v16_enums_product_category_level_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_product_category_level_proto_init() }
+func file_google_ads_googleads_v17_enums_product_category_level_proto_init() {
+ if File_google_ads_googleads_v17_enums_product_category_level_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_product_category_level_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_product_category_level_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductCategoryLevelEnum); i {
case 0:
return &v.state
@@ -227,19 +227,19 @@ func file_google_ads_googleads_v16_enums_product_category_level_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_product_category_level_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_product_category_level_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_product_category_level_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_product_category_level_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_product_category_level_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_product_category_level_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_product_category_level_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_product_category_level_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_product_category_level_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_product_category_level_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_product_category_level_proto = out.File
- file_google_ads_googleads_v16_enums_product_category_level_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_product_category_level_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_product_category_level_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_product_category_level_proto = out.File
+ file_google_ads_googleads_v17_enums_product_category_level_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_product_category_level_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_product_category_level_proto_depIdxs = nil
}
diff --git a/enums/product_category_state.pb.go b/enums/product_category_state.pb.go
index fa09ee76..441b4e2f 100644
--- a/enums/product_category_state.pb.go
+++ b/enums/product_category_state.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/product_category_state.proto
+// source: google/ads/googleads/v17/enums/product_category_state.proto
package enums
@@ -75,11 +75,11 @@ func (x ProductCategoryStateEnum_ProductCategoryState) String() string {
}
func (ProductCategoryStateEnum_ProductCategoryState) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_product_category_state_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_product_category_state_proto_enumTypes[0].Descriptor()
}
func (ProductCategoryStateEnum_ProductCategoryState) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_product_category_state_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_product_category_state_proto_enumTypes[0]
}
func (x ProductCategoryStateEnum_ProductCategoryState) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x ProductCategoryStateEnum_ProductCategoryState) Number() protoreflect.Enu
// Deprecated: Use ProductCategoryStateEnum_ProductCategoryState.Descriptor instead.
func (ProductCategoryStateEnum_ProductCategoryState) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_product_category_state_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_product_category_state_proto_rawDescGZIP(), []int{0, 0}
}
// State of the product category.
@@ -101,7 +101,7 @@ type ProductCategoryStateEnum struct {
func (x *ProductCategoryStateEnum) Reset() {
*x = ProductCategoryStateEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_product_category_state_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_product_category_state_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *ProductCategoryStateEnum) String() string {
func (*ProductCategoryStateEnum) ProtoMessage() {}
func (x *ProductCategoryStateEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_product_category_state_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_product_category_state_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *ProductCategoryStateEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductCategoryStateEnum.ProtoReflect.Descriptor instead.
func (*ProductCategoryStateEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_product_category_state_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_product_category_state_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_product_category_state_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_product_category_state_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_product_category_state_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_product_category_state_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6b, 0x0a,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6b, 0x0a,
0x18, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79,
0x53, 0x74, 0x61, 0x74, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4f, 0x0a, 0x14, 0x50, 0x72, 0x6f,
0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74,
@@ -147,42 +147,42 @@ var file_google_ads_googleads_v16_enums_product_category_state_proto_rawDesc = [
0x0b, 0x0a, 0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0c, 0x0a, 0x08,
0x4f, 0x42, 0x53, 0x4f, 0x4c, 0x45, 0x54, 0x45, 0x10, 0x03, 0x42, 0xf3, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x19, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f,
0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_product_category_state_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_product_category_state_proto_rawDescData = file_google_ads_googleads_v16_enums_product_category_state_proto_rawDesc
+ file_google_ads_googleads_v17_enums_product_category_state_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_product_category_state_proto_rawDescData = file_google_ads_googleads_v17_enums_product_category_state_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_product_category_state_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_product_category_state_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_product_category_state_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_product_category_state_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_product_category_state_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_product_category_state_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_product_category_state_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_product_category_state_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_product_category_state_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_product_category_state_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_product_category_state_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_product_category_state_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_product_category_state_proto_goTypes = []interface{}{
- (ProductCategoryStateEnum_ProductCategoryState)(0), // 0: google.ads.googleads.v16.enums.ProductCategoryStateEnum.ProductCategoryState
- (*ProductCategoryStateEnum)(nil), // 1: google.ads.googleads.v16.enums.ProductCategoryStateEnum
+var file_google_ads_googleads_v17_enums_product_category_state_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_product_category_state_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_product_category_state_proto_goTypes = []interface{}{
+ (ProductCategoryStateEnum_ProductCategoryState)(0), // 0: google.ads.googleads.v17.enums.ProductCategoryStateEnum.ProductCategoryState
+ (*ProductCategoryStateEnum)(nil), // 1: google.ads.googleads.v17.enums.ProductCategoryStateEnum
}
-var file_google_ads_googleads_v16_enums_product_category_state_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_product_category_state_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_enums_product_category_state_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_product_category_state_proto_init() }
-func file_google_ads_googleads_v16_enums_product_category_state_proto_init() {
- if File_google_ads_googleads_v16_enums_product_category_state_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_product_category_state_proto_init() }
+func file_google_ads_googleads_v17_enums_product_category_state_proto_init() {
+ if File_google_ads_googleads_v17_enums_product_category_state_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_product_category_state_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_product_category_state_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductCategoryStateEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_enums_product_category_state_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_product_category_state_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_product_category_state_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_product_category_state_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_product_category_state_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_product_category_state_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_product_category_state_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_product_category_state_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_product_category_state_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_product_category_state_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_product_category_state_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_product_category_state_proto = out.File
- file_google_ads_googleads_v16_enums_product_category_state_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_product_category_state_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_product_category_state_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_product_category_state_proto = out.File
+ file_google_ads_googleads_v17_enums_product_category_state_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_product_category_state_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_product_category_state_proto_depIdxs = nil
}
diff --git a/enums/product_channel.pb.go b/enums/product_channel.pb.go
index 1a263548..3a59ab3c 100644
--- a/enums/product_channel.pb.go
+++ b/enums/product_channel.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/product_channel.proto
+// source: google/ads/googleads/v17/enums/product_channel.proto
package enums
@@ -75,11 +75,11 @@ func (x ProductChannelEnum_ProductChannel) String() string {
}
func (ProductChannelEnum_ProductChannel) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_product_channel_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_product_channel_proto_enumTypes[0].Descriptor()
}
func (ProductChannelEnum_ProductChannel) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_product_channel_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_product_channel_proto_enumTypes[0]
}
func (x ProductChannelEnum_ProductChannel) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x ProductChannelEnum_ProductChannel) Number() protoreflect.EnumNumber {
// Deprecated: Use ProductChannelEnum_ProductChannel.Descriptor instead.
func (ProductChannelEnum_ProductChannel) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_product_channel_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_product_channel_proto_rawDescGZIP(), []int{0, 0}
}
// Locality of a product offer.
@@ -101,7 +101,7 @@ type ProductChannelEnum struct {
func (x *ProductChannelEnum) Reset() {
*x = ProductChannelEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_product_channel_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_product_channel_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *ProductChannelEnum) String() string {
func (*ProductChannelEnum) ProtoMessage() {}
func (x *ProductChannelEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_product_channel_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_product_channel_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,17 +127,17 @@ func (x *ProductChannelEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductChannelEnum.ProtoReflect.Descriptor instead.
func (*ProductChannelEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_product_channel_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_product_channel_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_product_channel_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_product_channel_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_product_channel_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_product_channel_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x5b, 0x0a, 0x12, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63,
0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x45, 0x0a, 0x0e,
0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x12, 0x0f,
@@ -146,41 +146,41 @@ var file_google_ads_googleads_v16_enums_product_channel_proto_rawDesc = []byte{
0x4f, 0x4e, 0x4c, 0x49, 0x4e, 0x45, 0x10, 0x02, 0x12, 0x09, 0x0a, 0x05, 0x4c, 0x4f, 0x43, 0x41,
0x4c, 0x10, 0x03, 0x42, 0xed, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x50, 0x72, 0x6f, 0x64,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x50, 0x72, 0x6f, 0x64,
0x75, 0x63, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_product_channel_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_product_channel_proto_rawDescData = file_google_ads_googleads_v16_enums_product_channel_proto_rawDesc
+ file_google_ads_googleads_v17_enums_product_channel_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_product_channel_proto_rawDescData = file_google_ads_googleads_v17_enums_product_channel_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_product_channel_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_product_channel_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_product_channel_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_product_channel_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_product_channel_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_product_channel_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_product_channel_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_product_channel_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_product_channel_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_product_channel_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_product_channel_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_product_channel_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_product_channel_proto_goTypes = []interface{}{
- (ProductChannelEnum_ProductChannel)(0), // 0: google.ads.googleads.v16.enums.ProductChannelEnum.ProductChannel
- (*ProductChannelEnum)(nil), // 1: google.ads.googleads.v16.enums.ProductChannelEnum
+var file_google_ads_googleads_v17_enums_product_channel_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_product_channel_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_product_channel_proto_goTypes = []interface{}{
+ (ProductChannelEnum_ProductChannel)(0), // 0: google.ads.googleads.v17.enums.ProductChannelEnum.ProductChannel
+ (*ProductChannelEnum)(nil), // 1: google.ads.googleads.v17.enums.ProductChannelEnum
}
-var file_google_ads_googleads_v16_enums_product_channel_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_product_channel_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -188,13 +188,13 @@ var file_google_ads_googleads_v16_enums_product_channel_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_product_channel_proto_init() }
-func file_google_ads_googleads_v16_enums_product_channel_proto_init() {
- if File_google_ads_googleads_v16_enums_product_channel_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_product_channel_proto_init() }
+func file_google_ads_googleads_v17_enums_product_channel_proto_init() {
+ if File_google_ads_googleads_v17_enums_product_channel_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_product_channel_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_product_channel_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductChannelEnum); i {
case 0:
return &v.state
@@ -211,19 +211,19 @@ func file_google_ads_googleads_v16_enums_product_channel_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_product_channel_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_product_channel_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_product_channel_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_product_channel_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_product_channel_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_product_channel_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_product_channel_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_product_channel_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_product_channel_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_product_channel_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_product_channel_proto = out.File
- file_google_ads_googleads_v16_enums_product_channel_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_product_channel_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_product_channel_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_product_channel_proto = out.File
+ file_google_ads_googleads_v17_enums_product_channel_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_product_channel_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_product_channel_proto_depIdxs = nil
}
diff --git a/enums/product_channel_exclusivity.pb.go b/enums/product_channel_exclusivity.pb.go
index 960b1140..84b6c7da 100644
--- a/enums/product_channel_exclusivity.pb.go
+++ b/enums/product_channel_exclusivity.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/product_channel_exclusivity.proto
+// source: google/ads/googleads/v17/enums/product_channel_exclusivity.proto
package enums
@@ -77,11 +77,11 @@ func (x ProductChannelExclusivityEnum_ProductChannelExclusivity) String() string
}
func (ProductChannelExclusivityEnum_ProductChannelExclusivity) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_enumTypes[0].Descriptor()
}
func (ProductChannelExclusivityEnum_ProductChannelExclusivity) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_enumTypes[0]
}
func (x ProductChannelExclusivityEnum_ProductChannelExclusivity) Number() protoreflect.EnumNumber {
@@ -90,7 +90,7 @@ func (x ProductChannelExclusivityEnum_ProductChannelExclusivity) Number() protor
// Deprecated: Use ProductChannelExclusivityEnum_ProductChannelExclusivity.Descriptor instead.
func (ProductChannelExclusivityEnum_ProductChannelExclusivity) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_rawDescGZIP(), []int{0, 0}
}
// Availability of a product offer.
@@ -103,7 +103,7 @@ type ProductChannelExclusivityEnum struct {
func (x *ProductChannelExclusivityEnum) Reset() {
*x = ProductChannelExclusivityEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -116,7 +116,7 @@ func (x *ProductChannelExclusivityEnum) String() string {
func (*ProductChannelExclusivityEnum) ProtoMessage() {}
func (x *ProductChannelExclusivityEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -129,18 +129,18 @@ func (x *ProductChannelExclusivityEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductChannelExclusivityEnum.ProtoReflect.Descriptor instead.
func (*ProductChannelExclusivityEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_product_channel_exclusivity_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_product_channel_exclusivity_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c,
0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x69, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x81, 0x01, 0x0a, 0x1d, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x68,
0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x76, 0x69, 0x74, 0x79,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x60, 0x0a, 0x19, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43,
@@ -151,42 +151,42 @@ var file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_rawDes
0x4c, 0x10, 0x02, 0x12, 0x11, 0x0a, 0x0d, 0x4d, 0x55, 0x4c, 0x54, 0x49, 0x5f, 0x43, 0x48, 0x41,
0x4e, 0x4e, 0x45, 0x4c, 0x10, 0x03, 0x42, 0xf8, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x50,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x50,
0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x45, 0x78, 0x63,
0x6c, 0x75, 0x73, 0x69, 0x76, 0x69, 0x74, 0x79, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_rawDescData = file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_rawDesc
+ file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_rawDescData = file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_goTypes = []interface{}{
- (ProductChannelExclusivityEnum_ProductChannelExclusivity)(0), // 0: google.ads.googleads.v16.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity
- (*ProductChannelExclusivityEnum)(nil), // 1: google.ads.googleads.v16.enums.ProductChannelExclusivityEnum
+var file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_goTypes = []interface{}{
+ (ProductChannelExclusivityEnum_ProductChannelExclusivity)(0), // 0: google.ads.googleads.v17.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity
+ (*ProductChannelExclusivityEnum)(nil), // 1: google.ads.googleads.v17.enums.ProductChannelExclusivityEnum
}
-var file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -194,13 +194,13 @@ var file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_init() }
-func file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_init() {
- if File_google_ads_googleads_v16_enums_product_channel_exclusivity_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_init() }
+func file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_init() {
+ if File_google_ads_googleads_v17_enums_product_channel_exclusivity_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductChannelExclusivityEnum); i {
case 0:
return &v.state
@@ -217,19 +217,19 @@ func file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_product_channel_exclusivity_proto = out.File
- file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_product_channel_exclusivity_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_product_channel_exclusivity_proto = out.File
+ file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_product_channel_exclusivity_proto_depIdxs = nil
}
diff --git a/enums/product_condition.pb.go b/enums/product_condition.pb.go
index 7f398b83..5774d234 100644
--- a/enums/product_condition.pb.go
+++ b/enums/product_condition.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/product_condition.proto
+// source: google/ads/googleads/v17/enums/product_condition.proto
package enums
@@ -79,11 +79,11 @@ func (x ProductConditionEnum_ProductCondition) String() string {
}
func (ProductConditionEnum_ProductCondition) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_product_condition_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_product_condition_proto_enumTypes[0].Descriptor()
}
func (ProductConditionEnum_ProductCondition) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_product_condition_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_product_condition_proto_enumTypes[0]
}
func (x ProductConditionEnum_ProductCondition) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x ProductConditionEnum_ProductCondition) Number() protoreflect.EnumNumber
// Deprecated: Use ProductConditionEnum_ProductCondition.Descriptor instead.
func (ProductConditionEnum_ProductCondition) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_product_condition_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_product_condition_proto_rawDescGZIP(), []int{0, 0}
}
// Condition of a product offer.
@@ -105,7 +105,7 @@ type ProductConditionEnum struct {
func (x *ProductConditionEnum) Reset() {
*x = ProductConditionEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_product_condition_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_product_condition_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *ProductConditionEnum) String() string {
func (*ProductConditionEnum) ProtoMessage() {}
func (x *ProductConditionEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_product_condition_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_product_condition_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *ProductConditionEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductConditionEnum.ProtoReflect.Descriptor instead.
func (*ProductConditionEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_product_condition_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_product_condition_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_product_condition_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_product_condition_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_product_condition_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_product_condition_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69,
0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6c, 0x0a, 0x14, 0x50, 0x72, 0x6f, 0x64,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6c, 0x0a, 0x14, 0x50, 0x72, 0x6f, 0x64,
0x75, 0x63, 0x74, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x54, 0x0a, 0x10, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x6f, 0x6e, 0x64, 0x69,
0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46,
@@ -151,41 +151,41 @@ var file_google_ads_googleads_v16_enums_product_condition_proto_rawDesc = []byte
0x45, 0x46, 0x55, 0x52, 0x42, 0x49, 0x53, 0x48, 0x45, 0x44, 0x10, 0x04, 0x12, 0x08, 0x0a, 0x04,
0x55, 0x53, 0x45, 0x44, 0x10, 0x05, 0x42, 0xef, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x50,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x50,
0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_product_condition_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_product_condition_proto_rawDescData = file_google_ads_googleads_v16_enums_product_condition_proto_rawDesc
+ file_google_ads_googleads_v17_enums_product_condition_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_product_condition_proto_rawDescData = file_google_ads_googleads_v17_enums_product_condition_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_product_condition_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_product_condition_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_product_condition_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_product_condition_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_product_condition_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_product_condition_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_product_condition_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_product_condition_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_product_condition_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_product_condition_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_product_condition_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_product_condition_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_product_condition_proto_goTypes = []interface{}{
- (ProductConditionEnum_ProductCondition)(0), // 0: google.ads.googleads.v16.enums.ProductConditionEnum.ProductCondition
- (*ProductConditionEnum)(nil), // 1: google.ads.googleads.v16.enums.ProductConditionEnum
+var file_google_ads_googleads_v17_enums_product_condition_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_product_condition_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_product_condition_proto_goTypes = []interface{}{
+ (ProductConditionEnum_ProductCondition)(0), // 0: google.ads.googleads.v17.enums.ProductConditionEnum.ProductCondition
+ (*ProductConditionEnum)(nil), // 1: google.ads.googleads.v17.enums.ProductConditionEnum
}
-var file_google_ads_googleads_v16_enums_product_condition_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_product_condition_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -193,13 +193,13 @@ var file_google_ads_googleads_v16_enums_product_condition_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_product_condition_proto_init() }
-func file_google_ads_googleads_v16_enums_product_condition_proto_init() {
- if File_google_ads_googleads_v16_enums_product_condition_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_product_condition_proto_init() }
+func file_google_ads_googleads_v17_enums_product_condition_proto_init() {
+ if File_google_ads_googleads_v17_enums_product_condition_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_product_condition_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_product_condition_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductConditionEnum); i {
case 0:
return &v.state
@@ -216,19 +216,19 @@ func file_google_ads_googleads_v16_enums_product_condition_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_product_condition_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_product_condition_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_product_condition_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_product_condition_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_product_condition_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_product_condition_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_product_condition_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_product_condition_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_product_condition_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_product_condition_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_product_condition_proto = out.File
- file_google_ads_googleads_v16_enums_product_condition_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_product_condition_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_product_condition_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_product_condition_proto = out.File
+ file_google_ads_googleads_v17_enums_product_condition_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_product_condition_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_product_condition_proto_depIdxs = nil
}
diff --git a/enums/product_custom_attribute_index.pb.go b/enums/product_custom_attribute_index.pb.go
index fbaa398d..e201f632 100644
--- a/enums/product_custom_attribute_index.pb.go
+++ b/enums/product_custom_attribute_index.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/product_custom_attribute_index.proto
+// source: google/ads/googleads/v17/enums/product_custom_attribute_index.proto
package enums
@@ -87,11 +87,11 @@ func (x ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex) String() st
}
func (ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_enumTypes[0].Descriptor()
}
func (ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_enumTypes[0]
}
func (x ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex) Number() pr
// Deprecated: Use ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex.Descriptor instead.
func (ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the index of the product custom attribute.
@@ -113,7 +113,7 @@ type ProductCustomAttributeIndexEnum struct {
func (x *ProductCustomAttributeIndexEnum) Reset() {
*x = ProductCustomAttributeIndexEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +126,7 @@ func (x *ProductCustomAttributeIndexEnum) String() string {
func (*ProductCustomAttributeIndexEnum) ProtoMessage() {}
func (x *ProductCustomAttributeIndexEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,18 +139,18 @@ func (x *ProductCustomAttributeIndexEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductCustomAttributeIndexEnum.ProtoReflect.Descriptor instead.
func (*ProductCustomAttributeIndexEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_product_custom_attribute_index_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_product_custom_attribute_index_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f,
0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x9a, 0x01, 0x0a, 0x1f, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63,
0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
0x49, 0x6e, 0x64, 0x65, 0x78, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x77, 0x0a, 0x1b, 0x50, 0x72, 0x6f,
@@ -163,42 +163,42 @@ var file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_raw
0x44, 0x45, 0x58, 0x33, 0x10, 0x0a, 0x12, 0x0a, 0x0a, 0x06, 0x49, 0x4e, 0x44, 0x45, 0x58, 0x34,
0x10, 0x0b, 0x42, 0xfa, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x50, 0x72, 0x6f, 0x64, 0x75,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x50, 0x72, 0x6f, 0x64, 0x75,
0x63, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74,
0x65, 0x49, 0x6e, 0x64, 0x65, 0x78, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_rawDescData = file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_rawDesc
+ file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_rawDescData = file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_goTypes = []interface{}{
- (ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex)(0), // 0: google.ads.googleads.v16.enums.ProductCustomAttributeIndexEnum.ProductCustomAttributeIndex
- (*ProductCustomAttributeIndexEnum)(nil), // 1: google.ads.googleads.v16.enums.ProductCustomAttributeIndexEnum
+var file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_goTypes = []interface{}{
+ (ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex)(0), // 0: google.ads.googleads.v17.enums.ProductCustomAttributeIndexEnum.ProductCustomAttributeIndex
+ (*ProductCustomAttributeIndexEnum)(nil), // 1: google.ads.googleads.v17.enums.ProductCustomAttributeIndexEnum
}
-var file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -206,13 +206,13 @@ var file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_init() }
-func file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_init() {
- if File_google_ads_googleads_v16_enums_product_custom_attribute_index_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_init() }
+func file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_init() {
+ if File_google_ads_googleads_v17_enums_product_custom_attribute_index_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductCustomAttributeIndexEnum); i {
case 0:
return &v.state
@@ -229,19 +229,19 @@ func file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_product_custom_attribute_index_proto = out.File
- file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_product_custom_attribute_index_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_product_custom_attribute_index_proto = out.File
+ file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_product_custom_attribute_index_proto_depIdxs = nil
}
diff --git a/enums/product_issue_severity.pb.go b/enums/product_issue_severity.pb.go
new file mode 100644
index 00000000..6f21b46d
--- /dev/null
+++ b/enums/product_issue_severity.pb.go
@@ -0,0 +1,231 @@
+// Copyright 2024 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+// Code generated by protoc-gen-go. DO NOT EDIT.
+// versions:
+// protoc-gen-go v1.34.1
+// protoc v4.24.4
+// source: google/ads/googleads/v17/enums/product_issue_severity.proto
+
+package enums
+
+import (
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
+ reflect "reflect"
+ sync "sync"
+)
+
+const (
+ // Verify that this generated code is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
+ // Verify that runtime/protoimpl is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
+)
+
+// Product issue severity.
+type ProductIssueSeverityEnum_ProductIssueSeverity int32
+
+const (
+ // Not specified.
+ ProductIssueSeverityEnum_UNSPECIFIED ProductIssueSeverityEnum_ProductIssueSeverity = 0
+ // Used for return value only. Represents value unknown in this version.
+ ProductIssueSeverityEnum_UNKNOWN ProductIssueSeverityEnum_ProductIssueSeverity = 1
+ // The issue limits the performance of the product in ads.
+ ProductIssueSeverityEnum_WARNING ProductIssueSeverityEnum_ProductIssueSeverity = 2
+ // The issue prevents the product from showing in ads.
+ ProductIssueSeverityEnum_ERROR ProductIssueSeverityEnum_ProductIssueSeverity = 3
+)
+
+// Enum value maps for ProductIssueSeverityEnum_ProductIssueSeverity.
+var (
+ ProductIssueSeverityEnum_ProductIssueSeverity_name = map[int32]string{
+ 0: "UNSPECIFIED",
+ 1: "UNKNOWN",
+ 2: "WARNING",
+ 3: "ERROR",
+ }
+ ProductIssueSeverityEnum_ProductIssueSeverity_value = map[string]int32{
+ "UNSPECIFIED": 0,
+ "UNKNOWN": 1,
+ "WARNING": 2,
+ "ERROR": 3,
+ }
+)
+
+func (x ProductIssueSeverityEnum_ProductIssueSeverity) Enum() *ProductIssueSeverityEnum_ProductIssueSeverity {
+ p := new(ProductIssueSeverityEnum_ProductIssueSeverity)
+ *p = x
+ return p
+}
+
+func (x ProductIssueSeverityEnum_ProductIssueSeverity) String() string {
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+}
+
+func (ProductIssueSeverityEnum_ProductIssueSeverity) Descriptor() protoreflect.EnumDescriptor {
+ return file_google_ads_googleads_v17_enums_product_issue_severity_proto_enumTypes[0].Descriptor()
+}
+
+func (ProductIssueSeverityEnum_ProductIssueSeverity) Type() protoreflect.EnumType {
+ return &file_google_ads_googleads_v17_enums_product_issue_severity_proto_enumTypes[0]
+}
+
+func (x ProductIssueSeverityEnum_ProductIssueSeverity) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
+// Deprecated: Use ProductIssueSeverityEnum_ProductIssueSeverity.Descriptor instead.
+func (ProductIssueSeverityEnum_ProductIssueSeverity) EnumDescriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_enums_product_issue_severity_proto_rawDescGZIP(), []int{0, 0}
+}
+
+// The severity of a product issue.
+type ProductIssueSeverityEnum struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+}
+
+func (x *ProductIssueSeverityEnum) Reset() {
+ *x = ProductIssueSeverityEnum{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_google_ads_googleads_v17_enums_product_issue_severity_proto_msgTypes[0]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *ProductIssueSeverityEnum) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ProductIssueSeverityEnum) ProtoMessage() {}
+
+func (x *ProductIssueSeverityEnum) ProtoReflect() protoreflect.Message {
+ mi := &file_google_ads_googleads_v17_enums_product_issue_severity_proto_msgTypes[0]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use ProductIssueSeverityEnum.ProtoReflect.Descriptor instead.
+func (*ProductIssueSeverityEnum) Descriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_enums_product_issue_severity_proto_rawDescGZIP(), []int{0}
+}
+
+var File_google_ads_googleads_v17_enums_product_issue_severity_proto protoreflect.FileDescriptor
+
+var file_google_ads_googleads_v17_enums_product_issue_severity_proto_rawDesc = []byte{
+ 0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x69, 0x73, 0x73, 0x75, 0x65, 0x5f, 0x73,
+ 0x65, 0x76, 0x65, 0x72, 0x69, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x68, 0x0a,
+ 0x18, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x73, 0x73, 0x75, 0x65, 0x53, 0x65, 0x76,
+ 0x65, 0x72, 0x69, 0x74, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4c, 0x0a, 0x14, 0x50, 0x72, 0x6f,
+ 0x64, 0x75, 0x63, 0x74, 0x49, 0x73, 0x73, 0x75, 0x65, 0x53, 0x65, 0x76, 0x65, 0x72, 0x69, 0x74,
+ 0x79, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44,
+ 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12,
+ 0x0b, 0x0a, 0x07, 0x57, 0x41, 0x52, 0x4e, 0x49, 0x4e, 0x47, 0x10, 0x02, 0x12, 0x09, 0x0a, 0x05,
+ 0x45, 0x52, 0x52, 0x4f, 0x52, 0x10, 0x03, 0x42, 0xf3, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19,
+ 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x73, 0x73, 0x75, 0x65, 0x53, 0x65, 0x76, 0x65,
+ 0x72, 0x69, 0x74, 0x79, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
+ 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
+ 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
+ 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x72, 0x6f, 0x74, 0x6f, 0x33,
+}
+
+var (
+ file_google_ads_googleads_v17_enums_product_issue_severity_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_product_issue_severity_proto_rawDescData = file_google_ads_googleads_v17_enums_product_issue_severity_proto_rawDesc
+)
+
+func file_google_ads_googleads_v17_enums_product_issue_severity_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_product_issue_severity_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_product_issue_severity_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_product_issue_severity_proto_rawDescData)
+ })
+ return file_google_ads_googleads_v17_enums_product_issue_severity_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_enums_product_issue_severity_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_product_issue_severity_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_product_issue_severity_proto_goTypes = []interface{}{
+ (ProductIssueSeverityEnum_ProductIssueSeverity)(0), // 0: google.ads.googleads.v17.enums.ProductIssueSeverityEnum.ProductIssueSeverity
+ (*ProductIssueSeverityEnum)(nil), // 1: google.ads.googleads.v17.enums.ProductIssueSeverityEnum
+}
+var file_google_ads_googleads_v17_enums_product_issue_severity_proto_depIdxs = []int32{
+ 0, // [0:0] is the sub-list for method output_type
+ 0, // [0:0] is the sub-list for method input_type
+ 0, // [0:0] is the sub-list for extension type_name
+ 0, // [0:0] is the sub-list for extension extendee
+ 0, // [0:0] is the sub-list for field type_name
+}
+
+func init() { file_google_ads_googleads_v17_enums_product_issue_severity_proto_init() }
+func file_google_ads_googleads_v17_enums_product_issue_severity_proto_init() {
+ if File_google_ads_googleads_v17_enums_product_issue_severity_proto != nil {
+ return
+ }
+ if !protoimpl.UnsafeEnabled {
+ file_google_ads_googleads_v17_enums_product_issue_severity_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*ProductIssueSeverityEnum); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ }
+ type x struct{}
+ out := protoimpl.TypeBuilder{
+ File: protoimpl.DescBuilder{
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
+ RawDescriptor: file_google_ads_googleads_v17_enums_product_issue_severity_proto_rawDesc,
+ NumEnums: 1,
+ NumMessages: 1,
+ NumExtensions: 0,
+ NumServices: 0,
+ },
+ GoTypes: file_google_ads_googleads_v17_enums_product_issue_severity_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_product_issue_severity_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_product_issue_severity_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_product_issue_severity_proto_msgTypes,
+ }.Build()
+ File_google_ads_googleads_v17_enums_product_issue_severity_proto = out.File
+ file_google_ads_googleads_v17_enums_product_issue_severity_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_product_issue_severity_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_product_issue_severity_proto_depIdxs = nil
+}
diff --git a/enums/product_link_invitation_status.pb.go b/enums/product_link_invitation_status.pb.go
index 769bd995..10ed47b9 100644
--- a/enums/product_link_invitation_status.pb.go
+++ b/enums/product_link_invitation_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/product_link_invitation_status.proto
+// source: google/ads/googleads/v17/enums/product_link_invitation_status.proto
package enums
@@ -95,11 +95,11 @@ func (x ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus) String() st
}
func (ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_enumTypes[0].Descriptor()
}
func (ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_enumTypes[0]
}
func (x ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus) Number() protoreflect.EnumNumber {
@@ -108,7 +108,7 @@ func (x ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus) Number() pr
// Deprecated: Use ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus.Descriptor instead.
func (ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible statuses of a product link
@@ -122,7 +122,7 @@ type ProductLinkInvitationStatusEnum struct {
func (x *ProductLinkInvitationStatusEnum) Reset() {
*x = ProductLinkInvitationStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -135,7 +135,7 @@ func (x *ProductLinkInvitationStatusEnum) String() string {
func (*ProductLinkInvitationStatusEnum) ProtoMessage() {}
func (x *ProductLinkInvitationStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -148,18 +148,18 @@ func (x *ProductLinkInvitationStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductLinkInvitationStatusEnum.ProtoReflect.Descriptor instead.
func (*ProductLinkInvitationStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_product_link_invitation_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_product_link_invitation_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x69, 0x6e,
0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xba, 0x01, 0x0a, 0x1f, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63,
0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x96, 0x01, 0x0a, 0x1b, 0x50, 0x72,
@@ -174,42 +174,42 @@ var file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_raw
0x54, 0x45, 0x44, 0x10, 0x06, 0x12, 0x0b, 0x0a, 0x07, 0x45, 0x58, 0x50, 0x49, 0x52, 0x45, 0x44,
0x10, 0x07, 0x42, 0xfa, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x50, 0x72, 0x6f, 0x64, 0x75,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x50, 0x72, 0x6f, 0x64, 0x75,
0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_rawDescData = file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_rawDescData = file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_goTypes = []interface{}{
- (ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus)(0), // 0: google.ads.googleads.v16.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus
- (*ProductLinkInvitationStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.ProductLinkInvitationStatusEnum
+var file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_goTypes = []interface{}{
+ (ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus)(0), // 0: google.ads.googleads.v17.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus
+ (*ProductLinkInvitationStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.ProductLinkInvitationStatusEnum
}
-var file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -217,13 +217,13 @@ var file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_init() }
-func file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_init() {
- if File_google_ads_googleads_v16_enums_product_link_invitation_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_init() }
+func file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_product_link_invitation_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductLinkInvitationStatusEnum); i {
case 0:
return &v.state
@@ -240,19 +240,19 @@ func file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_product_link_invitation_status_proto = out.File
- file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_product_link_invitation_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_product_link_invitation_status_proto = out.File
+ file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_product_link_invitation_status_proto_depIdxs = nil
}
diff --git a/enums/product_status.pb.go b/enums/product_status.pb.go
new file mode 100644
index 00000000..b76f3d73
--- /dev/null
+++ b/enums/product_status.pb.go
@@ -0,0 +1,236 @@
+// Copyright 2024 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+// Code generated by protoc-gen-go. DO NOT EDIT.
+// versions:
+// protoc-gen-go v1.34.1
+// protoc v4.24.4
+// source: google/ads/googleads/v17/enums/product_status.proto
+
+package enums
+
+import (
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
+ reflect "reflect"
+ sync "sync"
+)
+
+const (
+ // Verify that this generated code is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
+ // Verify that runtime/protoimpl is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
+)
+
+// Enum describing the status of a product.
+type ProductStatusEnum_ProductStatus int32
+
+const (
+ // Not specified.
+ ProductStatusEnum_UNSPECIFIED ProductStatusEnum_ProductStatus = 0
+ // Used for return value only. Represents values unknown in this version.
+ ProductStatusEnum_UNKNOWN ProductStatusEnum_ProductStatus = 1
+ // The product cannot show in ads.
+ ProductStatusEnum_NOT_ELIGIBLE ProductStatusEnum_ProductStatus = 2
+ // The product can show in ads but may be limited in where and when it can
+ // show due to identified issues.
+ ProductStatusEnum_ELIGIBLE_LIMITED ProductStatusEnum_ProductStatus = 3
+ // The product can show in ads.
+ ProductStatusEnum_ELIGIBLE ProductStatusEnum_ProductStatus = 4
+)
+
+// Enum value maps for ProductStatusEnum_ProductStatus.
+var (
+ ProductStatusEnum_ProductStatus_name = map[int32]string{
+ 0: "UNSPECIFIED",
+ 1: "UNKNOWN",
+ 2: "NOT_ELIGIBLE",
+ 3: "ELIGIBLE_LIMITED",
+ 4: "ELIGIBLE",
+ }
+ ProductStatusEnum_ProductStatus_value = map[string]int32{
+ "UNSPECIFIED": 0,
+ "UNKNOWN": 1,
+ "NOT_ELIGIBLE": 2,
+ "ELIGIBLE_LIMITED": 3,
+ "ELIGIBLE": 4,
+ }
+)
+
+func (x ProductStatusEnum_ProductStatus) Enum() *ProductStatusEnum_ProductStatus {
+ p := new(ProductStatusEnum_ProductStatus)
+ *p = x
+ return p
+}
+
+func (x ProductStatusEnum_ProductStatus) String() string {
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+}
+
+func (ProductStatusEnum_ProductStatus) Descriptor() protoreflect.EnumDescriptor {
+ return file_google_ads_googleads_v17_enums_product_status_proto_enumTypes[0].Descriptor()
+}
+
+func (ProductStatusEnum_ProductStatus) Type() protoreflect.EnumType {
+ return &file_google_ads_googleads_v17_enums_product_status_proto_enumTypes[0]
+}
+
+func (x ProductStatusEnum_ProductStatus) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
+// Deprecated: Use ProductStatusEnum_ProductStatus.Descriptor instead.
+func (ProductStatusEnum_ProductStatus) EnumDescriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_enums_product_status_proto_rawDescGZIP(), []int{0, 0}
+}
+
+// The status of a product indicating whether it can show in ads.
+type ProductStatusEnum struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+}
+
+func (x *ProductStatusEnum) Reset() {
+ *x = ProductStatusEnum{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_google_ads_googleads_v17_enums_product_status_proto_msgTypes[0]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *ProductStatusEnum) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ProductStatusEnum) ProtoMessage() {}
+
+func (x *ProductStatusEnum) ProtoReflect() protoreflect.Message {
+ mi := &file_google_ads_googleads_v17_enums_product_status_proto_msgTypes[0]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use ProductStatusEnum.ProtoReflect.Descriptor instead.
+func (*ProductStatusEnum) Descriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_enums_product_status_proto_rawDescGZIP(), []int{0}
+}
+
+var File_google_ads_googleads_v17_enums_product_status_proto protoreflect.FileDescriptor
+
+var file_google_ads_googleads_v17_enums_product_status_proto_rawDesc = []byte{
+ 0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e,
+ 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
+ 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x78, 0x0a, 0x11, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
+ 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x63, 0x0a, 0x0d, 0x50, 0x72,
+ 0x6f, 0x64, 0x75, 0x63, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0f, 0x0a, 0x0b, 0x55,
+ 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07,
+ 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x10, 0x0a, 0x0c, 0x4e, 0x4f, 0x54,
+ 0x5f, 0x45, 0x4c, 0x49, 0x47, 0x49, 0x42, 0x4c, 0x45, 0x10, 0x02, 0x12, 0x14, 0x0a, 0x10, 0x45,
+ 0x4c, 0x49, 0x47, 0x49, 0x42, 0x4c, 0x45, 0x5f, 0x4c, 0x49, 0x4d, 0x49, 0x54, 0x45, 0x44, 0x10,
+ 0x03, 0x12, 0x0c, 0x0a, 0x08, 0x45, 0x4c, 0x49, 0x47, 0x49, 0x42, 0x4c, 0x45, 0x10, 0x04, 0x42,
+ 0xec, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
+ 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x53,
+ 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
+ 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
+ 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+}
+
+var (
+ file_google_ads_googleads_v17_enums_product_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_product_status_proto_rawDescData = file_google_ads_googleads_v17_enums_product_status_proto_rawDesc
+)
+
+func file_google_ads_googleads_v17_enums_product_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_product_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_product_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_product_status_proto_rawDescData)
+ })
+ return file_google_ads_googleads_v17_enums_product_status_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_enums_product_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_product_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_product_status_proto_goTypes = []interface{}{
+ (ProductStatusEnum_ProductStatus)(0), // 0: google.ads.googleads.v17.enums.ProductStatusEnum.ProductStatus
+ (*ProductStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.ProductStatusEnum
+}
+var file_google_ads_googleads_v17_enums_product_status_proto_depIdxs = []int32{
+ 0, // [0:0] is the sub-list for method output_type
+ 0, // [0:0] is the sub-list for method input_type
+ 0, // [0:0] is the sub-list for extension type_name
+ 0, // [0:0] is the sub-list for extension extendee
+ 0, // [0:0] is the sub-list for field type_name
+}
+
+func init() { file_google_ads_googleads_v17_enums_product_status_proto_init() }
+func file_google_ads_googleads_v17_enums_product_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_product_status_proto != nil {
+ return
+ }
+ if !protoimpl.UnsafeEnabled {
+ file_google_ads_googleads_v17_enums_product_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*ProductStatusEnum); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ }
+ type x struct{}
+ out := protoimpl.TypeBuilder{
+ File: protoimpl.DescBuilder{
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
+ RawDescriptor: file_google_ads_googleads_v17_enums_product_status_proto_rawDesc,
+ NumEnums: 1,
+ NumMessages: 1,
+ NumExtensions: 0,
+ NumServices: 0,
+ },
+ GoTypes: file_google_ads_googleads_v17_enums_product_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_product_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_product_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_product_status_proto_msgTypes,
+ }.Build()
+ File_google_ads_googleads_v17_enums_product_status_proto = out.File
+ file_google_ads_googleads_v17_enums_product_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_product_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_product_status_proto_depIdxs = nil
+}
diff --git a/enums/product_type_level.pb.go b/enums/product_type_level.pb.go
index 49800197..1d0666e3 100644
--- a/enums/product_type_level.pb.go
+++ b/enums/product_type_level.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/product_type_level.proto
+// source: google/ads/googleads/v17/enums/product_type_level.proto
package enums
@@ -87,11 +87,11 @@ func (x ProductTypeLevelEnum_ProductTypeLevel) String() string {
}
func (ProductTypeLevelEnum_ProductTypeLevel) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_product_type_level_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_product_type_level_proto_enumTypes[0].Descriptor()
}
func (ProductTypeLevelEnum_ProductTypeLevel) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_product_type_level_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_product_type_level_proto_enumTypes[0]
}
func (x ProductTypeLevelEnum_ProductTypeLevel) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x ProductTypeLevelEnum_ProductTypeLevel) Number() protoreflect.EnumNumber
// Deprecated: Use ProductTypeLevelEnum_ProductTypeLevel.Descriptor instead.
func (ProductTypeLevelEnum_ProductTypeLevel) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_product_type_level_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_product_type_level_proto_rawDescGZIP(), []int{0, 0}
}
// Level of the type of a product offer.
@@ -113,7 +113,7 @@ type ProductTypeLevelEnum struct {
func (x *ProductTypeLevelEnum) Reset() {
*x = ProductTypeLevelEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_product_type_level_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_product_type_level_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +126,7 @@ func (x *ProductTypeLevelEnum) String() string {
func (*ProductTypeLevelEnum) ProtoMessage() {}
func (x *ProductTypeLevelEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_product_type_level_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_product_type_level_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,18 +139,18 @@ func (x *ProductTypeLevelEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductTypeLevelEnum.ProtoReflect.Descriptor instead.
func (*ProductTypeLevelEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_product_type_level_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_product_type_level_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_product_type_level_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_product_type_level_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_product_type_level_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_product_type_level_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6c, 0x65,
0x76, 0x65, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x84, 0x01, 0x0a, 0x14, 0x50, 0x72,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x84, 0x01, 0x0a, 0x14, 0x50, 0x72,
0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0x6c, 0x0a, 0x10, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70,
0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
@@ -161,41 +161,41 @@ var file_google_ads_googleads_v16_enums_product_type_level_proto_rawDesc = []byt
0x4c, 0x34, 0x10, 0x0a, 0x12, 0x0a, 0x0a, 0x06, 0x4c, 0x45, 0x56, 0x45, 0x4c, 0x35, 0x10, 0x0b,
0x42, 0xef, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
0x54, 0x79, 0x70, 0x65, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_product_type_level_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_product_type_level_proto_rawDescData = file_google_ads_googleads_v16_enums_product_type_level_proto_rawDesc
+ file_google_ads_googleads_v17_enums_product_type_level_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_product_type_level_proto_rawDescData = file_google_ads_googleads_v17_enums_product_type_level_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_product_type_level_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_product_type_level_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_product_type_level_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_product_type_level_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_product_type_level_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_product_type_level_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_product_type_level_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_product_type_level_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_product_type_level_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_product_type_level_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_product_type_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_product_type_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_product_type_level_proto_goTypes = []interface{}{
- (ProductTypeLevelEnum_ProductTypeLevel)(0), // 0: google.ads.googleads.v16.enums.ProductTypeLevelEnum.ProductTypeLevel
- (*ProductTypeLevelEnum)(nil), // 1: google.ads.googleads.v16.enums.ProductTypeLevelEnum
+var file_google_ads_googleads_v17_enums_product_type_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_product_type_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_product_type_level_proto_goTypes = []interface{}{
+ (ProductTypeLevelEnum_ProductTypeLevel)(0), // 0: google.ads.googleads.v17.enums.ProductTypeLevelEnum.ProductTypeLevel
+ (*ProductTypeLevelEnum)(nil), // 1: google.ads.googleads.v17.enums.ProductTypeLevelEnum
}
-var file_google_ads_googleads_v16_enums_product_type_level_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_product_type_level_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -203,13 +203,13 @@ var file_google_ads_googleads_v16_enums_product_type_level_proto_depIdxs = []int
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_product_type_level_proto_init() }
-func file_google_ads_googleads_v16_enums_product_type_level_proto_init() {
- if File_google_ads_googleads_v16_enums_product_type_level_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_product_type_level_proto_init() }
+func file_google_ads_googleads_v17_enums_product_type_level_proto_init() {
+ if File_google_ads_googleads_v17_enums_product_type_level_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_product_type_level_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_product_type_level_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductTypeLevelEnum); i {
case 0:
return &v.state
@@ -226,19 +226,19 @@ func file_google_ads_googleads_v16_enums_product_type_level_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_product_type_level_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_product_type_level_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_product_type_level_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_product_type_level_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_product_type_level_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_product_type_level_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_product_type_level_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_product_type_level_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_product_type_level_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_product_type_level_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_product_type_level_proto = out.File
- file_google_ads_googleads_v16_enums_product_type_level_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_product_type_level_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_product_type_level_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_product_type_level_proto = out.File
+ file_google_ads_googleads_v17_enums_product_type_level_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_product_type_level_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_product_type_level_proto_depIdxs = nil
}
diff --git a/enums/promotion_extension_discount_modifier.pb.go b/enums/promotion_extension_discount_modifier.pb.go
index c99b8920..ccbddd4b 100644
--- a/enums/promotion_extension_discount_modifier.pb.go
+++ b/enums/promotion_extension_discount_modifier.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/promotion_extension_discount_modifier.proto
+// source: google/ads/googleads/v17/enums/promotion_extension_discount_modifier.proto
package enums
@@ -71,11 +71,11 @@ func (x PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifie
}
func (PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_enumTypes[0].Descriptor()
}
func (PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_enumTypes[0]
}
func (x PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifie
// Deprecated: Use PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier.Descriptor instead.
func (PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible a promotion extension
@@ -98,7 +98,7 @@ type PromotionExtensionDiscountModifierEnum struct {
func (x *PromotionExtensionDiscountModifierEnum) Reset() {
*x = PromotionExtensionDiscountModifierEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -111,7 +111,7 @@ func (x *PromotionExtensionDiscountModifierEnum) String() string {
func (*PromotionExtensionDiscountModifierEnum) ProtoMessage() {}
func (x *PromotionExtensionDiscountModifierEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -124,19 +124,19 @@ func (x *PromotionExtensionDiscountModifierEnum) ProtoReflect() protoreflect.Mes
// Deprecated: Use PromotionExtensionDiscountModifierEnum.ProtoReflect.Descriptor instead.
func (*PromotionExtensionDiscountModifierEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_rawDesc = []byte{
0x0a, 0x4a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6d, 0x6f,
0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x77, 0x0a, 0x26,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x77, 0x0a, 0x26,
0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
0x6f, 0x6e, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69,
0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4d, 0x0a, 0x22, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74,
@@ -146,43 +146,43 @@ var file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_pr
0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x55, 0x50,
0x5f, 0x54, 0x4f, 0x10, 0x02, 0x42, 0x81, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x27, 0x50, 0x72,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x27, 0x50, 0x72,
0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
0x44, 0x69, 0x73, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_rawDescData = file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_rawDesc
+ file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_rawDescData = file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_goTypes = []interface{}{
- (PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier)(0), // 0: google.ads.googleads.v16.enums.PromotionExtensionDiscountModifierEnum.PromotionExtensionDiscountModifier
- (*PromotionExtensionDiscountModifierEnum)(nil), // 1: google.ads.googleads.v16.enums.PromotionExtensionDiscountModifierEnum
+var file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_goTypes = []interface{}{
+ (PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier)(0), // 0: google.ads.googleads.v17.enums.PromotionExtensionDiscountModifierEnum.PromotionExtensionDiscountModifier
+ (*PromotionExtensionDiscountModifierEnum)(nil), // 1: google.ads.googleads.v17.enums.PromotionExtensionDiscountModifierEnum
}
-var file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_pr
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_init() }
-func file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_init() {
- if File_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_init() }
+func file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_init() {
+ if File_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PromotionExtensionDiscountModifierEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_p
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto = out.File
- file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_promotion_extension_discount_modifier_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto = out.File
+ file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_promotion_extension_discount_modifier_proto_depIdxs = nil
}
diff --git a/enums/promotion_extension_occasion.pb.go b/enums/promotion_extension_occasion.pb.go
index cea414b2..6c3cba16 100644
--- a/enums/promotion_extension_occasion.pb.go
+++ b/enums/promotion_extension_occasion.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/promotion_extension_occasion.proto
+// source: google/ads/googleads/v17/enums/promotion_extension_occasion.proto
package enums
@@ -215,11 +215,11 @@ func (x PromotionExtensionOccasionEnum_PromotionExtensionOccasion) String() stri
}
func (PromotionExtensionOccasionEnum_PromotionExtensionOccasion) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_enumTypes[0].Descriptor()
}
func (PromotionExtensionOccasionEnum_PromotionExtensionOccasion) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_enumTypes[0]
}
func (x PromotionExtensionOccasionEnum_PromotionExtensionOccasion) Number() protoreflect.EnumNumber {
@@ -228,7 +228,7 @@ func (x PromotionExtensionOccasionEnum_PromotionExtensionOccasion) Number() prot
// Deprecated: Use PromotionExtensionOccasionEnum_PromotionExtensionOccasion.Descriptor instead.
func (PromotionExtensionOccasionEnum_PromotionExtensionOccasion) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing a promotion extension occasion.
@@ -243,7 +243,7 @@ type PromotionExtensionOccasionEnum struct {
func (x *PromotionExtensionOccasionEnum) Reset() {
*x = PromotionExtensionOccasionEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -256,7 +256,7 @@ func (x *PromotionExtensionOccasionEnum) String() string {
func (*PromotionExtensionOccasionEnum) ProtoMessage() {}
func (x *PromotionExtensionOccasionEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -269,18 +269,18 @@ func (x *PromotionExtensionOccasionEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use PromotionExtensionOccasionEnum.ProtoReflect.Descriptor instead.
func (*PromotionExtensionOccasionEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_promotion_extension_occasion_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_promotion_extension_occasion_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_rawDesc = []byte{
0x0a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x63, 0x63, 0x61, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x22, 0xbc, 0x05, 0x0a, 0x1e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f,
0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x63, 0x63, 0x61, 0x73, 0x69,
0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x99, 0x05, 0x0a, 0x1a, 0x50, 0x72, 0x6f, 0x6d, 0x6f,
@@ -327,42 +327,42 @@ var file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_rawDe
0x11, 0x0a, 0x0d, 0x59, 0x45, 0x41, 0x52, 0x5f, 0x45, 0x4e, 0x44, 0x5f, 0x47, 0x49, 0x46, 0x54,
0x10, 0x26, 0x42, 0xf9, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1f, 0x50, 0x72, 0x6f, 0x6d, 0x6f,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1f, 0x50, 0x72, 0x6f, 0x6d, 0x6f,
0x74, 0x69, 0x6f, 0x6e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x63, 0x63,
0x61, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_rawDescData = file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_rawDesc
+ file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_rawDescData = file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_goTypes = []interface{}{
- (PromotionExtensionOccasionEnum_PromotionExtensionOccasion)(0), // 0: google.ads.googleads.v16.enums.PromotionExtensionOccasionEnum.PromotionExtensionOccasion
- (*PromotionExtensionOccasionEnum)(nil), // 1: google.ads.googleads.v16.enums.PromotionExtensionOccasionEnum
+var file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_goTypes = []interface{}{
+ (PromotionExtensionOccasionEnum_PromotionExtensionOccasion)(0), // 0: google.ads.googleads.v17.enums.PromotionExtensionOccasionEnum.PromotionExtensionOccasion
+ (*PromotionExtensionOccasionEnum)(nil), // 1: google.ads.googleads.v17.enums.PromotionExtensionOccasionEnum
}
-var file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -370,13 +370,13 @@ var file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_depId
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_init() }
-func file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_init() {
- if File_google_ads_googleads_v16_enums_promotion_extension_occasion_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_init() }
+func file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_init() {
+ if File_google_ads_googleads_v17_enums_promotion_extension_occasion_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PromotionExtensionOccasionEnum); i {
case 0:
return &v.state
@@ -393,19 +393,19 @@ func file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_init
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_promotion_extension_occasion_proto = out.File
- file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_promotion_extension_occasion_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_promotion_extension_occasion_proto = out.File
+ file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_promotion_extension_occasion_proto_depIdxs = nil
}
diff --git a/enums/promotion_placeholder_field.pb.go b/enums/promotion_placeholder_field.pb.go
index 97a020f6..ebe982b3 100644
--- a/enums/promotion_placeholder_field.pb.go
+++ b/enums/promotion_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/promotion_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/promotion_placeholder_field.proto
package enums
@@ -132,11 +132,11 @@ func (x PromotionPlaceholderFieldEnum_PromotionPlaceholderField) String() string
}
func (PromotionPlaceholderFieldEnum_PromotionPlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (PromotionPlaceholderFieldEnum_PromotionPlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_enumTypes[0]
}
func (x PromotionPlaceholderFieldEnum_PromotionPlaceholderField) Number() protoreflect.EnumNumber {
@@ -145,7 +145,7 @@ func (x PromotionPlaceholderFieldEnum_PromotionPlaceholderField) Number() protor
// Deprecated: Use PromotionPlaceholderFieldEnum_PromotionPlaceholderField.Descriptor instead.
func (PromotionPlaceholderFieldEnum_PromotionPlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Promotion placeholder fields.
@@ -158,7 +158,7 @@ type PromotionPlaceholderFieldEnum struct {
func (x *PromotionPlaceholderFieldEnum) Reset() {
*x = PromotionPlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -171,7 +171,7 @@ func (x *PromotionPlaceholderFieldEnum) String() string {
func (*PromotionPlaceholderFieldEnum) ProtoMessage() {}
func (x *PromotionPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -184,18 +184,18 @@ func (x *PromotionPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use PromotionPlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*PromotionPlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_promotion_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_promotion_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65,
0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0xee, 0x02, 0x0a, 0x1d, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e,
0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0xcc, 0x02, 0x0a, 0x19, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69,
@@ -221,42 +221,42 @@ var file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_rawDes
0x10, 0x46, 0x49, 0x4e, 0x41, 0x4c, 0x5f, 0x55, 0x52, 0x4c, 0x5f, 0x53, 0x55, 0x46, 0x46, 0x49,
0x58, 0x10, 0x0f, 0x42, 0xf8, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x50, 0x72, 0x6f, 0x6d,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x50, 0x72, 0x6f, 0x6d,
0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72,
0x46, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_goTypes = []interface{}{
- (PromotionPlaceholderFieldEnum_PromotionPlaceholderField)(0), // 0: google.ads.googleads.v16.enums.PromotionPlaceholderFieldEnum.PromotionPlaceholderField
- (*PromotionPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.PromotionPlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_goTypes = []interface{}{
+ (PromotionPlaceholderFieldEnum_PromotionPlaceholderField)(0), // 0: google.ads.googleads.v17.enums.PromotionPlaceholderFieldEnum.PromotionPlaceholderField
+ (*PromotionPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.PromotionPlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -264,13 +264,13 @@ var file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_promotion_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_promotion_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PromotionPlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -287,19 +287,19 @@ func file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_promotion_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_promotion_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_promotion_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_promotion_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/proximity_radius_units.pb.go b/enums/proximity_radius_units.pb.go
index 7d8a9050..b1d5c798 100644
--- a/enums/proximity_radius_units.pb.go
+++ b/enums/proximity_radius_units.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/proximity_radius_units.proto
+// source: google/ads/googleads/v17/enums/proximity_radius_units.proto
package enums
@@ -75,11 +75,11 @@ func (x ProximityRadiusUnitsEnum_ProximityRadiusUnits) String() string {
}
func (ProximityRadiusUnitsEnum_ProximityRadiusUnits) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_proximity_radius_units_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_proximity_radius_units_proto_enumTypes[0].Descriptor()
}
func (ProximityRadiusUnitsEnum_ProximityRadiusUnits) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_proximity_radius_units_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_proximity_radius_units_proto_enumTypes[0]
}
func (x ProximityRadiusUnitsEnum_ProximityRadiusUnits) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x ProximityRadiusUnitsEnum_ProximityRadiusUnits) Number() protoreflect.Enu
// Deprecated: Use ProximityRadiusUnitsEnum_ProximityRadiusUnits.Descriptor instead.
func (ProximityRadiusUnitsEnum_ProximityRadiusUnits) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_proximity_radius_units_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_proximity_radius_units_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing unit of radius in proximity.
@@ -101,7 +101,7 @@ type ProximityRadiusUnitsEnum struct {
func (x *ProximityRadiusUnitsEnum) Reset() {
*x = ProximityRadiusUnitsEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_proximity_radius_units_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_proximity_radius_units_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *ProximityRadiusUnitsEnum) String() string {
func (*ProximityRadiusUnitsEnum) ProtoMessage() {}
func (x *ProximityRadiusUnitsEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_proximity_radius_units_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_proximity_radius_units_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *ProximityRadiusUnitsEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProximityRadiusUnitsEnum.ProtoReflect.Descriptor instead.
func (*ProximityRadiusUnitsEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_proximity_radius_units_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_proximity_radius_units_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_proximity_radius_units_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_proximity_radius_units_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_proximity_radius_units_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_proximity_radius_units_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x70, 0x72, 0x6f, 0x78, 0x69, 0x6d, 0x69, 0x74, 0x79, 0x5f, 0x72, 0x61, 0x64, 0x69, 0x75,
0x73, 0x5f, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6b, 0x0a,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6b, 0x0a,
0x18, 0x50, 0x72, 0x6f, 0x78, 0x69, 0x6d, 0x69, 0x74, 0x79, 0x52, 0x61, 0x64, 0x69, 0x75, 0x73,
0x55, 0x6e, 0x69, 0x74, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4f, 0x0a, 0x14, 0x50, 0x72, 0x6f,
0x78, 0x69, 0x6d, 0x69, 0x74, 0x79, 0x52, 0x61, 0x64, 0x69, 0x75, 0x73, 0x55, 0x6e, 0x69, 0x74,
@@ -147,42 +147,42 @@ var file_google_ads_googleads_v16_enums_proximity_radius_units_proto_rawDesc = [
0x09, 0x0a, 0x05, 0x4d, 0x49, 0x4c, 0x45, 0x53, 0x10, 0x02, 0x12, 0x0e, 0x0a, 0x0a, 0x4b, 0x49,
0x4c, 0x4f, 0x4d, 0x45, 0x54, 0x45, 0x52, 0x53, 0x10, 0x03, 0x42, 0xf3, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x19, 0x50, 0x72, 0x6f, 0x78, 0x69, 0x6d, 0x69, 0x74, 0x79, 0x52, 0x61, 0x64, 0x69,
0x75, 0x73, 0x55, 0x6e, 0x69, 0x74, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_proximity_radius_units_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_proximity_radius_units_proto_rawDescData = file_google_ads_googleads_v16_enums_proximity_radius_units_proto_rawDesc
+ file_google_ads_googleads_v17_enums_proximity_radius_units_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_proximity_radius_units_proto_rawDescData = file_google_ads_googleads_v17_enums_proximity_radius_units_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_proximity_radius_units_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_proximity_radius_units_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_proximity_radius_units_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_proximity_radius_units_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_proximity_radius_units_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_proximity_radius_units_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_proximity_radius_units_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_proximity_radius_units_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_proximity_radius_units_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_proximity_radius_units_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_proximity_radius_units_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_proximity_radius_units_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_proximity_radius_units_proto_goTypes = []interface{}{
- (ProximityRadiusUnitsEnum_ProximityRadiusUnits)(0), // 0: google.ads.googleads.v16.enums.ProximityRadiusUnitsEnum.ProximityRadiusUnits
- (*ProximityRadiusUnitsEnum)(nil), // 1: google.ads.googleads.v16.enums.ProximityRadiusUnitsEnum
+var file_google_ads_googleads_v17_enums_proximity_radius_units_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_proximity_radius_units_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_proximity_radius_units_proto_goTypes = []interface{}{
+ (ProximityRadiusUnitsEnum_ProximityRadiusUnits)(0), // 0: google.ads.googleads.v17.enums.ProximityRadiusUnitsEnum.ProximityRadiusUnits
+ (*ProximityRadiusUnitsEnum)(nil), // 1: google.ads.googleads.v17.enums.ProximityRadiusUnitsEnum
}
-var file_google_ads_googleads_v16_enums_proximity_radius_units_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_proximity_radius_units_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_enums_proximity_radius_units_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_proximity_radius_units_proto_init() }
-func file_google_ads_googleads_v16_enums_proximity_radius_units_proto_init() {
- if File_google_ads_googleads_v16_enums_proximity_radius_units_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_proximity_radius_units_proto_init() }
+func file_google_ads_googleads_v17_enums_proximity_radius_units_proto_init() {
+ if File_google_ads_googleads_v17_enums_proximity_radius_units_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_proximity_radius_units_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_proximity_radius_units_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProximityRadiusUnitsEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_enums_proximity_radius_units_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_proximity_radius_units_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_proximity_radius_units_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_proximity_radius_units_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_proximity_radius_units_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_proximity_radius_units_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_proximity_radius_units_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_proximity_radius_units_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_proximity_radius_units_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_proximity_radius_units_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_proximity_radius_units_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_proximity_radius_units_proto = out.File
- file_google_ads_googleads_v16_enums_proximity_radius_units_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_proximity_radius_units_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_proximity_radius_units_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_proximity_radius_units_proto = out.File
+ file_google_ads_googleads_v17_enums_proximity_radius_units_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_proximity_radius_units_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_proximity_radius_units_proto_depIdxs = nil
}
diff --git a/enums/quality_score_bucket.pb.go b/enums/quality_score_bucket.pb.go
index a2983b89..d1c15fb8 100644
--- a/enums/quality_score_bucket.pb.go
+++ b/enums/quality_score_bucket.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/quality_score_bucket.proto
+// source: google/ads/googleads/v17/enums/quality_score_bucket.proto
package enums
@@ -79,11 +79,11 @@ func (x QualityScoreBucketEnum_QualityScoreBucket) String() string {
}
func (QualityScoreBucketEnum_QualityScoreBucket) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_quality_score_bucket_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_quality_score_bucket_proto_enumTypes[0].Descriptor()
}
func (QualityScoreBucketEnum_QualityScoreBucket) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_quality_score_bucket_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_quality_score_bucket_proto_enumTypes[0]
}
func (x QualityScoreBucketEnum_QualityScoreBucket) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x QualityScoreBucketEnum_QualityScoreBucket) Number() protoreflect.EnumNum
// Deprecated: Use QualityScoreBucketEnum_QualityScoreBucket.Descriptor instead.
func (QualityScoreBucketEnum_QualityScoreBucket) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_quality_score_bucket_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_quality_score_bucket_proto_rawDescGZIP(), []int{0, 0}
}
// The relative performance compared to other advertisers.
@@ -105,7 +105,7 @@ type QualityScoreBucketEnum struct {
func (x *QualityScoreBucketEnum) Reset() {
*x = QualityScoreBucketEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_quality_score_bucket_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_quality_score_bucket_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *QualityScoreBucketEnum) String() string {
func (*QualityScoreBucketEnum) ProtoMessage() {}
func (x *QualityScoreBucketEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_quality_score_bucket_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_quality_score_bucket_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *QualityScoreBucketEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use QualityScoreBucketEnum.ProtoReflect.Descriptor instead.
func (*QualityScoreBucketEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_quality_score_bucket_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_quality_score_bucket_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_quality_score_bucket_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_quality_score_bucket_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_quality_score_bucket_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_quality_score_bucket_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x5f, 0x62,
0x75, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7f, 0x0a, 0x16, 0x51,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7f, 0x0a, 0x16, 0x51,
0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x6f, 0x72, 0x65, 0x42, 0x75, 0x63, 0x6b, 0x65,
0x74, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x65, 0x0a, 0x12, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79,
0x53, 0x63, 0x6f, 0x72, 0x65, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x0f, 0x0a, 0x0b, 0x55,
@@ -152,42 +152,42 @@ var file_google_ads_googleads_v16_enums_quality_score_bucket_proto_rawDesc = []b
0x41, 0x56, 0x45, 0x52, 0x41, 0x47, 0x45, 0x10, 0x03, 0x12, 0x11, 0x0a, 0x0d, 0x41, 0x42, 0x4f,
0x56, 0x45, 0x5f, 0x41, 0x56, 0x45, 0x52, 0x41, 0x47, 0x45, 0x10, 0x04, 0x42, 0xf1, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x17, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x53, 0x63, 0x6f, 0x72,
0x65, 0x42, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_quality_score_bucket_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_quality_score_bucket_proto_rawDescData = file_google_ads_googleads_v16_enums_quality_score_bucket_proto_rawDesc
+ file_google_ads_googleads_v17_enums_quality_score_bucket_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_quality_score_bucket_proto_rawDescData = file_google_ads_googleads_v17_enums_quality_score_bucket_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_quality_score_bucket_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_quality_score_bucket_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_quality_score_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_quality_score_bucket_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_quality_score_bucket_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_quality_score_bucket_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_quality_score_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_quality_score_bucket_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_quality_score_bucket_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_quality_score_bucket_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_quality_score_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_quality_score_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_quality_score_bucket_proto_goTypes = []interface{}{
- (QualityScoreBucketEnum_QualityScoreBucket)(0), // 0: google.ads.googleads.v16.enums.QualityScoreBucketEnum.QualityScoreBucket
- (*QualityScoreBucketEnum)(nil), // 1: google.ads.googleads.v16.enums.QualityScoreBucketEnum
+var file_google_ads_googleads_v17_enums_quality_score_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_quality_score_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_quality_score_bucket_proto_goTypes = []interface{}{
+ (QualityScoreBucketEnum_QualityScoreBucket)(0), // 0: google.ads.googleads.v17.enums.QualityScoreBucketEnum.QualityScoreBucket
+ (*QualityScoreBucketEnum)(nil), // 1: google.ads.googleads.v17.enums.QualityScoreBucketEnum
}
-var file_google_ads_googleads_v16_enums_quality_score_bucket_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_quality_score_bucket_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -195,13 +195,13 @@ var file_google_ads_googleads_v16_enums_quality_score_bucket_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_quality_score_bucket_proto_init() }
-func file_google_ads_googleads_v16_enums_quality_score_bucket_proto_init() {
- if File_google_ads_googleads_v16_enums_quality_score_bucket_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_quality_score_bucket_proto_init() }
+func file_google_ads_googleads_v17_enums_quality_score_bucket_proto_init() {
+ if File_google_ads_googleads_v17_enums_quality_score_bucket_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_quality_score_bucket_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_quality_score_bucket_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*QualityScoreBucketEnum); i {
case 0:
return &v.state
@@ -218,19 +218,19 @@ func file_google_ads_googleads_v16_enums_quality_score_bucket_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_quality_score_bucket_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_quality_score_bucket_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_quality_score_bucket_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_quality_score_bucket_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_quality_score_bucket_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_quality_score_bucket_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_quality_score_bucket_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_quality_score_bucket_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_quality_score_bucket_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_quality_score_bucket_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_quality_score_bucket_proto = out.File
- file_google_ads_googleads_v16_enums_quality_score_bucket_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_quality_score_bucket_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_quality_score_bucket_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_quality_score_bucket_proto = out.File
+ file_google_ads_googleads_v17_enums_quality_score_bucket_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_quality_score_bucket_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_quality_score_bucket_proto_depIdxs = nil
}
diff --git a/enums/reach_plan_age_range.pb.go b/enums/reach_plan_age_range.pb.go
index c5ea84a6..c0605ec0 100644
--- a/enums/reach_plan_age_range.pb.go
+++ b/enums/reach_plan_age_range.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/reach_plan_age_range.proto
+// source: google/ads/googleads/v17/enums/reach_plan_age_range.proto
package enums
@@ -171,11 +171,11 @@ func (x ReachPlanAgeRangeEnum_ReachPlanAgeRange) String() string {
}
func (ReachPlanAgeRangeEnum_ReachPlanAgeRange) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_enumTypes[0].Descriptor()
}
func (ReachPlanAgeRangeEnum_ReachPlanAgeRange) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_enumTypes[0]
}
func (x ReachPlanAgeRangeEnum_ReachPlanAgeRange) Number() protoreflect.EnumNumber {
@@ -184,7 +184,7 @@ func (x ReachPlanAgeRangeEnum_ReachPlanAgeRange) Number() protoreflect.EnumNumbe
// Deprecated: Use ReachPlanAgeRangeEnum_ReachPlanAgeRange.Descriptor instead.
func (ReachPlanAgeRangeEnum_ReachPlanAgeRange) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing plannable age ranges.
@@ -197,7 +197,7 @@ type ReachPlanAgeRangeEnum struct {
func (x *ReachPlanAgeRangeEnum) Reset() {
*x = ReachPlanAgeRangeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -210,7 +210,7 @@ func (x *ReachPlanAgeRangeEnum) String() string {
func (*ReachPlanAgeRangeEnum) ProtoMessage() {}
func (x *ReachPlanAgeRangeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -223,18 +223,18 @@ func (x *ReachPlanAgeRangeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReachPlanAgeRangeEnum.ProtoReflect.Descriptor instead.
func (*ReachPlanAgeRangeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_reach_plan_age_range_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_reach_plan_age_range_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x61, 0x67, 0x65, 0x5f,
0x72, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8b, 0x05, 0x0a, 0x15,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8b, 0x05, 0x0a, 0x15,
0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67,
0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xf1, 0x04, 0x0a, 0x11, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50,
0x6c, 0x61, 0x6e, 0x41, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55,
@@ -277,42 +277,42 @@ var file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_rawDesc = []b
0x10, 0x15, 0x12, 0x15, 0x0a, 0x0f, 0x41, 0x47, 0x45, 0x5f, 0x52, 0x41, 0x4e, 0x47, 0x45, 0x5f,
0x36, 0x35, 0x5f, 0x55, 0x50, 0x10, 0xde, 0xd9, 0x1e, 0x42, 0xf0, 0x01, 0x0a, 0x22, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x42, 0x16, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x67, 0x65, 0x52, 0x61,
0x6e, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_rawDescData = file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_rawDesc
+ file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_rawDescData = file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_goTypes = []interface{}{
- (ReachPlanAgeRangeEnum_ReachPlanAgeRange)(0), // 0: google.ads.googleads.v16.enums.ReachPlanAgeRangeEnum.ReachPlanAgeRange
- (*ReachPlanAgeRangeEnum)(nil), // 1: google.ads.googleads.v16.enums.ReachPlanAgeRangeEnum
+var file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_goTypes = []interface{}{
+ (ReachPlanAgeRangeEnum_ReachPlanAgeRange)(0), // 0: google.ads.googleads.v17.enums.ReachPlanAgeRangeEnum.ReachPlanAgeRange
+ (*ReachPlanAgeRangeEnum)(nil), // 1: google.ads.googleads.v17.enums.ReachPlanAgeRangeEnum
}
-var file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -320,13 +320,13 @@ var file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_init() }
-func file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_init() {
- if File_google_ads_googleads_v16_enums_reach_plan_age_range_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_init() }
+func file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_init() {
+ if File_google_ads_googleads_v17_enums_reach_plan_age_range_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ReachPlanAgeRangeEnum); i {
case 0:
return &v.state
@@ -343,19 +343,19 @@ func file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_reach_plan_age_range_proto = out.File
- file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_reach_plan_age_range_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_reach_plan_age_range_proto = out.File
+ file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_reach_plan_age_range_proto_depIdxs = nil
}
diff --git a/enums/reach_plan_network.pb.go b/enums/reach_plan_network.pb.go
index 3f2abb04..c876f89e 100644
--- a/enums/reach_plan_network.pb.go
+++ b/enums/reach_plan_network.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/reach_plan_network.proto
+// source: google/ads/googleads/v17/enums/reach_plan_network.proto
package enums
@@ -80,11 +80,11 @@ func (x ReachPlanNetworkEnum_ReachPlanNetwork) String() string {
}
func (ReachPlanNetworkEnum_ReachPlanNetwork) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_reach_plan_network_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_reach_plan_network_proto_enumTypes[0].Descriptor()
}
func (ReachPlanNetworkEnum_ReachPlanNetwork) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_reach_plan_network_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_reach_plan_network_proto_enumTypes[0]
}
func (x ReachPlanNetworkEnum_ReachPlanNetwork) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x ReachPlanNetworkEnum_ReachPlanNetwork) Number() protoreflect.EnumNumber
// Deprecated: Use ReachPlanNetworkEnum_ReachPlanNetwork.Descriptor instead.
func (ReachPlanNetworkEnum_ReachPlanNetwork) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_reach_plan_network_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_reach_plan_network_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing plannable networks.
@@ -106,7 +106,7 @@ type ReachPlanNetworkEnum struct {
func (x *ReachPlanNetworkEnum) Reset() {
*x = ReachPlanNetworkEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_reach_plan_network_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_reach_plan_network_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *ReachPlanNetworkEnum) String() string {
func (*ReachPlanNetworkEnum) ProtoMessage() {}
func (x *ReachPlanNetworkEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_reach_plan_network_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_reach_plan_network_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,18 +132,18 @@ func (x *ReachPlanNetworkEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReachPlanNetworkEnum.ProtoReflect.Descriptor instead.
func (*ReachPlanNetworkEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_reach_plan_network_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_reach_plan_network_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_reach_plan_network_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_reach_plan_network_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_reach_plan_network_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_reach_plan_network_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x6e, 0x65, 0x74, 0x77,
0x6f, 0x72, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x97, 0x01, 0x0a, 0x14, 0x52, 0x65,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x97, 0x01, 0x0a, 0x14, 0x52, 0x65,
0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0x7f, 0x0a, 0x10, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x4e,
0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
@@ -155,41 +155,41 @@ var file_google_ads_googleads_v16_enums_reach_plan_network_proto_rawDesc = []byt
0x4c, 0x45, 0x5f, 0x56, 0x49, 0x44, 0x45, 0x4f, 0x5f, 0x50, 0x41, 0x52, 0x54, 0x4e, 0x45, 0x52,
0x53, 0x10, 0x04, 0x42, 0xef, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x52, 0x65, 0x61, 0x63,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x52, 0x65, 0x61, 0x63,
0x68, 0x50, 0x6c, 0x61, 0x6e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_reach_plan_network_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_reach_plan_network_proto_rawDescData = file_google_ads_googleads_v16_enums_reach_plan_network_proto_rawDesc
+ file_google_ads_googleads_v17_enums_reach_plan_network_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_reach_plan_network_proto_rawDescData = file_google_ads_googleads_v17_enums_reach_plan_network_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_reach_plan_network_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_reach_plan_network_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_reach_plan_network_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_reach_plan_network_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_reach_plan_network_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_reach_plan_network_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_reach_plan_network_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_reach_plan_network_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_reach_plan_network_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_reach_plan_network_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_reach_plan_network_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_reach_plan_network_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_reach_plan_network_proto_goTypes = []interface{}{
- (ReachPlanNetworkEnum_ReachPlanNetwork)(0), // 0: google.ads.googleads.v16.enums.ReachPlanNetworkEnum.ReachPlanNetwork
- (*ReachPlanNetworkEnum)(nil), // 1: google.ads.googleads.v16.enums.ReachPlanNetworkEnum
+var file_google_ads_googleads_v17_enums_reach_plan_network_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_reach_plan_network_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_reach_plan_network_proto_goTypes = []interface{}{
+ (ReachPlanNetworkEnum_ReachPlanNetwork)(0), // 0: google.ads.googleads.v17.enums.ReachPlanNetworkEnum.ReachPlanNetwork
+ (*ReachPlanNetworkEnum)(nil), // 1: google.ads.googleads.v17.enums.ReachPlanNetworkEnum
}
-var file_google_ads_googleads_v16_enums_reach_plan_network_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_reach_plan_network_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_enums_reach_plan_network_proto_depIdxs = []int
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_reach_plan_network_proto_init() }
-func file_google_ads_googleads_v16_enums_reach_plan_network_proto_init() {
- if File_google_ads_googleads_v16_enums_reach_plan_network_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_reach_plan_network_proto_init() }
+func file_google_ads_googleads_v17_enums_reach_plan_network_proto_init() {
+ if File_google_ads_googleads_v17_enums_reach_plan_network_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_reach_plan_network_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_reach_plan_network_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ReachPlanNetworkEnum); i {
case 0:
return &v.state
@@ -220,19 +220,19 @@ func file_google_ads_googleads_v16_enums_reach_plan_network_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_reach_plan_network_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_reach_plan_network_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_reach_plan_network_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_reach_plan_network_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_reach_plan_network_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_reach_plan_network_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_reach_plan_network_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_reach_plan_network_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_reach_plan_network_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_reach_plan_network_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_reach_plan_network_proto = out.File
- file_google_ads_googleads_v16_enums_reach_plan_network_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_reach_plan_network_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_reach_plan_network_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_reach_plan_network_proto = out.File
+ file_google_ads_googleads_v17_enums_reach_plan_network_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_reach_plan_network_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_reach_plan_network_proto_depIdxs = nil
}
diff --git a/enums/reach_plan_surface.pb.go b/enums/reach_plan_surface.pb.go
index 14e99cd7..ae5d1361 100644
--- a/enums/reach_plan_surface.pb.go
+++ b/enums/reach_plan_surface.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/reach_plan_surface.proto
+// source: google/ads/googleads/v17/enums/reach_plan_surface.proto
package enums
@@ -87,11 +87,11 @@ func (x ReachPlanSurfaceEnum_ReachPlanSurface) String() string {
}
func (ReachPlanSurfaceEnum_ReachPlanSurface) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_reach_plan_surface_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_reach_plan_surface_proto_enumTypes[0].Descriptor()
}
func (ReachPlanSurfaceEnum_ReachPlanSurface) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_reach_plan_surface_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_reach_plan_surface_proto_enumTypes[0]
}
func (x ReachPlanSurfaceEnum_ReachPlanSurface) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x ReachPlanSurfaceEnum_ReachPlanSurface) Number() protoreflect.EnumNumber
// Deprecated: Use ReachPlanSurfaceEnum_ReachPlanSurface.Descriptor instead.
func (ReachPlanSurfaceEnum_ReachPlanSurface) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_reach_plan_surface_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_reach_plan_surface_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing surfaces available for targeting in forecasts.
@@ -115,7 +115,7 @@ type ReachPlanSurfaceEnum struct {
func (x *ReachPlanSurfaceEnum) Reset() {
*x = ReachPlanSurfaceEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_reach_plan_surface_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_reach_plan_surface_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -128,7 +128,7 @@ func (x *ReachPlanSurfaceEnum) String() string {
func (*ReachPlanSurfaceEnum) ProtoMessage() {}
func (x *ReachPlanSurfaceEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_reach_plan_surface_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_reach_plan_surface_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -141,18 +141,18 @@ func (x *ReachPlanSurfaceEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReachPlanSurfaceEnum.ProtoReflect.Descriptor instead.
func (*ReachPlanSurfaceEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_reach_plan_surface_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_reach_plan_surface_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_reach_plan_surface_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_reach_plan_surface_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_reach_plan_surface_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_reach_plan_surface_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x73, 0x75, 0x72, 0x66,
0x61, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xae, 0x01, 0x0a, 0x14, 0x52, 0x65,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xae, 0x01, 0x0a, 0x14, 0x52, 0x65,
0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x75, 0x72, 0x66, 0x61, 0x63, 0x65, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0x95, 0x01, 0x0a, 0x10, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e,
0x53, 0x75, 0x72, 0x66, 0x61, 0x63, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45,
@@ -165,42 +165,42 @@ var file_google_ads_googleads_v16_enums_reach_plan_surface_proto_rawDesc = []byt
0x41, 0x4d, 0x5f, 0x53, 0x4b, 0x49, 0x50, 0x50, 0x41, 0x42, 0x4c, 0x45, 0x10, 0x05, 0x12, 0x0a,
0x0a, 0x06, 0x53, 0x48, 0x4f, 0x52, 0x54, 0x53, 0x10, 0x06, 0x42, 0xef, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x15, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x75, 0x72, 0x66,
0x61, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_reach_plan_surface_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_reach_plan_surface_proto_rawDescData = file_google_ads_googleads_v16_enums_reach_plan_surface_proto_rawDesc
+ file_google_ads_googleads_v17_enums_reach_plan_surface_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_reach_plan_surface_proto_rawDescData = file_google_ads_googleads_v17_enums_reach_plan_surface_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_reach_plan_surface_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_reach_plan_surface_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_reach_plan_surface_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_reach_plan_surface_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_reach_plan_surface_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_reach_plan_surface_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_reach_plan_surface_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_reach_plan_surface_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_reach_plan_surface_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_reach_plan_surface_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_reach_plan_surface_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_reach_plan_surface_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_reach_plan_surface_proto_goTypes = []interface{}{
- (ReachPlanSurfaceEnum_ReachPlanSurface)(0), // 0: google.ads.googleads.v16.enums.ReachPlanSurfaceEnum.ReachPlanSurface
- (*ReachPlanSurfaceEnum)(nil), // 1: google.ads.googleads.v16.enums.ReachPlanSurfaceEnum
+var file_google_ads_googleads_v17_enums_reach_plan_surface_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_reach_plan_surface_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_reach_plan_surface_proto_goTypes = []interface{}{
+ (ReachPlanSurfaceEnum_ReachPlanSurface)(0), // 0: google.ads.googleads.v17.enums.ReachPlanSurfaceEnum.ReachPlanSurface
+ (*ReachPlanSurfaceEnum)(nil), // 1: google.ads.googleads.v17.enums.ReachPlanSurfaceEnum
}
-var file_google_ads_googleads_v16_enums_reach_plan_surface_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_reach_plan_surface_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -208,13 +208,13 @@ var file_google_ads_googleads_v16_enums_reach_plan_surface_proto_depIdxs = []int
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_reach_plan_surface_proto_init() }
-func file_google_ads_googleads_v16_enums_reach_plan_surface_proto_init() {
- if File_google_ads_googleads_v16_enums_reach_plan_surface_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_reach_plan_surface_proto_init() }
+func file_google_ads_googleads_v17_enums_reach_plan_surface_proto_init() {
+ if File_google_ads_googleads_v17_enums_reach_plan_surface_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_reach_plan_surface_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_reach_plan_surface_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ReachPlanSurfaceEnum); i {
case 0:
return &v.state
@@ -231,19 +231,19 @@ func file_google_ads_googleads_v16_enums_reach_plan_surface_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_reach_plan_surface_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_reach_plan_surface_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_reach_plan_surface_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_reach_plan_surface_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_reach_plan_surface_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_reach_plan_surface_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_reach_plan_surface_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_reach_plan_surface_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_reach_plan_surface_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_reach_plan_surface_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_reach_plan_surface_proto = out.File
- file_google_ads_googleads_v16_enums_reach_plan_surface_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_reach_plan_surface_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_reach_plan_surface_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_reach_plan_surface_proto = out.File
+ file_google_ads_googleads_v17_enums_reach_plan_surface_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_reach_plan_surface_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_reach_plan_surface_proto_depIdxs = nil
}
diff --git a/enums/real_estate_placeholder_field.pb.go b/enums/real_estate_placeholder_field.pb.go
index 20b03f14..d24a51b4 100644
--- a/enums/real_estate_placeholder_field.pb.go
+++ b/enums/real_estate_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/real_estate_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/real_estate_placeholder_field.proto
package enums
@@ -156,11 +156,11 @@ func (x RealEstatePlaceholderFieldEnum_RealEstatePlaceholderField) String() stri
}
func (RealEstatePlaceholderFieldEnum_RealEstatePlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (RealEstatePlaceholderFieldEnum_RealEstatePlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_enumTypes[0]
}
func (x RealEstatePlaceholderFieldEnum_RealEstatePlaceholderField) Number() protoreflect.EnumNumber {
@@ -169,7 +169,7 @@ func (x RealEstatePlaceholderFieldEnum_RealEstatePlaceholderField) Number() prot
// Deprecated: Use RealEstatePlaceholderFieldEnum_RealEstatePlaceholderField.Descriptor instead.
func (RealEstatePlaceholderFieldEnum_RealEstatePlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Real Estate placeholder fields.
@@ -184,7 +184,7 @@ type RealEstatePlaceholderFieldEnum struct {
func (x *RealEstatePlaceholderFieldEnum) Reset() {
*x = RealEstatePlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -197,7 +197,7 @@ func (x *RealEstatePlaceholderFieldEnum) String() string {
func (*RealEstatePlaceholderFieldEnum) ProtoMessage() {}
func (x *RealEstatePlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -210,18 +210,18 @@ func (x *RealEstatePlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use RealEstatePlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*RealEstatePlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x42, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x72, 0x65, 0x61, 0x6c, 0x5f, 0x65, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x70, 0x6c, 0x61,
0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa9, 0x03, 0x0a, 0x1e, 0x52, 0x65, 0x61, 0x6c, 0x45, 0x73, 0x74,
0x61, 0x74, 0x65, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69,
0x65, 0x6c, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x86, 0x03, 0x0a, 0x1a, 0x52, 0x65, 0x61, 0x6c,
@@ -251,42 +251,42 @@ var file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_rawD
0x53, 0x5f, 0x41, 0x50, 0x50, 0x5f, 0x53, 0x54, 0x4f, 0x52, 0x45, 0x5f, 0x49, 0x44, 0x10, 0x13,
0x42, 0xf9, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1f, 0x52, 0x65, 0x61, 0x6c, 0x45, 0x73, 0x74,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1f, 0x52, 0x65, 0x61, 0x6c, 0x45, 0x73, 0x74,
0x61, 0x74, 0x65, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69,
0x65, 0x6c, 0x64, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_goTypes = []interface{}{
- (RealEstatePlaceholderFieldEnum_RealEstatePlaceholderField)(0), // 0: google.ads.googleads.v16.enums.RealEstatePlaceholderFieldEnum.RealEstatePlaceholderField
- (*RealEstatePlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.RealEstatePlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_goTypes = []interface{}{
+ (RealEstatePlaceholderFieldEnum_RealEstatePlaceholderField)(0), // 0: google.ads.googleads.v17.enums.RealEstatePlaceholderFieldEnum.RealEstatePlaceholderField
+ (*RealEstatePlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.RealEstatePlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -294,13 +294,13 @@ var file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_depI
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RealEstatePlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -317,19 +317,19 @@ func file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_ini
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_real_estate_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_real_estate_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/recommendation_subscription_status.pb.go b/enums/recommendation_subscription_status.pb.go
index 7fe2080f..84d71dd1 100644
--- a/enums/recommendation_subscription_status.pb.go
+++ b/enums/recommendation_subscription_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/recommendation_subscription_status.proto
+// source: google/ads/googleads/v17/enums/recommendation_subscription_status.proto
package enums
@@ -78,11 +78,11 @@ func (x RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus) S
}
func (RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_enumTypes[0].Descriptor()
}
func (RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_enumTypes[0]
}
func (x RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus) Number() protoreflect.EnumNumber {
@@ -91,7 +91,7 @@ func (x RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus) N
// Deprecated: Use RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus.Descriptor instead.
func (RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing recommendation subscription statuses.
@@ -104,7 +104,7 @@ type RecommendationSubscriptionStatusEnum struct {
func (x *RecommendationSubscriptionStatusEnum) Reset() {
*x = RecommendationSubscriptionStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -117,7 +117,7 @@ func (x *RecommendationSubscriptionStatusEnum) String() string {
func (*RecommendationSubscriptionStatusEnum) ProtoMessage() {}
func (x *RecommendationSubscriptionStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -130,19 +130,19 @@ func (x *RecommendationSubscriptionStatusEnum) ProtoReflect() protoreflect.Messa
// Deprecated: Use RecommendationSubscriptionStatusEnum.ProtoReflect.Descriptor instead.
func (*RecommendationSubscriptionStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_recommendation_subscription_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_recommendation_subscription_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_rawDesc = []byte{
0x0a, 0x47, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61,
0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x81, 0x01, 0x0a, 0x24, 0x52, 0x65,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x81, 0x01, 0x0a, 0x24, 0x52, 0x65,
0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x62, 0x73,
0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0x59, 0x0a, 0x20, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61,
@@ -152,43 +152,43 @@ var file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto
0x57, 0x4e, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10,
0x02, 0x12, 0x0a, 0x0a, 0x06, 0x50, 0x41, 0x55, 0x53, 0x45, 0x44, 0x10, 0x03, 0x42, 0xff, 0x01,
0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x42, 0x25, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_rawDescData = file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_rawDescData = file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_goTypes = []interface{}{
- (RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus)(0), // 0: google.ads.googleads.v16.enums.RecommendationSubscriptionStatusEnum.RecommendationSubscriptionStatus
- (*RecommendationSubscriptionStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.RecommendationSubscriptionStatusEnum
+var file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_goTypes = []interface{}{
+ (RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus)(0), // 0: google.ads.googleads.v17.enums.RecommendationSubscriptionStatusEnum.RecommendationSubscriptionStatus
+ (*RecommendationSubscriptionStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.RecommendationSubscriptionStatusEnum
}
-var file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -196,13 +196,13 @@ var file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_init() }
-func file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_init() {
- if File_google_ads_googleads_v16_enums_recommendation_subscription_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_init() }
+func file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_recommendation_subscription_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RecommendationSubscriptionStatusEnum); i {
case 0:
return &v.state
@@ -219,19 +219,19 @@ func file_google_ads_googleads_v16_enums_recommendation_subscription_status_prot
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_recommendation_subscription_status_proto = out.File
- file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_recommendation_subscription_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_recommendation_subscription_status_proto = out.File
+ file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_recommendation_subscription_status_proto_depIdxs = nil
}
diff --git a/enums/recommendation_type.pb.go b/enums/recommendation_type.pb.go
index 0584a4bc..4e4c23d3 100644
--- a/enums/recommendation_type.pb.go
+++ b/enums/recommendation_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/recommendation_type.proto
+// source: google/ads/googleads/v17/enums/recommendation_type.proto
package enums
@@ -328,11 +328,11 @@ func (x RecommendationTypeEnum_RecommendationType) String() string {
}
func (RecommendationTypeEnum_RecommendationType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_recommendation_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_recommendation_type_proto_enumTypes[0].Descriptor()
}
func (RecommendationTypeEnum_RecommendationType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_recommendation_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_recommendation_type_proto_enumTypes[0]
}
func (x RecommendationTypeEnum_RecommendationType) Number() protoreflect.EnumNumber {
@@ -341,7 +341,7 @@ func (x RecommendationTypeEnum_RecommendationType) Number() protoreflect.EnumNum
// Deprecated: Use RecommendationTypeEnum_RecommendationType.Descriptor instead.
func (RecommendationTypeEnum_RecommendationType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_recommendation_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_recommendation_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing types of recommendations.
@@ -354,7 +354,7 @@ type RecommendationTypeEnum struct {
func (x *RecommendationTypeEnum) Reset() {
*x = RecommendationTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_recommendation_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_recommendation_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -367,7 +367,7 @@ func (x *RecommendationTypeEnum) String() string {
func (*RecommendationTypeEnum) ProtoMessage() {}
func (x *RecommendationTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_recommendation_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_recommendation_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -380,18 +380,18 @@ func (x *RecommendationTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use RecommendationTypeEnum.ProtoReflect.Descriptor instead.
func (*RecommendationTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_recommendation_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_recommendation_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_recommendation_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_recommendation_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_recommendation_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_recommendation_type_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xf3, 0x0d, 0x0a, 0x16, 0x52,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xf3, 0x0d, 0x0a, 0x16, 0x52,
0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70,
0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xd8, 0x0d, 0x0a, 0x12, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d,
0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b,
@@ -505,41 +505,41 @@ var file_google_ads_googleads_v16_enums_recommendation_type_proto_rawDesc = []by
0x45, 0x4e, 0x5f, 0x41, 0x44, 0x5f, 0x53, 0x54, 0x52, 0x45, 0x4e, 0x47, 0x54, 0x48, 0x10, 0x3a,
0x42, 0xf1, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_recommendation_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_recommendation_type_proto_rawDescData = file_google_ads_googleads_v16_enums_recommendation_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_recommendation_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_recommendation_type_proto_rawDescData = file_google_ads_googleads_v17_enums_recommendation_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_recommendation_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_recommendation_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_recommendation_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_recommendation_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_recommendation_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_recommendation_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_recommendation_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_recommendation_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_recommendation_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_recommendation_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_recommendation_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_recommendation_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_recommendation_type_proto_goTypes = []interface{}{
- (RecommendationTypeEnum_RecommendationType)(0), // 0: google.ads.googleads.v16.enums.RecommendationTypeEnum.RecommendationType
- (*RecommendationTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.RecommendationTypeEnum
+var file_google_ads_googleads_v17_enums_recommendation_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_recommendation_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_recommendation_type_proto_goTypes = []interface{}{
+ (RecommendationTypeEnum_RecommendationType)(0), // 0: google.ads.googleads.v17.enums.RecommendationTypeEnum.RecommendationType
+ (*RecommendationTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.RecommendationTypeEnum
}
-var file_google_ads_googleads_v16_enums_recommendation_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_recommendation_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -547,13 +547,13 @@ var file_google_ads_googleads_v16_enums_recommendation_type_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_recommendation_type_proto_init() }
-func file_google_ads_googleads_v16_enums_recommendation_type_proto_init() {
- if File_google_ads_googleads_v16_enums_recommendation_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_recommendation_type_proto_init() }
+func file_google_ads_googleads_v17_enums_recommendation_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_recommendation_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_recommendation_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_recommendation_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RecommendationTypeEnum); i {
case 0:
return &v.state
@@ -570,19 +570,19 @@ func file_google_ads_googleads_v16_enums_recommendation_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_recommendation_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_recommendation_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_recommendation_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_recommendation_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_recommendation_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_recommendation_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_recommendation_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_recommendation_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_recommendation_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_recommendation_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_recommendation_type_proto = out.File
- file_google_ads_googleads_v16_enums_recommendation_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_recommendation_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_recommendation_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_recommendation_type_proto = out.File
+ file_google_ads_googleads_v17_enums_recommendation_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_recommendation_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_recommendation_type_proto_depIdxs = nil
}
diff --git a/enums/resource_change_operation.pb.go b/enums/resource_change_operation.pb.go
index 1afed6dc..a4903cf3 100644
--- a/enums/resource_change_operation.pb.go
+++ b/enums/resource_change_operation.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/resource_change_operation.proto
+// source: google/ads/googleads/v17/enums/resource_change_operation.proto
package enums
@@ -80,11 +80,11 @@ func (x ResourceChangeOperationEnum_ResourceChangeOperation) String() string {
}
func (ResourceChangeOperationEnum_ResourceChangeOperation) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_resource_change_operation_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_resource_change_operation_proto_enumTypes[0].Descriptor()
}
func (ResourceChangeOperationEnum_ResourceChangeOperation) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_resource_change_operation_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_resource_change_operation_proto_enumTypes[0]
}
func (x ResourceChangeOperationEnum_ResourceChangeOperation) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x ResourceChangeOperationEnum_ResourceChangeOperation) Number() protorefle
// Deprecated: Use ResourceChangeOperationEnum_ResourceChangeOperation.Descriptor instead.
func (ResourceChangeOperationEnum_ResourceChangeOperation) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_resource_change_operation_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_resource_change_operation_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing resource change operations
@@ -107,7 +107,7 @@ type ResourceChangeOperationEnum struct {
func (x *ResourceChangeOperationEnum) Reset() {
*x = ResourceChangeOperationEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_resource_change_operation_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_resource_change_operation_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -120,7 +120,7 @@ func (x *ResourceChangeOperationEnum) String() string {
func (*ResourceChangeOperationEnum) ProtoMessage() {}
func (x *ResourceChangeOperationEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_resource_change_operation_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_resource_change_operation_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -133,18 +133,18 @@ func (x *ResourceChangeOperationEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ResourceChangeOperationEnum.ProtoReflect.Descriptor instead.
func (*ResourceChangeOperationEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_resource_change_operation_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_resource_change_operation_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_resource_change_operation_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_resource_change_operation_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_resource_change_operation_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_resource_change_operation_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65,
0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0x7a, 0x0a, 0x1b, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x68, 0x61, 0x6e,
0x67, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x5b, 0x0a, 0x17, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x67,
@@ -154,42 +154,42 @@ var file_google_ads_googleads_v16_enums_resource_change_operation_proto_rawDesc
0x54, 0x45, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x55, 0x50, 0x44, 0x41, 0x54, 0x45, 0x10, 0x03,
0x12, 0x0a, 0x0a, 0x06, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x10, 0x04, 0x42, 0xf6, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x1c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x68, 0x61,
0x6e, 0x67, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_resource_change_operation_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_resource_change_operation_proto_rawDescData = file_google_ads_googleads_v16_enums_resource_change_operation_proto_rawDesc
+ file_google_ads_googleads_v17_enums_resource_change_operation_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_resource_change_operation_proto_rawDescData = file_google_ads_googleads_v17_enums_resource_change_operation_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_resource_change_operation_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_resource_change_operation_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_resource_change_operation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_resource_change_operation_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_resource_change_operation_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_resource_change_operation_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_resource_change_operation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_resource_change_operation_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_resource_change_operation_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_resource_change_operation_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_resource_change_operation_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_resource_change_operation_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_resource_change_operation_proto_goTypes = []interface{}{
- (ResourceChangeOperationEnum_ResourceChangeOperation)(0), // 0: google.ads.googleads.v16.enums.ResourceChangeOperationEnum.ResourceChangeOperation
- (*ResourceChangeOperationEnum)(nil), // 1: google.ads.googleads.v16.enums.ResourceChangeOperationEnum
+var file_google_ads_googleads_v17_enums_resource_change_operation_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_resource_change_operation_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_resource_change_operation_proto_goTypes = []interface{}{
+ (ResourceChangeOperationEnum_ResourceChangeOperation)(0), // 0: google.ads.googleads.v17.enums.ResourceChangeOperationEnum.ResourceChangeOperation
+ (*ResourceChangeOperationEnum)(nil), // 1: google.ads.googleads.v17.enums.ResourceChangeOperationEnum
}
-var file_google_ads_googleads_v16_enums_resource_change_operation_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_resource_change_operation_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_enums_resource_change_operation_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_resource_change_operation_proto_init() }
-func file_google_ads_googleads_v16_enums_resource_change_operation_proto_init() {
- if File_google_ads_googleads_v16_enums_resource_change_operation_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_resource_change_operation_proto_init() }
+func file_google_ads_googleads_v17_enums_resource_change_operation_proto_init() {
+ if File_google_ads_googleads_v17_enums_resource_change_operation_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_resource_change_operation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_resource_change_operation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ResourceChangeOperationEnum); i {
case 0:
return &v.state
@@ -220,19 +220,19 @@ func file_google_ads_googleads_v16_enums_resource_change_operation_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_resource_change_operation_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_resource_change_operation_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_resource_change_operation_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_resource_change_operation_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_resource_change_operation_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_resource_change_operation_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_resource_change_operation_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_resource_change_operation_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_resource_change_operation_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_resource_change_operation_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_resource_change_operation_proto = out.File
- file_google_ads_googleads_v16_enums_resource_change_operation_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_resource_change_operation_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_resource_change_operation_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_resource_change_operation_proto = out.File
+ file_google_ads_googleads_v17_enums_resource_change_operation_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_resource_change_operation_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_resource_change_operation_proto_depIdxs = nil
}
diff --git a/enums/resource_limit_type.pb.go b/enums/resource_limit_type.pb.go
index fff7a88d..a6bc2d04 100644
--- a/enums/resource_limit_type.pb.go
+++ b/enums/resource_limit_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/resource_limit_type.proto
+// source: google/ads/googleads/v17/enums/resource_limit_type.proto
package enums
@@ -667,11 +667,11 @@ func (x ResourceLimitTypeEnum_ResourceLimitType) String() string {
}
func (ResourceLimitTypeEnum_ResourceLimitType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_resource_limit_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_resource_limit_type_proto_enumTypes[0].Descriptor()
}
func (ResourceLimitTypeEnum_ResourceLimitType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_resource_limit_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_resource_limit_type_proto_enumTypes[0]
}
func (x ResourceLimitTypeEnum_ResourceLimitType) Number() protoreflect.EnumNumber {
@@ -680,7 +680,7 @@ func (x ResourceLimitTypeEnum_ResourceLimitType) Number() protoreflect.EnumNumbe
// Deprecated: Use ResourceLimitTypeEnum_ResourceLimitType.Descriptor instead.
func (ResourceLimitTypeEnum_ResourceLimitType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_resource_limit_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_resource_limit_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible resource limit types.
@@ -693,7 +693,7 @@ type ResourceLimitTypeEnum struct {
func (x *ResourceLimitTypeEnum) Reset() {
*x = ResourceLimitTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_resource_limit_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_resource_limit_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -706,7 +706,7 @@ func (x *ResourceLimitTypeEnum) String() string {
func (*ResourceLimitTypeEnum) ProtoMessage() {}
func (x *ResourceLimitTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_resource_limit_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_resource_limit_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -719,18 +719,18 @@ func (x *ResourceLimitTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ResourceLimitTypeEnum.ProtoReflect.Descriptor instead.
func (*ResourceLimitTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_resource_limit_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_resource_limit_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_resource_limit_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_resource_limit_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_resource_limit_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_resource_limit_type_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f,
0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x92, 0x2e, 0x0a, 0x15, 0x52,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x92, 0x2e, 0x0a, 0x15, 0x52,
0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x54, 0x79, 0x70, 0x65,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0xf8, 0x2d, 0x0a, 0x11, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63,
0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e,
@@ -1101,42 +1101,42 @@ var file_google_ads_googleads_v16_enums_resource_limit_type_proto_rawDesc = []by
0x4c, 0x49, 0x4b, 0x45, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x53, 0x5f,
0x50, 0x45, 0x52, 0x5f, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x45, 0x52, 0x10, 0xba, 0x01, 0x42,
0xf0, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
0x4c, 0x69, 0x6d, 0x69, 0x74, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_resource_limit_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_resource_limit_type_proto_rawDescData = file_google_ads_googleads_v16_enums_resource_limit_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_resource_limit_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_resource_limit_type_proto_rawDescData = file_google_ads_googleads_v17_enums_resource_limit_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_resource_limit_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_resource_limit_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_resource_limit_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_resource_limit_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_resource_limit_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_resource_limit_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_resource_limit_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_resource_limit_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_resource_limit_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_resource_limit_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_resource_limit_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_resource_limit_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_resource_limit_type_proto_goTypes = []interface{}{
- (ResourceLimitTypeEnum_ResourceLimitType)(0), // 0: google.ads.googleads.v16.enums.ResourceLimitTypeEnum.ResourceLimitType
- (*ResourceLimitTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ResourceLimitTypeEnum
+var file_google_ads_googleads_v17_enums_resource_limit_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_resource_limit_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_resource_limit_type_proto_goTypes = []interface{}{
+ (ResourceLimitTypeEnum_ResourceLimitType)(0), // 0: google.ads.googleads.v17.enums.ResourceLimitTypeEnum.ResourceLimitType
+ (*ResourceLimitTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ResourceLimitTypeEnum
}
-var file_google_ads_googleads_v16_enums_resource_limit_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_resource_limit_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -1144,13 +1144,13 @@ var file_google_ads_googleads_v16_enums_resource_limit_type_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_resource_limit_type_proto_init() }
-func file_google_ads_googleads_v16_enums_resource_limit_type_proto_init() {
- if File_google_ads_googleads_v16_enums_resource_limit_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_resource_limit_type_proto_init() }
+func file_google_ads_googleads_v17_enums_resource_limit_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_resource_limit_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_resource_limit_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_resource_limit_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ResourceLimitTypeEnum); i {
case 0:
return &v.state
@@ -1167,19 +1167,19 @@ func file_google_ads_googleads_v16_enums_resource_limit_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_resource_limit_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_resource_limit_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_resource_limit_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_resource_limit_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_resource_limit_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_resource_limit_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_resource_limit_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_resource_limit_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_resource_limit_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_resource_limit_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_resource_limit_type_proto = out.File
- file_google_ads_googleads_v16_enums_resource_limit_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_resource_limit_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_resource_limit_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_resource_limit_type_proto = out.File
+ file_google_ads_googleads_v17_enums_resource_limit_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_resource_limit_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_resource_limit_type_proto_depIdxs = nil
}
diff --git a/enums/response_content_type.pb.go b/enums/response_content_type.pb.go
index b5f774de..0c4dce79 100644
--- a/enums/response_content_type.pb.go
+++ b/enums/response_content_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/response_content_type.proto
+// source: google/ads/googleads/v17/enums/response_content_type.proto
package enums
@@ -73,11 +73,11 @@ func (x ResponseContentTypeEnum_ResponseContentType) String() string {
}
func (ResponseContentTypeEnum_ResponseContentType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_response_content_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_response_content_type_proto_enumTypes[0].Descriptor()
}
func (ResponseContentTypeEnum_ResponseContentType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_response_content_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_response_content_type_proto_enumTypes[0]
}
func (x ResponseContentTypeEnum_ResponseContentType) Number() protoreflect.EnumNumber {
@@ -86,7 +86,7 @@ func (x ResponseContentTypeEnum_ResponseContentType) Number() protoreflect.EnumN
// Deprecated: Use ResponseContentTypeEnum_ResponseContentType.Descriptor instead.
func (ResponseContentTypeEnum_ResponseContentType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_response_content_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_response_content_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for possible response content types.
@@ -99,7 +99,7 @@ type ResponseContentTypeEnum struct {
func (x *ResponseContentTypeEnum) Reset() {
*x = ResponseContentTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_response_content_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_response_content_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -112,7 +112,7 @@ func (x *ResponseContentTypeEnum) String() string {
func (*ResponseContentTypeEnum) ProtoMessage() {}
func (x *ResponseContentTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_response_content_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_response_content_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -125,18 +125,18 @@ func (x *ResponseContentTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ResponseContentTypeEnum.ProtoReflect.Descriptor instead.
func (*ResponseContentTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_response_content_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_response_content_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_response_content_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_response_content_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_response_content_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_response_content_type_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6f, 0x0a, 0x17,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6f, 0x0a, 0x17,
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54,
0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x54, 0x0a, 0x13, 0x52, 0x65, 0x73, 0x70, 0x6f,
0x6e, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f,
@@ -145,42 +145,42 @@ var file_google_ads_googleads_v16_enums_response_content_type_proto_rawDesc = []
0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x10, 0x01, 0x12, 0x14, 0x0a, 0x10, 0x4d, 0x55, 0x54, 0x41, 0x42,
0x4c, 0x45, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x10, 0x02, 0x42, 0xf2, 0x01,
0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x43, 0x6f,
0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_response_content_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_response_content_type_proto_rawDescData = file_google_ads_googleads_v16_enums_response_content_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_response_content_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_response_content_type_proto_rawDescData = file_google_ads_googleads_v17_enums_response_content_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_response_content_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_response_content_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_response_content_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_response_content_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_response_content_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_response_content_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_response_content_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_response_content_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_response_content_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_response_content_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_response_content_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_response_content_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_response_content_type_proto_goTypes = []interface{}{
- (ResponseContentTypeEnum_ResponseContentType)(0), // 0: google.ads.googleads.v16.enums.ResponseContentTypeEnum.ResponseContentType
- (*ResponseContentTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ResponseContentTypeEnum
+var file_google_ads_googleads_v17_enums_response_content_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_response_content_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_response_content_type_proto_goTypes = []interface{}{
+ (ResponseContentTypeEnum_ResponseContentType)(0), // 0: google.ads.googleads.v17.enums.ResponseContentTypeEnum.ResponseContentType
+ (*ResponseContentTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ResponseContentTypeEnum
}
-var file_google_ads_googleads_v16_enums_response_content_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_response_content_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -188,13 +188,13 @@ var file_google_ads_googleads_v16_enums_response_content_type_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_response_content_type_proto_init() }
-func file_google_ads_googleads_v16_enums_response_content_type_proto_init() {
- if File_google_ads_googleads_v16_enums_response_content_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_response_content_type_proto_init() }
+func file_google_ads_googleads_v17_enums_response_content_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_response_content_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_response_content_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_response_content_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ResponseContentTypeEnum); i {
case 0:
return &v.state
@@ -211,19 +211,19 @@ func file_google_ads_googleads_v16_enums_response_content_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_response_content_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_response_content_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_response_content_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_response_content_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_response_content_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_response_content_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_response_content_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_response_content_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_response_content_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_response_content_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_response_content_type_proto = out.File
- file_google_ads_googleads_v16_enums_response_content_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_response_content_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_response_content_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_response_content_type_proto = out.File
+ file_google_ads_googleads_v17_enums_response_content_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_response_content_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_response_content_type_proto_depIdxs = nil
}
diff --git a/enums/search_engine_results_page_type.pb.go b/enums/search_engine_results_page_type.pb.go
index d479974b..73d8ee0d 100644
--- a/enums/search_engine_results_page_type.pb.go
+++ b/enums/search_engine_results_page_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/search_engine_results_page_type.proto
+// source: google/ads/googleads/v17/enums/search_engine_results_page_type.proto
package enums
@@ -80,11 +80,11 @@ func (x SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType) String() st
}
func (SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_enumTypes[0].Descriptor()
}
func (SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_enumTypes[0]
}
func (x SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType) Number() pr
// Deprecated: Use SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType.Descriptor instead.
func (SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_rawDescGZIP(), []int{0, 0}
}
// The type of the search engine results page.
@@ -106,7 +106,7 @@ type SearchEngineResultsPageTypeEnum struct {
func (x *SearchEngineResultsPageTypeEnum) Reset() {
*x = SearchEngineResultsPageTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *SearchEngineResultsPageTypeEnum) String() string {
func (*SearchEngineResultsPageTypeEnum) ProtoMessage() {}
func (x *SearchEngineResultsPageTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,18 +132,18 @@ func (x *SearchEngineResultsPageTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SearchEngineResultsPageTypeEnum.ProtoReflect.Descriptor instead.
func (*SearchEngineResultsPageTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_search_engine_results_page_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_search_engine_results_page_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_rawDesc = []byte{
0x0a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x65, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5f, 0x72,
0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x93, 0x01, 0x0a, 0x1f, 0x53, 0x65, 0x61, 0x72, 0x63,
0x68, 0x45, 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x50, 0x61,
0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x70, 0x0a, 0x1b, 0x53, 0x65,
@@ -155,43 +155,43 @@ var file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_ra
0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x10, 0x03, 0x12, 0x13, 0x0a, 0x0f, 0x41, 0x44, 0x53, 0x5f, 0x41,
0x4e, 0x44, 0x5f, 0x4f, 0x52, 0x47, 0x41, 0x4e, 0x49, 0x43, 0x10, 0x04, 0x42, 0xfa, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x20, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x45, 0x6e, 0x67, 0x69, 0x6e,
0x65, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x50, 0x61, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_rawDescData = file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_rawDescData = file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_goTypes = []interface{}{
- (SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType)(0), // 0: google.ads.googleads.v16.enums.SearchEngineResultsPageTypeEnum.SearchEngineResultsPageType
- (*SearchEngineResultsPageTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.SearchEngineResultsPageTypeEnum
+var file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_goTypes = []interface{}{
+ (SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType)(0), // 0: google.ads.googleads.v17.enums.SearchEngineResultsPageTypeEnum.SearchEngineResultsPageType
+ (*SearchEngineResultsPageTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.SearchEngineResultsPageTypeEnum
}
-var file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -199,13 +199,13 @@ var file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_de
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_init() }
-func file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_init() {
- if File_google_ads_googleads_v16_enums_search_engine_results_page_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_init() }
+func file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_search_engine_results_page_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SearchEngineResultsPageTypeEnum); i {
case 0:
return &v.state
@@ -222,19 +222,19 @@ func file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_i
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_search_engine_results_page_type_proto = out.File
- file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_search_engine_results_page_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_search_engine_results_page_type_proto = out.File
+ file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_search_engine_results_page_type_proto_depIdxs = nil
}
diff --git a/enums/search_term_match_type.pb.go b/enums/search_term_match_type.pb.go
index 395c7d2d..70f0ca54 100644
--- a/enums/search_term_match_type.pb.go
+++ b/enums/search_term_match_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/search_term_match_type.proto
+// source: google/ads/googleads/v17/enums/search_term_match_type.proto
package enums
@@ -87,11 +87,11 @@ func (x SearchTermMatchTypeEnum_SearchTermMatchType) String() string {
}
func (SearchTermMatchTypeEnum_SearchTermMatchType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_search_term_match_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_search_term_match_type_proto_enumTypes[0].Descriptor()
}
func (SearchTermMatchTypeEnum_SearchTermMatchType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_search_term_match_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_search_term_match_type_proto_enumTypes[0]
}
func (x SearchTermMatchTypeEnum_SearchTermMatchType) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x SearchTermMatchTypeEnum_SearchTermMatchType) Number() protoreflect.EnumN
// Deprecated: Use SearchTermMatchTypeEnum_SearchTermMatchType.Descriptor instead.
func (SearchTermMatchTypeEnum_SearchTermMatchType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_search_term_match_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_search_term_match_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing match types for a keyword triggering an ad.
@@ -113,7 +113,7 @@ type SearchTermMatchTypeEnum struct {
func (x *SearchTermMatchTypeEnum) Reset() {
*x = SearchTermMatchTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_search_term_match_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_search_term_match_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +126,7 @@ func (x *SearchTermMatchTypeEnum) String() string {
func (*SearchTermMatchTypeEnum) ProtoMessage() {}
func (x *SearchTermMatchTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_search_term_match_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_search_term_match_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,18 +139,18 @@ func (x *SearchTermMatchTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SearchTermMatchTypeEnum.ProtoReflect.Descriptor instead.
func (*SearchTermMatchTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_search_term_match_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_search_term_match_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_search_term_match_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_search_term_match_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_search_term_match_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_search_term_match_type_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x6d, 0x61, 0x74,
0x63, 0x68, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x91, 0x01,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x91, 0x01,
0x0a, 0x17, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x4d, 0x61, 0x74, 0x63,
0x68, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x76, 0x0a, 0x13, 0x53, 0x65, 0x61,
0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65,
@@ -162,41 +162,41 @@ var file_google_ads_googleads_v16_enums_search_term_match_type_proto_rawDesc = [
0x12, 0x0f, 0x0a, 0x0b, 0x4e, 0x45, 0x41, 0x52, 0x5f, 0x50, 0x48, 0x52, 0x41, 0x53, 0x45, 0x10,
0x06, 0x42, 0xf2, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
0x54, 0x65, 0x72, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_search_term_match_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_search_term_match_type_proto_rawDescData = file_google_ads_googleads_v16_enums_search_term_match_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_search_term_match_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_search_term_match_type_proto_rawDescData = file_google_ads_googleads_v17_enums_search_term_match_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_search_term_match_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_search_term_match_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_search_term_match_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_search_term_match_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_search_term_match_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_search_term_match_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_search_term_match_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_search_term_match_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_search_term_match_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_search_term_match_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_search_term_match_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_search_term_match_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_search_term_match_type_proto_goTypes = []interface{}{
- (SearchTermMatchTypeEnum_SearchTermMatchType)(0), // 0: google.ads.googleads.v16.enums.SearchTermMatchTypeEnum.SearchTermMatchType
- (*SearchTermMatchTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.SearchTermMatchTypeEnum
+var file_google_ads_googleads_v17_enums_search_term_match_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_search_term_match_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_search_term_match_type_proto_goTypes = []interface{}{
+ (SearchTermMatchTypeEnum_SearchTermMatchType)(0), // 0: google.ads.googleads.v17.enums.SearchTermMatchTypeEnum.SearchTermMatchType
+ (*SearchTermMatchTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.SearchTermMatchTypeEnum
}
-var file_google_ads_googleads_v16_enums_search_term_match_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_search_term_match_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -204,13 +204,13 @@ var file_google_ads_googleads_v16_enums_search_term_match_type_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_search_term_match_type_proto_init() }
-func file_google_ads_googleads_v16_enums_search_term_match_type_proto_init() {
- if File_google_ads_googleads_v16_enums_search_term_match_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_search_term_match_type_proto_init() }
+func file_google_ads_googleads_v17_enums_search_term_match_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_search_term_match_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_search_term_match_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_search_term_match_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SearchTermMatchTypeEnum); i {
case 0:
return &v.state
@@ -227,19 +227,19 @@ func file_google_ads_googleads_v16_enums_search_term_match_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_search_term_match_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_search_term_match_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_search_term_match_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_search_term_match_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_search_term_match_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_search_term_match_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_search_term_match_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_search_term_match_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_search_term_match_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_search_term_match_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_search_term_match_type_proto = out.File
- file_google_ads_googleads_v16_enums_search_term_match_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_search_term_match_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_search_term_match_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_search_term_match_type_proto = out.File
+ file_google_ads_googleads_v17_enums_search_term_match_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_search_term_match_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_search_term_match_type_proto_depIdxs = nil
}
diff --git a/enums/search_term_targeting_status.pb.go b/enums/search_term_targeting_status.pb.go
index 61c7dfbf..a57d5b47 100644
--- a/enums/search_term_targeting_status.pb.go
+++ b/enums/search_term_targeting_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/search_term_targeting_status.proto
+// source: google/ads/googleads/v17/enums/search_term_targeting_status.proto
package enums
@@ -84,11 +84,11 @@ func (x SearchTermTargetingStatusEnum_SearchTermTargetingStatus) String() string
}
func (SearchTermTargetingStatusEnum_SearchTermTargetingStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_enumTypes[0].Descriptor()
}
func (SearchTermTargetingStatusEnum_SearchTermTargetingStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_enumTypes[0]
}
func (x SearchTermTargetingStatusEnum_SearchTermTargetingStatus) Number() protoreflect.EnumNumber {
@@ -97,7 +97,7 @@ func (x SearchTermTargetingStatusEnum_SearchTermTargetingStatus) Number() protor
// Deprecated: Use SearchTermTargetingStatusEnum_SearchTermTargetingStatus.Descriptor instead.
func (SearchTermTargetingStatusEnum_SearchTermTargetingStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum indicating whether a search term is one of your targeted
@@ -111,7 +111,7 @@ type SearchTermTargetingStatusEnum struct {
func (x *SearchTermTargetingStatusEnum) Reset() {
*x = SearchTermTargetingStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -124,7 +124,7 @@ func (x *SearchTermTargetingStatusEnum) String() string {
func (*SearchTermTargetingStatusEnum) ProtoMessage() {}
func (x *SearchTermTargetingStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -137,18 +137,18 @@ func (x *SearchTermTargetingStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SearchTermTargetingStatusEnum.ProtoReflect.Descriptor instead.
func (*SearchTermTargetingStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_search_term_targeting_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_search_term_targeting_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_rawDesc = []byte{
0x0a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x74, 0x61, 0x72,
0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x22, 0x91, 0x01, 0x0a, 0x1d, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65,
0x72, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75,
0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x70, 0x0a, 0x19, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54,
@@ -160,42 +160,42 @@ var file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_rawDe
0x45, 0x44, 0x5f, 0x45, 0x58, 0x43, 0x4c, 0x55, 0x44, 0x45, 0x44, 0x10, 0x04, 0x12, 0x08, 0x0a,
0x04, 0x4e, 0x4f, 0x4e, 0x45, 0x10, 0x05, 0x42, 0xf8, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e,
0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74,
0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_rawDescData = file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_rawDescData = file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_goTypes = []interface{}{
- (SearchTermTargetingStatusEnum_SearchTermTargetingStatus)(0), // 0: google.ads.googleads.v16.enums.SearchTermTargetingStatusEnum.SearchTermTargetingStatus
- (*SearchTermTargetingStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.SearchTermTargetingStatusEnum
+var file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_goTypes = []interface{}{
+ (SearchTermTargetingStatusEnum_SearchTermTargetingStatus)(0), // 0: google.ads.googleads.v17.enums.SearchTermTargetingStatusEnum.SearchTermTargetingStatus
+ (*SearchTermTargetingStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.SearchTermTargetingStatusEnum
}
-var file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -203,13 +203,13 @@ var file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_depId
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_init() }
-func file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_init() {
- if File_google_ads_googleads_v16_enums_search_term_targeting_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_init() }
+func file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_search_term_targeting_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SearchTermTargetingStatusEnum); i {
case 0:
return &v.state
@@ -226,19 +226,19 @@ func file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_init
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_search_term_targeting_status_proto = out.File
- file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_search_term_targeting_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_search_term_targeting_status_proto = out.File
+ file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_search_term_targeting_status_proto_depIdxs = nil
}
diff --git a/enums/seasonality_event_scope.pb.go b/enums/seasonality_event_scope.pb.go
index 77048a1c..e154efea 100644
--- a/enums/seasonality_event_scope.pb.go
+++ b/enums/seasonality_event_scope.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/seasonality_event_scope.proto
+// source: google/ads/googleads/v17/enums/seasonality_event_scope.proto
package enums
@@ -84,11 +84,11 @@ func (x SeasonalityEventScopeEnum_SeasonalityEventScope) String() string {
}
func (SeasonalityEventScopeEnum_SeasonalityEventScope) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_enumTypes[0].Descriptor()
}
func (SeasonalityEventScopeEnum_SeasonalityEventScope) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_enumTypes[0]
}
func (x SeasonalityEventScopeEnum_SeasonalityEventScope) Number() protoreflect.EnumNumber {
@@ -97,7 +97,7 @@ func (x SeasonalityEventScopeEnum_SeasonalityEventScope) Number() protoreflect.E
// Deprecated: Use SeasonalityEventScopeEnum_SeasonalityEventScope.Descriptor instead.
func (SeasonalityEventScopeEnum_SeasonalityEventScope) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing seasonality event scopes. The two types of seasonality
@@ -111,7 +111,7 @@ type SeasonalityEventScopeEnum struct {
func (x *SeasonalityEventScopeEnum) Reset() {
*x = SeasonalityEventScopeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -124,7 +124,7 @@ func (x *SeasonalityEventScopeEnum) String() string {
func (*SeasonalityEventScopeEnum) ProtoMessage() {}
func (x *SeasonalityEventScopeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -137,18 +137,18 @@ func (x *SeasonalityEventScopeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SeasonalityEventScopeEnum.ProtoReflect.Descriptor instead.
func (*SeasonalityEventScopeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_seasonality_event_scope_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_seasonality_event_scope_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x65, 0x76, 0x65,
0x6e, 0x74, 0x5f, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7b,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7b,
0x0a, 0x19, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x45, 0x76, 0x65,
0x6e, 0x74, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5e, 0x0a, 0x15, 0x53,
0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x53,
@@ -158,42 +158,42 @@ var file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_rawDesc =
0x12, 0x0c, 0x0a, 0x08, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x10, 0x04, 0x12, 0x0b,
0x0a, 0x07, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x10, 0x05, 0x42, 0xf4, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x1a, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x45,
0x76, 0x65, 0x6e, 0x74, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_rawDescData = file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_rawDesc
+ file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_rawDescData = file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_goTypes = []interface{}{
- (SeasonalityEventScopeEnum_SeasonalityEventScope)(0), // 0: google.ads.googleads.v16.enums.SeasonalityEventScopeEnum.SeasonalityEventScope
- (*SeasonalityEventScopeEnum)(nil), // 1: google.ads.googleads.v16.enums.SeasonalityEventScopeEnum
+var file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_goTypes = []interface{}{
+ (SeasonalityEventScopeEnum_SeasonalityEventScope)(0), // 0: google.ads.googleads.v17.enums.SeasonalityEventScopeEnum.SeasonalityEventScope
+ (*SeasonalityEventScopeEnum)(nil), // 1: google.ads.googleads.v17.enums.SeasonalityEventScopeEnum
}
-var file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -201,13 +201,13 @@ var file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_init() }
-func file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_init() {
- if File_google_ads_googleads_v16_enums_seasonality_event_scope_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_init() }
+func file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_init() {
+ if File_google_ads_googleads_v17_enums_seasonality_event_scope_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SeasonalityEventScopeEnum); i {
case 0:
return &v.state
@@ -224,19 +224,19 @@ func file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_seasonality_event_scope_proto = out.File
- file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_seasonality_event_scope_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_seasonality_event_scope_proto = out.File
+ file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_seasonality_event_scope_proto_depIdxs = nil
}
diff --git a/enums/seasonality_event_status.pb.go b/enums/seasonality_event_status.pb.go
index 8bec2da2..1ece0afd 100644
--- a/enums/seasonality_event_status.pb.go
+++ b/enums/seasonality_event_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/seasonality_event_status.proto
+// source: google/ads/googleads/v17/enums/seasonality_event_status.proto
package enums
@@ -77,11 +77,11 @@ func (x SeasonalityEventStatusEnum_SeasonalityEventStatus) String() string {
}
func (SeasonalityEventStatusEnum_SeasonalityEventStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_seasonality_event_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_seasonality_event_status_proto_enumTypes[0].Descriptor()
}
func (SeasonalityEventStatusEnum_SeasonalityEventStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_seasonality_event_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_seasonality_event_status_proto_enumTypes[0]
}
func (x SeasonalityEventStatusEnum_SeasonalityEventStatus) Number() protoreflect.EnumNumber {
@@ -90,7 +90,7 @@ func (x SeasonalityEventStatusEnum_SeasonalityEventStatus) Number() protoreflect
// Deprecated: Use SeasonalityEventStatusEnum_SeasonalityEventStatus.Descriptor instead.
func (SeasonalityEventStatusEnum_SeasonalityEventStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_seasonality_event_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_seasonality_event_status_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing seasonality event statuses. The two types of seasonality
@@ -104,7 +104,7 @@ type SeasonalityEventStatusEnum struct {
func (x *SeasonalityEventStatusEnum) Reset() {
*x = SeasonalityEventStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_seasonality_event_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_seasonality_event_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -117,7 +117,7 @@ func (x *SeasonalityEventStatusEnum) String() string {
func (*SeasonalityEventStatusEnum) ProtoMessage() {}
func (x *SeasonalityEventStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_seasonality_event_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_seasonality_event_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -130,18 +130,18 @@ func (x *SeasonalityEventStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SeasonalityEventStatusEnum.ProtoReflect.Descriptor instead.
func (*SeasonalityEventStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_seasonality_event_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_seasonality_event_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_seasonality_event_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_seasonality_event_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_seasonality_event_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_seasonality_event_status_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x65, 0x76, 0x65,
0x6e, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
0x6e, 0x0a, 0x1a, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x45, 0x76,
0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x50, 0x0a,
0x16, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x45, 0x76, 0x65, 0x6e,
@@ -150,42 +150,42 @@ var file_google_ads_googleads_v16_enums_seasonality_event_status_proto_rawDesc =
0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44,
0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x04, 0x42,
0xf5, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c,
0x69, 0x74, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_seasonality_event_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_seasonality_event_status_proto_rawDescData = file_google_ads_googleads_v16_enums_seasonality_event_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_seasonality_event_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_seasonality_event_status_proto_rawDescData = file_google_ads_googleads_v17_enums_seasonality_event_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_seasonality_event_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_seasonality_event_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_seasonality_event_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_seasonality_event_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_seasonality_event_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_seasonality_event_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_seasonality_event_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_seasonality_event_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_seasonality_event_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_seasonality_event_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_seasonality_event_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_seasonality_event_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_seasonality_event_status_proto_goTypes = []interface{}{
- (SeasonalityEventStatusEnum_SeasonalityEventStatus)(0), // 0: google.ads.googleads.v16.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus
- (*SeasonalityEventStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.SeasonalityEventStatusEnum
+var file_google_ads_googleads_v17_enums_seasonality_event_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_seasonality_event_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_seasonality_event_status_proto_goTypes = []interface{}{
+ (SeasonalityEventStatusEnum_SeasonalityEventStatus)(0), // 0: google.ads.googleads.v17.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus
+ (*SeasonalityEventStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.SeasonalityEventStatusEnum
}
-var file_google_ads_googleads_v16_enums_seasonality_event_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_seasonality_event_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -193,13 +193,13 @@ var file_google_ads_googleads_v16_enums_seasonality_event_status_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_seasonality_event_status_proto_init() }
-func file_google_ads_googleads_v16_enums_seasonality_event_status_proto_init() {
- if File_google_ads_googleads_v16_enums_seasonality_event_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_seasonality_event_status_proto_init() }
+func file_google_ads_googleads_v17_enums_seasonality_event_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_seasonality_event_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_seasonality_event_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_seasonality_event_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SeasonalityEventStatusEnum); i {
case 0:
return &v.state
@@ -216,19 +216,19 @@ func file_google_ads_googleads_v16_enums_seasonality_event_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_seasonality_event_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_seasonality_event_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_seasonality_event_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_seasonality_event_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_seasonality_event_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_seasonality_event_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_seasonality_event_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_seasonality_event_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_seasonality_event_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_seasonality_event_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_seasonality_event_status_proto = out.File
- file_google_ads_googleads_v16_enums_seasonality_event_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_seasonality_event_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_seasonality_event_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_seasonality_event_status_proto = out.File
+ file_google_ads_googleads_v17_enums_seasonality_event_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_seasonality_event_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_seasonality_event_status_proto_depIdxs = nil
}
diff --git a/enums/served_asset_field_type.pb.go b/enums/served_asset_field_type.pb.go
index 59aeb188..8e2b19fc 100644
--- a/enums/served_asset_field_type.pb.go
+++ b/enums/served_asset_field_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/served_asset_field_type.proto
+// source: google/ads/googleads/v17/enums/served_asset_field_type.proto
package enums
@@ -193,11 +193,11 @@ func (x ServedAssetFieldTypeEnum_ServedAssetFieldType) String() string {
}
func (ServedAssetFieldTypeEnum_ServedAssetFieldType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_served_asset_field_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_served_asset_field_type_proto_enumTypes[0].Descriptor()
}
func (ServedAssetFieldTypeEnum_ServedAssetFieldType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_served_asset_field_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_served_asset_field_type_proto_enumTypes[0]
}
func (x ServedAssetFieldTypeEnum_ServedAssetFieldType) Number() protoreflect.EnumNumber {
@@ -206,7 +206,7 @@ func (x ServedAssetFieldTypeEnum_ServedAssetFieldType) Number() protoreflect.Enu
// Deprecated: Use ServedAssetFieldTypeEnum_ServedAssetFieldType.Descriptor instead.
func (ServedAssetFieldTypeEnum_ServedAssetFieldType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_served_asset_field_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_served_asset_field_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible asset field types.
@@ -219,7 +219,7 @@ type ServedAssetFieldTypeEnum struct {
func (x *ServedAssetFieldTypeEnum) Reset() {
*x = ServedAssetFieldTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_served_asset_field_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_served_asset_field_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -232,7 +232,7 @@ func (x *ServedAssetFieldTypeEnum) String() string {
func (*ServedAssetFieldTypeEnum) ProtoMessage() {}
func (x *ServedAssetFieldTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_served_asset_field_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_served_asset_field_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -245,18 +245,18 @@ func (x *ServedAssetFieldTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ServedAssetFieldTypeEnum.ProtoReflect.Descriptor instead.
func (*ServedAssetFieldTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_served_asset_field_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_served_asset_field_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_served_asset_field_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_served_asset_field_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_served_asset_field_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_served_asset_field_type_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69,
0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8f,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8f,
0x05, 0x0a, 0x18, 0x53, 0x65, 0x72, 0x76, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69,
0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xf2, 0x04, 0x0a, 0x14,
0x53, 0x65, 0x72, 0x76, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64,
@@ -300,41 +300,41 @@ var file_google_ads_googleads_v16_enums_served_asset_field_type_proto_rawDesc =
0x0d, 0x42, 0x55, 0x53, 0x49, 0x4e, 0x45, 0x53, 0x53, 0x5f, 0x4c, 0x4f, 0x47, 0x4f, 0x10, 0x1f,
0x42, 0xf3, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x53, 0x65, 0x72, 0x76, 0x65, 0x64, 0x41,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x53, 0x65, 0x72, 0x76, 0x65, 0x64, 0x41,
0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_served_asset_field_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_served_asset_field_type_proto_rawDescData = file_google_ads_googleads_v16_enums_served_asset_field_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_served_asset_field_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_served_asset_field_type_proto_rawDescData = file_google_ads_googleads_v17_enums_served_asset_field_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_served_asset_field_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_served_asset_field_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_served_asset_field_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_served_asset_field_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_served_asset_field_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_served_asset_field_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_served_asset_field_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_served_asset_field_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_served_asset_field_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_served_asset_field_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_served_asset_field_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_served_asset_field_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_served_asset_field_type_proto_goTypes = []interface{}{
- (ServedAssetFieldTypeEnum_ServedAssetFieldType)(0), // 0: google.ads.googleads.v16.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType
- (*ServedAssetFieldTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ServedAssetFieldTypeEnum
+var file_google_ads_googleads_v17_enums_served_asset_field_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_served_asset_field_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_served_asset_field_type_proto_goTypes = []interface{}{
+ (ServedAssetFieldTypeEnum_ServedAssetFieldType)(0), // 0: google.ads.googleads.v17.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType
+ (*ServedAssetFieldTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ServedAssetFieldTypeEnum
}
-var file_google_ads_googleads_v16_enums_served_asset_field_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_served_asset_field_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -342,13 +342,13 @@ var file_google_ads_googleads_v16_enums_served_asset_field_type_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_served_asset_field_type_proto_init() }
-func file_google_ads_googleads_v16_enums_served_asset_field_type_proto_init() {
- if File_google_ads_googleads_v16_enums_served_asset_field_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_served_asset_field_type_proto_init() }
+func file_google_ads_googleads_v17_enums_served_asset_field_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_served_asset_field_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_served_asset_field_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_served_asset_field_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ServedAssetFieldTypeEnum); i {
case 0:
return &v.state
@@ -365,19 +365,19 @@ func file_google_ads_googleads_v16_enums_served_asset_field_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_served_asset_field_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_served_asset_field_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_served_asset_field_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_served_asset_field_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_served_asset_field_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_served_asset_field_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_served_asset_field_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_served_asset_field_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_served_asset_field_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_served_asset_field_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_served_asset_field_type_proto = out.File
- file_google_ads_googleads_v16_enums_served_asset_field_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_served_asset_field_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_served_asset_field_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_served_asset_field_type_proto = out.File
+ file_google_ads_googleads_v17_enums_served_asset_field_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_served_asset_field_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_served_asset_field_type_proto_depIdxs = nil
}
diff --git a/enums/shared_set_status.pb.go b/enums/shared_set_status.pb.go
index 35ec3537..f57cb540 100644
--- a/enums/shared_set_status.pb.go
+++ b/enums/shared_set_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/shared_set_status.proto
+// source: google/ads/googleads/v17/enums/shared_set_status.proto
package enums
@@ -75,11 +75,11 @@ func (x SharedSetStatusEnum_SharedSetStatus) String() string {
}
func (SharedSetStatusEnum_SharedSetStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_shared_set_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_shared_set_status_proto_enumTypes[0].Descriptor()
}
func (SharedSetStatusEnum_SharedSetStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_shared_set_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_shared_set_status_proto_enumTypes[0]
}
func (x SharedSetStatusEnum_SharedSetStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x SharedSetStatusEnum_SharedSetStatus) Number() protoreflect.EnumNumber {
// Deprecated: Use SharedSetStatusEnum_SharedSetStatus.Descriptor instead.
func (SharedSetStatusEnum_SharedSetStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_shared_set_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_shared_set_status_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing types of shared set statuses.
@@ -101,7 +101,7 @@ type SharedSetStatusEnum struct {
func (x *SharedSetStatusEnum) Reset() {
*x = SharedSetStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_shared_set_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_shared_set_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *SharedSetStatusEnum) String() string {
func (*SharedSetStatusEnum) ProtoMessage() {}
func (x *SharedSetStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_shared_set_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_shared_set_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *SharedSetStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SharedSetStatusEnum.ProtoReflect.Descriptor instead.
func (*SharedSetStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_shared_set_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_shared_set_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_shared_set_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_shared_set_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_shared_set_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_shared_set_status_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74,
0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x60, 0x0a, 0x13, 0x53, 0x68, 0x61, 0x72,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x60, 0x0a, 0x13, 0x53, 0x68, 0x61, 0x72,
0x65, 0x64, 0x53, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x49, 0x0a, 0x0f, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45,
@@ -146,42 +146,42 @@ var file_google_ads_googleads_v16_enums_shared_set_status_proto_rawDesc = []byte
0x12, 0x0b, 0x0a, 0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0b, 0x0a,
0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x42, 0xee, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x14, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_shared_set_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_shared_set_status_proto_rawDescData = file_google_ads_googleads_v16_enums_shared_set_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_shared_set_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_shared_set_status_proto_rawDescData = file_google_ads_googleads_v17_enums_shared_set_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_shared_set_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_shared_set_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_shared_set_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_shared_set_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_shared_set_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_shared_set_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_shared_set_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_shared_set_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_shared_set_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_shared_set_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_shared_set_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_shared_set_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_shared_set_status_proto_goTypes = []interface{}{
- (SharedSetStatusEnum_SharedSetStatus)(0), // 0: google.ads.googleads.v16.enums.SharedSetStatusEnum.SharedSetStatus
- (*SharedSetStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.SharedSetStatusEnum
+var file_google_ads_googleads_v17_enums_shared_set_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_shared_set_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_shared_set_status_proto_goTypes = []interface{}{
+ (SharedSetStatusEnum_SharedSetStatus)(0), // 0: google.ads.googleads.v17.enums.SharedSetStatusEnum.SharedSetStatus
+ (*SharedSetStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.SharedSetStatusEnum
}
-var file_google_ads_googleads_v16_enums_shared_set_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_shared_set_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -189,13 +189,13 @@ var file_google_ads_googleads_v16_enums_shared_set_status_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_shared_set_status_proto_init() }
-func file_google_ads_googleads_v16_enums_shared_set_status_proto_init() {
- if File_google_ads_googleads_v16_enums_shared_set_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_shared_set_status_proto_init() }
+func file_google_ads_googleads_v17_enums_shared_set_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_shared_set_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_shared_set_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_shared_set_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SharedSetStatusEnum); i {
case 0:
return &v.state
@@ -212,19 +212,19 @@ func file_google_ads_googleads_v16_enums_shared_set_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_shared_set_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_shared_set_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_shared_set_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_shared_set_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_shared_set_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_shared_set_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_shared_set_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_shared_set_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_shared_set_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_shared_set_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_shared_set_status_proto = out.File
- file_google_ads_googleads_v16_enums_shared_set_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_shared_set_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_shared_set_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_shared_set_status_proto = out.File
+ file_google_ads_googleads_v17_enums_shared_set_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_shared_set_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_shared_set_status_proto_depIdxs = nil
}
diff --git a/enums/shared_set_type.pb.go b/enums/shared_set_type.pb.go
index 50705e54..59ef65a8 100644
--- a/enums/shared_set_type.pb.go
+++ b/enums/shared_set_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/shared_set_type.proto
+// source: google/ads/googleads/v17/enums/shared_set_type.proto
package enums
@@ -83,11 +83,11 @@ func (x SharedSetTypeEnum_SharedSetType) String() string {
}
func (SharedSetTypeEnum_SharedSetType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_shared_set_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_shared_set_type_proto_enumTypes[0].Descriptor()
}
func (SharedSetTypeEnum_SharedSetType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_shared_set_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_shared_set_type_proto_enumTypes[0]
}
func (x SharedSetTypeEnum_SharedSetType) Number() protoreflect.EnumNumber {
@@ -96,7 +96,7 @@ func (x SharedSetTypeEnum_SharedSetType) Number() protoreflect.EnumNumber {
// Deprecated: Use SharedSetTypeEnum_SharedSetType.Descriptor instead.
func (SharedSetTypeEnum_SharedSetType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_shared_set_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_shared_set_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing types of shared sets.
@@ -109,7 +109,7 @@ type SharedSetTypeEnum struct {
func (x *SharedSetTypeEnum) Reset() {
*x = SharedSetTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_shared_set_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_shared_set_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -122,7 +122,7 @@ func (x *SharedSetTypeEnum) String() string {
func (*SharedSetTypeEnum) ProtoMessage() {}
func (x *SharedSetTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_shared_set_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_shared_set_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -135,17 +135,17 @@ func (x *SharedSetTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SharedSetTypeEnum.ProtoReflect.Descriptor instead.
func (*SharedSetTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_shared_set_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_shared_set_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_shared_set_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_shared_set_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_shared_set_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_shared_set_type_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa4, 0x01, 0x0a, 0x11, 0x53, 0x68, 0x61, 0x72, 0x65,
0x64, 0x53, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x8e, 0x01, 0x0a,
0x0d, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f,
@@ -158,42 +158,42 @@ var file_google_ads_googleads_v16_enums_shared_set_type_proto_rawDesc = []byte{
0x47, 0x41, 0x54, 0x49, 0x56, 0x45, 0x5f, 0x4b, 0x45, 0x59, 0x57, 0x4f, 0x52, 0x44, 0x53, 0x10,
0x04, 0x12, 0x0a, 0x0a, 0x06, 0x42, 0x52, 0x41, 0x4e, 0x44, 0x53, 0x10, 0x05, 0x42, 0xec, 0x01,
0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x54,
0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_shared_set_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_shared_set_type_proto_rawDescData = file_google_ads_googleads_v16_enums_shared_set_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_shared_set_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_shared_set_type_proto_rawDescData = file_google_ads_googleads_v17_enums_shared_set_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_shared_set_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_shared_set_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_shared_set_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_shared_set_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_shared_set_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_shared_set_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_shared_set_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_shared_set_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_shared_set_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_shared_set_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_shared_set_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_shared_set_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_shared_set_type_proto_goTypes = []interface{}{
- (SharedSetTypeEnum_SharedSetType)(0), // 0: google.ads.googleads.v16.enums.SharedSetTypeEnum.SharedSetType
- (*SharedSetTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.SharedSetTypeEnum
+var file_google_ads_googleads_v17_enums_shared_set_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_shared_set_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_shared_set_type_proto_goTypes = []interface{}{
+ (SharedSetTypeEnum_SharedSetType)(0), // 0: google.ads.googleads.v17.enums.SharedSetTypeEnum.SharedSetType
+ (*SharedSetTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.SharedSetTypeEnum
}
-var file_google_ads_googleads_v16_enums_shared_set_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_shared_set_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -201,13 +201,13 @@ var file_google_ads_googleads_v16_enums_shared_set_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_shared_set_type_proto_init() }
-func file_google_ads_googleads_v16_enums_shared_set_type_proto_init() {
- if File_google_ads_googleads_v16_enums_shared_set_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_shared_set_type_proto_init() }
+func file_google_ads_googleads_v17_enums_shared_set_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_shared_set_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_shared_set_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_shared_set_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SharedSetTypeEnum); i {
case 0:
return &v.state
@@ -224,19 +224,19 @@ func file_google_ads_googleads_v16_enums_shared_set_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_shared_set_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_shared_set_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_shared_set_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_shared_set_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_shared_set_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_shared_set_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_shared_set_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_shared_set_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_shared_set_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_shared_set_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_shared_set_type_proto = out.File
- file_google_ads_googleads_v16_enums_shared_set_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_shared_set_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_shared_set_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_shared_set_type_proto = out.File
+ file_google_ads_googleads_v17_enums_shared_set_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_shared_set_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_shared_set_type_proto_depIdxs = nil
}
diff --git a/enums/shopping_add_products_to_campaign_recommendation_enum.pb.go b/enums/shopping_add_products_to_campaign_recommendation_enum.pb.go
index 68c8e62e..797ed311 100644
--- a/enums/shopping_add_products_to_campaign_recommendation_enum.pb.go
+++ b/enums/shopping_add_products_to_campaign_recommendation_enum.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/shopping_add_products_to_campaign_recommendation_enum.proto
+// source: google/ads/googleads/v17/enums/shopping_add_products_to_campaign_recommendation_enum.proto
package enums
@@ -86,11 +86,11 @@ func (x ShoppingAddProductsToCampaignRecommendationEnum_Reason) String() string
}
func (ShoppingAddProductsToCampaignRecommendationEnum_Reason) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_enumTypes[0].Descriptor()
}
func (ShoppingAddProductsToCampaignRecommendationEnum_Reason) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_enumTypes[0]
}
func (x ShoppingAddProductsToCampaignRecommendationEnum_Reason) Number() protoreflect.EnumNumber {
@@ -99,7 +99,7 @@ func (x ShoppingAddProductsToCampaignRecommendationEnum_Reason) Number() protore
// Deprecated: Use ShoppingAddProductsToCampaignRecommendationEnum_Reason.Descriptor instead.
func (ShoppingAddProductsToCampaignRecommendationEnum_Reason) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescGZIP(), []int{0, 0}
}
// Indicates the key issue that results in a shopping campaign targeting zero
@@ -113,7 +113,7 @@ type ShoppingAddProductsToCampaignRecommendationEnum struct {
func (x *ShoppingAddProductsToCampaignRecommendationEnum) Reset() {
*x = ShoppingAddProductsToCampaignRecommendationEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +126,7 @@ func (x *ShoppingAddProductsToCampaignRecommendationEnum) String() string {
func (*ShoppingAddProductsToCampaignRecommendationEnum) ProtoMessage() {}
func (x *ShoppingAddProductsToCampaignRecommendationEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,20 +139,20 @@ func (x *ShoppingAddProductsToCampaignRecommendationEnum) ProtoReflect() protore
// Deprecated: Use ShoppingAddProductsToCampaignRecommendationEnum.ProtoReflect.Descriptor instead.
func (*ShoppingAddProductsToCampaignRecommendationEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDesc = []byte{
0x0a, 0x5a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x64, 0x64, 0x5f, 0x70, 0x72,
0x6f, 0x64, 0x75, 0x63, 0x74, 0x73, 0x5f, 0x74, 0x6f, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69,
0x67, 0x6e, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xac, 0x02, 0x0a,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xac, 0x02, 0x0a,
0x2f, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x64,
0x75, 0x63, 0x74, 0x73, 0x54, 0x6f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, 0x65,
0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d,
@@ -173,7 +173,7 @@ var file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recomm
0x52, 0x45, 0x5f, 0x45, 0x58, 0x43, 0x4c, 0x55, 0x44, 0x45, 0x44, 0x5f, 0x46, 0x52, 0x4f, 0x4d,
0x5f, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x10, 0x05, 0x42, 0x8e, 0x02, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x34, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x41, 0x64, 0x64, 0x50,
0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x73, 0x54, 0x6f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67,
0x6e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45,
@@ -181,36 +181,36 @@ var file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recomm
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescData = file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDesc
+ file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescData = file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_goTypes = []interface{}{
- (ShoppingAddProductsToCampaignRecommendationEnum_Reason)(0), // 0: google.ads.googleads.v16.enums.ShoppingAddProductsToCampaignRecommendationEnum.Reason
- (*ShoppingAddProductsToCampaignRecommendationEnum)(nil), // 1: google.ads.googleads.v16.enums.ShoppingAddProductsToCampaignRecommendationEnum
+var file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_goTypes = []interface{}{
+ (ShoppingAddProductsToCampaignRecommendationEnum_Reason)(0), // 0: google.ads.googleads.v17.enums.ShoppingAddProductsToCampaignRecommendationEnum.Reason
+ (*ShoppingAddProductsToCampaignRecommendationEnum)(nil), // 1: google.ads.googleads.v17.enums.ShoppingAddProductsToCampaignRecommendationEnum
}
-var file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -219,14 +219,14 @@ var file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recomm
}
func init() {
- file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_init()
+ file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_init()
}
-func file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_init() {
- if File_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto != nil {
+func file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_init() {
+ if File_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ShoppingAddProductsToCampaignRecommendationEnum); i {
case 0:
return &v.state
@@ -243,19 +243,19 @@ func file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recom
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto = out.File
- file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_shopping_add_products_to_campaign_recommendation_enum_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto = out.File
+ file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_shopping_add_products_to_campaign_recommendation_enum_proto_depIdxs = nil
}
diff --git a/enums/simulation_modification_method.pb.go b/enums/simulation_modification_method.pb.go
index 7873e966..9a0ae672 100644
--- a/enums/simulation_modification_method.pb.go
+++ b/enums/simulation_modification_method.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/simulation_modification_method.proto
+// source: google/ads/googleads/v17/enums/simulation_modification_method.proto
package enums
@@ -84,11 +84,11 @@ func (x SimulationModificationMethodEnum_SimulationModificationMethod) String()
}
func (SimulationModificationMethodEnum_SimulationModificationMethod) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_simulation_modification_method_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_simulation_modification_method_proto_enumTypes[0].Descriptor()
}
func (SimulationModificationMethodEnum_SimulationModificationMethod) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_simulation_modification_method_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_simulation_modification_method_proto_enumTypes[0]
}
func (x SimulationModificationMethodEnum_SimulationModificationMethod) Number() protoreflect.EnumNumber {
@@ -97,7 +97,7 @@ func (x SimulationModificationMethodEnum_SimulationModificationMethod) Number()
// Deprecated: Use SimulationModificationMethodEnum_SimulationModificationMethod.Descriptor instead.
func (SimulationModificationMethodEnum_SimulationModificationMethod) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_simulation_modification_method_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_simulation_modification_method_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the method by which a simulation modifies
@@ -111,7 +111,7 @@ type SimulationModificationMethodEnum struct {
func (x *SimulationModificationMethodEnum) Reset() {
*x = SimulationModificationMethodEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_simulation_modification_method_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_simulation_modification_method_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -124,7 +124,7 @@ func (x *SimulationModificationMethodEnum) String() string {
func (*SimulationModificationMethodEnum) ProtoMessage() {}
func (x *SimulationModificationMethodEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_simulation_modification_method_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_simulation_modification_method_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -137,18 +137,18 @@ func (x *SimulationModificationMethodEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SimulationModificationMethodEnum.ProtoReflect.Descriptor instead.
func (*SimulationModificationMethodEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_simulation_modification_method_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_simulation_modification_method_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_simulation_modification_method_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_simulation_modification_method_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_simulation_modification_method_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_simulation_modification_method_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x6f, 0x64, 0x69,
0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x87, 0x01, 0x0a, 0x20, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x63, 0x0a, 0x1c, 0x53, 0x69,
@@ -159,43 +159,43 @@ var file_google_ads_googleads_v16_enums_simulation_modification_method_proto_raw
0x4f, 0x52, 0x4d, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x44, 0x45, 0x46, 0x41, 0x55, 0x4c, 0x54,
0x10, 0x03, 0x12, 0x0b, 0x0a, 0x07, 0x53, 0x43, 0x41, 0x4c, 0x49, 0x4e, 0x47, 0x10, 0x04, 0x42,
0xfb, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65,
0x74, 0x68, 0x6f, 0x64, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_simulation_modification_method_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_simulation_modification_method_proto_rawDescData = file_google_ads_googleads_v16_enums_simulation_modification_method_proto_rawDesc
+ file_google_ads_googleads_v17_enums_simulation_modification_method_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_simulation_modification_method_proto_rawDescData = file_google_ads_googleads_v17_enums_simulation_modification_method_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_simulation_modification_method_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_simulation_modification_method_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_simulation_modification_method_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_simulation_modification_method_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_simulation_modification_method_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_simulation_modification_method_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_simulation_modification_method_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_simulation_modification_method_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_simulation_modification_method_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_simulation_modification_method_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_simulation_modification_method_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_simulation_modification_method_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_simulation_modification_method_proto_goTypes = []interface{}{
- (SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 0: google.ads.googleads.v16.enums.SimulationModificationMethodEnum.SimulationModificationMethod
- (*SimulationModificationMethodEnum)(nil), // 1: google.ads.googleads.v16.enums.SimulationModificationMethodEnum
+var file_google_ads_googleads_v17_enums_simulation_modification_method_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_simulation_modification_method_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_simulation_modification_method_proto_goTypes = []interface{}{
+ (SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 0: google.ads.googleads.v17.enums.SimulationModificationMethodEnum.SimulationModificationMethod
+ (*SimulationModificationMethodEnum)(nil), // 1: google.ads.googleads.v17.enums.SimulationModificationMethodEnum
}
-var file_google_ads_googleads_v16_enums_simulation_modification_method_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_simulation_modification_method_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -203,13 +203,13 @@ var file_google_ads_googleads_v16_enums_simulation_modification_method_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_simulation_modification_method_proto_init() }
-func file_google_ads_googleads_v16_enums_simulation_modification_method_proto_init() {
- if File_google_ads_googleads_v16_enums_simulation_modification_method_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_simulation_modification_method_proto_init() }
+func file_google_ads_googleads_v17_enums_simulation_modification_method_proto_init() {
+ if File_google_ads_googleads_v17_enums_simulation_modification_method_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_simulation_modification_method_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_simulation_modification_method_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SimulationModificationMethodEnum); i {
case 0:
return &v.state
@@ -226,19 +226,19 @@ func file_google_ads_googleads_v16_enums_simulation_modification_method_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_simulation_modification_method_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_simulation_modification_method_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_simulation_modification_method_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_simulation_modification_method_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_simulation_modification_method_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_simulation_modification_method_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_simulation_modification_method_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_simulation_modification_method_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_simulation_modification_method_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_simulation_modification_method_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_simulation_modification_method_proto = out.File
- file_google_ads_googleads_v16_enums_simulation_modification_method_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_simulation_modification_method_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_simulation_modification_method_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_simulation_modification_method_proto = out.File
+ file_google_ads_googleads_v17_enums_simulation_modification_method_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_simulation_modification_method_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_simulation_modification_method_proto_depIdxs = nil
}
diff --git a/enums/simulation_type.pb.go b/enums/simulation_type.pb.go
index 592b7be5..8b6fbb03 100644
--- a/enums/simulation_type.pb.go
+++ b/enums/simulation_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/simulation_type.proto
+// source: google/ads/googleads/v17/enums/simulation_type.proto
package enums
@@ -99,11 +99,11 @@ func (x SimulationTypeEnum_SimulationType) String() string {
}
func (SimulationTypeEnum_SimulationType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_simulation_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_simulation_type_proto_enumTypes[0].Descriptor()
}
func (SimulationTypeEnum_SimulationType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_simulation_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_simulation_type_proto_enumTypes[0]
}
func (x SimulationTypeEnum_SimulationType) Number() protoreflect.EnumNumber {
@@ -112,7 +112,7 @@ func (x SimulationTypeEnum_SimulationType) Number() protoreflect.EnumNumber {
// Deprecated: Use SimulationTypeEnum_SimulationType.Descriptor instead.
func (SimulationTypeEnum_SimulationType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_simulation_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_simulation_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the field a simulation modifies.
@@ -125,7 +125,7 @@ type SimulationTypeEnum struct {
func (x *SimulationTypeEnum) Reset() {
*x = SimulationTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_simulation_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_simulation_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -138,7 +138,7 @@ func (x *SimulationTypeEnum) String() string {
func (*SimulationTypeEnum) ProtoMessage() {}
func (x *SimulationTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_simulation_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_simulation_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -151,17 +151,17 @@ func (x *SimulationTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SimulationTypeEnum.ProtoReflect.Descriptor instead.
func (*SimulationTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_simulation_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_simulation_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_simulation_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_simulation_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_simulation_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_simulation_type_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xd0, 0x01, 0x0a, 0x12, 0x53, 0x69, 0x6d, 0x75, 0x6c,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb9, 0x01,
0x0a, 0x0e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65,
@@ -177,42 +177,42 @@ var file_google_ads_googleads_v16_enums_simulation_type_proto_rawDesc = []byte{
0x53, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x53, 0x48, 0x41, 0x52, 0x45, 0x10, 0x08, 0x12, 0x0a, 0x0a,
0x06, 0x42, 0x55, 0x44, 0x47, 0x45, 0x54, 0x10, 0x09, 0x42, 0xed, 0x01, 0x0a, 0x22, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x42, 0x13, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_enums_simulation_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_simulation_type_proto_rawDescData = file_google_ads_googleads_v16_enums_simulation_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_simulation_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_simulation_type_proto_rawDescData = file_google_ads_googleads_v17_enums_simulation_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_simulation_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_simulation_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_simulation_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_simulation_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_simulation_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_simulation_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_simulation_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_simulation_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_simulation_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_simulation_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_simulation_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_simulation_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_simulation_type_proto_goTypes = []interface{}{
- (SimulationTypeEnum_SimulationType)(0), // 0: google.ads.googleads.v16.enums.SimulationTypeEnum.SimulationType
- (*SimulationTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.SimulationTypeEnum
+var file_google_ads_googleads_v17_enums_simulation_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_simulation_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_simulation_type_proto_goTypes = []interface{}{
+ (SimulationTypeEnum_SimulationType)(0), // 0: google.ads.googleads.v17.enums.SimulationTypeEnum.SimulationType
+ (*SimulationTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.SimulationTypeEnum
}
-var file_google_ads_googleads_v16_enums_simulation_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_simulation_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -220,13 +220,13 @@ var file_google_ads_googleads_v16_enums_simulation_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_simulation_type_proto_init() }
-func file_google_ads_googleads_v16_enums_simulation_type_proto_init() {
- if File_google_ads_googleads_v16_enums_simulation_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_simulation_type_proto_init() }
+func file_google_ads_googleads_v17_enums_simulation_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_simulation_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_simulation_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_simulation_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SimulationTypeEnum); i {
case 0:
return &v.state
@@ -243,19 +243,19 @@ func file_google_ads_googleads_v16_enums_simulation_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_simulation_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_simulation_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_simulation_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_simulation_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_simulation_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_simulation_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_simulation_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_simulation_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_simulation_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_simulation_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_simulation_type_proto = out.File
- file_google_ads_googleads_v16_enums_simulation_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_simulation_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_simulation_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_simulation_type_proto = out.File
+ file_google_ads_googleads_v17_enums_simulation_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_simulation_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_simulation_type_proto_depIdxs = nil
}
diff --git a/enums/sitelink_placeholder_field.pb.go b/enums/sitelink_placeholder_field.pb.go
index 4ecfc79b..464631af 100644
--- a/enums/sitelink_placeholder_field.pb.go
+++ b/enums/sitelink_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/sitelink_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/sitelink_placeholder_field.proto
package enums
@@ -99,11 +99,11 @@ func (x SitelinkPlaceholderFieldEnum_SitelinkPlaceholderField) String() string {
}
func (SitelinkPlaceholderFieldEnum_SitelinkPlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (SitelinkPlaceholderFieldEnum_SitelinkPlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_enumTypes[0]
}
func (x SitelinkPlaceholderFieldEnum_SitelinkPlaceholderField) Number() protoreflect.EnumNumber {
@@ -112,7 +112,7 @@ func (x SitelinkPlaceholderFieldEnum_SitelinkPlaceholderField) Number() protoref
// Deprecated: Use SitelinkPlaceholderFieldEnum_SitelinkPlaceholderField.Descriptor instead.
func (SitelinkPlaceholderFieldEnum_SitelinkPlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Sitelink placeholder fields.
@@ -125,7 +125,7 @@ type SitelinkPlaceholderFieldEnum struct {
func (x *SitelinkPlaceholderFieldEnum) Reset() {
*x = SitelinkPlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -138,7 +138,7 @@ func (x *SitelinkPlaceholderFieldEnum) String() string {
func (*SitelinkPlaceholderFieldEnum) ProtoMessage() {}
func (x *SitelinkPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -151,18 +151,18 @@ func (x *SitelinkPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SitelinkPlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*SitelinkPlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68,
0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x22, 0xca, 0x01, 0x0a, 0x1c, 0x53, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x50, 0x6c,
0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0xa9, 0x01, 0x0a, 0x18, 0x53, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x50,
@@ -177,42 +177,42 @@ var file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_rawDesc
0x4e, 0x47, 0x5f, 0x55, 0x52, 0x4c, 0x10, 0x07, 0x12, 0x14, 0x0a, 0x10, 0x46, 0x49, 0x4e, 0x41,
0x4c, 0x5f, 0x55, 0x52, 0x4c, 0x5f, 0x53, 0x55, 0x46, 0x46, 0x49, 0x58, 0x10, 0x08, 0x42, 0xf7,
0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x53, 0x69, 0x74, 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x50,
0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_goTypes = []interface{}{
- (SitelinkPlaceholderFieldEnum_SitelinkPlaceholderField)(0), // 0: google.ads.googleads.v16.enums.SitelinkPlaceholderFieldEnum.SitelinkPlaceholderField
- (*SitelinkPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.SitelinkPlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_goTypes = []interface{}{
+ (SitelinkPlaceholderFieldEnum_SitelinkPlaceholderField)(0), // 0: google.ads.googleads.v17.enums.SitelinkPlaceholderFieldEnum.SitelinkPlaceholderField
+ (*SitelinkPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.SitelinkPlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -220,13 +220,13 @@ var file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SitelinkPlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -243,19 +243,19 @@ func file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_sitelink_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_sitelink_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/sk_ad_network_ad_event_type.pb.go b/enums/sk_ad_network_ad_event_type.pb.go
index fc31edc0..864863cc 100644
--- a/enums/sk_ad_network_ad_event_type.pb.go
+++ b/enums/sk_ad_network_ad_event_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/sk_ad_network_ad_event_type.proto
+// source: google/ads/googleads/v17/enums/sk_ad_network_ad_event_type.proto
package enums
@@ -80,11 +80,11 @@ func (x SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType) String() string {
}
func (SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_enumTypes[0].Descriptor()
}
func (SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_enumTypes[0]
}
func (x SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType) Number() protoreflect
// Deprecated: Use SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType.Descriptor instead.
func (SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enumeration of SkAdNetwork ad event types.
@@ -106,7 +106,7 @@ type SkAdNetworkAdEventTypeEnum struct {
func (x *SkAdNetworkAdEventTypeEnum) Reset() {
*x = SkAdNetworkAdEventTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *SkAdNetworkAdEventTypeEnum) String() string {
func (*SkAdNetworkAdEventTypeEnum) ProtoMessage() {}
func (x *SkAdNetworkAdEventTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,18 +132,18 @@ func (x *SkAdNetworkAdEventTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SkAdNetworkAdEventTypeEnum.ProtoReflect.Descriptor instead.
func (*SkAdNetworkAdEventTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x61,
0x64, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x80, 0x01, 0x0a, 0x1a, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f,
0x72, 0x6b, 0x41, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x62, 0x0a, 0x16, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b,
@@ -154,42 +154,42 @@ var file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_rawDes
0x54, 0x45, 0x52, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x56,
0x49, 0x45, 0x57, 0x10, 0x04, 0x42, 0xf5, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x53, 0x6b,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x53, 0x6b,
0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x41, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74,
0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_rawDescData = file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_rawDescData = file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_goTypes = []interface{}{
- (SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType)(0), // 0: google.ads.googleads.v16.enums.SkAdNetworkAdEventTypeEnum.SkAdNetworkAdEventType
- (*SkAdNetworkAdEventTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.SkAdNetworkAdEventTypeEnum
+var file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_goTypes = []interface{}{
+ (SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType)(0), // 0: google.ads.googleads.v17.enums.SkAdNetworkAdEventTypeEnum.SkAdNetworkAdEventType
+ (*SkAdNetworkAdEventTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.SkAdNetworkAdEventTypeEnum
}
-var file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_init() }
-func file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_init() {
- if File_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_init() }
+func file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SkAdNetworkAdEventTypeEnum); i {
case 0:
return &v.state
@@ -220,19 +220,19 @@ func file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto = out.File
- file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_sk_ad_network_ad_event_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto = out.File
+ file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_sk_ad_network_ad_event_type_proto_depIdxs = nil
}
diff --git a/enums/sk_ad_network_attribution_credit.pb.go b/enums/sk_ad_network_attribution_credit.pb.go
index 697c247b..748fbefa 100644
--- a/enums/sk_ad_network_attribution_credit.pb.go
+++ b/enums/sk_ad_network_attribution_credit.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/sk_ad_network_attribution_credit.proto
+// source: google/ads/googleads/v17/enums/sk_ad_network_attribution_credit.proto
package enums
@@ -81,11 +81,11 @@ func (x SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit) String()
}
func (SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_enumTypes[0].Descriptor()
}
func (SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_enumTypes[0]
}
func (x SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit) Number() protoreflect.EnumNumber {
@@ -94,7 +94,7 @@ func (x SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit) Number()
// Deprecated: Use SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit.Descriptor instead.
func (SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enumeration of SkAdNetwork attribution credits.
@@ -107,7 +107,7 @@ type SkAdNetworkAttributionCreditEnum struct {
func (x *SkAdNetworkAttributionCreditEnum) Reset() {
*x = SkAdNetworkAttributionCreditEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -120,7 +120,7 @@ func (x *SkAdNetworkAttributionCreditEnum) String() string {
func (*SkAdNetworkAttributionCreditEnum) ProtoMessage() {}
func (x *SkAdNetworkAttributionCreditEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -133,19 +133,19 @@ func (x *SkAdNetworkAttributionCreditEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SkAdNetworkAttributionCreditEnum.ProtoReflect.Descriptor instead.
func (*SkAdNetworkAttributionCreditEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_rawDesc = []byte{
0x0a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x61,
0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x72, 0x65, 0x64, 0x69,
0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8b, 0x01, 0x0a, 0x20, 0x53, 0x6b, 0x41, 0x64,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8b, 0x01, 0x0a, 0x20, 0x53, 0x6b, 0x41, 0x64,
0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x69,
0x6f, 0x6e, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x67, 0x0a, 0x1c,
0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x41, 0x74, 0x74, 0x72, 0x69,
@@ -156,42 +156,42 @@ var file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_r
0x4f, 0x4e, 0x10, 0x03, 0x12, 0x0f, 0x0a, 0x0b, 0x43, 0x4f, 0x4e, 0x54, 0x52, 0x49, 0x42, 0x55,
0x54, 0x45, 0x44, 0x10, 0x04, 0x42, 0xfb, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x53, 0x6b,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x53, 0x6b,
0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75,
0x74, 0x69, 0x6f, 0x6e, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_rawDescData = file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_rawDesc
+ file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_rawDescData = file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_goTypes = []interface{}{
- (SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit)(0), // 0: google.ads.googleads.v16.enums.SkAdNetworkAttributionCreditEnum.SkAdNetworkAttributionCredit
- (*SkAdNetworkAttributionCreditEnum)(nil), // 1: google.ads.googleads.v16.enums.SkAdNetworkAttributionCreditEnum
+var file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_goTypes = []interface{}{
+ (SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit)(0), // 0: google.ads.googleads.v17.enums.SkAdNetworkAttributionCreditEnum.SkAdNetworkAttributionCredit
+ (*SkAdNetworkAttributionCreditEnum)(nil), // 1: google.ads.googleads.v17.enums.SkAdNetworkAttributionCreditEnum
}
-var file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -199,13 +199,13 @@ var file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_d
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_init() }
-func file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_init() {
- if File_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_init() }
+func file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_init() {
+ if File_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SkAdNetworkAttributionCreditEnum); i {
case 0:
return &v.state
@@ -222,19 +222,19 @@ func file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto = out.File
- file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_sk_ad_network_attribution_credit_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto = out.File
+ file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_sk_ad_network_attribution_credit_proto_depIdxs = nil
}
diff --git a/enums/sk_ad_network_coarse_conversion_value.pb.go b/enums/sk_ad_network_coarse_conversion_value.pb.go
index 88f0f029..756483bc 100644
--- a/enums/sk_ad_network_coarse_conversion_value.pb.go
+++ b/enums/sk_ad_network_coarse_conversion_value.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/sk_ad_network_coarse_conversion_value.proto
+// source: google/ads/googleads/v17/enums/sk_ad_network_coarse_conversion_value.proto
package enums
@@ -88,11 +88,11 @@ func (x SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue) S
}
func (SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_enumTypes[0].Descriptor()
}
func (SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_enumTypes[0]
}
func (x SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue) Number() protoreflect.EnumNumber {
@@ -101,7 +101,7 @@ func (x SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue) N
// Deprecated: Use SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue.Descriptor instead.
func (SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enumeration of SkAdNetwork coarse conversion values.
@@ -114,7 +114,7 @@ type SkAdNetworkCoarseConversionValueEnum struct {
func (x *SkAdNetworkCoarseConversionValueEnum) Reset() {
*x = SkAdNetworkCoarseConversionValueEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -127,7 +127,7 @@ func (x *SkAdNetworkCoarseConversionValueEnum) String() string {
func (*SkAdNetworkCoarseConversionValueEnum) ProtoMessage() {}
func (x *SkAdNetworkCoarseConversionValueEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -140,19 +140,19 @@ func (x *SkAdNetworkCoarseConversionValueEnum) ProtoReflect() protoreflect.Messa
// Deprecated: Use SkAdNetworkCoarseConversionValueEnum.ProtoReflect.Descriptor instead.
func (*SkAdNetworkCoarseConversionValueEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_rawDesc = []byte{
0x0a, 0x4a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x63,
0x6f, 0x61, 0x72, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa2, 0x01, 0x0a,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa2, 0x01, 0x0a,
0x24, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x61, 0x72,
0x73, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75,
0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x7a, 0x0a, 0x20, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74,
@@ -165,42 +165,42 @@ var file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_pr
0x04, 0x48, 0x49, 0x47, 0x48, 0x10, 0x05, 0x12, 0x08, 0x0a, 0x04, 0x4e, 0x4f, 0x4e, 0x45, 0x10,
0x06, 0x42, 0xff, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x25, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x25, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65,
0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x61, 0x72, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65,
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02,
0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_rawDescData = file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_rawDesc
+ file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_rawDescData = file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_goTypes = []interface{}{
- (SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue)(0), // 0: google.ads.googleads.v16.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue
- (*SkAdNetworkCoarseConversionValueEnum)(nil), // 1: google.ads.googleads.v16.enums.SkAdNetworkCoarseConversionValueEnum
+var file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_goTypes = []interface{}{
+ (SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue)(0), // 0: google.ads.googleads.v17.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue
+ (*SkAdNetworkCoarseConversionValueEnum)(nil), // 1: google.ads.googleads.v17.enums.SkAdNetworkCoarseConversionValueEnum
}
-var file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -208,13 +208,13 @@ var file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_pr
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_init() }
-func file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_init() {
- if File_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_init() }
+func file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_init() {
+ if File_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SkAdNetworkCoarseConversionValueEnum); i {
case 0:
return &v.state
@@ -231,19 +231,19 @@ func file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_p
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto = out.File
- file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_sk_ad_network_coarse_conversion_value_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto = out.File
+ file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_sk_ad_network_coarse_conversion_value_proto_depIdxs = nil
}
diff --git a/enums/sk_ad_network_source_type.pb.go b/enums/sk_ad_network_source_type.pb.go
index 61a2839e..0fffc7ce 100644
--- a/enums/sk_ad_network_source_type.pb.go
+++ b/enums/sk_ad_network_source_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/sk_ad_network_source_type.proto
+// source: google/ads/googleads/v17/enums/sk_ad_network_source_type.proto
package enums
@@ -80,11 +80,11 @@ func (x SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType) String() string {
}
func (SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_enumTypes[0].Descriptor()
}
func (SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_enumTypes[0]
}
func (x SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType) Number() protoreflect.E
// Deprecated: Use SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType.Descriptor instead.
func (SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enumeration of SkAdNetwork source types.
@@ -106,7 +106,7 @@ type SkAdNetworkSourceTypeEnum struct {
func (x *SkAdNetworkSourceTypeEnum) Reset() {
*x = SkAdNetworkSourceTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *SkAdNetworkSourceTypeEnum) String() string {
func (*SkAdNetworkSourceTypeEnum) ProtoMessage() {}
func (x *SkAdNetworkSourceTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,18 +132,18 @@ func (x *SkAdNetworkSourceTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SkAdNetworkSourceTypeEnum.ProtoReflect.Descriptor instead.
func (*SkAdNetworkSourceTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x73,
0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0x88, 0x01, 0x0a, 0x19, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b,
0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x6b,
0x0a, 0x15, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53, 0x6f, 0x75,
@@ -154,42 +154,42 @@ var file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_rawDesc
0x45, 0x10, 0x03, 0x12, 0x16, 0x0a, 0x12, 0x4d, 0x4f, 0x42, 0x49, 0x4c, 0x45, 0x5f, 0x41, 0x50,
0x50, 0x4c, 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x04, 0x42, 0xf4, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x1a, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x53,
0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_rawDescData = file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_rawDescData = file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_goTypes = []interface{}{
- (SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType)(0), // 0: google.ads.googleads.v16.enums.SkAdNetworkSourceTypeEnum.SkAdNetworkSourceType
- (*SkAdNetworkSourceTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.SkAdNetworkSourceTypeEnum
+var file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_goTypes = []interface{}{
+ (SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType)(0), // 0: google.ads.googleads.v17.enums.SkAdNetworkSourceTypeEnum.SkAdNetworkSourceType
+ (*SkAdNetworkSourceTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.SkAdNetworkSourceTypeEnum
}
-var file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_init() }
-func file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_init() {
- if File_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_init() }
+func file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SkAdNetworkSourceTypeEnum); i {
case 0:
return &v.state
@@ -220,19 +220,19 @@ func file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto = out.File
- file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_sk_ad_network_source_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto = out.File
+ file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_sk_ad_network_source_type_proto_depIdxs = nil
}
diff --git a/enums/sk_ad_network_user_type.pb.go b/enums/sk_ad_network_user_type.pb.go
index 7da70749..0fc08061 100644
--- a/enums/sk_ad_network_user_type.pb.go
+++ b/enums/sk_ad_network_user_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/sk_ad_network_user_type.proto
+// source: google/ads/googleads/v17/enums/sk_ad_network_user_type.proto
package enums
@@ -80,11 +80,11 @@ func (x SkAdNetworkUserTypeEnum_SkAdNetworkUserType) String() string {
}
func (SkAdNetworkUserTypeEnum_SkAdNetworkUserType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_enumTypes[0].Descriptor()
}
func (SkAdNetworkUserTypeEnum_SkAdNetworkUserType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_enumTypes[0]
}
func (x SkAdNetworkUserTypeEnum_SkAdNetworkUserType) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x SkAdNetworkUserTypeEnum_SkAdNetworkUserType) Number() protoreflect.EnumN
// Deprecated: Use SkAdNetworkUserTypeEnum_SkAdNetworkUserType.Descriptor instead.
func (SkAdNetworkUserTypeEnum_SkAdNetworkUserType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enumeration of SkAdNetwork user types.
@@ -106,7 +106,7 @@ type SkAdNetworkUserTypeEnum struct {
func (x *SkAdNetworkUserTypeEnum) Reset() {
*x = SkAdNetworkUserTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *SkAdNetworkUserTypeEnum) String() string {
func (*SkAdNetworkUserTypeEnum) ProtoMessage() {}
func (x *SkAdNetworkUserTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,18 +132,18 @@ func (x *SkAdNetworkUserTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SkAdNetworkUserTypeEnum.ProtoReflect.Descriptor instead.
func (*SkAdNetworkUserTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x75,
0x73, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x83,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x83,
0x01, 0x0a, 0x17, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x55, 0x73,
0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x68, 0x0a, 0x13, 0x53, 0x6b,
0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x54, 0x79, 0x70,
@@ -154,42 +154,42 @@ var file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_rawDesc =
0x52, 0x10, 0x03, 0x12, 0x0f, 0x0a, 0x0b, 0x52, 0x45, 0x49, 0x4e, 0x53, 0x54, 0x41, 0x4c, 0x4c,
0x45, 0x52, 0x10, 0x04, 0x42, 0xf2, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, 0x53, 0x6b, 0x41,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, 0x53, 0x6b, 0x41,
0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_rawDescData = file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_rawDescData = file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_goTypes = []interface{}{
- (SkAdNetworkUserTypeEnum_SkAdNetworkUserType)(0), // 0: google.ads.googleads.v16.enums.SkAdNetworkUserTypeEnum.SkAdNetworkUserType
- (*SkAdNetworkUserTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.SkAdNetworkUserTypeEnum
+var file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_goTypes = []interface{}{
+ (SkAdNetworkUserTypeEnum_SkAdNetworkUserType)(0), // 0: google.ads.googleads.v17.enums.SkAdNetworkUserTypeEnum.SkAdNetworkUserType
+ (*SkAdNetworkUserTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.SkAdNetworkUserTypeEnum
}
-var file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_init() }
-func file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_init() {
- if File_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_init() }
+func file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SkAdNetworkUserTypeEnum); i {
case 0:
return &v.state
@@ -220,19 +220,19 @@ func file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto = out.File
- file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_sk_ad_network_user_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto = out.File
+ file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_sk_ad_network_user_type_proto_depIdxs = nil
}
diff --git a/enums/slot.pb.go b/enums/slot.pb.go
index ced8b051..b48e49bb 100644
--- a/enums/slot.pb.go
+++ b/enums/slot.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/slot.proto
+// source: google/ads/googleads/v17/enums/slot.proto
package enums
@@ -95,11 +95,11 @@ func (x SlotEnum_Slot) String() string {
}
func (SlotEnum_Slot) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_slot_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_slot_proto_enumTypes[0].Descriptor()
}
func (SlotEnum_Slot) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_slot_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_slot_proto_enumTypes[0]
}
func (x SlotEnum_Slot) Number() protoreflect.EnumNumber {
@@ -108,7 +108,7 @@ func (x SlotEnum_Slot) Number() protoreflect.EnumNumber {
// Deprecated: Use SlotEnum_Slot.Descriptor instead.
func (SlotEnum_Slot) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_slot_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_slot_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enumeration of possible positions of the Ad.
@@ -121,7 +121,7 @@ type SlotEnum struct {
func (x *SlotEnum) Reset() {
*x = SlotEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_slot_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_slot_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -134,7 +134,7 @@ func (x *SlotEnum) String() string {
func (*SlotEnum) ProtoMessage() {}
func (x *SlotEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_slot_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_slot_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -147,17 +147,17 @@ func (x *SlotEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SlotEnum.ProtoReflect.Descriptor instead.
func (*SlotEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_slot_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_slot_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_slot_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_slot_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_slot_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_slot_proto_rawDesc = []byte{
0x0a, 0x29, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x6c, 0x6f, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xae, 0x01, 0x0a, 0x08,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xae, 0x01, 0x0a, 0x08,
0x53, 0x6c, 0x6f, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xa1, 0x01, 0x0a, 0x04, 0x53, 0x6c, 0x6f,
0x74, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44,
0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12,
@@ -170,41 +170,41 @@ var file_google_ads_googleads_v16_enums_slot_proto_rawDesc = []byte{
0x48, 0x5f, 0x50, 0x41, 0x52, 0x54, 0x4e, 0x45, 0x52, 0x5f, 0x4f, 0x54, 0x48, 0x45, 0x52, 0x10,
0x07, 0x12, 0x09, 0x0a, 0x05, 0x4d, 0x49, 0x58, 0x45, 0x44, 0x10, 0x08, 0x42, 0xe3, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x09, 0x53, 0x6c, 0x6f, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_slot_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_slot_proto_rawDescData = file_google_ads_googleads_v16_enums_slot_proto_rawDesc
+ file_google_ads_googleads_v17_enums_slot_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_slot_proto_rawDescData = file_google_ads_googleads_v17_enums_slot_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_slot_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_slot_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_slot_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_slot_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_slot_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_slot_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_slot_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_slot_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_slot_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_slot_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_slot_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_slot_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_slot_proto_goTypes = []interface{}{
- (SlotEnum_Slot)(0), // 0: google.ads.googleads.v16.enums.SlotEnum.Slot
- (*SlotEnum)(nil), // 1: google.ads.googleads.v16.enums.SlotEnum
+var file_google_ads_googleads_v17_enums_slot_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_slot_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_slot_proto_goTypes = []interface{}{
+ (SlotEnum_Slot)(0), // 0: google.ads.googleads.v17.enums.SlotEnum.Slot
+ (*SlotEnum)(nil), // 1: google.ads.googleads.v17.enums.SlotEnum
}
-var file_google_ads_googleads_v16_enums_slot_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_slot_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -212,13 +212,13 @@ var file_google_ads_googleads_v16_enums_slot_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_slot_proto_init() }
-func file_google_ads_googleads_v16_enums_slot_proto_init() {
- if File_google_ads_googleads_v16_enums_slot_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_slot_proto_init() }
+func file_google_ads_googleads_v17_enums_slot_proto_init() {
+ if File_google_ads_googleads_v17_enums_slot_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_slot_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_slot_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SlotEnum); i {
case 0:
return &v.state
@@ -235,19 +235,19 @@ func file_google_ads_googleads_v16_enums_slot_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_slot_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_slot_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_slot_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_slot_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_slot_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_slot_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_slot_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_slot_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_slot_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_slot_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_slot_proto = out.File
- file_google_ads_googleads_v16_enums_slot_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_slot_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_slot_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_slot_proto = out.File
+ file_google_ads_googleads_v17_enums_slot_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_slot_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_slot_proto_depIdxs = nil
}
diff --git a/enums/smart_campaign_not_eligible_reason.pb.go b/enums/smart_campaign_not_eligible_reason.pb.go
index 94a9b3d6..9266eafa 100644
--- a/enums/smart_campaign_not_eligible_reason.pb.go
+++ b/enums/smart_campaign_not_eligible_reason.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/smart_campaign_not_eligible_reason.proto
+// source: google/ads/googleads/v17/enums/smart_campaign_not_eligible_reason.proto
package enums
@@ -88,11 +88,11 @@ func (x SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason) Strin
}
func (SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_enumTypes[0].Descriptor()
}
func (SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_enumTypes[0]
}
func (x SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason) Number() protoreflect.EnumNumber {
@@ -101,7 +101,7 @@ func (x SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason) Numbe
// Deprecated: Use SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason.Descriptor instead.
func (SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_rawDescGZIP(), []int{0, 0}
}
// A container for an enum that describes reasons for why a Smart campaign
@@ -115,7 +115,7 @@ type SmartCampaignNotEligibleReasonEnum struct {
func (x *SmartCampaignNotEligibleReasonEnum) Reset() {
*x = SmartCampaignNotEligibleReasonEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -128,7 +128,7 @@ func (x *SmartCampaignNotEligibleReasonEnum) String() string {
func (*SmartCampaignNotEligibleReasonEnum) ProtoMessage() {}
func (x *SmartCampaignNotEligibleReasonEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -141,19 +141,19 @@ func (x *SmartCampaignNotEligibleReasonEnum) ProtoReflect() protoreflect.Message
// Deprecated: Use SmartCampaignNotEligibleReasonEnum.ProtoReflect.Descriptor instead.
func (*SmartCampaignNotEligibleReasonEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_rawDesc = []byte{
0x0a, 0x47, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f,
0x6e, 0x6f, 0x74, 0x5f, 0x65, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x5f, 0x72, 0x65, 0x61,
0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xcb, 0x01, 0x0a, 0x22, 0x53, 0x6d,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xcb, 0x01, 0x0a, 0x22, 0x53, 0x6d,
0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4e, 0x6f, 0x74, 0x45, 0x6c,
0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0xa4, 0x01, 0x0a, 0x1e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69,
@@ -168,42 +168,42 @@ var file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto
0x0a, 0x13, 0x41, 0x4c, 0x4c, 0x5f, 0x41, 0x44, 0x53, 0x5f, 0x44, 0x49, 0x53, 0x41, 0x50, 0x50,
0x52, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x05, 0x42, 0xfd, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23,
0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4e, 0x6f, 0x74,
0x45, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x6c, 0x65, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_rawDescData = file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_rawDesc
+ file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_rawDescData = file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_goTypes = []interface{}{
- (SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason)(0), // 0: google.ads.googleads.v16.enums.SmartCampaignNotEligibleReasonEnum.SmartCampaignNotEligibleReason
- (*SmartCampaignNotEligibleReasonEnum)(nil), // 1: google.ads.googleads.v16.enums.SmartCampaignNotEligibleReasonEnum
+var file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_goTypes = []interface{}{
+ (SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason)(0), // 0: google.ads.googleads.v17.enums.SmartCampaignNotEligibleReasonEnum.SmartCampaignNotEligibleReason
+ (*SmartCampaignNotEligibleReasonEnum)(nil), // 1: google.ads.googleads.v17.enums.SmartCampaignNotEligibleReasonEnum
}
-var file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -211,13 +211,13 @@ var file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_init() }
-func file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_init() {
- if File_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_init() }
+func file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_init() {
+ if File_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SmartCampaignNotEligibleReasonEnum); i {
case 0:
return &v.state
@@ -234,19 +234,19 @@ func file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_prot
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto = out.File
- file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_smart_campaign_not_eligible_reason_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto = out.File
+ file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_smart_campaign_not_eligible_reason_proto_depIdxs = nil
}
diff --git a/enums/smart_campaign_status.pb.go b/enums/smart_campaign_status.pb.go
index d8cf9c59..3c2da58b 100644
--- a/enums/smart_campaign_status.pb.go
+++ b/enums/smart_campaign_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/smart_campaign_status.proto
+// source: google/ads/googleads/v17/enums/smart_campaign_status.proto
package enums
@@ -94,11 +94,11 @@ func (x SmartCampaignStatusEnum_SmartCampaignStatus) String() string {
}
func (SmartCampaignStatusEnum_SmartCampaignStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_smart_campaign_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_smart_campaign_status_proto_enumTypes[0].Descriptor()
}
func (SmartCampaignStatusEnum_SmartCampaignStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_smart_campaign_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_smart_campaign_status_proto_enumTypes[0]
}
func (x SmartCampaignStatusEnum_SmartCampaignStatus) Number() protoreflect.EnumNumber {
@@ -107,7 +107,7 @@ func (x SmartCampaignStatusEnum_SmartCampaignStatus) Number() protoreflect.EnumN
// Deprecated: Use SmartCampaignStatusEnum_SmartCampaignStatus.Descriptor instead.
func (SmartCampaignStatusEnum_SmartCampaignStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_smart_campaign_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_smart_campaign_status_proto_rawDescGZIP(), []int{0, 0}
}
// A container for an enum that describes Smart campaign statuses.
@@ -120,7 +120,7 @@ type SmartCampaignStatusEnum struct {
func (x *SmartCampaignStatusEnum) Reset() {
*x = SmartCampaignStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_smart_campaign_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_smart_campaign_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -133,7 +133,7 @@ func (x *SmartCampaignStatusEnum) String() string {
func (*SmartCampaignStatusEnum) ProtoMessage() {}
func (x *SmartCampaignStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_smart_campaign_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_smart_campaign_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -146,18 +146,18 @@ func (x *SmartCampaignStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SmartCampaignStatusEnum.ProtoReflect.Descriptor instead.
func (*SmartCampaignStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_smart_campaign_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_smart_campaign_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_smart_campaign_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_smart_campaign_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_smart_campaign_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_smart_campaign_status_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f,
0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa0, 0x01, 0x0a,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa0, 0x01, 0x0a,
0x17, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x74,
0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x84, 0x01, 0x0a, 0x13, 0x53, 0x6d, 0x61,
0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
@@ -169,42 +169,42 @@ var file_google_ads_googleads_v16_enums_smart_campaign_status_proto_rawDesc = []
0x47, 0x49, 0x42, 0x4c, 0x45, 0x10, 0x05, 0x12, 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x4d, 0x4f, 0x56,
0x45, 0x44, 0x10, 0x06, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x4e, 0x44, 0x45, 0x44, 0x10, 0x07, 0x42,
0xf2, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d,
0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea,
0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_smart_campaign_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_smart_campaign_status_proto_rawDescData = file_google_ads_googleads_v16_enums_smart_campaign_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_smart_campaign_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_smart_campaign_status_proto_rawDescData = file_google_ads_googleads_v17_enums_smart_campaign_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_smart_campaign_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_smart_campaign_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_smart_campaign_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_smart_campaign_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_smart_campaign_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_smart_campaign_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_smart_campaign_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_smart_campaign_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_smart_campaign_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_smart_campaign_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_smart_campaign_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_smart_campaign_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_smart_campaign_status_proto_goTypes = []interface{}{
- (SmartCampaignStatusEnum_SmartCampaignStatus)(0), // 0: google.ads.googleads.v16.enums.SmartCampaignStatusEnum.SmartCampaignStatus
- (*SmartCampaignStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.SmartCampaignStatusEnum
+var file_google_ads_googleads_v17_enums_smart_campaign_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_smart_campaign_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_smart_campaign_status_proto_goTypes = []interface{}{
+ (SmartCampaignStatusEnum_SmartCampaignStatus)(0), // 0: google.ads.googleads.v17.enums.SmartCampaignStatusEnum.SmartCampaignStatus
+ (*SmartCampaignStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.SmartCampaignStatusEnum
}
-var file_google_ads_googleads_v16_enums_smart_campaign_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_smart_campaign_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -212,13 +212,13 @@ var file_google_ads_googleads_v16_enums_smart_campaign_status_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_smart_campaign_status_proto_init() }
-func file_google_ads_googleads_v16_enums_smart_campaign_status_proto_init() {
- if File_google_ads_googleads_v16_enums_smart_campaign_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_smart_campaign_status_proto_init() }
+func file_google_ads_googleads_v17_enums_smart_campaign_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_smart_campaign_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_smart_campaign_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_smart_campaign_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SmartCampaignStatusEnum); i {
case 0:
return &v.state
@@ -235,19 +235,19 @@ func file_google_ads_googleads_v16_enums_smart_campaign_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_smart_campaign_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_smart_campaign_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_smart_campaign_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_smart_campaign_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_smart_campaign_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_smart_campaign_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_smart_campaign_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_smart_campaign_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_smart_campaign_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_smart_campaign_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_smart_campaign_status_proto = out.File
- file_google_ads_googleads_v16_enums_smart_campaign_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_smart_campaign_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_smart_campaign_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_smart_campaign_status_proto = out.File
+ file_google_ads_googleads_v17_enums_smart_campaign_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_smart_campaign_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_smart_campaign_status_proto_depIdxs = nil
}
diff --git a/enums/spending_limit_type.pb.go b/enums/spending_limit_type.pb.go
index 95f68b6a..d7fec19d 100644
--- a/enums/spending_limit_type.pb.go
+++ b/enums/spending_limit_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/spending_limit_type.proto
+// source: google/ads/googleads/v17/enums/spending_limit_type.proto
package enums
@@ -72,11 +72,11 @@ func (x SpendingLimitTypeEnum_SpendingLimitType) String() string {
}
func (SpendingLimitTypeEnum_SpendingLimitType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_spending_limit_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_spending_limit_type_proto_enumTypes[0].Descriptor()
}
func (SpendingLimitTypeEnum_SpendingLimitType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_spending_limit_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_spending_limit_type_proto_enumTypes[0]
}
func (x SpendingLimitTypeEnum_SpendingLimitType) Number() protoreflect.EnumNumber {
@@ -85,7 +85,7 @@ func (x SpendingLimitTypeEnum_SpendingLimitType) Number() protoreflect.EnumNumbe
// Deprecated: Use SpendingLimitTypeEnum_SpendingLimitType.Descriptor instead.
func (SpendingLimitTypeEnum_SpendingLimitType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_spending_limit_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_spending_limit_type_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing spending limit types.
@@ -98,7 +98,7 @@ type SpendingLimitTypeEnum struct {
func (x *SpendingLimitTypeEnum) Reset() {
*x = SpendingLimitTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_spending_limit_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_spending_limit_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -111,7 +111,7 @@ func (x *SpendingLimitTypeEnum) String() string {
func (*SpendingLimitTypeEnum) ProtoMessage() {}
func (x *SpendingLimitTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_spending_limit_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_spending_limit_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -124,18 +124,18 @@ func (x *SpendingLimitTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SpendingLimitTypeEnum.ProtoReflect.Descriptor instead.
func (*SpendingLimitTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_spending_limit_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_spending_limit_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_spending_limit_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_spending_limit_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_spending_limit_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_spending_limit_type_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f,
0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x58, 0x0a, 0x15, 0x53, 0x70,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x58, 0x0a, 0x15, 0x53, 0x70,
0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0x3f, 0x0a, 0x11, 0x53, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x4c,
0x69, 0x6d, 0x69, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50,
@@ -143,41 +143,41 @@ var file_google_ads_googleads_v16_enums_spending_limit_type_proto_rawDesc = []by
0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x49, 0x4e, 0x46, 0x49, 0x4e, 0x49,
0x54, 0x45, 0x10, 0x02, 0x42, 0xf0, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x53, 0x70, 0x65,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x53, 0x70, 0x65,
0x6e, 0x64, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_spending_limit_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_spending_limit_type_proto_rawDescData = file_google_ads_googleads_v16_enums_spending_limit_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_spending_limit_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_spending_limit_type_proto_rawDescData = file_google_ads_googleads_v17_enums_spending_limit_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_spending_limit_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_spending_limit_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_spending_limit_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_spending_limit_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_spending_limit_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_spending_limit_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_spending_limit_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_spending_limit_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_spending_limit_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_spending_limit_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_spending_limit_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_spending_limit_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_spending_limit_type_proto_goTypes = []interface{}{
- (SpendingLimitTypeEnum_SpendingLimitType)(0), // 0: google.ads.googleads.v16.enums.SpendingLimitTypeEnum.SpendingLimitType
- (*SpendingLimitTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.SpendingLimitTypeEnum
+var file_google_ads_googleads_v17_enums_spending_limit_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_spending_limit_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_spending_limit_type_proto_goTypes = []interface{}{
+ (SpendingLimitTypeEnum_SpendingLimitType)(0), // 0: google.ads.googleads.v17.enums.SpendingLimitTypeEnum.SpendingLimitType
+ (*SpendingLimitTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.SpendingLimitTypeEnum
}
-var file_google_ads_googleads_v16_enums_spending_limit_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_spending_limit_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -185,13 +185,13 @@ var file_google_ads_googleads_v16_enums_spending_limit_type_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_spending_limit_type_proto_init() }
-func file_google_ads_googleads_v16_enums_spending_limit_type_proto_init() {
- if File_google_ads_googleads_v16_enums_spending_limit_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_spending_limit_type_proto_init() }
+func file_google_ads_googleads_v17_enums_spending_limit_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_spending_limit_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_spending_limit_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_spending_limit_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SpendingLimitTypeEnum); i {
case 0:
return &v.state
@@ -208,19 +208,19 @@ func file_google_ads_googleads_v16_enums_spending_limit_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_spending_limit_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_spending_limit_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_spending_limit_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_spending_limit_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_spending_limit_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_spending_limit_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_spending_limit_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_spending_limit_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_spending_limit_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_spending_limit_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_spending_limit_type_proto = out.File
- file_google_ads_googleads_v16_enums_spending_limit_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_spending_limit_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_spending_limit_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_spending_limit_type_proto = out.File
+ file_google_ads_googleads_v17_enums_spending_limit_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_spending_limit_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_spending_limit_type_proto_depIdxs = nil
}
diff --git a/enums/structured_snippet_placeholder_field.pb.go b/enums/structured_snippet_placeholder_field.pb.go
index eb7a7d0b..97c91b15 100644
--- a/enums/structured_snippet_placeholder_field.pb.go
+++ b/enums/structured_snippet_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/structured_snippet_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/structured_snippet_placeholder_field.proto
package enums
@@ -80,11 +80,11 @@ func (x StructuredSnippetPlaceholderFieldEnum_StructuredSnippetPlaceholderField)
}
func (StructuredSnippetPlaceholderFieldEnum_StructuredSnippetPlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (StructuredSnippetPlaceholderFieldEnum_StructuredSnippetPlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_enumTypes[0]
}
func (x StructuredSnippetPlaceholderFieldEnum_StructuredSnippetPlaceholderField) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x StructuredSnippetPlaceholderFieldEnum_StructuredSnippetPlaceholderField)
// Deprecated: Use StructuredSnippetPlaceholderFieldEnum_StructuredSnippetPlaceholderField.Descriptor instead.
func (StructuredSnippetPlaceholderFieldEnum_StructuredSnippetPlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Structured Snippet placeholder fields.
@@ -106,7 +106,7 @@ type StructuredSnippetPlaceholderFieldEnum struct {
func (x *StructuredSnippetPlaceholderFieldEnum) Reset() {
*x = StructuredSnippetPlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *StructuredSnippetPlaceholderFieldEnum) String() string {
func (*StructuredSnippetPlaceholderFieldEnum) ProtoMessage() {}
func (x *StructuredSnippetPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,19 +132,19 @@ func (x *StructuredSnippetPlaceholderFieldEnum) ProtoReflect() protoreflect.Mess
// Deprecated: Use StructuredSnippetPlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*StructuredSnippetPlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x74, 0x72, 0x75, 0x63, 0x74, 0x75, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x6e, 0x69, 0x70,
0x70, 0x65, 0x74, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x5f,
0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x84, 0x01, 0x0a, 0x25,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x84, 0x01, 0x0a, 0x25,
0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x75, 0x72, 0x65, 0x64, 0x53, 0x6e, 0x69, 0x70, 0x70, 0x65,
0x74, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c,
0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5b, 0x0a, 0x21, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x75,
@@ -155,42 +155,42 @@ var file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_pro
0x45, 0x52, 0x10, 0x02, 0x12, 0x0c, 0x0a, 0x08, 0x53, 0x4e, 0x49, 0x50, 0x50, 0x45, 0x54, 0x53,
0x10, 0x03, 0x42, 0x80, 0x02, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x26, 0x53, 0x74, 0x72, 0x75, 0x63,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x26, 0x53, 0x74, 0x72, 0x75, 0x63,
0x74, 0x75, 0x72, 0x65, 0x64, 0x53, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 0x50, 0x6c, 0x61, 0x63,
0x65, 0x68, 0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_goTypes = []interface{}{
- (StructuredSnippetPlaceholderFieldEnum_StructuredSnippetPlaceholderField)(0), // 0: google.ads.googleads.v16.enums.StructuredSnippetPlaceholderFieldEnum.StructuredSnippetPlaceholderField
- (*StructuredSnippetPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.StructuredSnippetPlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_goTypes = []interface{}{
+ (StructuredSnippetPlaceholderFieldEnum_StructuredSnippetPlaceholderField)(0), // 0: google.ads.googleads.v17.enums.StructuredSnippetPlaceholderFieldEnum.StructuredSnippetPlaceholderField
+ (*StructuredSnippetPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.StructuredSnippetPlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -198,13 +198,13 @@ var file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_pro
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*StructuredSnippetPlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -221,19 +221,19 @@ func file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_pr
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_structured_snippet_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_structured_snippet_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/summary_row_setting.pb.go b/enums/summary_row_setting.pb.go
index e31ba391..be3d6ef6 100644
--- a/enums/summary_row_setting.pb.go
+++ b/enums/summary_row_setting.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/summary_row_setting.proto
+// source: google/ads/googleads/v17/enums/summary_row_setting.proto
package enums
@@ -80,11 +80,11 @@ func (x SummaryRowSettingEnum_SummaryRowSetting) String() string {
}
func (SummaryRowSettingEnum_SummaryRowSetting) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_summary_row_setting_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_summary_row_setting_proto_enumTypes[0].Descriptor()
}
func (SummaryRowSettingEnum_SummaryRowSetting) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_summary_row_setting_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_summary_row_setting_proto_enumTypes[0]
}
func (x SummaryRowSettingEnum_SummaryRowSetting) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x SummaryRowSettingEnum_SummaryRowSetting) Number() protoreflect.EnumNumbe
// Deprecated: Use SummaryRowSettingEnum_SummaryRowSetting.Descriptor instead.
func (SummaryRowSettingEnum_SummaryRowSetting) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_summary_row_setting_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_summary_row_setting_proto_rawDescGZIP(), []int{0, 0}
}
// Indicates summary row setting in request parameter.
@@ -106,7 +106,7 @@ type SummaryRowSettingEnum struct {
func (x *SummaryRowSettingEnum) Reset() {
*x = SummaryRowSettingEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_summary_row_setting_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_summary_row_setting_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *SummaryRowSettingEnum) String() string {
func (*SummaryRowSettingEnum) ProtoMessage() {}
func (x *SummaryRowSettingEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_summary_row_setting_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_summary_row_setting_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,18 +132,18 @@ func (x *SummaryRowSettingEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SummaryRowSettingEnum.ProtoReflect.Descriptor instead.
func (*SummaryRowSettingEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_summary_row_setting_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_summary_row_setting_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_summary_row_setting_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_summary_row_setting_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_summary_row_setting_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_summary_row_setting_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x72, 0x6f, 0x77, 0x5f, 0x73, 0x65, 0x74,
0x74, 0x69, 0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x92, 0x01, 0x0a, 0x15, 0x53,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x92, 0x01, 0x0a, 0x15, 0x53,
0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x6f, 0x77, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x79, 0x0a, 0x11, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x52,
0x6f, 0x77, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53,
@@ -154,42 +154,42 @@ var file_google_ads_googleads_v16_enums_summary_row_setting_proto_rawDesc = []by
0x52, 0x45, 0x53, 0x55, 0x4c, 0x54, 0x53, 0x10, 0x03, 0x12, 0x14, 0x0a, 0x10, 0x53, 0x55, 0x4d,
0x4d, 0x41, 0x52, 0x59, 0x5f, 0x52, 0x4f, 0x57, 0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x10, 0x04, 0x42,
0xf0, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x52,
0x6f, 0x77, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_summary_row_setting_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_summary_row_setting_proto_rawDescData = file_google_ads_googleads_v16_enums_summary_row_setting_proto_rawDesc
+ file_google_ads_googleads_v17_enums_summary_row_setting_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_summary_row_setting_proto_rawDescData = file_google_ads_googleads_v17_enums_summary_row_setting_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_summary_row_setting_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_summary_row_setting_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_summary_row_setting_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_summary_row_setting_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_summary_row_setting_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_summary_row_setting_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_summary_row_setting_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_summary_row_setting_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_summary_row_setting_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_summary_row_setting_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_summary_row_setting_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_summary_row_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_summary_row_setting_proto_goTypes = []interface{}{
- (SummaryRowSettingEnum_SummaryRowSetting)(0), // 0: google.ads.googleads.v16.enums.SummaryRowSettingEnum.SummaryRowSetting
- (*SummaryRowSettingEnum)(nil), // 1: google.ads.googleads.v16.enums.SummaryRowSettingEnum
+var file_google_ads_googleads_v17_enums_summary_row_setting_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_summary_row_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_summary_row_setting_proto_goTypes = []interface{}{
+ (SummaryRowSettingEnum_SummaryRowSetting)(0), // 0: google.ads.googleads.v17.enums.SummaryRowSettingEnum.SummaryRowSetting
+ (*SummaryRowSettingEnum)(nil), // 1: google.ads.googleads.v17.enums.SummaryRowSettingEnum
}
-var file_google_ads_googleads_v16_enums_summary_row_setting_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_summary_row_setting_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_enums_summary_row_setting_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_summary_row_setting_proto_init() }
-func file_google_ads_googleads_v16_enums_summary_row_setting_proto_init() {
- if File_google_ads_googleads_v16_enums_summary_row_setting_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_summary_row_setting_proto_init() }
+func file_google_ads_googleads_v17_enums_summary_row_setting_proto_init() {
+ if File_google_ads_googleads_v17_enums_summary_row_setting_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_summary_row_setting_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_summary_row_setting_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SummaryRowSettingEnum); i {
case 0:
return &v.state
@@ -220,19 +220,19 @@ func file_google_ads_googleads_v16_enums_summary_row_setting_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_summary_row_setting_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_summary_row_setting_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_summary_row_setting_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_summary_row_setting_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_summary_row_setting_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_summary_row_setting_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_summary_row_setting_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_summary_row_setting_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_summary_row_setting_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_summary_row_setting_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_summary_row_setting_proto = out.File
- file_google_ads_googleads_v16_enums_summary_row_setting_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_summary_row_setting_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_summary_row_setting_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_summary_row_setting_proto = out.File
+ file_google_ads_googleads_v17_enums_summary_row_setting_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_summary_row_setting_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_summary_row_setting_proto_depIdxs = nil
}
diff --git a/enums/system_managed_entity_source.pb.go b/enums/system_managed_entity_source.pb.go
index be54aaee..3f4ea2ba 100644
--- a/enums/system_managed_entity_source.pb.go
+++ b/enums/system_managed_entity_source.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/system_managed_entity_source.proto
+// source: google/ads/googleads/v17/enums/system_managed_entity_source.proto
package enums
@@ -71,11 +71,11 @@ func (x SystemManagedResourceSourceEnum_SystemManagedResourceSource) String() st
}
func (SystemManagedResourceSourceEnum_SystemManagedResourceSource) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_enumTypes[0].Descriptor()
}
func (SystemManagedResourceSourceEnum_SystemManagedResourceSource) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_enumTypes[0]
}
func (x SystemManagedResourceSourceEnum_SystemManagedResourceSource) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x SystemManagedResourceSourceEnum_SystemManagedResourceSource) Number() pr
// Deprecated: Use SystemManagedResourceSourceEnum_SystemManagedResourceSource.Descriptor instead.
func (SystemManagedResourceSourceEnum_SystemManagedResourceSource) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible system managed entity sources.
@@ -97,7 +97,7 @@ type SystemManagedResourceSourceEnum struct {
func (x *SystemManagedResourceSourceEnum) Reset() {
*x = SystemManagedResourceSourceEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *SystemManagedResourceSourceEnum) String() string {
func (*SystemManagedResourceSourceEnum) ProtoMessage() {}
func (x *SystemManagedResourceSourceEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,18 +123,18 @@ func (x *SystemManagedResourceSourceEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SystemManagedResourceSourceEnum.ProtoReflect.Descriptor instead.
func (*SystemManagedResourceSourceEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_system_managed_entity_source_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_system_managed_entity_source_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_rawDesc = []byte{
0x0a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x5f,
0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x22, 0x71, 0x0a, 0x1f, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x4d, 0x61, 0x6e,
0x61, 0x67, 0x65, 0x64, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x6f, 0x75, 0x72,
0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4e, 0x0a, 0x1b, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d,
@@ -144,42 +144,42 @@ var file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_rawDe
0x4e, 0x10, 0x01, 0x12, 0x11, 0x0a, 0x0d, 0x41, 0x44, 0x5f, 0x56, 0x41, 0x52, 0x49, 0x41, 0x54,
0x49, 0x4f, 0x4e, 0x53, 0x10, 0x02, 0x42, 0xf8, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x53,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x53,
0x79, 0x73, 0x74, 0x65, 0x6d, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x64, 0x45, 0x6e, 0x74, 0x69,
0x74, 0x79, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_rawDescData = file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_rawDesc
+ file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_rawDescData = file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_goTypes = []interface{}{
- (SystemManagedResourceSourceEnum_SystemManagedResourceSource)(0), // 0: google.ads.googleads.v16.enums.SystemManagedResourceSourceEnum.SystemManagedResourceSource
- (*SystemManagedResourceSourceEnum)(nil), // 1: google.ads.googleads.v16.enums.SystemManagedResourceSourceEnum
+var file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_goTypes = []interface{}{
+ (SystemManagedResourceSourceEnum_SystemManagedResourceSource)(0), // 0: google.ads.googleads.v17.enums.SystemManagedResourceSourceEnum.SystemManagedResourceSource
+ (*SystemManagedResourceSourceEnum)(nil), // 1: google.ads.googleads.v17.enums.SystemManagedResourceSourceEnum
}
-var file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -187,13 +187,13 @@ var file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_depId
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_init() }
-func file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_init() {
- if File_google_ads_googleads_v16_enums_system_managed_entity_source_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_init() }
+func file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_init() {
+ if File_google_ads_googleads_v17_enums_system_managed_entity_source_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SystemManagedResourceSourceEnum); i {
case 0:
return &v.state
@@ -210,19 +210,19 @@ func file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_init
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_system_managed_entity_source_proto = out.File
- file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_system_managed_entity_source_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_system_managed_entity_source_proto = out.File
+ file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_system_managed_entity_source_proto_depIdxs = nil
}
diff --git a/enums/target_cpa_opt_in_recommendation_goal.pb.go b/enums/target_cpa_opt_in_recommendation_goal.pb.go
index 4efea03c..ffa592c9 100644
--- a/enums/target_cpa_opt_in_recommendation_goal.pb.go
+++ b/enums/target_cpa_opt_in_recommendation_goal.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/target_cpa_opt_in_recommendation_goal.proto
+// source: google/ads/googleads/v17/enums/target_cpa_opt_in_recommendation_goal.proto
package enums
@@ -84,11 +84,11 @@ func (x TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal) S
}
func (TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_enumTypes[0].Descriptor()
}
func (TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_enumTypes[0]
}
func (x TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal) Number() protoreflect.EnumNumber {
@@ -97,7 +97,7 @@ func (x TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal) N
// Deprecated: Use TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal.Descriptor instead.
func (TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing goals for TargetCpaOptIn recommendation.
@@ -110,7 +110,7 @@ type TargetCpaOptInRecommendationGoalEnum struct {
func (x *TargetCpaOptInRecommendationGoalEnum) Reset() {
*x = TargetCpaOptInRecommendationGoalEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -123,7 +123,7 @@ func (x *TargetCpaOptInRecommendationGoalEnum) String() string {
func (*TargetCpaOptInRecommendationGoalEnum) ProtoMessage() {}
func (x *TargetCpaOptInRecommendationGoalEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -136,19 +136,19 @@ func (x *TargetCpaOptInRecommendationGoalEnum) ProtoReflect() protoreflect.Messa
// Deprecated: Use TargetCpaOptInRecommendationGoalEnum.ProtoReflect.Descriptor instead.
func (*TargetCpaOptInRecommendationGoalEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_rawDesc = []byte{
0x0a, 0x4a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, 0x5f, 0x6f, 0x70, 0x74, 0x5f,
0x69, 0x6e, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xad, 0x01, 0x0a,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xad, 0x01, 0x0a,
0x24, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x4f, 0x70, 0x74, 0x49, 0x6e, 0x52,
0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61,
0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x84, 0x01, 0x0a, 0x20, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74,
@@ -161,43 +161,43 @@ var file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_pr
0x08, 0x53, 0x41, 0x4d, 0x45, 0x5f, 0x43, 0x50, 0x41, 0x10, 0x04, 0x12, 0x0f, 0x0a, 0x0b, 0x43,
0x4c, 0x4f, 0x53, 0x45, 0x53, 0x54, 0x5f, 0x43, 0x50, 0x41, 0x10, 0x05, 0x42, 0xff, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x25, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x4f, 0x70,
0x74, 0x49, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescData = file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_rawDesc
+ file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescData = file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_goTypes = []interface{}{
- (TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal)(0), // 0: google.ads.googleads.v16.enums.TargetCpaOptInRecommendationGoalEnum.TargetCpaOptInRecommendationGoal
- (*TargetCpaOptInRecommendationGoalEnum)(nil), // 1: google.ads.googleads.v16.enums.TargetCpaOptInRecommendationGoalEnum
+var file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_goTypes = []interface{}{
+ (TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal)(0), // 0: google.ads.googleads.v17.enums.TargetCpaOptInRecommendationGoalEnum.TargetCpaOptInRecommendationGoal
+ (*TargetCpaOptInRecommendationGoalEnum)(nil), // 1: google.ads.googleads.v17.enums.TargetCpaOptInRecommendationGoalEnum
}
-var file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -205,13 +205,13 @@ var file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_pr
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_init() }
-func file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_init() {
- if File_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_init() }
+func file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_init() {
+ if File_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TargetCpaOptInRecommendationGoalEnum); i {
case 0:
return &v.state
@@ -228,19 +228,19 @@ func file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_p
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto = out.File
- file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_target_cpa_opt_in_recommendation_goal_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto = out.File
+ file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_target_cpa_opt_in_recommendation_goal_proto_depIdxs = nil
}
diff --git a/enums/target_frequency_time_unit.pb.go b/enums/target_frequency_time_unit.pb.go
index d7ab5254..967d7690 100644
--- a/enums/target_frequency_time_unit.pb.go
+++ b/enums/target_frequency_time_unit.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/target_frequency_time_unit.proto
+// source: google/ads/googleads/v17/enums/target_frequency_time_unit.proto
package enums
@@ -71,11 +71,11 @@ func (x TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit) String() string {
}
func (TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_enumTypes[0].Descriptor()
}
func (TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_enumTypes[0]
}
func (x TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit) Number() protorefle
// Deprecated: Use TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit.Descriptor instead.
func (TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing bidding goal Target Frequency time units.
@@ -97,7 +97,7 @@ type TargetFrequencyTimeUnitEnum struct {
func (x *TargetFrequencyTimeUnitEnum) Reset() {
*x = TargetFrequencyTimeUnitEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *TargetFrequencyTimeUnitEnum) String() string {
func (*TargetFrequencyTimeUnitEnum) ProtoMessage() {}
func (x *TargetFrequencyTimeUnitEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,18 +123,18 @@ func (x *TargetFrequencyTimeUnitEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use TargetFrequencyTimeUnitEnum.ProtoReflect.Descriptor instead.
func (*TargetFrequencyTimeUnitEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_target_frequency_time_unit_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_target_frequency_time_unit_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63,
0x79, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x75, 0x6e, 0x69, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x22, 0x62, 0x0a, 0x1b, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x46, 0x72, 0x65, 0x71, 0x75,
0x65, 0x6e, 0x63, 0x79, 0x54, 0x69, 0x6d, 0x65, 0x55, 0x6e, 0x69, 0x74, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x43, 0x0a, 0x17, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65,
@@ -143,42 +143,42 @@ var file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_rawDesc
0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x57, 0x45, 0x45,
0x4b, 0x4c, 0x59, 0x10, 0x02, 0x42, 0xf6, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x54, 0x61,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x54, 0x61,
0x72, 0x67, 0x65, 0x74, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x54, 0x69, 0x6d,
0x65, 0x55, 0x6e, 0x69, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_rawDescData = file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_rawDesc
+ file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_rawDescData = file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_goTypes = []interface{}{
- (TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit)(0), // 0: google.ads.googleads.v16.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit
- (*TargetFrequencyTimeUnitEnum)(nil), // 1: google.ads.googleads.v16.enums.TargetFrequencyTimeUnitEnum
+var file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_goTypes = []interface{}{
+ (TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit)(0), // 0: google.ads.googleads.v17.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit
+ (*TargetFrequencyTimeUnitEnum)(nil), // 1: google.ads.googleads.v17.enums.TargetFrequencyTimeUnitEnum
}
-var file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -186,13 +186,13 @@ var file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_init() }
-func file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_init() {
- if File_google_ads_googleads_v16_enums_target_frequency_time_unit_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_init() }
+func file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_init() {
+ if File_google_ads_googleads_v17_enums_target_frequency_time_unit_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TargetFrequencyTimeUnitEnum); i {
case 0:
return &v.state
@@ -209,19 +209,19 @@ func file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_target_frequency_time_unit_proto = out.File
- file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_target_frequency_time_unit_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_target_frequency_time_unit_proto = out.File
+ file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_target_frequency_time_unit_proto_depIdxs = nil
}
diff --git a/enums/target_impression_share_location.pb.go b/enums/target_impression_share_location.pb.go
index e7ca2333..b75139cf 100644
--- a/enums/target_impression_share_location.pb.go
+++ b/enums/target_impression_share_location.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/target_impression_share_location.proto
+// source: google/ads/googleads/v17/enums/target_impression_share_location.proto
package enums
@@ -79,11 +79,11 @@ func (x TargetImpressionShareLocationEnum_TargetImpressionShareLocation) String(
}
func (TargetImpressionShareLocationEnum_TargetImpressionShareLocation) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_target_impression_share_location_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_target_impression_share_location_proto_enumTypes[0].Descriptor()
}
func (TargetImpressionShareLocationEnum_TargetImpressionShareLocation) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_target_impression_share_location_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_target_impression_share_location_proto_enumTypes[0]
}
func (x TargetImpressionShareLocationEnum_TargetImpressionShareLocation) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x TargetImpressionShareLocationEnum_TargetImpressionShareLocation) Number(
// Deprecated: Use TargetImpressionShareLocationEnum_TargetImpressionShareLocation.Descriptor instead.
func (TargetImpressionShareLocationEnum_TargetImpressionShareLocation) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_target_impression_share_location_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_target_impression_share_location_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing where on the first search results page the
@@ -107,7 +107,7 @@ type TargetImpressionShareLocationEnum struct {
func (x *TargetImpressionShareLocationEnum) Reset() {
*x = TargetImpressionShareLocationEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_target_impression_share_location_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_target_impression_share_location_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -120,7 +120,7 @@ func (x *TargetImpressionShareLocationEnum) String() string {
func (*TargetImpressionShareLocationEnum) ProtoMessage() {}
func (x *TargetImpressionShareLocationEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_target_impression_share_location_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_target_impression_share_location_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -133,19 +133,19 @@ func (x *TargetImpressionShareLocationEnum) ProtoReflect() protoreflect.Message
// Deprecated: Use TargetImpressionShareLocationEnum.ProtoReflect.Descriptor instead.
func (*TargetImpressionShareLocationEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_target_impression_share_location_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_target_impression_share_location_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_target_impression_share_location_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_target_impression_share_location_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_target_impression_share_location_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_target_impression_share_location_proto_rawDesc = []byte{
0x0a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa3, 0x01, 0x0a, 0x21, 0x54, 0x61, 0x72, 0x67,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa3, 0x01, 0x0a, 0x21, 0x54, 0x61, 0x72, 0x67,
0x65, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72,
0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x7e, 0x0a,
0x1d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f,
@@ -157,43 +157,43 @@ var file_google_ads_googleads_v16_enums_target_impression_share_location_proto_r
0x45, 0x10, 0x03, 0x12, 0x18, 0x0a, 0x14, 0x41, 0x42, 0x53, 0x4f, 0x4c, 0x55, 0x54, 0x45, 0x5f,
0x54, 0x4f, 0x50, 0x5f, 0x4f, 0x46, 0x5f, 0x50, 0x41, 0x47, 0x45, 0x10, 0x04, 0x42, 0xfc, 0x01,
0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x42, 0x22, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x49, 0x6d, 0x70, 0x72,
0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_target_impression_share_location_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_target_impression_share_location_proto_rawDescData = file_google_ads_googleads_v16_enums_target_impression_share_location_proto_rawDesc
+ file_google_ads_googleads_v17_enums_target_impression_share_location_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_target_impression_share_location_proto_rawDescData = file_google_ads_googleads_v17_enums_target_impression_share_location_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_target_impression_share_location_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_target_impression_share_location_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_target_impression_share_location_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_target_impression_share_location_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_target_impression_share_location_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_target_impression_share_location_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_target_impression_share_location_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_target_impression_share_location_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_target_impression_share_location_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_target_impression_share_location_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_target_impression_share_location_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_target_impression_share_location_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_target_impression_share_location_proto_goTypes = []interface{}{
- (TargetImpressionShareLocationEnum_TargetImpressionShareLocation)(0), // 0: google.ads.googleads.v16.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation
- (*TargetImpressionShareLocationEnum)(nil), // 1: google.ads.googleads.v16.enums.TargetImpressionShareLocationEnum
+var file_google_ads_googleads_v17_enums_target_impression_share_location_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_target_impression_share_location_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_target_impression_share_location_proto_goTypes = []interface{}{
+ (TargetImpressionShareLocationEnum_TargetImpressionShareLocation)(0), // 0: google.ads.googleads.v17.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation
+ (*TargetImpressionShareLocationEnum)(nil), // 1: google.ads.googleads.v17.enums.TargetImpressionShareLocationEnum
}
-var file_google_ads_googleads_v16_enums_target_impression_share_location_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_target_impression_share_location_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -201,13 +201,13 @@ var file_google_ads_googleads_v16_enums_target_impression_share_location_proto_d
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_target_impression_share_location_proto_init() }
-func file_google_ads_googleads_v16_enums_target_impression_share_location_proto_init() {
- if File_google_ads_googleads_v16_enums_target_impression_share_location_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_target_impression_share_location_proto_init() }
+func file_google_ads_googleads_v17_enums_target_impression_share_location_proto_init() {
+ if File_google_ads_googleads_v17_enums_target_impression_share_location_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_target_impression_share_location_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_target_impression_share_location_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TargetImpressionShareLocationEnum); i {
case 0:
return &v.state
@@ -224,19 +224,19 @@ func file_google_ads_googleads_v16_enums_target_impression_share_location_proto_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_target_impression_share_location_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_target_impression_share_location_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_target_impression_share_location_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_target_impression_share_location_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_target_impression_share_location_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_target_impression_share_location_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_target_impression_share_location_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_target_impression_share_location_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_target_impression_share_location_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_target_impression_share_location_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_target_impression_share_location_proto = out.File
- file_google_ads_googleads_v16_enums_target_impression_share_location_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_target_impression_share_location_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_target_impression_share_location_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_target_impression_share_location_proto = out.File
+ file_google_ads_googleads_v17_enums_target_impression_share_location_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_target_impression_share_location_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_target_impression_share_location_proto_depIdxs = nil
}
diff --git a/enums/targeting_dimension.pb.go b/enums/targeting_dimension.pb.go
index 35145a8d..f23b7388 100644
--- a/enums/targeting_dimension.pb.go
+++ b/enums/targeting_dimension.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/targeting_dimension.proto
+// source: google/ads/googleads/v17/enums/targeting_dimension.proto
package enums
@@ -105,11 +105,11 @@ func (x TargetingDimensionEnum_TargetingDimension) String() string {
}
func (TargetingDimensionEnum_TargetingDimension) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_targeting_dimension_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_targeting_dimension_proto_enumTypes[0].Descriptor()
}
func (TargetingDimensionEnum_TargetingDimension) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_targeting_dimension_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_targeting_dimension_proto_enumTypes[0]
}
func (x TargetingDimensionEnum_TargetingDimension) Number() protoreflect.EnumNumber {
@@ -118,7 +118,7 @@ func (x TargetingDimensionEnum_TargetingDimension) Number() protoreflect.EnumNum
// Deprecated: Use TargetingDimensionEnum_TargetingDimension.Descriptor instead.
func (TargetingDimensionEnum_TargetingDimension) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_targeting_dimension_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_targeting_dimension_proto_rawDescGZIP(), []int{0, 0}
}
// The dimensions that can be targeted.
@@ -131,7 +131,7 @@ type TargetingDimensionEnum struct {
func (x *TargetingDimensionEnum) Reset() {
*x = TargetingDimensionEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_targeting_dimension_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_targeting_dimension_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -144,7 +144,7 @@ func (x *TargetingDimensionEnum) String() string {
func (*TargetingDimensionEnum) ProtoMessage() {}
func (x *TargetingDimensionEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_targeting_dimension_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_targeting_dimension_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -157,18 +157,18 @@ func (x *TargetingDimensionEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use TargetingDimensionEnum.ProtoReflect.Descriptor instead.
func (*TargetingDimensionEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_targeting_dimension_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_targeting_dimension_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_targeting_dimension_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_targeting_dimension_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_targeting_dimension_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_targeting_dimension_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x69, 0x6d, 0x65, 0x6e,
0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc4, 0x01, 0x0a, 0x16, 0x54,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc4, 0x01, 0x0a, 0x16, 0x54,
0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f,
0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xa9, 0x01, 0x0a, 0x12, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74,
0x69, 0x6e, 0x67, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x0f, 0x0a, 0x0b,
@@ -183,41 +183,41 @@ var file_google_ads_googleads_v16_enums_targeting_dimension_proto_rawDesc = []by
0x10, 0x0a, 0x0c, 0x49, 0x4e, 0x43, 0x4f, 0x4d, 0x45, 0x5f, 0x52, 0x41, 0x4e, 0x47, 0x45, 0x10,
0x09, 0x42, 0xf1, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74,
0x69, 0x6e, 0x67, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_targeting_dimension_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_targeting_dimension_proto_rawDescData = file_google_ads_googleads_v16_enums_targeting_dimension_proto_rawDesc
+ file_google_ads_googleads_v17_enums_targeting_dimension_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_targeting_dimension_proto_rawDescData = file_google_ads_googleads_v17_enums_targeting_dimension_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_targeting_dimension_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_targeting_dimension_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_targeting_dimension_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_targeting_dimension_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_targeting_dimension_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_targeting_dimension_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_targeting_dimension_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_targeting_dimension_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_targeting_dimension_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_targeting_dimension_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_targeting_dimension_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_targeting_dimension_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_targeting_dimension_proto_goTypes = []interface{}{
- (TargetingDimensionEnum_TargetingDimension)(0), // 0: google.ads.googleads.v16.enums.TargetingDimensionEnum.TargetingDimension
- (*TargetingDimensionEnum)(nil), // 1: google.ads.googleads.v16.enums.TargetingDimensionEnum
+var file_google_ads_googleads_v17_enums_targeting_dimension_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_targeting_dimension_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_targeting_dimension_proto_goTypes = []interface{}{
+ (TargetingDimensionEnum_TargetingDimension)(0), // 0: google.ads.googleads.v17.enums.TargetingDimensionEnum.TargetingDimension
+ (*TargetingDimensionEnum)(nil), // 1: google.ads.googleads.v17.enums.TargetingDimensionEnum
}
-var file_google_ads_googleads_v16_enums_targeting_dimension_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_targeting_dimension_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -225,13 +225,13 @@ var file_google_ads_googleads_v16_enums_targeting_dimension_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_targeting_dimension_proto_init() }
-func file_google_ads_googleads_v16_enums_targeting_dimension_proto_init() {
- if File_google_ads_googleads_v16_enums_targeting_dimension_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_targeting_dimension_proto_init() }
+func file_google_ads_googleads_v17_enums_targeting_dimension_proto_init() {
+ if File_google_ads_googleads_v17_enums_targeting_dimension_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_targeting_dimension_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_targeting_dimension_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TargetingDimensionEnum); i {
case 0:
return &v.state
@@ -248,19 +248,19 @@ func file_google_ads_googleads_v16_enums_targeting_dimension_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_targeting_dimension_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_targeting_dimension_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_targeting_dimension_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_targeting_dimension_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_targeting_dimension_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_targeting_dimension_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_targeting_dimension_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_targeting_dimension_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_targeting_dimension_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_targeting_dimension_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_targeting_dimension_proto = out.File
- file_google_ads_googleads_v16_enums_targeting_dimension_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_targeting_dimension_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_targeting_dimension_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_targeting_dimension_proto = out.File
+ file_google_ads_googleads_v17_enums_targeting_dimension_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_targeting_dimension_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_targeting_dimension_proto_depIdxs = nil
}
diff --git a/enums/time_type.pb.go b/enums/time_type.pb.go
index ea15fa1e..18c45f17 100644
--- a/enums/time_type.pb.go
+++ b/enums/time_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/time_type.proto
+// source: google/ads/googleads/v17/enums/time_type.proto
package enums
@@ -76,11 +76,11 @@ func (x TimeTypeEnum_TimeType) String() string {
}
func (TimeTypeEnum_TimeType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_time_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_time_type_proto_enumTypes[0].Descriptor()
}
func (TimeTypeEnum_TimeType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_time_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_time_type_proto_enumTypes[0]
}
func (x TimeTypeEnum_TimeType) Number() protoreflect.EnumNumber {
@@ -89,7 +89,7 @@ func (x TimeTypeEnum_TimeType) Number() protoreflect.EnumNumber {
// Deprecated: Use TimeTypeEnum_TimeType.Descriptor instead.
func (TimeTypeEnum_TimeType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_time_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_time_type_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing time types.
@@ -102,7 +102,7 @@ type TimeTypeEnum struct {
func (x *TimeTypeEnum) Reset() {
*x = TimeTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_time_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_time_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -115,7 +115,7 @@ func (x *TimeTypeEnum) String() string {
func (*TimeTypeEnum) ProtoMessage() {}
func (x *TimeTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_time_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_time_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -128,17 +128,17 @@ func (x *TimeTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use TimeTypeEnum.ProtoReflect.Descriptor instead.
func (*TimeTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_time_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_time_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_time_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_time_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_time_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_time_type_proto_rawDesc = []byte{
0x0a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0x4e, 0x0a, 0x0c, 0x54, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x3e, 0x0a, 0x08, 0x54, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b,
0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a,
@@ -146,41 +146,41 @@ var file_google_ads_googleads_v16_enums_time_type_proto_rawDesc = []byte{
0x57, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x46, 0x4f, 0x52, 0x45, 0x56, 0x45, 0x52, 0x10, 0x03,
0x42, 0xe7, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0d, 0x54, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0d, 0x54, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70,
0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73,
- 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45,
+ 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
- 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_time_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_time_type_proto_rawDescData = file_google_ads_googleads_v16_enums_time_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_time_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_time_type_proto_rawDescData = file_google_ads_googleads_v17_enums_time_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_time_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_time_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_time_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_time_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_time_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_time_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_time_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_time_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_time_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_time_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_time_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_time_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_time_type_proto_goTypes = []interface{}{
- (TimeTypeEnum_TimeType)(0), // 0: google.ads.googleads.v16.enums.TimeTypeEnum.TimeType
- (*TimeTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.TimeTypeEnum
+var file_google_ads_googleads_v17_enums_time_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_time_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_time_type_proto_goTypes = []interface{}{
+ (TimeTypeEnum_TimeType)(0), // 0: google.ads.googleads.v17.enums.TimeTypeEnum.TimeType
+ (*TimeTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.TimeTypeEnum
}
-var file_google_ads_googleads_v16_enums_time_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_time_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -188,13 +188,13 @@ var file_google_ads_googleads_v16_enums_time_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_time_type_proto_init() }
-func file_google_ads_googleads_v16_enums_time_type_proto_init() {
- if File_google_ads_googleads_v16_enums_time_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_time_type_proto_init() }
+func file_google_ads_googleads_v17_enums_time_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_time_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_time_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_time_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TimeTypeEnum); i {
case 0:
return &v.state
@@ -211,19 +211,19 @@ func file_google_ads_googleads_v16_enums_time_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_time_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_time_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_time_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_time_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_time_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_time_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_time_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_time_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_time_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_time_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_time_type_proto = out.File
- file_google_ads_googleads_v16_enums_time_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_time_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_time_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_time_type_proto = out.File
+ file_google_ads_googleads_v17_enums_time_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_time_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_time_type_proto_depIdxs = nil
}
diff --git a/enums/tracking_code_page_format.pb.go b/enums/tracking_code_page_format.pb.go
index b9e91751..f28cb022 100644
--- a/enums/tracking_code_page_format.pb.go
+++ b/enums/tracking_code_page_format.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/tracking_code_page_format.proto
+// source: google/ads/googleads/v17/enums/tracking_code_page_format.proto
package enums
@@ -76,11 +76,11 @@ func (x TrackingCodePageFormatEnum_TrackingCodePageFormat) String() string {
}
func (TrackingCodePageFormatEnum_TrackingCodePageFormat) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_enumTypes[0].Descriptor()
}
func (TrackingCodePageFormatEnum_TrackingCodePageFormat) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_enumTypes[0]
}
func (x TrackingCodePageFormatEnum_TrackingCodePageFormat) Number() protoreflect.EnumNumber {
@@ -89,7 +89,7 @@ func (x TrackingCodePageFormatEnum_TrackingCodePageFormat) Number() protoreflect
// Deprecated: Use TrackingCodePageFormatEnum_TrackingCodePageFormat.Descriptor instead.
func (TrackingCodePageFormatEnum_TrackingCodePageFormat) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the format of the web page where the tracking
@@ -103,7 +103,7 @@ type TrackingCodePageFormatEnum struct {
func (x *TrackingCodePageFormatEnum) Reset() {
*x = TrackingCodePageFormatEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -116,7 +116,7 @@ func (x *TrackingCodePageFormatEnum) String() string {
func (*TrackingCodePageFormatEnum) ProtoMessage() {}
func (x *TrackingCodePageFormatEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -129,18 +129,18 @@ func (x *TrackingCodePageFormatEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use TrackingCodePageFormatEnum.ProtoReflect.Descriptor instead.
func (*TrackingCodePageFormatEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_tracking_code_page_format_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_tracking_code_page_format_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x70,
0x61, 0x67, 0x65, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0x67, 0x0a, 0x1a, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65,
0x50, 0x61, 0x67, 0x65, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x49,
0x0a, 0x16, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x50, 0x61,
@@ -149,42 +149,42 @@ var file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_rawDesc
0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x48, 0x54, 0x4d, 0x4c, 0x10, 0x02,
0x12, 0x07, 0x0a, 0x03, 0x41, 0x4d, 0x50, 0x10, 0x03, 0x42, 0xf5, 0x01, 0x0a, 0x22, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x42, 0x1b, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x50, 0x61,
0x67, 0x65, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_rawDescData = file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_rawDesc
+ file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_rawDescData = file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_goTypes = []interface{}{
- (TrackingCodePageFormatEnum_TrackingCodePageFormat)(0), // 0: google.ads.googleads.v16.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat
- (*TrackingCodePageFormatEnum)(nil), // 1: google.ads.googleads.v16.enums.TrackingCodePageFormatEnum
+var file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_goTypes = []interface{}{
+ (TrackingCodePageFormatEnum_TrackingCodePageFormat)(0), // 0: google.ads.googleads.v17.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat
+ (*TrackingCodePageFormatEnum)(nil), // 1: google.ads.googleads.v17.enums.TrackingCodePageFormatEnum
}
-var file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -192,13 +192,13 @@ var file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_init() }
-func file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_init() {
- if File_google_ads_googleads_v16_enums_tracking_code_page_format_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_init() }
+func file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_init() {
+ if File_google_ads_googleads_v17_enums_tracking_code_page_format_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TrackingCodePageFormatEnum); i {
case 0:
return &v.state
@@ -215,19 +215,19 @@ func file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_tracking_code_page_format_proto = out.File
- file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_tracking_code_page_format_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_tracking_code_page_format_proto = out.File
+ file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_tracking_code_page_format_proto_depIdxs = nil
}
diff --git a/enums/tracking_code_type.pb.go b/enums/tracking_code_type.pb.go
index dd157b2b..25a1589a 100644
--- a/enums/tracking_code_type.pb.go
+++ b/enums/tracking_code_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/tracking_code_type.proto
+// source: google/ads/googleads/v17/enums/tracking_code_type.proto
package enums
@@ -87,11 +87,11 @@ func (x TrackingCodeTypeEnum_TrackingCodeType) String() string {
}
func (TrackingCodeTypeEnum_TrackingCodeType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_tracking_code_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_tracking_code_type_proto_enumTypes[0].Descriptor()
}
func (TrackingCodeTypeEnum_TrackingCodeType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_tracking_code_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_tracking_code_type_proto_enumTypes[0]
}
func (x TrackingCodeTypeEnum_TrackingCodeType) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x TrackingCodeTypeEnum_TrackingCodeType) Number() protoreflect.EnumNumber
// Deprecated: Use TrackingCodeTypeEnum_TrackingCodeType.Descriptor instead.
func (TrackingCodeTypeEnum_TrackingCodeType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_tracking_code_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_tracking_code_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the type of the generated tag snippets for
@@ -114,7 +114,7 @@ type TrackingCodeTypeEnum struct {
func (x *TrackingCodeTypeEnum) Reset() {
*x = TrackingCodeTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_tracking_code_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_tracking_code_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -127,7 +127,7 @@ func (x *TrackingCodeTypeEnum) String() string {
func (*TrackingCodeTypeEnum) ProtoMessage() {}
func (x *TrackingCodeTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_tracking_code_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_tracking_code_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -140,18 +140,18 @@ func (x *TrackingCodeTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use TrackingCodeTypeEnum.ProtoReflect.Descriptor instead.
func (*TrackingCodeTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_tracking_code_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_tracking_code_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_tracking_code_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_tracking_code_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_tracking_code_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_tracking_code_type_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x74,
0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8f, 0x01, 0x0a, 0x14, 0x54, 0x72,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8f, 0x01, 0x0a, 0x14, 0x54, 0x72,
0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0x77, 0x0a, 0x10, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f,
0x64, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
@@ -162,42 +162,42 @@ var file_google_ads_googleads_v16_enums_tracking_code_type_proto_rawDesc = []byt
0x54, 0x4f, 0x5f, 0x43, 0x41, 0x4c, 0x4c, 0x10, 0x04, 0x12, 0x10, 0x0a, 0x0c, 0x57, 0x45, 0x42,
0x53, 0x49, 0x54, 0x45, 0x5f, 0x43, 0x41, 0x4c, 0x4c, 0x10, 0x05, 0x42, 0xef, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x15, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x64, 0x65,
0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_tracking_code_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_tracking_code_type_proto_rawDescData = file_google_ads_googleads_v16_enums_tracking_code_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_tracking_code_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_tracking_code_type_proto_rawDescData = file_google_ads_googleads_v17_enums_tracking_code_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_tracking_code_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_tracking_code_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_tracking_code_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_tracking_code_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_tracking_code_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_tracking_code_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_tracking_code_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_tracking_code_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_tracking_code_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_tracking_code_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_tracking_code_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_tracking_code_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_tracking_code_type_proto_goTypes = []interface{}{
- (TrackingCodeTypeEnum_TrackingCodeType)(0), // 0: google.ads.googleads.v16.enums.TrackingCodeTypeEnum.TrackingCodeType
- (*TrackingCodeTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.TrackingCodeTypeEnum
+var file_google_ads_googleads_v17_enums_tracking_code_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_tracking_code_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_tracking_code_type_proto_goTypes = []interface{}{
+ (TrackingCodeTypeEnum_TrackingCodeType)(0), // 0: google.ads.googleads.v17.enums.TrackingCodeTypeEnum.TrackingCodeType
+ (*TrackingCodeTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.TrackingCodeTypeEnum
}
-var file_google_ads_googleads_v16_enums_tracking_code_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_tracking_code_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -205,13 +205,13 @@ var file_google_ads_googleads_v16_enums_tracking_code_type_proto_depIdxs = []int
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_tracking_code_type_proto_init() }
-func file_google_ads_googleads_v16_enums_tracking_code_type_proto_init() {
- if File_google_ads_googleads_v16_enums_tracking_code_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_tracking_code_type_proto_init() }
+func file_google_ads_googleads_v17_enums_tracking_code_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_tracking_code_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_tracking_code_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_tracking_code_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TrackingCodeTypeEnum); i {
case 0:
return &v.state
@@ -228,19 +228,19 @@ func file_google_ads_googleads_v16_enums_tracking_code_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_tracking_code_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_tracking_code_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_tracking_code_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_tracking_code_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_tracking_code_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_tracking_code_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_tracking_code_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_tracking_code_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_tracking_code_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_tracking_code_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_tracking_code_type_proto = out.File
- file_google_ads_googleads_v16_enums_tracking_code_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_tracking_code_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_tracking_code_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_tracking_code_type_proto = out.File
+ file_google_ads_googleads_v17_enums_tracking_code_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_tracking_code_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_tracking_code_type_proto_depIdxs = nil
}
diff --git a/enums/travel_placeholder_field.pb.go b/enums/travel_placeholder_field.pb.go
index 7d6171c3..d5344679 100644
--- a/enums/travel_placeholder_field.pb.go
+++ b/enums/travel_placeholder_field.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/travel_placeholder_field.proto
+// source: google/ads/googleads/v17/enums/travel_placeholder_field.proto
package enums
@@ -171,11 +171,11 @@ func (x TravelPlaceholderFieldEnum_TravelPlaceholderField) String() string {
}
func (TravelPlaceholderFieldEnum_TravelPlaceholderField) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_enumTypes[0].Descriptor()
}
func (TravelPlaceholderFieldEnum_TravelPlaceholderField) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_enumTypes[0]
}
func (x TravelPlaceholderFieldEnum_TravelPlaceholderField) Number() protoreflect.EnumNumber {
@@ -184,7 +184,7 @@ func (x TravelPlaceholderFieldEnum_TravelPlaceholderField) Number() protoreflect
// Deprecated: Use TravelPlaceholderFieldEnum_TravelPlaceholderField.Descriptor instead.
func (TravelPlaceholderFieldEnum_TravelPlaceholderField) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_rawDescGZIP(), []int{0, 0}
}
// Values for Travel placeholder fields.
@@ -199,7 +199,7 @@ type TravelPlaceholderFieldEnum struct {
func (x *TravelPlaceholderFieldEnum) Reset() {
*x = TravelPlaceholderFieldEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -212,7 +212,7 @@ func (x *TravelPlaceholderFieldEnum) String() string {
func (*TravelPlaceholderFieldEnum) ProtoMessage() {}
func (x *TravelPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -225,18 +225,18 @@ func (x *TravelPlaceholderFieldEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use TravelPlaceholderFieldEnum.ProtoReflect.Descriptor instead.
func (*TravelPlaceholderFieldEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_travel_placeholder_field_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_travel_placeholder_field_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c,
0x64, 0x65, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
0xd6, 0x03, 0x0a, 0x1a, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68,
0x6f, 0x6c, 0x64, 0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb7,
0x03, 0x0a, 0x16, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f,
@@ -268,42 +268,42 @@ var file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_rawDesc =
0x10, 0x14, 0x12, 0x14, 0x0a, 0x10, 0x49, 0x4f, 0x53, 0x5f, 0x41, 0x50, 0x50, 0x5f, 0x53, 0x54,
0x4f, 0x52, 0x45, 0x5f, 0x49, 0x44, 0x10, 0x15, 0x42, 0xf5, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42,
0x1b, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x68, 0x6f, 0x6c, 0x64,
0x65, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_rawDescData = file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_rawDesc
+ file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_rawDescData = file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_goTypes = []interface{}{
- (TravelPlaceholderFieldEnum_TravelPlaceholderField)(0), // 0: google.ads.googleads.v16.enums.TravelPlaceholderFieldEnum.TravelPlaceholderField
- (*TravelPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v16.enums.TravelPlaceholderFieldEnum
+var file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_goTypes = []interface{}{
+ (TravelPlaceholderFieldEnum_TravelPlaceholderField)(0), // 0: google.ads.googleads.v17.enums.TravelPlaceholderFieldEnum.TravelPlaceholderField
+ (*TravelPlaceholderFieldEnum)(nil), // 1: google.ads.googleads.v17.enums.TravelPlaceholderFieldEnum
}
-var file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -311,13 +311,13 @@ var file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_init() }
-func file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_init() {
- if File_google_ads_googleads_v16_enums_travel_placeholder_field_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_init() }
+func file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_init() {
+ if File_google_ads_googleads_v17_enums_travel_placeholder_field_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TravelPlaceholderFieldEnum); i {
case 0:
return &v.state
@@ -334,19 +334,19 @@ func file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_travel_placeholder_field_proto = out.File
- file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_travel_placeholder_field_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_travel_placeholder_field_proto = out.File
+ file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_travel_placeholder_field_proto_depIdxs = nil
}
diff --git a/enums/user_identifier_source.pb.go b/enums/user_identifier_source.pb.go
index 213d2d57..6822a398 100644
--- a/enums/user_identifier_source.pb.go
+++ b/enums/user_identifier_source.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/user_identifier_source.proto
+// source: google/ads/googleads/v17/enums/user_identifier_source.proto
package enums
@@ -78,11 +78,11 @@ func (x UserIdentifierSourceEnum_UserIdentifierSource) String() string {
}
func (UserIdentifierSourceEnum_UserIdentifierSource) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_user_identifier_source_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_user_identifier_source_proto_enumTypes[0].Descriptor()
}
func (UserIdentifierSourceEnum_UserIdentifierSource) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_user_identifier_source_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_user_identifier_source_proto_enumTypes[0]
}
func (x UserIdentifierSourceEnum_UserIdentifierSource) Number() protoreflect.EnumNumber {
@@ -91,7 +91,7 @@ func (x UserIdentifierSourceEnum_UserIdentifierSource) Number() protoreflect.Enu
// Deprecated: Use UserIdentifierSourceEnum_UserIdentifierSource.Descriptor instead.
func (UserIdentifierSourceEnum_UserIdentifierSource) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_identifier_source_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_user_identifier_source_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing the source of the user identifier for offline
@@ -105,7 +105,7 @@ type UserIdentifierSourceEnum struct {
func (x *UserIdentifierSourceEnum) Reset() {
*x = UserIdentifierSourceEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_user_identifier_source_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_identifier_source_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *UserIdentifierSourceEnum) String() string {
func (*UserIdentifierSourceEnum) ProtoMessage() {}
func (x *UserIdentifierSourceEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_user_identifier_source_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_identifier_source_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *UserIdentifierSourceEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserIdentifierSourceEnum.ProtoReflect.Descriptor instead.
func (*UserIdentifierSourceEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_identifier_source_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_user_identifier_source_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_user_identifier_source_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_user_identifier_source_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_user_identifier_source_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_user_identifier_source_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72,
0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x72, 0x0a,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x72, 0x0a,
0x18, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x53,
0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x56, 0x0a, 0x14, 0x55, 0x73, 0x65,
0x72, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x53, 0x6f, 0x75, 0x72, 0x63,
@@ -152,41 +152,41 @@ var file_google_ads_googleads_v16_enums_user_identifier_source_proto_rawDesc = [
0x12, 0x0f, 0x0a, 0x0b, 0x54, 0x48, 0x49, 0x52, 0x44, 0x5f, 0x50, 0x41, 0x52, 0x54, 0x59, 0x10,
0x03, 0x42, 0xf3, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_user_identifier_source_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_user_identifier_source_proto_rawDescData = file_google_ads_googleads_v16_enums_user_identifier_source_proto_rawDesc
+ file_google_ads_googleads_v17_enums_user_identifier_source_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_user_identifier_source_proto_rawDescData = file_google_ads_googleads_v17_enums_user_identifier_source_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_user_identifier_source_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_user_identifier_source_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_user_identifier_source_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_user_identifier_source_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_user_identifier_source_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_user_identifier_source_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_user_identifier_source_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_user_identifier_source_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_user_identifier_source_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_user_identifier_source_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_user_identifier_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_user_identifier_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_user_identifier_source_proto_goTypes = []interface{}{
- (UserIdentifierSourceEnum_UserIdentifierSource)(0), // 0: google.ads.googleads.v16.enums.UserIdentifierSourceEnum.UserIdentifierSource
- (*UserIdentifierSourceEnum)(nil), // 1: google.ads.googleads.v16.enums.UserIdentifierSourceEnum
+var file_google_ads_googleads_v17_enums_user_identifier_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_user_identifier_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_user_identifier_source_proto_goTypes = []interface{}{
+ (UserIdentifierSourceEnum_UserIdentifierSource)(0), // 0: google.ads.googleads.v17.enums.UserIdentifierSourceEnum.UserIdentifierSource
+ (*UserIdentifierSourceEnum)(nil), // 1: google.ads.googleads.v17.enums.UserIdentifierSourceEnum
}
-var file_google_ads_googleads_v16_enums_user_identifier_source_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_user_identifier_source_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -194,13 +194,13 @@ var file_google_ads_googleads_v16_enums_user_identifier_source_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_user_identifier_source_proto_init() }
-func file_google_ads_googleads_v16_enums_user_identifier_source_proto_init() {
- if File_google_ads_googleads_v16_enums_user_identifier_source_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_user_identifier_source_proto_init() }
+func file_google_ads_googleads_v17_enums_user_identifier_source_proto_init() {
+ if File_google_ads_googleads_v17_enums_user_identifier_source_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_user_identifier_source_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_user_identifier_source_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserIdentifierSourceEnum); i {
case 0:
return &v.state
@@ -217,19 +217,19 @@ func file_google_ads_googleads_v16_enums_user_identifier_source_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_user_identifier_source_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_user_identifier_source_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_user_identifier_source_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_user_identifier_source_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_user_identifier_source_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_user_identifier_source_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_user_identifier_source_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_user_identifier_source_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_user_identifier_source_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_user_identifier_source_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_user_identifier_source_proto = out.File
- file_google_ads_googleads_v16_enums_user_identifier_source_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_user_identifier_source_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_user_identifier_source_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_user_identifier_source_proto = out.File
+ file_google_ads_googleads_v17_enums_user_identifier_source_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_user_identifier_source_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_user_identifier_source_proto_depIdxs = nil
}
diff --git a/enums/user_interest_taxonomy_type.pb.go b/enums/user_interest_taxonomy_type.pb.go
index 46f89907..f5d19306 100644
--- a/enums/user_interest_taxonomy_type.pb.go
+++ b/enums/user_interest_taxonomy_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/user_interest_taxonomy_type.proto
+// source: google/ads/googleads/v17/enums/user_interest_taxonomy_type.proto
package enums
@@ -87,11 +87,11 @@ func (x UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType) String() string {
}
func (UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_enumTypes[0].Descriptor()
}
func (UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_enumTypes[0]
}
func (x UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType) Number() protoref
// Deprecated: Use UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType.Descriptor instead.
func (UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_rawDescGZIP(), []int{0, 0}
}
// Message describing a UserInterestTaxonomyType.
@@ -113,7 +113,7 @@ type UserInterestTaxonomyTypeEnum struct {
func (x *UserInterestTaxonomyTypeEnum) Reset() {
*x = UserInterestTaxonomyTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +126,7 @@ func (x *UserInterestTaxonomyTypeEnum) String() string {
func (*UserInterestTaxonomyTypeEnum) ProtoMessage() {}
func (x *UserInterestTaxonomyTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,18 +139,18 @@ func (x *UserInterestTaxonomyTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserInterestTaxonomyTypeEnum.ProtoReflect.Descriptor instead.
func (*UserInterestTaxonomyTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x5f, 0x74,
0x61, 0x78, 0x6f, 0x6e, 0x6f, 0x6d, 0x79, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0xbf, 0x01, 0x0a, 0x1c, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72,
0x65, 0x73, 0x74, 0x54, 0x61, 0x78, 0x6f, 0x6e, 0x6f, 0x6d, 0x79, 0x54, 0x79, 0x70, 0x65, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0x9e, 0x01, 0x0a, 0x18, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65,
@@ -165,42 +165,42 @@ var file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_rawDes
0x57, 0x5f, 0x53, 0x4d, 0x41, 0x52, 0x54, 0x5f, 0x50, 0x48, 0x4f, 0x4e, 0x45, 0x5f, 0x55, 0x53,
0x45, 0x52, 0x10, 0x06, 0x42, 0xf7, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x55, 0x73, 0x65,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x55, 0x73, 0x65,
0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x54, 0x61, 0x78, 0x6f, 0x6e, 0x6f, 0x6d,
0x79, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_rawDescData = file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_rawDescData = file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_goTypes = []interface{}{
- (UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType)(0), // 0: google.ads.googleads.v16.enums.UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType
- (*UserInterestTaxonomyTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.UserInterestTaxonomyTypeEnum
+var file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_goTypes = []interface{}{
+ (UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType)(0), // 0: google.ads.googleads.v17.enums.UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType
+ (*UserInterestTaxonomyTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.UserInterestTaxonomyTypeEnum
}
-var file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -208,13 +208,13 @@ var file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_init() }
-func file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_init() {
- if File_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_init() }
+func file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserInterestTaxonomyTypeEnum); i {
case 0:
return &v.state
@@ -231,19 +231,19 @@ func file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto = out.File
- file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_user_interest_taxonomy_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto = out.File
+ file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_user_interest_taxonomy_type_proto_depIdxs = nil
}
diff --git a/enums/user_list_access_status.pb.go b/enums/user_list_access_status.pb.go
index 2914cf56..7d3bff7a 100644
--- a/enums/user_list_access_status.pb.go
+++ b/enums/user_list_access_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/user_list_access_status.proto
+// source: google/ads/googleads/v17/enums/user_list_access_status.proto
package enums
@@ -75,11 +75,11 @@ func (x UserListAccessStatusEnum_UserListAccessStatus) String() string {
}
func (UserListAccessStatusEnum_UserListAccessStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_user_list_access_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_user_list_access_status_proto_enumTypes[0].Descriptor()
}
func (UserListAccessStatusEnum_UserListAccessStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_user_list_access_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_user_list_access_status_proto_enumTypes[0]
}
func (x UserListAccessStatusEnum_UserListAccessStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x UserListAccessStatusEnum_UserListAccessStatus) Number() protoreflect.Enu
// Deprecated: Use UserListAccessStatusEnum_UserListAccessStatus.Descriptor instead.
func (UserListAccessStatusEnum_UserListAccessStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_access_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_user_list_access_status_proto_rawDescGZIP(), []int{0, 0}
}
// Indicates if this client still has access to the list.
@@ -101,7 +101,7 @@ type UserListAccessStatusEnum struct {
func (x *UserListAccessStatusEnum) Reset() {
*x = UserListAccessStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_user_list_access_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_access_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *UserListAccessStatusEnum) String() string {
func (*UserListAccessStatusEnum) ProtoMessage() {}
func (x *UserListAccessStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_user_list_access_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_access_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *UserListAccessStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListAccessStatusEnum.ProtoReflect.Descriptor instead.
func (*UserListAccessStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_access_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_user_list_access_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_user_list_access_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_user_list_access_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_user_list_access_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_user_list_access_status_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73,
0x73, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6b,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6b,
0x0a, 0x18, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4f, 0x0a, 0x14, 0x55, 0x73,
0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x53, 0x74, 0x61, 0x74,
@@ -147,42 +147,42 @@ var file_google_ads_googleads_v16_enums_user_list_access_status_proto_rawDesc =
0x12, 0x0b, 0x0a, 0x07, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0c, 0x0a,
0x08, 0x44, 0x49, 0x53, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x03, 0x42, 0xf3, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x19, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x65,
0x73, 0x73, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_user_list_access_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_user_list_access_status_proto_rawDescData = file_google_ads_googleads_v16_enums_user_list_access_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_user_list_access_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_user_list_access_status_proto_rawDescData = file_google_ads_googleads_v17_enums_user_list_access_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_user_list_access_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_user_list_access_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_user_list_access_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_user_list_access_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_user_list_access_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_user_list_access_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_user_list_access_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_user_list_access_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_user_list_access_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_user_list_access_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_user_list_access_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_access_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_access_status_proto_goTypes = []interface{}{
- (UserListAccessStatusEnum_UserListAccessStatus)(0), // 0: google.ads.googleads.v16.enums.UserListAccessStatusEnum.UserListAccessStatus
- (*UserListAccessStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.UserListAccessStatusEnum
+var file_google_ads_googleads_v17_enums_user_list_access_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_access_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_access_status_proto_goTypes = []interface{}{
+ (UserListAccessStatusEnum_UserListAccessStatus)(0), // 0: google.ads.googleads.v17.enums.UserListAccessStatusEnum.UserListAccessStatus
+ (*UserListAccessStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.UserListAccessStatusEnum
}
-var file_google_ads_googleads_v16_enums_user_list_access_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_user_list_access_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_enums_user_list_access_status_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_user_list_access_status_proto_init() }
-func file_google_ads_googleads_v16_enums_user_list_access_status_proto_init() {
- if File_google_ads_googleads_v16_enums_user_list_access_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_user_list_access_status_proto_init() }
+func file_google_ads_googleads_v17_enums_user_list_access_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_user_list_access_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_user_list_access_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_user_list_access_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListAccessStatusEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_enums_user_list_access_status_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_user_list_access_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_user_list_access_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_user_list_access_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_user_list_access_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_user_list_access_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_user_list_access_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_user_list_access_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_user_list_access_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_user_list_access_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_user_list_access_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_user_list_access_status_proto = out.File
- file_google_ads_googleads_v16_enums_user_list_access_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_user_list_access_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_user_list_access_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_user_list_access_status_proto = out.File
+ file_google_ads_googleads_v17_enums_user_list_access_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_user_list_access_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_user_list_access_status_proto_depIdxs = nil
}
diff --git a/enums/user_list_closing_reason.pb.go b/enums/user_list_closing_reason.pb.go
index 27044e8d..9349a780 100644
--- a/enums/user_list_closing_reason.pb.go
+++ b/enums/user_list_closing_reason.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/user_list_closing_reason.proto
+// source: google/ads/googleads/v17/enums/user_list_closing_reason.proto
package enums
@@ -71,11 +71,11 @@ func (x UserListClosingReasonEnum_UserListClosingReason) String() string {
}
func (UserListClosingReasonEnum_UserListClosingReason) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_enumTypes[0].Descriptor()
}
func (UserListClosingReasonEnum_UserListClosingReason) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_enumTypes[0]
}
func (x UserListClosingReasonEnum_UserListClosingReason) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x UserListClosingReasonEnum_UserListClosingReason) Number() protoreflect.E
// Deprecated: Use UserListClosingReasonEnum_UserListClosingReason.Descriptor instead.
func (UserListClosingReasonEnum_UserListClosingReason) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_rawDescGZIP(), []int{0, 0}
}
// Indicates the reason why the userlist was closed.
@@ -98,7 +98,7 @@ type UserListClosingReasonEnum struct {
func (x *UserListClosingReasonEnum) Reset() {
*x = UserListClosingReasonEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -111,7 +111,7 @@ func (x *UserListClosingReasonEnum) String() string {
func (*UserListClosingReasonEnum) ProtoMessage() {}
func (x *UserListClosingReasonEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -124,18 +124,18 @@ func (x *UserListClosingReasonEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListClosingReasonEnum.ProtoReflect.Descriptor instead.
func (*UserListClosingReasonEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_user_list_closing_reason_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_user_list_closing_reason_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x6c, 0x6f, 0x73, 0x69,
0x6e, 0x67, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
0x5e, 0x0a, 0x19, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x73, 0x69,
0x6e, 0x67, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x41, 0x0a, 0x15,
0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x6c, 0x6f, 0x73, 0x69, 0x6e, 0x67, 0x52,
@@ -143,42 +143,42 @@ var file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_rawDesc =
0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57,
0x4e, 0x10, 0x01, 0x12, 0x0a, 0x0a, 0x06, 0x55, 0x4e, 0x55, 0x53, 0x45, 0x44, 0x10, 0x02, 0x42,
0xf4, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
0x43, 0x6c, 0x6f, 0x73, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_rawDescData = file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_rawDesc
+ file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_rawDescData = file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_goTypes = []interface{}{
- (UserListClosingReasonEnum_UserListClosingReason)(0), // 0: google.ads.googleads.v16.enums.UserListClosingReasonEnum.UserListClosingReason
- (*UserListClosingReasonEnum)(nil), // 1: google.ads.googleads.v16.enums.UserListClosingReasonEnum
+var file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_goTypes = []interface{}{
+ (UserListClosingReasonEnum_UserListClosingReason)(0), // 0: google.ads.googleads.v17.enums.UserListClosingReasonEnum.UserListClosingReason
+ (*UserListClosingReasonEnum)(nil), // 1: google.ads.googleads.v17.enums.UserListClosingReasonEnum
}
-var file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -186,13 +186,13 @@ var file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_init() }
-func file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_init() {
- if File_google_ads_googleads_v16_enums_user_list_closing_reason_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_init() }
+func file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_init() {
+ if File_google_ads_googleads_v17_enums_user_list_closing_reason_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListClosingReasonEnum); i {
case 0:
return &v.state
@@ -209,19 +209,19 @@ func file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_user_list_closing_reason_proto = out.File
- file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_user_list_closing_reason_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_user_list_closing_reason_proto = out.File
+ file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_user_list_closing_reason_proto_depIdxs = nil
}
diff --git a/enums/user_list_crm_data_source_type.pb.go b/enums/user_list_crm_data_source_type.pb.go
index 255faf4d..ee44730c 100644
--- a/enums/user_list_crm_data_source_type.pb.go
+++ b/enums/user_list_crm_data_source_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/user_list_crm_data_source_type.proto
+// source: google/ads/googleads/v17/enums/user_list_crm_data_source_type.proto
package enums
@@ -79,11 +79,11 @@ func (x UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType) String() string
}
func (UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_enumTypes[0].Descriptor()
}
func (UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_enumTypes[0]
}
func (x UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType) Number() protor
// Deprecated: Use UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType.Descriptor instead.
func (UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_rawDescGZIP(), []int{0, 0}
}
// Indicates source of Crm upload data.
@@ -105,7 +105,7 @@ type UserListCrmDataSourceTypeEnum struct {
func (x *UserListCrmDataSourceTypeEnum) Reset() {
*x = UserListCrmDataSourceTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *UserListCrmDataSourceTypeEnum) String() string {
func (*UserListCrmDataSourceTypeEnum) ProtoMessage() {}
func (x *UserListCrmDataSourceTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *UserListCrmDataSourceTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListCrmDataSourceTypeEnum.ProtoReflect.Descriptor instead.
func (*UserListCrmDataSourceTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x72, 0x6d, 0x5f, 0x64,
0x61, 0x74, 0x61, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa7, 0x01, 0x0a, 0x1d, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69,
0x73, 0x74, 0x43, 0x72, 0x6d, 0x44, 0x61, 0x74, 0x61, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54,
0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x85, 0x01, 0x0a, 0x19, 0x55, 0x73, 0x65, 0x72,
@@ -155,43 +155,43 @@ var file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_raw
0x55, 0x10, 0x03, 0x12, 0x1a, 0x0a, 0x16, 0x54, 0x48, 0x49, 0x52, 0x44, 0x5f, 0x50, 0x41, 0x52,
0x54, 0x59, 0x5f, 0x56, 0x4f, 0x54, 0x45, 0x52, 0x5f, 0x46, 0x49, 0x4c, 0x45, 0x10, 0x04, 0x42,
0xf8, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
0x43, 0x72, 0x6d, 0x44, 0x61, 0x74, 0x61, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70,
0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73,
- 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45,
+ 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
- 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_rawDescData = file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_rawDescData = file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_goTypes = []interface{}{
- (UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType)(0), // 0: google.ads.googleads.v16.enums.UserListCrmDataSourceTypeEnum.UserListCrmDataSourceType
- (*UserListCrmDataSourceTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.UserListCrmDataSourceTypeEnum
+var file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_goTypes = []interface{}{
+ (UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType)(0), // 0: google.ads.googleads.v17.enums.UserListCrmDataSourceTypeEnum.UserListCrmDataSourceType
+ (*UserListCrmDataSourceTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.UserListCrmDataSourceTypeEnum
}
-var file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -199,13 +199,13 @@ var file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_init() }
-func file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_init() {
- if File_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_init() }
+func file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListCrmDataSourceTypeEnum); i {
case 0:
return &v.state
@@ -222,19 +222,19 @@ func file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto = out.File
- file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_user_list_crm_data_source_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto = out.File
+ file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_user_list_crm_data_source_type_proto_depIdxs = nil
}
diff --git a/enums/user_list_customer_type_category.pb.go b/enums/user_list_customer_type_category.pb.go
new file mode 100644
index 00000000..227c48ca
--- /dev/null
+++ b/enums/user_list_customer_type_category.pb.go
@@ -0,0 +1,272 @@
+// Copyright 2024 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+// Code generated by protoc-gen-go. DO NOT EDIT.
+// versions:
+// protoc-gen-go v1.34.1
+// protoc v4.24.4
+// source: google/ads/googleads/v17/enums/user_list_customer_type_category.proto
+
+package enums
+
+import (
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
+ reflect "reflect"
+ sync "sync"
+)
+
+const (
+ // Verify that this generated code is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
+ // Verify that runtime/protoimpl is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
+)
+
+// Enum containing possible user list customer type categories.
+type UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory int32
+
+const (
+ // Not specified.
+ UserListCustomerTypeCategoryEnum_UNSPECIFIED UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory = 0
+ // Unknown type.
+ UserListCustomerTypeCategoryEnum_UNKNOWN UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory = 1
+ // Customer type category for all customers.
+ UserListCustomerTypeCategoryEnum_ALL_CUSTOMERS UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory = 2
+ // Customer type category for all purchasers.
+ UserListCustomerTypeCategoryEnum_PURCHASERS UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory = 3
+ // Customer type category for high value purchasers.
+ UserListCustomerTypeCategoryEnum_HIGH_VALUE_CUSTOMERS UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory = 4
+ // Customer type category for disengaged purchasers.
+ UserListCustomerTypeCategoryEnum_DISENGAGED_CUSTOMERS UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory = 5
+ // Customer type category for qualified leads.
+ UserListCustomerTypeCategoryEnum_QUALIFIED_LEADS UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory = 6
+ // Customer type category for converted leads.
+ UserListCustomerTypeCategoryEnum_CONVERTED_LEADS UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory = 7
+ // Customer type category for paid subscribers.
+ UserListCustomerTypeCategoryEnum_PAID_SUBSCRIBERS UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory = 8
+ // Customer type category for loyalty signups.
+ UserListCustomerTypeCategoryEnum_LOYALTY_SIGN_UPS UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory = 9
+ // Customer type category for cart abandoners.
+ UserListCustomerTypeCategoryEnum_CART_ABANDONERS UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory = 10
+)
+
+// Enum value maps for UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory.
+var (
+ UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory_name = map[int32]string{
+ 0: "UNSPECIFIED",
+ 1: "UNKNOWN",
+ 2: "ALL_CUSTOMERS",
+ 3: "PURCHASERS",
+ 4: "HIGH_VALUE_CUSTOMERS",
+ 5: "DISENGAGED_CUSTOMERS",
+ 6: "QUALIFIED_LEADS",
+ 7: "CONVERTED_LEADS",
+ 8: "PAID_SUBSCRIBERS",
+ 9: "LOYALTY_SIGN_UPS",
+ 10: "CART_ABANDONERS",
+ }
+ UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory_value = map[string]int32{
+ "UNSPECIFIED": 0,
+ "UNKNOWN": 1,
+ "ALL_CUSTOMERS": 2,
+ "PURCHASERS": 3,
+ "HIGH_VALUE_CUSTOMERS": 4,
+ "DISENGAGED_CUSTOMERS": 5,
+ "QUALIFIED_LEADS": 6,
+ "CONVERTED_LEADS": 7,
+ "PAID_SUBSCRIBERS": 8,
+ "LOYALTY_SIGN_UPS": 9,
+ "CART_ABANDONERS": 10,
+ }
+)
+
+func (x UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory) Enum() *UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory {
+ p := new(UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory)
+ *p = x
+ return p
+}
+
+func (x UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory) String() string {
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+}
+
+func (UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory) Descriptor() protoreflect.EnumDescriptor {
+ return file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_enumTypes[0].Descriptor()
+}
+
+func (UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory) Type() protoreflect.EnumType {
+ return &file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_enumTypes[0]
+}
+
+func (x UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
+// Deprecated: Use UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory.Descriptor instead.
+func (UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory) EnumDescriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_rawDescGZIP(), []int{0, 0}
+}
+
+// The user list customer type categories.
+type UserListCustomerTypeCategoryEnum struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+}
+
+func (x *UserListCustomerTypeCategoryEnum) Reset() {
+ *x = UserListCustomerTypeCategoryEnum{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_msgTypes[0]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *UserListCustomerTypeCategoryEnum) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*UserListCustomerTypeCategoryEnum) ProtoMessage() {}
+
+func (x *UserListCustomerTypeCategoryEnum) ProtoReflect() protoreflect.Message {
+ mi := &file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_msgTypes[0]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use UserListCustomerTypeCategoryEnum.ProtoReflect.Descriptor instead.
+func (*UserListCustomerTypeCategoryEnum) Descriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_rawDescGZIP(), []int{0}
+}
+
+var File_google_ads_googleads_v17_enums_user_list_customer_type_category_proto protoreflect.FileDescriptor
+
+var file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_rawDesc = []byte{
+ 0x0a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f,
+ 0x6d, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72,
+ 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
+ 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa3, 0x02, 0x0a, 0x20, 0x55, 0x73, 0x65, 0x72,
+ 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65,
+ 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xfe, 0x01, 0x0a,
+ 0x1c, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
+ 0x72, 0x54, 0x79, 0x70, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x12, 0x0f, 0x0a,
+ 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b,
+ 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x11, 0x0a, 0x0d, 0x41,
+ 0x4c, 0x4c, 0x5f, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x45, 0x52, 0x53, 0x10, 0x02, 0x12, 0x0e,
+ 0x0a, 0x0a, 0x50, 0x55, 0x52, 0x43, 0x48, 0x41, 0x53, 0x45, 0x52, 0x53, 0x10, 0x03, 0x12, 0x18,
+ 0x0a, 0x14, 0x48, 0x49, 0x47, 0x48, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x43, 0x55, 0x53,
+ 0x54, 0x4f, 0x4d, 0x45, 0x52, 0x53, 0x10, 0x04, 0x12, 0x18, 0x0a, 0x14, 0x44, 0x49, 0x53, 0x45,
+ 0x4e, 0x47, 0x41, 0x47, 0x45, 0x44, 0x5f, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x45, 0x52, 0x53,
+ 0x10, 0x05, 0x12, 0x13, 0x0a, 0x0f, 0x51, 0x55, 0x41, 0x4c, 0x49, 0x46, 0x49, 0x45, 0x44, 0x5f,
+ 0x4c, 0x45, 0x41, 0x44, 0x53, 0x10, 0x06, 0x12, 0x13, 0x0a, 0x0f, 0x43, 0x4f, 0x4e, 0x56, 0x45,
+ 0x52, 0x54, 0x45, 0x44, 0x5f, 0x4c, 0x45, 0x41, 0x44, 0x53, 0x10, 0x07, 0x12, 0x14, 0x0a, 0x10,
+ 0x50, 0x41, 0x49, 0x44, 0x5f, 0x53, 0x55, 0x42, 0x53, 0x43, 0x52, 0x49, 0x42, 0x45, 0x52, 0x53,
+ 0x10, 0x08, 0x12, 0x14, 0x0a, 0x10, 0x4c, 0x4f, 0x59, 0x41, 0x4c, 0x54, 0x59, 0x5f, 0x53, 0x49,
+ 0x47, 0x4e, 0x5f, 0x55, 0x50, 0x53, 0x10, 0x09, 0x12, 0x13, 0x0a, 0x0f, 0x43, 0x41, 0x52, 0x54,
+ 0x5f, 0x41, 0x42, 0x41, 0x4e, 0x44, 0x4f, 0x4e, 0x45, 0x52, 0x53, 0x10, 0x0a, 0x42, 0xfb, 0x01,
+ 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
+ 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75,
+ 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f,
+ 0x72, 0x79, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
+ 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
+ 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
+ 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
+ 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
+ 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x74, 0x6f, 0x33,
+}
+
+var (
+ file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_rawDescData = file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_rawDesc
+)
+
+func file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_rawDescData)
+ })
+ return file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_goTypes = []interface{}{
+ (UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory)(0), // 0: google.ads.googleads.v17.enums.UserListCustomerTypeCategoryEnum.UserListCustomerTypeCategory
+ (*UserListCustomerTypeCategoryEnum)(nil), // 1: google.ads.googleads.v17.enums.UserListCustomerTypeCategoryEnum
+}
+var file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_depIdxs = []int32{
+ 0, // [0:0] is the sub-list for method output_type
+ 0, // [0:0] is the sub-list for method input_type
+ 0, // [0:0] is the sub-list for extension type_name
+ 0, // [0:0] is the sub-list for extension extendee
+ 0, // [0:0] is the sub-list for field type_name
+}
+
+func init() { file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_init() }
+func file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_init() {
+ if File_google_ads_googleads_v17_enums_user_list_customer_type_category_proto != nil {
+ return
+ }
+ if !protoimpl.UnsafeEnabled {
+ file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*UserListCustomerTypeCategoryEnum); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ }
+ type x struct{}
+ out := protoimpl.TypeBuilder{
+ File: protoimpl.DescBuilder{
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
+ RawDescriptor: file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_rawDesc,
+ NumEnums: 1,
+ NumMessages: 1,
+ NumExtensions: 0,
+ NumServices: 0,
+ },
+ GoTypes: file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_msgTypes,
+ }.Build()
+ File_google_ads_googleads_v17_enums_user_list_customer_type_category_proto = out.File
+ file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_user_list_customer_type_category_proto_depIdxs = nil
+}
diff --git a/enums/user_list_date_rule_item_operator.pb.go b/enums/user_list_date_rule_item_operator.pb.go
index 0c283151..79802185 100644
--- a/enums/user_list_date_rule_item_operator.pb.go
+++ b/enums/user_list_date_rule_item_operator.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/user_list_date_rule_item_operator.proto
+// source: google/ads/googleads/v17/enums/user_list_date_rule_item_operator.proto
package enums
@@ -83,11 +83,11 @@ func (x UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator) String()
}
func (UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_enumTypes[0].Descriptor()
}
func (UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_enumTypes[0]
}
func (x UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator) Number() protoreflect.EnumNumber {
@@ -96,7 +96,7 @@ func (x UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator) Number()
// Deprecated: Use UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator.Descriptor instead.
func (UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_rawDescGZIP(), []int{0, 0}
}
// Supported rule operator for date type.
@@ -109,7 +109,7 @@ type UserListDateRuleItemOperatorEnum struct {
func (x *UserListDateRuleItemOperatorEnum) Reset() {
*x = UserListDateRuleItemOperatorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -122,7 +122,7 @@ func (x *UserListDateRuleItemOperatorEnum) String() string {
func (*UserListDateRuleItemOperatorEnum) ProtoMessage() {}
func (x *UserListDateRuleItemOperatorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -135,19 +135,19 @@ func (x *UserListDateRuleItemOperatorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListDateRuleItemOperatorEnum.ProtoReflect.Descriptor instead.
func (*UserListDateRuleItemOperatorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_rawDesc = []byte{
0x0a, 0x46, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x5f,
0x72, 0x75, 0x6c, 0x65, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x93, 0x01, 0x0a, 0x20, 0x55, 0x73, 0x65,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x93, 0x01, 0x0a, 0x20, 0x55, 0x73, 0x65,
0x72, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x74, 0x65,
0x6d, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x6f, 0x0a,
0x1c, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x61, 0x74, 0x65, 0x52, 0x75, 0x6c,
@@ -158,43 +158,43 @@ var file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_
0x51, 0x55, 0x41, 0x4c, 0x53, 0x10, 0x03, 0x12, 0x0a, 0x0a, 0x06, 0x42, 0x45, 0x46, 0x4f, 0x52,
0x45, 0x10, 0x04, 0x12, 0x09, 0x0a, 0x05, 0x41, 0x46, 0x54, 0x45, 0x52, 0x10, 0x05, 0x42, 0xfb,
0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x44,
0x61, 0x74, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x74, 0x65, 0x6d, 0x4f, 0x70, 0x65, 0x72, 0x61,
0x74, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_rawDescData = file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_rawDesc
+ file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_rawDescData = file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_goTypes = []interface{}{
- (UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator)(0), // 0: google.ads.googleads.v16.enums.UserListDateRuleItemOperatorEnum.UserListDateRuleItemOperator
- (*UserListDateRuleItemOperatorEnum)(nil), // 1: google.ads.googleads.v16.enums.UserListDateRuleItemOperatorEnum
+var file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_goTypes = []interface{}{
+ (UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator)(0), // 0: google.ads.googleads.v17.enums.UserListDateRuleItemOperatorEnum.UserListDateRuleItemOperator
+ (*UserListDateRuleItemOperatorEnum)(nil), // 1: google.ads.googleads.v17.enums.UserListDateRuleItemOperatorEnum
}
-var file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -202,13 +202,13 @@ var file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_init() }
-func file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_init() {
- if File_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_init() }
+func file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_init() {
+ if File_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListDateRuleItemOperatorEnum); i {
case 0:
return &v.state
@@ -225,19 +225,19 @@ func file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto = out.File
- file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_user_list_date_rule_item_operator_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto = out.File
+ file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_user_list_date_rule_item_operator_proto_depIdxs = nil
}
diff --git a/enums/user_list_flexible_rule_operator.pb.go b/enums/user_list_flexible_rule_operator.pb.go
index c097f6a5..5fc4f392 100644
--- a/enums/user_list_flexible_rule_operator.pb.go
+++ b/enums/user_list_flexible_rule_operator.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/user_list_flexible_rule_operator.proto
+// source: google/ads/googleads/v17/enums/user_list_flexible_rule_operator.proto
package enums
@@ -75,11 +75,11 @@ func (x UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator) String()
}
func (UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_enumTypes[0].Descriptor()
}
func (UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_enumTypes[0]
}
func (x UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator) Number()
// Deprecated: Use UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator.Descriptor instead.
func (UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_rawDescGZIP(), []int{0, 0}
}
// Logical operator connecting two rules.
@@ -101,7 +101,7 @@ type UserListFlexibleRuleOperatorEnum struct {
func (x *UserListFlexibleRuleOperatorEnum) Reset() {
*x = UserListFlexibleRuleOperatorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *UserListFlexibleRuleOperatorEnum) String() string {
func (*UserListFlexibleRuleOperatorEnum) ProtoMessage() {}
func (x *UserListFlexibleRuleOperatorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,19 +127,19 @@ func (x *UserListFlexibleRuleOperatorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListFlexibleRuleOperatorEnum.ProtoReflect.Descriptor instead.
func (*UserListFlexibleRuleOperatorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_rawDesc = []byte{
0x0a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x66, 0x6c, 0x65, 0x78, 0x69,
0x62, 0x6c, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f,
0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x71, 0x0a, 0x20, 0x55, 0x73, 0x65, 0x72, 0x4c,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x71, 0x0a, 0x20, 0x55, 0x73, 0x65, 0x72, 0x4c,
0x69, 0x73, 0x74, 0x46, 0x6c, 0x65, 0x78, 0x69, 0x62, 0x6c, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x4f,
0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4d, 0x0a, 0x1c, 0x55,
0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x46, 0x6c, 0x65, 0x78, 0x69, 0x62, 0x6c, 0x65, 0x52,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_r
0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x41, 0x4e, 0x44,
0x10, 0x02, 0x12, 0x06, 0x0a, 0x02, 0x4f, 0x52, 0x10, 0x03, 0x42, 0xfb, 0x01, 0x0a, 0x22, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x42, 0x21, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x46, 0x6c, 0x65, 0x78, 0x69,
0x62, 0x6c, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_rawDescData = file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_rawDesc
+ file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_rawDescData = file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_goTypes = []interface{}{
- (UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator)(0), // 0: google.ads.googleads.v16.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator
- (*UserListFlexibleRuleOperatorEnum)(nil), // 1: google.ads.googleads.v16.enums.UserListFlexibleRuleOperatorEnum
+var file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_goTypes = []interface{}{
+ (UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator)(0), // 0: google.ads.googleads.v17.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator
+ (*UserListFlexibleRuleOperatorEnum)(nil), // 1: google.ads.googleads.v17.enums.UserListFlexibleRuleOperatorEnum
}
-var file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_d
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_init() }
-func file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_init() {
- if File_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_init() }
+func file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_init() {
+ if File_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListFlexibleRuleOperatorEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto = out.File
- file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_user_list_flexible_rule_operator_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto = out.File
+ file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_user_list_flexible_rule_operator_proto_depIdxs = nil
}
diff --git a/enums/user_list_logical_rule_operator.pb.go b/enums/user_list_logical_rule_operator.pb.go
index 76d88b70..00b57ff9 100644
--- a/enums/user_list_logical_rule_operator.pb.go
+++ b/enums/user_list_logical_rule_operator.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/user_list_logical_rule_operator.proto
+// source: google/ads/googleads/v17/enums/user_list_logical_rule_operator.proto
package enums
@@ -79,11 +79,11 @@ func (x UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator) String() st
}
func (UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_enumTypes[0].Descriptor()
}
func (UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_enumTypes[0]
}
func (x UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator) Number() pr
// Deprecated: Use UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator.Descriptor instead.
func (UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_rawDescGZIP(), []int{0, 0}
}
// The logical operator of the rule.
@@ -105,7 +105,7 @@ type UserListLogicalRuleOperatorEnum struct {
func (x *UserListLogicalRuleOperatorEnum) Reset() {
*x = UserListLogicalRuleOperatorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *UserListLogicalRuleOperatorEnum) String() string {
func (*UserListLogicalRuleOperatorEnum) ProtoMessage() {}
func (x *UserListLogicalRuleOperatorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *UserListLogicalRuleOperatorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListLogicalRuleOperatorEnum.ProtoReflect.Descriptor instead.
func (*UserListLogicalRuleOperatorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_rawDesc = []byte{
0x0a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x63,
0x61, 0x6c, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7a, 0x0a, 0x1f, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69,
0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x63, 0x61, 0x6c, 0x52, 0x75, 0x6c, 0x65, 0x4f, 0x70, 0x65,
0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x57, 0x0a, 0x1b, 0x55, 0x73, 0x65,
@@ -153,42 +153,42 @@ var file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_ra
0x07, 0x0a, 0x03, 0x41, 0x4e, 0x59, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x4e, 0x4f, 0x4e, 0x45,
0x10, 0x04, 0x42, 0xfa, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x55, 0x73, 0x65, 0x72, 0x4c,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x55, 0x73, 0x65, 0x72, 0x4c,
0x69, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x63, 0x61, 0x6c, 0x52, 0x75, 0x6c, 0x65, 0x4f, 0x70,
0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_rawDescData = file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_rawDesc
+ file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_rawDescData = file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_goTypes = []interface{}{
- (UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator)(0), // 0: google.ads.googleads.v16.enums.UserListLogicalRuleOperatorEnum.UserListLogicalRuleOperator
- (*UserListLogicalRuleOperatorEnum)(nil), // 1: google.ads.googleads.v16.enums.UserListLogicalRuleOperatorEnum
+var file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_goTypes = []interface{}{
+ (UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator)(0), // 0: google.ads.googleads.v17.enums.UserListLogicalRuleOperatorEnum.UserListLogicalRuleOperator
+ (*UserListLogicalRuleOperatorEnum)(nil), // 1: google.ads.googleads.v17.enums.UserListLogicalRuleOperatorEnum
}
-var file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -196,13 +196,13 @@ var file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_de
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_init() }
-func file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_init() {
- if File_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_init() }
+func file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_init() {
+ if File_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListLogicalRuleOperatorEnum); i {
case 0:
return &v.state
@@ -219,19 +219,19 @@ func file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_i
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto = out.File
- file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_user_list_logical_rule_operator_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto = out.File
+ file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_user_list_logical_rule_operator_proto_depIdxs = nil
}
diff --git a/enums/user_list_membership_status.pb.go b/enums/user_list_membership_status.pb.go
index 833a883d..1720a0b0 100644
--- a/enums/user_list_membership_status.pb.go
+++ b/enums/user_list_membership_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/user_list_membership_status.proto
+// source: google/ads/googleads/v17/enums/user_list_membership_status.proto
package enums
@@ -75,11 +75,11 @@ func (x UserListMembershipStatusEnum_UserListMembershipStatus) String() string {
}
func (UserListMembershipStatusEnum_UserListMembershipStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_user_list_membership_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_user_list_membership_status_proto_enumTypes[0].Descriptor()
}
func (UserListMembershipStatusEnum_UserListMembershipStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_user_list_membership_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_user_list_membership_status_proto_enumTypes[0]
}
func (x UserListMembershipStatusEnum_UserListMembershipStatus) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x UserListMembershipStatusEnum_UserListMembershipStatus) Number() protoref
// Deprecated: Use UserListMembershipStatusEnum_UserListMembershipStatus.Descriptor instead.
func (UserListMembershipStatusEnum_UserListMembershipStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_membership_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_user_list_membership_status_proto_rawDescGZIP(), []int{0, 0}
}
// Membership status of this user list. Indicates whether a user list is open
@@ -103,7 +103,7 @@ type UserListMembershipStatusEnum struct {
func (x *UserListMembershipStatusEnum) Reset() {
*x = UserListMembershipStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_user_list_membership_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_membership_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -116,7 +116,7 @@ func (x *UserListMembershipStatusEnum) String() string {
func (*UserListMembershipStatusEnum) ProtoMessage() {}
func (x *UserListMembershipStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_user_list_membership_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_membership_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -129,18 +129,18 @@ func (x *UserListMembershipStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListMembershipStatusEnum.ProtoReflect.Descriptor instead.
func (*UserListMembershipStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_membership_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_user_list_membership_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_user_list_membership_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_user_list_membership_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_user_list_membership_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_user_list_membership_status_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x6d, 0x65, 0x6d, 0x62, 0x65,
0x72, 0x73, 0x68, 0x69, 0x70, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x22, 0x6e, 0x0a, 0x1c, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x65,
0x6d, 0x62, 0x65, 0x72, 0x73, 0x68, 0x69, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0x4e, 0x0a, 0x18, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x65,
@@ -150,42 +150,42 @@ var file_google_ads_googleads_v16_enums_user_list_membership_status_proto_rawDes
0x4f, 0x50, 0x45, 0x4e, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x43, 0x4c, 0x4f, 0x53, 0x45, 0x44,
0x10, 0x03, 0x42, 0xf7, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x55, 0x73, 0x65, 0x72, 0x4c,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x55, 0x73, 0x65, 0x72, 0x4c,
0x69, 0x73, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x68, 0x69, 0x70, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_user_list_membership_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_user_list_membership_status_proto_rawDescData = file_google_ads_googleads_v16_enums_user_list_membership_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_user_list_membership_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_user_list_membership_status_proto_rawDescData = file_google_ads_googleads_v17_enums_user_list_membership_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_user_list_membership_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_user_list_membership_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_user_list_membership_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_user_list_membership_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_user_list_membership_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_user_list_membership_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_user_list_membership_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_user_list_membership_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_user_list_membership_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_user_list_membership_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_user_list_membership_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_membership_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_membership_status_proto_goTypes = []interface{}{
- (UserListMembershipStatusEnum_UserListMembershipStatus)(0), // 0: google.ads.googleads.v16.enums.UserListMembershipStatusEnum.UserListMembershipStatus
- (*UserListMembershipStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.UserListMembershipStatusEnum
+var file_google_ads_googleads_v17_enums_user_list_membership_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_membership_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_membership_status_proto_goTypes = []interface{}{
+ (UserListMembershipStatusEnum_UserListMembershipStatus)(0), // 0: google.ads.googleads.v17.enums.UserListMembershipStatusEnum.UserListMembershipStatus
+ (*UserListMembershipStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.UserListMembershipStatusEnum
}
-var file_google_ads_googleads_v16_enums_user_list_membership_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_user_list_membership_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -193,13 +193,13 @@ var file_google_ads_googleads_v16_enums_user_list_membership_status_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_user_list_membership_status_proto_init() }
-func file_google_ads_googleads_v16_enums_user_list_membership_status_proto_init() {
- if File_google_ads_googleads_v16_enums_user_list_membership_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_user_list_membership_status_proto_init() }
+func file_google_ads_googleads_v17_enums_user_list_membership_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_user_list_membership_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_user_list_membership_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_user_list_membership_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListMembershipStatusEnum); i {
case 0:
return &v.state
@@ -216,19 +216,19 @@ func file_google_ads_googleads_v16_enums_user_list_membership_status_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_user_list_membership_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_user_list_membership_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_user_list_membership_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_user_list_membership_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_user_list_membership_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_user_list_membership_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_user_list_membership_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_user_list_membership_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_user_list_membership_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_user_list_membership_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_user_list_membership_status_proto = out.File
- file_google_ads_googleads_v16_enums_user_list_membership_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_user_list_membership_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_user_list_membership_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_user_list_membership_status_proto = out.File
+ file_google_ads_googleads_v17_enums_user_list_membership_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_user_list_membership_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_user_list_membership_status_proto_depIdxs = nil
}
diff --git a/enums/user_list_number_rule_item_operator.pb.go b/enums/user_list_number_rule_item_operator.pb.go
index 3763cc35..523b1eea 100644
--- a/enums/user_list_number_rule_item_operator.pb.go
+++ b/enums/user_list_number_rule_item_operator.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/user_list_number_rule_item_operator.proto
+// source: google/ads/googleads/v17/enums/user_list_number_rule_item_operator.proto
package enums
@@ -91,11 +91,11 @@ func (x UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator) Strin
}
func (UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_enumTypes[0].Descriptor()
}
func (UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_enumTypes[0]
}
func (x UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator) Number() protoreflect.EnumNumber {
@@ -104,7 +104,7 @@ func (x UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator) Numbe
// Deprecated: Use UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator.Descriptor instead.
func (UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_rawDescGZIP(), []int{0, 0}
}
// Supported rule operator for number type.
@@ -117,7 +117,7 @@ type UserListNumberRuleItemOperatorEnum struct {
func (x *UserListNumberRuleItemOperatorEnum) Reset() {
*x = UserListNumberRuleItemOperatorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -130,7 +130,7 @@ func (x *UserListNumberRuleItemOperatorEnum) String() string {
func (*UserListNumberRuleItemOperatorEnum) ProtoMessage() {}
func (x *UserListNumberRuleItemOperatorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -143,19 +143,19 @@ func (x *UserListNumberRuleItemOperatorEnum) ProtoReflect() protoreflect.Message
// Deprecated: Use UserListNumberRuleItemOperatorEnum.ProtoReflect.Descriptor instead.
func (*UserListNumberRuleItemOperatorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_rawDesc = []byte{
0x0a, 0x48, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65,
0x72, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6f, 0x70, 0x65, 0x72,
0x61, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xd5, 0x01, 0x0a, 0x22, 0x55,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xd5, 0x01, 0x0a, 0x22, 0x55,
0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x75, 0x6c,
0x65, 0x49, 0x74, 0x65, 0x6d, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0xae, 0x01, 0x0a, 0x1e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x4e, 0x75,
@@ -171,42 +171,42 @@ var file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_prot
0x53, 0x53, 0x5f, 0x54, 0x48, 0x41, 0x4e, 0x5f, 0x4f, 0x52, 0x5f, 0x45, 0x51, 0x55, 0x41, 0x4c,
0x10, 0x07, 0x42, 0xfd, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23, 0x55, 0x73, 0x65, 0x72, 0x4c,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23, 0x55, 0x73, 0x65, 0x72, 0x4c,
0x69, 0x73, 0x74, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x75, 0x6c, 0x65, 0x49, 0x74, 0x65,
0x6d, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_rawDescData = file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_rawDesc
+ file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_rawDescData = file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_goTypes = []interface{}{
- (UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator)(0), // 0: google.ads.googleads.v16.enums.UserListNumberRuleItemOperatorEnum.UserListNumberRuleItemOperator
- (*UserListNumberRuleItemOperatorEnum)(nil), // 1: google.ads.googleads.v16.enums.UserListNumberRuleItemOperatorEnum
+var file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_goTypes = []interface{}{
+ (UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator)(0), // 0: google.ads.googleads.v17.enums.UserListNumberRuleItemOperatorEnum.UserListNumberRuleItemOperator
+ (*UserListNumberRuleItemOperatorEnum)(nil), // 1: google.ads.googleads.v17.enums.UserListNumberRuleItemOperatorEnum
}
-var file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -214,13 +214,13 @@ var file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_prot
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_init() }
-func file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_init() {
- if File_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_init() }
+func file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_init() {
+ if File_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListNumberRuleItemOperatorEnum); i {
case 0:
return &v.state
@@ -237,19 +237,19 @@ func file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_pro
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto = out.File
- file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_user_list_number_rule_item_operator_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto = out.File
+ file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_user_list_number_rule_item_operator_proto_depIdxs = nil
}
diff --git a/enums/user_list_prepopulation_status.pb.go b/enums/user_list_prepopulation_status.pb.go
index 4585eaa8..411dd3fa 100644
--- a/enums/user_list_prepopulation_status.pb.go
+++ b/enums/user_list_prepopulation_status.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/user_list_prepopulation_status.proto
+// source: google/ads/googleads/v17/enums/user_list_prepopulation_status.proto
package enums
@@ -79,11 +79,11 @@ func (x UserListPrepopulationStatusEnum_UserListPrepopulationStatus) String() st
}
func (UserListPrepopulationStatusEnum_UserListPrepopulationStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_enumTypes[0].Descriptor()
}
func (UserListPrepopulationStatusEnum_UserListPrepopulationStatus) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_enumTypes[0]
}
func (x UserListPrepopulationStatusEnum_UserListPrepopulationStatus) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x UserListPrepopulationStatusEnum_UserListPrepopulationStatus) Number() pr
// Deprecated: Use UserListPrepopulationStatusEnum_UserListPrepopulationStatus.Descriptor instead.
func (UserListPrepopulationStatusEnum_UserListPrepopulationStatus) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_rawDescGZIP(), []int{0, 0}
}
// Indicates status of prepopulation based on the rule.
@@ -105,7 +105,7 @@ type UserListPrepopulationStatusEnum struct {
func (x *UserListPrepopulationStatusEnum) Reset() {
*x = UserListPrepopulationStatusEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *UserListPrepopulationStatusEnum) String() string {
func (*UserListPrepopulationStatusEnum) ProtoMessage() {}
func (x *UserListPrepopulationStatusEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *UserListPrepopulationStatusEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListPrepopulationStatusEnum.ProtoReflect.Descriptor instead.
func (*UserListPrepopulationStatusEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x70, 0x72, 0x65, 0x70, 0x6f,
0x70, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x87, 0x01, 0x0a, 0x1f, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69,
0x73, 0x74, 0x50, 0x72, 0x65, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53,
0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x64, 0x0a, 0x1b, 0x55, 0x73, 0x65,
@@ -153,43 +153,43 @@ var file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_raw
0x54, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0c, 0x0a, 0x08, 0x46, 0x49, 0x4e, 0x49, 0x53, 0x48, 0x45,
0x44, 0x10, 0x03, 0x12, 0x0a, 0x0a, 0x06, 0x46, 0x41, 0x49, 0x4c, 0x45, 0x44, 0x10, 0x04, 0x42,
0xfa, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
0x50, 0x72, 0x65, 0x70, 0x6f, 0x70, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_rawDescData = file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_rawDesc
+ file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_rawDescData = file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_goTypes = []interface{}{
- (UserListPrepopulationStatusEnum_UserListPrepopulationStatus)(0), // 0: google.ads.googleads.v16.enums.UserListPrepopulationStatusEnum.UserListPrepopulationStatus
- (*UserListPrepopulationStatusEnum)(nil), // 1: google.ads.googleads.v16.enums.UserListPrepopulationStatusEnum
+var file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_goTypes = []interface{}{
+ (UserListPrepopulationStatusEnum_UserListPrepopulationStatus)(0), // 0: google.ads.googleads.v17.enums.UserListPrepopulationStatusEnum.UserListPrepopulationStatus
+ (*UserListPrepopulationStatusEnum)(nil), // 1: google.ads.googleads.v17.enums.UserListPrepopulationStatusEnum
}
-var file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_init() }
-func file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_init() {
- if File_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_init() }
+func file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_init() {
+ if File_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListPrepopulationStatusEnum); i {
case 0:
return &v.state
@@ -220,19 +220,19 @@ func file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto = out.File
- file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_user_list_prepopulation_status_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto = out.File
+ file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_user_list_prepopulation_status_proto_depIdxs = nil
}
diff --git a/enums/user_list_rule_type.pb.go b/enums/user_list_rule_type.pb.go
index 473016d6..f3f0b516 100644
--- a/enums/user_list_rule_type.pb.go
+++ b/enums/user_list_rule_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/user_list_rule_type.proto
+// source: google/ads/googleads/v17/enums/user_list_rule_type.proto
package enums
@@ -75,11 +75,11 @@ func (x UserListRuleTypeEnum_UserListRuleType) String() string {
}
func (UserListRuleTypeEnum_UserListRuleType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_user_list_rule_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_user_list_rule_type_proto_enumTypes[0].Descriptor()
}
func (UserListRuleTypeEnum_UserListRuleType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_user_list_rule_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_user_list_rule_type_proto_enumTypes[0]
}
func (x UserListRuleTypeEnum_UserListRuleType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x UserListRuleTypeEnum_UserListRuleType) Number() protoreflect.EnumNumber
// Deprecated: Use UserListRuleTypeEnum_UserListRuleType.Descriptor instead.
func (UserListRuleTypeEnum_UserListRuleType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_rule_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_user_list_rule_type_proto_rawDescGZIP(), []int{0, 0}
}
// Rule based user list rule type.
@@ -101,7 +101,7 @@ type UserListRuleTypeEnum struct {
func (x *UserListRuleTypeEnum) Reset() {
*x = UserListRuleTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_user_list_rule_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_rule_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *UserListRuleTypeEnum) String() string {
func (*UserListRuleTypeEnum) ProtoMessage() {}
func (x *UserListRuleTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_user_list_rule_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_rule_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *UserListRuleTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListRuleTypeEnum.ProtoReflect.Descriptor instead.
func (*UserListRuleTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_rule_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_user_list_rule_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_user_list_rule_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_user_list_rule_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_user_list_rule_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_user_list_rule_type_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f,
0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x68, 0x0a, 0x14, 0x55, 0x73,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x68, 0x0a, 0x14, 0x55, 0x73,
0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x75, 0x6c, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0x50, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x75,
0x6c, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
@@ -147,41 +147,41 @@ var file_google_ads_googleads_v16_enums_user_list_rule_type_proto_rawDesc = []by
0x52, 0x53, 0x10, 0x02, 0x12, 0x0e, 0x0a, 0x0a, 0x4f, 0x52, 0x5f, 0x4f, 0x46, 0x5f, 0x41, 0x4e,
0x44, 0x53, 0x10, 0x03, 0x42, 0xef, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x55, 0x73, 0x65,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x55, 0x73, 0x65,
0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x75, 0x6c, 0x65, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_user_list_rule_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_user_list_rule_type_proto_rawDescData = file_google_ads_googleads_v16_enums_user_list_rule_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_user_list_rule_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_user_list_rule_type_proto_rawDescData = file_google_ads_googleads_v17_enums_user_list_rule_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_user_list_rule_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_user_list_rule_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_user_list_rule_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_user_list_rule_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_user_list_rule_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_user_list_rule_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_user_list_rule_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_user_list_rule_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_user_list_rule_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_user_list_rule_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_user_list_rule_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_rule_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_rule_type_proto_goTypes = []interface{}{
- (UserListRuleTypeEnum_UserListRuleType)(0), // 0: google.ads.googleads.v16.enums.UserListRuleTypeEnum.UserListRuleType
- (*UserListRuleTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.UserListRuleTypeEnum
+var file_google_ads_googleads_v17_enums_user_list_rule_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_rule_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_rule_type_proto_goTypes = []interface{}{
+ (UserListRuleTypeEnum_UserListRuleType)(0), // 0: google.ads.googleads.v17.enums.UserListRuleTypeEnum.UserListRuleType
+ (*UserListRuleTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.UserListRuleTypeEnum
}
-var file_google_ads_googleads_v16_enums_user_list_rule_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_user_list_rule_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -189,13 +189,13 @@ var file_google_ads_googleads_v16_enums_user_list_rule_type_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_user_list_rule_type_proto_init() }
-func file_google_ads_googleads_v16_enums_user_list_rule_type_proto_init() {
- if File_google_ads_googleads_v16_enums_user_list_rule_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_user_list_rule_type_proto_init() }
+func file_google_ads_googleads_v17_enums_user_list_rule_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_user_list_rule_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_user_list_rule_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_user_list_rule_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListRuleTypeEnum); i {
case 0:
return &v.state
@@ -212,19 +212,19 @@ func file_google_ads_googleads_v16_enums_user_list_rule_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_user_list_rule_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_user_list_rule_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_user_list_rule_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_user_list_rule_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_user_list_rule_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_user_list_rule_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_user_list_rule_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_user_list_rule_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_user_list_rule_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_user_list_rule_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_user_list_rule_type_proto = out.File
- file_google_ads_googleads_v16_enums_user_list_rule_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_user_list_rule_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_user_list_rule_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_user_list_rule_type_proto = out.File
+ file_google_ads_googleads_v17_enums_user_list_rule_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_user_list_rule_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_user_list_rule_type_proto_depIdxs = nil
}
diff --git a/enums/user_list_size_range.pb.go b/enums/user_list_size_range.pb.go
index 843a72f9..a01d75ea 100644
--- a/enums/user_list_size_range.pb.go
+++ b/enums/user_list_size_range.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/user_list_size_range.proto
+// source: google/ads/googleads/v17/enums/user_list_size_range.proto
package enums
@@ -131,11 +131,11 @@ func (x UserListSizeRangeEnum_UserListSizeRange) String() string {
}
func (UserListSizeRangeEnum_UserListSizeRange) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_user_list_size_range_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_user_list_size_range_proto_enumTypes[0].Descriptor()
}
func (UserListSizeRangeEnum_UserListSizeRange) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_user_list_size_range_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_user_list_size_range_proto_enumTypes[0]
}
func (x UserListSizeRangeEnum_UserListSizeRange) Number() protoreflect.EnumNumber {
@@ -144,7 +144,7 @@ func (x UserListSizeRangeEnum_UserListSizeRange) Number() protoreflect.EnumNumbe
// Deprecated: Use UserListSizeRangeEnum_UserListSizeRange.Descriptor instead.
func (UserListSizeRangeEnum_UserListSizeRange) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_size_range_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_user_list_size_range_proto_rawDescGZIP(), []int{0, 0}
}
// Size range in terms of number of users of a UserList.
@@ -157,7 +157,7 @@ type UserListSizeRangeEnum struct {
func (x *UserListSizeRangeEnum) Reset() {
*x = UserListSizeRangeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_user_list_size_range_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_size_range_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -170,7 +170,7 @@ func (x *UserListSizeRangeEnum) String() string {
func (*UserListSizeRangeEnum) ProtoMessage() {}
func (x *UserListSizeRangeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_user_list_size_range_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_size_range_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -183,18 +183,18 @@ func (x *UserListSizeRangeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListSizeRangeEnum.ProtoReflect.Descriptor instead.
func (*UserListSizeRangeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_size_range_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_user_list_size_range_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_user_list_size_range_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_user_list_size_range_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_user_list_size_range_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_user_list_size_range_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x5f,
0x72, 0x61, 0x6e, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x94, 0x05, 0x0a, 0x15,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x94, 0x05, 0x0a, 0x15,
0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x69, 0x7a, 0x65, 0x52, 0x61, 0x6e, 0x67,
0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xfa, 0x04, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69,
0x73, 0x74, 0x53, 0x69, 0x7a, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55,
@@ -238,41 +238,41 @@ var file_google_ads_googleads_v16_enums_user_list_size_range_proto_rawDesc = []b
0x45, 0x52, 0x5f, 0x46, 0x49, 0x46, 0x54, 0x59, 0x5f, 0x4d, 0x49, 0x4c, 0x4c, 0x49, 0x4f, 0x4e,
0x10, 0x11, 0x42, 0xf0, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x55, 0x73, 0x65, 0x72, 0x4c,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x55, 0x73, 0x65, 0x72, 0x4c,
0x69, 0x73, 0x74, 0x53, 0x69, 0x7a, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_user_list_size_range_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_user_list_size_range_proto_rawDescData = file_google_ads_googleads_v16_enums_user_list_size_range_proto_rawDesc
+ file_google_ads_googleads_v17_enums_user_list_size_range_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_user_list_size_range_proto_rawDescData = file_google_ads_googleads_v17_enums_user_list_size_range_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_user_list_size_range_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_user_list_size_range_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_user_list_size_range_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_user_list_size_range_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_user_list_size_range_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_user_list_size_range_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_user_list_size_range_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_user_list_size_range_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_user_list_size_range_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_user_list_size_range_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_user_list_size_range_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_size_range_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_size_range_proto_goTypes = []interface{}{
- (UserListSizeRangeEnum_UserListSizeRange)(0), // 0: google.ads.googleads.v16.enums.UserListSizeRangeEnum.UserListSizeRange
- (*UserListSizeRangeEnum)(nil), // 1: google.ads.googleads.v16.enums.UserListSizeRangeEnum
+var file_google_ads_googleads_v17_enums_user_list_size_range_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_size_range_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_size_range_proto_goTypes = []interface{}{
+ (UserListSizeRangeEnum_UserListSizeRange)(0), // 0: google.ads.googleads.v17.enums.UserListSizeRangeEnum.UserListSizeRange
+ (*UserListSizeRangeEnum)(nil), // 1: google.ads.googleads.v17.enums.UserListSizeRangeEnum
}
-var file_google_ads_googleads_v16_enums_user_list_size_range_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_user_list_size_range_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -280,13 +280,13 @@ var file_google_ads_googleads_v16_enums_user_list_size_range_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_user_list_size_range_proto_init() }
-func file_google_ads_googleads_v16_enums_user_list_size_range_proto_init() {
- if File_google_ads_googleads_v16_enums_user_list_size_range_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_user_list_size_range_proto_init() }
+func file_google_ads_googleads_v17_enums_user_list_size_range_proto_init() {
+ if File_google_ads_googleads_v17_enums_user_list_size_range_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_user_list_size_range_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_user_list_size_range_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListSizeRangeEnum); i {
case 0:
return &v.state
@@ -303,19 +303,19 @@ func file_google_ads_googleads_v16_enums_user_list_size_range_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_user_list_size_range_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_user_list_size_range_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_user_list_size_range_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_user_list_size_range_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_user_list_size_range_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_user_list_size_range_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_user_list_size_range_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_user_list_size_range_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_user_list_size_range_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_user_list_size_range_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_user_list_size_range_proto = out.File
- file_google_ads_googleads_v16_enums_user_list_size_range_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_user_list_size_range_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_user_list_size_range_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_user_list_size_range_proto = out.File
+ file_google_ads_googleads_v17_enums_user_list_size_range_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_user_list_size_range_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_user_list_size_range_proto_depIdxs = nil
}
diff --git a/enums/user_list_string_rule_item_operator.pb.go b/enums/user_list_string_rule_item_operator.pb.go
index a0da3fd5..f6b2cc59 100644
--- a/enums/user_list_string_rule_item_operator.pb.go
+++ b/enums/user_list_string_rule_item_operator.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/user_list_string_rule_item_operator.proto
+// source: google/ads/googleads/v17/enums/user_list_string_rule_item_operator.proto
package enums
@@ -99,11 +99,11 @@ func (x UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator) Strin
}
func (UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_enumTypes[0].Descriptor()
}
func (UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_enumTypes[0]
}
func (x UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator) Number() protoreflect.EnumNumber {
@@ -112,7 +112,7 @@ func (x UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator) Numbe
// Deprecated: Use UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator.Descriptor instead.
func (UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_rawDescGZIP(), []int{0, 0}
}
// Supported rule operator for string type.
@@ -125,7 +125,7 @@ type UserListStringRuleItemOperatorEnum struct {
func (x *UserListStringRuleItemOperatorEnum) Reset() {
*x = UserListStringRuleItemOperatorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -138,7 +138,7 @@ func (x *UserListStringRuleItemOperatorEnum) String() string {
func (*UserListStringRuleItemOperatorEnum) ProtoMessage() {}
func (x *UserListStringRuleItemOperatorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -151,19 +151,19 @@ func (x *UserListStringRuleItemOperatorEnum) ProtoReflect() protoreflect.Message
// Deprecated: Use UserListStringRuleItemOperatorEnum.ProtoReflect.Descriptor instead.
func (*UserListStringRuleItemOperatorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_rawDesc = []byte{
0x0a, 0x48, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
0x67, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x6f, 0x70, 0x65, 0x72,
0x61, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe9, 0x01, 0x0a, 0x22, 0x55,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe9, 0x01, 0x0a, 0x22, 0x55,
0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c,
0x65, 0x49, 0x74, 0x65, 0x6d, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0xc2, 0x01, 0x0a, 0x1e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x74,
@@ -180,42 +180,42 @@ var file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_prot
0x48, 0x10, 0x08, 0x12, 0x11, 0x0a, 0x0d, 0x4e, 0x4f, 0x54, 0x5f, 0x45, 0x4e, 0x44, 0x53, 0x5f,
0x57, 0x49, 0x54, 0x48, 0x10, 0x09, 0x42, 0xfd, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23, 0x55,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23, 0x55,
0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x52, 0x75, 0x6c,
0x65, 0x49, 0x74, 0x65, 0x6d, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_rawDescData = file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_rawDesc
+ file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_rawDescData = file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_goTypes = []interface{}{
- (UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator)(0), // 0: google.ads.googleads.v16.enums.UserListStringRuleItemOperatorEnum.UserListStringRuleItemOperator
- (*UserListStringRuleItemOperatorEnum)(nil), // 1: google.ads.googleads.v16.enums.UserListStringRuleItemOperatorEnum
+var file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_goTypes = []interface{}{
+ (UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator)(0), // 0: google.ads.googleads.v17.enums.UserListStringRuleItemOperatorEnum.UserListStringRuleItemOperator
+ (*UserListStringRuleItemOperatorEnum)(nil), // 1: google.ads.googleads.v17.enums.UserListStringRuleItemOperatorEnum
}
-var file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -223,13 +223,13 @@ var file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_prot
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_init() }
-func file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_init() {
- if File_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_init() }
+func file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_init() {
+ if File_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListStringRuleItemOperatorEnum); i {
case 0:
return &v.state
@@ -246,19 +246,19 @@ func file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_pro
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto = out.File
- file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_user_list_string_rule_item_operator_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto = out.File
+ file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_user_list_string_rule_item_operator_proto_depIdxs = nil
}
diff --git a/enums/user_list_type.pb.go b/enums/user_list_type.pb.go
index 2bbc736a..caec795f 100644
--- a/enums/user_list_type.pb.go
+++ b/enums/user_list_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/user_list_type.proto
+// source: google/ads/googleads/v17/enums/user_list_type.proto
package enums
@@ -97,11 +97,11 @@ func (x UserListTypeEnum_UserListType) String() string {
}
func (UserListTypeEnum_UserListType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_user_list_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_user_list_type_proto_enumTypes[0].Descriptor()
}
func (UserListTypeEnum_UserListType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_user_list_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_user_list_type_proto_enumTypes[0]
}
func (x UserListTypeEnum_UserListType) Number() protoreflect.EnumNumber {
@@ -110,7 +110,7 @@ func (x UserListTypeEnum_UserListType) Number() protoreflect.EnumNumber {
// Deprecated: Use UserListTypeEnum_UserListType.Descriptor instead.
func (UserListTypeEnum_UserListType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_user_list_type_proto_rawDescGZIP(), []int{0, 0}
}
// The user list types.
@@ -123,7 +123,7 @@ type UserListTypeEnum struct {
func (x *UserListTypeEnum) Reset() {
*x = UserListTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_user_list_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -136,7 +136,7 @@ func (x *UserListTypeEnum) String() string {
func (*UserListTypeEnum) ProtoMessage() {}
func (x *UserListTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_user_list_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_user_list_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -149,17 +149,17 @@ func (x *UserListTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListTypeEnum.ProtoReflect.Descriptor instead.
func (*UserListTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_user_list_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_user_list_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_user_list_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_user_list_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_user_list_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_user_list_type_proto_rawDesc = []byte{
0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xb4, 0x01, 0x0a, 0x10, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69,
0x73, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x9f, 0x01, 0x0a, 0x0c, 0x55,
0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55,
@@ -173,42 +173,42 @@ var file_google_ads_googleads_v16_enums_user_list_type_proto_rawDesc = []byte{
0x0a, 0x09, 0x43, 0x52, 0x4d, 0x5f, 0x42, 0x41, 0x53, 0x45, 0x44, 0x10, 0x07, 0x12, 0x0d, 0x0a,
0x09, 0x4c, 0x4f, 0x4f, 0x4b, 0x41, 0x4c, 0x49, 0x4b, 0x45, 0x10, 0x09, 0x42, 0xeb, 0x01, 0x0a,
0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x42, 0x11, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x79, 0x70,
0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03,
0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73,
- 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45,
+ 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
- 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_user_list_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_user_list_type_proto_rawDescData = file_google_ads_googleads_v16_enums_user_list_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_user_list_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_user_list_type_proto_rawDescData = file_google_ads_googleads_v17_enums_user_list_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_user_list_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_user_list_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_user_list_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_user_list_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_user_list_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_user_list_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_user_list_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_user_list_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_user_list_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_user_list_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_user_list_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_user_list_type_proto_goTypes = []interface{}{
- (UserListTypeEnum_UserListType)(0), // 0: google.ads.googleads.v16.enums.UserListTypeEnum.UserListType
- (*UserListTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.UserListTypeEnum
+var file_google_ads_googleads_v17_enums_user_list_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_user_list_type_proto_goTypes = []interface{}{
+ (UserListTypeEnum_UserListType)(0), // 0: google.ads.googleads.v17.enums.UserListTypeEnum.UserListType
+ (*UserListTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.UserListTypeEnum
}
-var file_google_ads_googleads_v16_enums_user_list_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_user_list_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -216,13 +216,13 @@ var file_google_ads_googleads_v16_enums_user_list_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_user_list_type_proto_init() }
-func file_google_ads_googleads_v16_enums_user_list_type_proto_init() {
- if File_google_ads_googleads_v16_enums_user_list_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_user_list_type_proto_init() }
+func file_google_ads_googleads_v17_enums_user_list_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_user_list_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_user_list_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_user_list_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListTypeEnum); i {
case 0:
return &v.state
@@ -239,19 +239,19 @@ func file_google_ads_googleads_v16_enums_user_list_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_user_list_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_user_list_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_user_list_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_user_list_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_user_list_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_user_list_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_user_list_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_user_list_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_user_list_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_user_list_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_user_list_type_proto = out.File
- file_google_ads_googleads_v16_enums_user_list_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_user_list_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_user_list_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_user_list_type_proto = out.File
+ file_google_ads_googleads_v17_enums_user_list_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_user_list_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_user_list_type_proto_depIdxs = nil
}
diff --git a/enums/value_rule_device_type.pb.go b/enums/value_rule_device_type.pb.go
index 4dd1b4bc..6c76eaad 100644
--- a/enums/value_rule_device_type.pb.go
+++ b/enums/value_rule_device_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/value_rule_device_type.proto
+// source: google/ads/googleads/v17/enums/value_rule_device_type.proto
package enums
@@ -79,11 +79,11 @@ func (x ValueRuleDeviceTypeEnum_ValueRuleDeviceType) String() string {
}
func (ValueRuleDeviceTypeEnum_ValueRuleDeviceType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_value_rule_device_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_value_rule_device_type_proto_enumTypes[0].Descriptor()
}
func (ValueRuleDeviceTypeEnum_ValueRuleDeviceType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_value_rule_device_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_value_rule_device_type_proto_enumTypes[0]
}
func (x ValueRuleDeviceTypeEnum_ValueRuleDeviceType) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x ValueRuleDeviceTypeEnum_ValueRuleDeviceType) Number() protoreflect.EnumN
// Deprecated: Use ValueRuleDeviceTypeEnum_ValueRuleDeviceType.Descriptor instead.
func (ValueRuleDeviceTypeEnum_ValueRuleDeviceType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_value_rule_device_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_value_rule_device_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible device types used in a conversion
@@ -106,7 +106,7 @@ type ValueRuleDeviceTypeEnum struct {
func (x *ValueRuleDeviceTypeEnum) Reset() {
*x = ValueRuleDeviceTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_value_rule_device_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_value_rule_device_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *ValueRuleDeviceTypeEnum) String() string {
func (*ValueRuleDeviceTypeEnum) ProtoMessage() {}
func (x *ValueRuleDeviceTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_value_rule_device_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_value_rule_device_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,18 +132,18 @@ func (x *ValueRuleDeviceTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ValueRuleDeviceTypeEnum.ProtoReflect.Descriptor instead.
func (*ValueRuleDeviceTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_value_rule_device_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_value_rule_device_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_value_rule_device_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_value_rule_device_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_value_rule_device_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_value_rule_device_type_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x64, 0x65, 0x76, 0x69,
0x63, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x73, 0x0a,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x73, 0x0a,
0x17, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65,
0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x58, 0x0a, 0x13, 0x56, 0x61, 0x6c, 0x75,
0x65, 0x52, 0x75, 0x6c, 0x65, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12,
@@ -153,41 +153,41 @@ var file_google_ads_googleads_v16_enums_value_rule_device_type_proto_rawDesc = [
0x4b, 0x54, 0x4f, 0x50, 0x10, 0x03, 0x12, 0x0a, 0x0a, 0x06, 0x54, 0x41, 0x42, 0x4c, 0x45, 0x54,
0x10, 0x04, 0x42, 0xf2, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, 0x56, 0x61, 0x6c, 0x75, 0x65,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, 0x56, 0x61, 0x6c, 0x75, 0x65,
0x52, 0x75, 0x6c, 0x65, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_value_rule_device_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_value_rule_device_type_proto_rawDescData = file_google_ads_googleads_v16_enums_value_rule_device_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_value_rule_device_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_value_rule_device_type_proto_rawDescData = file_google_ads_googleads_v17_enums_value_rule_device_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_value_rule_device_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_value_rule_device_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_value_rule_device_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_value_rule_device_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_value_rule_device_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_value_rule_device_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_value_rule_device_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_value_rule_device_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_value_rule_device_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_value_rule_device_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_value_rule_device_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_value_rule_device_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_value_rule_device_type_proto_goTypes = []interface{}{
- (ValueRuleDeviceTypeEnum_ValueRuleDeviceType)(0), // 0: google.ads.googleads.v16.enums.ValueRuleDeviceTypeEnum.ValueRuleDeviceType
- (*ValueRuleDeviceTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ValueRuleDeviceTypeEnum
+var file_google_ads_googleads_v17_enums_value_rule_device_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_value_rule_device_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_value_rule_device_type_proto_goTypes = []interface{}{
+ (ValueRuleDeviceTypeEnum_ValueRuleDeviceType)(0), // 0: google.ads.googleads.v17.enums.ValueRuleDeviceTypeEnum.ValueRuleDeviceType
+ (*ValueRuleDeviceTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ValueRuleDeviceTypeEnum
}
-var file_google_ads_googleads_v16_enums_value_rule_device_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_value_rule_device_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -195,13 +195,13 @@ var file_google_ads_googleads_v16_enums_value_rule_device_type_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_value_rule_device_type_proto_init() }
-func file_google_ads_googleads_v16_enums_value_rule_device_type_proto_init() {
- if File_google_ads_googleads_v16_enums_value_rule_device_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_value_rule_device_type_proto_init() }
+func file_google_ads_googleads_v17_enums_value_rule_device_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_value_rule_device_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_value_rule_device_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_value_rule_device_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ValueRuleDeviceTypeEnum); i {
case 0:
return &v.state
@@ -218,19 +218,19 @@ func file_google_ads_googleads_v16_enums_value_rule_device_type_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_value_rule_device_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_value_rule_device_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_value_rule_device_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_value_rule_device_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_value_rule_device_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_value_rule_device_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_value_rule_device_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_value_rule_device_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_value_rule_device_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_value_rule_device_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_value_rule_device_type_proto = out.File
- file_google_ads_googleads_v16_enums_value_rule_device_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_value_rule_device_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_value_rule_device_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_value_rule_device_type_proto = out.File
+ file_google_ads_googleads_v17_enums_value_rule_device_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_value_rule_device_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_value_rule_device_type_proto_depIdxs = nil
}
diff --git a/enums/value_rule_geo_location_match_type.pb.go b/enums/value_rule_geo_location_match_type.pb.go
index aee74343..d166c8de 100644
--- a/enums/value_rule_geo_location_match_type.pb.go
+++ b/enums/value_rule_geo_location_match_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/value_rule_geo_location_match_type.proto
+// source: google/ads/googleads/v17/enums/value_rule_geo_location_match_type.proto
package enums
@@ -75,11 +75,11 @@ func (x ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType) String(
}
func (ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_enumTypes[0].Descriptor()
}
func (ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_enumTypes[0]
}
func (x ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType) Number(
// Deprecated: Use ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType.Descriptor instead.
func (ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible geographic location matching types
@@ -102,7 +102,7 @@ type ValueRuleGeoLocationMatchTypeEnum struct {
func (x *ValueRuleGeoLocationMatchTypeEnum) Reset() {
*x = ValueRuleGeoLocationMatchTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -115,7 +115,7 @@ func (x *ValueRuleGeoLocationMatchTypeEnum) String() string {
func (*ValueRuleGeoLocationMatchTypeEnum) ProtoMessage() {}
func (x *ValueRuleGeoLocationMatchTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -128,19 +128,19 @@ func (x *ValueRuleGeoLocationMatchTypeEnum) ProtoReflect() protoreflect.Message
// Deprecated: Use ValueRuleGeoLocationMatchTypeEnum.ProtoReflect.Descriptor instead.
func (*ValueRuleGeoLocationMatchTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_rawDesc = []byte{
0x0a, 0x47, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x67, 0x65, 0x6f, 0x5f,
0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x74,
0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x85, 0x01, 0x0a, 0x21, 0x56, 0x61,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x85, 0x01, 0x0a, 0x21, 0x56, 0x61,
0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x47, 0x65, 0x6f, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x60, 0x0a, 0x1d, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x47, 0x65, 0x6f, 0x4c,
@@ -151,42 +151,42 @@ var file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto
0x49, 0x4f, 0x4e, 0x5f, 0x4f, 0x46, 0x5f, 0x50, 0x52, 0x45, 0x53, 0x45, 0x4e, 0x43, 0x45, 0x10,
0x03, 0x42, 0xfc, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x22, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x22, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
0x75, 0x6c, 0x65, 0x47, 0x65, 0x6f, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x61,
0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_rawDescData = file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_rawDescData = file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_goTypes = []interface{}{
- (ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType)(0), // 0: google.ads.googleads.v16.enums.ValueRuleGeoLocationMatchTypeEnum.ValueRuleGeoLocationMatchType
- (*ValueRuleGeoLocationMatchTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ValueRuleGeoLocationMatchTypeEnum
+var file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_goTypes = []interface{}{
+ (ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType)(0), // 0: google.ads.googleads.v17.enums.ValueRuleGeoLocationMatchTypeEnum.ValueRuleGeoLocationMatchType
+ (*ValueRuleGeoLocationMatchTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ValueRuleGeoLocationMatchTypeEnum
}
-var file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -194,13 +194,13 @@ var file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_init() }
-func file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_init() {
- if File_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_init() }
+func file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ValueRuleGeoLocationMatchTypeEnum); i {
case 0:
return &v.state
@@ -217,19 +217,19 @@ func file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_prot
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto = out.File
- file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_value_rule_geo_location_match_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto = out.File
+ file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_value_rule_geo_location_match_type_proto_depIdxs = nil
}
diff --git a/enums/value_rule_operation.pb.go b/enums/value_rule_operation.pb.go
index 4f5bfb5f..5d14dfe4 100644
--- a/enums/value_rule_operation.pb.go
+++ b/enums/value_rule_operation.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/value_rule_operation.proto
+// source: google/ads/googleads/v17/enums/value_rule_operation.proto
package enums
@@ -79,11 +79,11 @@ func (x ValueRuleOperationEnum_ValueRuleOperation) String() string {
}
func (ValueRuleOperationEnum_ValueRuleOperation) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_value_rule_operation_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_value_rule_operation_proto_enumTypes[0].Descriptor()
}
func (ValueRuleOperationEnum_ValueRuleOperation) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_value_rule_operation_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_value_rule_operation_proto_enumTypes[0]
}
func (x ValueRuleOperationEnum_ValueRuleOperation) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x ValueRuleOperationEnum_ValueRuleOperation) Number() protoreflect.EnumNum
// Deprecated: Use ValueRuleOperationEnum_ValueRuleOperation.Descriptor instead.
func (ValueRuleOperationEnum_ValueRuleOperation) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_value_rule_operation_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_value_rule_operation_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible operations for value rules which are
@@ -106,7 +106,7 @@ type ValueRuleOperationEnum struct {
func (x *ValueRuleOperationEnum) Reset() {
*x = ValueRuleOperationEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_value_rule_operation_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_value_rule_operation_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *ValueRuleOperationEnum) String() string {
func (*ValueRuleOperationEnum) ProtoMessage() {}
func (x *ValueRuleOperationEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_value_rule_operation_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_value_rule_operation_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,18 +132,18 @@ func (x *ValueRuleOperationEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ValueRuleOperationEnum.ProtoReflect.Descriptor instead.
func (*ValueRuleOperationEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_value_rule_operation_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_value_rule_operation_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_value_rule_operation_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_value_rule_operation_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_value_rule_operation_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_value_rule_operation_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x6f, 0x70, 0x65, 0x72,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6c, 0x0a, 0x16, 0x56,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6c, 0x0a, 0x16, 0x56,
0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x52, 0x0a, 0x12, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75,
0x6c, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0f, 0x0a, 0x0b, 0x55,
@@ -152,42 +152,42 @@ var file_google_ads_googleads_v16_enums_value_rule_operation_proto_rawDesc = []b
0x10, 0x02, 0x12, 0x0c, 0x0a, 0x08, 0x4d, 0x55, 0x4c, 0x54, 0x49, 0x50, 0x4c, 0x59, 0x10, 0x03,
0x12, 0x07, 0x0a, 0x03, 0x53, 0x45, 0x54, 0x10, 0x04, 0x42, 0xf1, 0x01, 0x0a, 0x22, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x42, 0x17, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x4f, 0x70, 0x65, 0x72, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_value_rule_operation_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_value_rule_operation_proto_rawDescData = file_google_ads_googleads_v16_enums_value_rule_operation_proto_rawDesc
+ file_google_ads_googleads_v17_enums_value_rule_operation_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_value_rule_operation_proto_rawDescData = file_google_ads_googleads_v17_enums_value_rule_operation_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_value_rule_operation_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_value_rule_operation_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_value_rule_operation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_value_rule_operation_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_value_rule_operation_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_value_rule_operation_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_value_rule_operation_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_value_rule_operation_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_value_rule_operation_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_value_rule_operation_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_value_rule_operation_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_value_rule_operation_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_value_rule_operation_proto_goTypes = []interface{}{
- (ValueRuleOperationEnum_ValueRuleOperation)(0), // 0: google.ads.googleads.v16.enums.ValueRuleOperationEnum.ValueRuleOperation
- (*ValueRuleOperationEnum)(nil), // 1: google.ads.googleads.v16.enums.ValueRuleOperationEnum
+var file_google_ads_googleads_v17_enums_value_rule_operation_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_value_rule_operation_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_value_rule_operation_proto_goTypes = []interface{}{
+ (ValueRuleOperationEnum_ValueRuleOperation)(0), // 0: google.ads.googleads.v17.enums.ValueRuleOperationEnum.ValueRuleOperation
+ (*ValueRuleOperationEnum)(nil), // 1: google.ads.googleads.v17.enums.ValueRuleOperationEnum
}
-var file_google_ads_googleads_v16_enums_value_rule_operation_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_value_rule_operation_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -195,13 +195,13 @@ var file_google_ads_googleads_v16_enums_value_rule_operation_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_value_rule_operation_proto_init() }
-func file_google_ads_googleads_v16_enums_value_rule_operation_proto_init() {
- if File_google_ads_googleads_v16_enums_value_rule_operation_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_value_rule_operation_proto_init() }
+func file_google_ads_googleads_v17_enums_value_rule_operation_proto_init() {
+ if File_google_ads_googleads_v17_enums_value_rule_operation_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_value_rule_operation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_value_rule_operation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ValueRuleOperationEnum); i {
case 0:
return &v.state
@@ -218,19 +218,19 @@ func file_google_ads_googleads_v16_enums_value_rule_operation_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_value_rule_operation_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_value_rule_operation_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_value_rule_operation_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_value_rule_operation_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_value_rule_operation_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_value_rule_operation_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_value_rule_operation_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_value_rule_operation_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_value_rule_operation_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_value_rule_operation_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_value_rule_operation_proto = out.File
- file_google_ads_googleads_v16_enums_value_rule_operation_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_value_rule_operation_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_value_rule_operation_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_value_rule_operation_proto = out.File
+ file_google_ads_googleads_v17_enums_value_rule_operation_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_value_rule_operation_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_value_rule_operation_proto_depIdxs = nil
}
diff --git a/enums/value_rule_set_attachment_type.pb.go b/enums/value_rule_set_attachment_type.pb.go
index 9000eaf1..6c228dfc 100644
--- a/enums/value_rule_set_attachment_type.pb.go
+++ b/enums/value_rule_set_attachment_type.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/value_rule_set_attachment_type.proto
+// source: google/ads/googleads/v17/enums/value_rule_set_attachment_type.proto
package enums
@@ -75,11 +75,11 @@ func (x ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType) String() stri
}
func (ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_enumTypes[0].Descriptor()
}
func (ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_enumTypes[0]
}
func (x ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType) Number() prot
// Deprecated: Use ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType.Descriptor instead.
func (ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing where a value rule set is attached.
@@ -101,7 +101,7 @@ type ValueRuleSetAttachmentTypeEnum struct {
func (x *ValueRuleSetAttachmentTypeEnum) Reset() {
*x = ValueRuleSetAttachmentTypeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *ValueRuleSetAttachmentTypeEnum) String() string {
func (*ValueRuleSetAttachmentTypeEnum) ProtoMessage() {}
func (x *ValueRuleSetAttachmentTypeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *ValueRuleSetAttachmentTypeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ValueRuleSetAttachmentTypeEnum.ProtoReflect.Descriptor instead.
func (*ValueRuleSetAttachmentTypeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x5f,
0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x78, 0x0a, 0x1e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75,
0x6c, 0x65, 0x53, 0x65, 0x74, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x54,
0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x56, 0x0a, 0x1a, 0x56, 0x61, 0x6c, 0x75, 0x65,
@@ -148,43 +148,43 @@ var file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_raw
0x4e, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x45, 0x52, 0x10,
0x02, 0x12, 0x0c, 0x0a, 0x08, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x10, 0x03, 0x42,
0xf9, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1f, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c,
0x65, 0x53, 0x65, 0x74, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x54, 0x79,
0x70, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_rawDescData = file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_rawDesc
+ file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_rawDescData = file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_goTypes = []interface{}{
- (ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType)(0), // 0: google.ads.googleads.v16.enums.ValueRuleSetAttachmentTypeEnum.ValueRuleSetAttachmentType
- (*ValueRuleSetAttachmentTypeEnum)(nil), // 1: google.ads.googleads.v16.enums.ValueRuleSetAttachmentTypeEnum
+var file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_goTypes = []interface{}{
+ (ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType)(0), // 0: google.ads.googleads.v17.enums.ValueRuleSetAttachmentTypeEnum.ValueRuleSetAttachmentType
+ (*ValueRuleSetAttachmentTypeEnum)(nil), // 1: google.ads.googleads.v17.enums.ValueRuleSetAttachmentTypeEnum
}
-var file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -192,13 +192,13 @@ var file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_init() }
-func file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_init() {
- if File_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_init() }
+func file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_init() {
+ if File_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ValueRuleSetAttachmentTypeEnum); i {
case 0:
return &v.state
@@ -215,19 +215,19 @@ func file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto = out.File
- file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_value_rule_set_attachment_type_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto = out.File
+ file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_value_rule_set_attachment_type_proto_depIdxs = nil
}
diff --git a/enums/value_rule_set_dimension.pb.go b/enums/value_rule_set_dimension.pb.go
index 650c367c..1cd9a2ea 100644
--- a/enums/value_rule_set_dimension.pb.go
+++ b/enums/value_rule_set_dimension.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/value_rule_set_dimension.proto
+// source: google/ads/googleads/v17/enums/value_rule_set_dimension.proto
package enums
@@ -83,11 +83,11 @@ func (x ValueRuleSetDimensionEnum_ValueRuleSetDimension) String() string {
}
func (ValueRuleSetDimensionEnum_ValueRuleSetDimension) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_enumTypes[0].Descriptor()
}
func (ValueRuleSetDimensionEnum_ValueRuleSetDimension) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_enumTypes[0]
}
func (x ValueRuleSetDimensionEnum_ValueRuleSetDimension) Number() protoreflect.EnumNumber {
@@ -96,7 +96,7 @@ func (x ValueRuleSetDimensionEnum_ValueRuleSetDimension) Number() protoreflect.E
// Deprecated: Use ValueRuleSetDimensionEnum_ValueRuleSetDimension.Descriptor instead.
func (ValueRuleSetDimensionEnum_ValueRuleSetDimension) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible dimensions of a conversion value rule
@@ -110,7 +110,7 @@ type ValueRuleSetDimensionEnum struct {
func (x *ValueRuleSetDimensionEnum) Reset() {
*x = ValueRuleSetDimensionEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -123,7 +123,7 @@ func (x *ValueRuleSetDimensionEnum) String() string {
func (*ValueRuleSetDimensionEnum) ProtoMessage() {}
func (x *ValueRuleSetDimensionEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -136,18 +136,18 @@ func (x *ValueRuleSetDimensionEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ValueRuleSetDimensionEnum.ProtoReflect.Descriptor instead.
func (*ValueRuleSetDimensionEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_value_rule_set_dimension_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_value_rule_set_dimension_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x5f,
0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22,
0x90, 0x01, 0x0a, 0x19, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74,
0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x73, 0x0a,
0x15, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x44, 0x69, 0x6d,
@@ -159,42 +159,42 @@ var file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_rawDesc =
0x12, 0x10, 0x0a, 0x0c, 0x4e, 0x4f, 0x5f, 0x43, 0x4f, 0x4e, 0x44, 0x49, 0x54, 0x49, 0x4f, 0x4e,
0x10, 0x05, 0x42, 0xf4, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x56, 0x61, 0x6c, 0x75, 0x65,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x56, 0x61, 0x6c, 0x75, 0x65,
0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_rawDescData = file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_rawDesc
+ file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_rawDescData = file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_goTypes = []interface{}{
- (ValueRuleSetDimensionEnum_ValueRuleSetDimension)(0), // 0: google.ads.googleads.v16.enums.ValueRuleSetDimensionEnum.ValueRuleSetDimension
- (*ValueRuleSetDimensionEnum)(nil), // 1: google.ads.googleads.v16.enums.ValueRuleSetDimensionEnum
+var file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_goTypes = []interface{}{
+ (ValueRuleSetDimensionEnum_ValueRuleSetDimension)(0), // 0: google.ads.googleads.v17.enums.ValueRuleSetDimensionEnum.ValueRuleSetDimension
+ (*ValueRuleSetDimensionEnum)(nil), // 1: google.ads.googleads.v17.enums.ValueRuleSetDimensionEnum
}
-var file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -202,13 +202,13 @@ var file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_init() }
-func file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_init() {
- if File_google_ads_googleads_v16_enums_value_rule_set_dimension_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_init() }
+func file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_init() {
+ if File_google_ads_googleads_v17_enums_value_rule_set_dimension_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ValueRuleSetDimensionEnum); i {
case 0:
return &v.state
@@ -225,19 +225,19 @@ func file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_value_rule_set_dimension_proto = out.File
- file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_value_rule_set_dimension_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_value_rule_set_dimension_proto = out.File
+ file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_value_rule_set_dimension_proto_depIdxs = nil
}
diff --git a/enums/vanity_pharma_display_url_mode.pb.go b/enums/vanity_pharma_display_url_mode.pb.go
index 380c9c1a..9e50574b 100644
--- a/enums/vanity_pharma_display_url_mode.pb.go
+++ b/enums/vanity_pharma_display_url_mode.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/vanity_pharma_display_url_mode.proto
+// source: google/ads/googleads/v17/enums/vanity_pharma_display_url_mode.proto
package enums
@@ -75,11 +75,11 @@ func (x VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode) String() stri
}
func (VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_enumTypes[0].Descriptor()
}
func (VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_enumTypes[0]
}
func (x VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode) Number() prot
// Deprecated: Use VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode.Descriptor instead.
func (VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_rawDescGZIP(), []int{0, 0}
}
// The display mode for vanity pharma URLs.
@@ -101,7 +101,7 @@ type VanityPharmaDisplayUrlModeEnum struct {
func (x *VanityPharmaDisplayUrlModeEnum) Reset() {
*x = VanityPharmaDisplayUrlModeEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *VanityPharmaDisplayUrlModeEnum) String() string {
func (*VanityPharmaDisplayUrlModeEnum) ProtoMessage() {}
func (x *VanityPharmaDisplayUrlModeEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *VanityPharmaDisplayUrlModeEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use VanityPharmaDisplayUrlModeEnum.ProtoReflect.Descriptor instead.
func (*VanityPharmaDisplayUrlModeEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x76, 0x61, 0x6e, 0x69, 0x74, 0x79, 0x5f, 0x70, 0x68, 0x61, 0x72, 0x6d, 0x61, 0x5f, 0x64,
0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x93, 0x01, 0x0a, 0x1e, 0x56, 0x61, 0x6e, 0x69, 0x74, 0x79,
0x50, 0x68, 0x61, 0x72, 0x6d, 0x61, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x55, 0x72, 0x6c,
0x4d, 0x6f, 0x64, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x71, 0x0a, 0x1a, 0x56, 0x61, 0x6e, 0x69,
@@ -150,42 +150,42 @@ var file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_raw
0x10, 0x02, 0x12, 0x17, 0x0a, 0x13, 0x57, 0x45, 0x42, 0x53, 0x49, 0x54, 0x45, 0x5f, 0x44, 0x45,
0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x03, 0x42, 0xf9, 0x01, 0x0a, 0x22,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x42, 0x1f, 0x56, 0x61, 0x6e, 0x69, 0x74, 0x79, 0x50, 0x68, 0x61, 0x72, 0x6d, 0x61,
0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x55, 0x72, 0x6c, 0x4d, 0x6f, 0x64, 0x65, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_rawDescData = file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_rawDesc
+ file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_rawDescData = file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_goTypes = []interface{}{
- (VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode)(0), // 0: google.ads.googleads.v16.enums.VanityPharmaDisplayUrlModeEnum.VanityPharmaDisplayUrlMode
- (*VanityPharmaDisplayUrlModeEnum)(nil), // 1: google.ads.googleads.v16.enums.VanityPharmaDisplayUrlModeEnum
+var file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_goTypes = []interface{}{
+ (VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode)(0), // 0: google.ads.googleads.v17.enums.VanityPharmaDisplayUrlModeEnum.VanityPharmaDisplayUrlMode
+ (*VanityPharmaDisplayUrlModeEnum)(nil), // 1: google.ads.googleads.v17.enums.VanityPharmaDisplayUrlModeEnum
}
-var file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -193,13 +193,13 @@ var file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_init() }
-func file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_init() {
- if File_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_init() }
+func file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_init() {
+ if File_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*VanityPharmaDisplayUrlModeEnum); i {
case 0:
return &v.state
@@ -216,19 +216,19 @@ func file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto = out.File
- file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_vanity_pharma_display_url_mode_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto = out.File
+ file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_vanity_pharma_display_url_mode_proto_depIdxs = nil
}
diff --git a/enums/vanity_pharma_text.pb.go b/enums/vanity_pharma_text.pb.go
index bd3ba0d8..9a57862b 100644
--- a/enums/vanity_pharma_text.pb.go
+++ b/enums/vanity_pharma_text.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/vanity_pharma_text.proto
+// source: google/ads/googleads/v17/enums/vanity_pharma_text.proto
package enums
@@ -121,11 +121,11 @@ func (x VanityPharmaTextEnum_VanityPharmaText) String() string {
}
func (VanityPharmaTextEnum_VanityPharmaText) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_enumTypes[0].Descriptor()
}
func (VanityPharmaTextEnum_VanityPharmaText) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_enumTypes[0]
}
func (x VanityPharmaTextEnum_VanityPharmaText) Number() protoreflect.EnumNumber {
@@ -134,7 +134,7 @@ func (x VanityPharmaTextEnum_VanityPharmaText) Number() protoreflect.EnumNumber
// Deprecated: Use VanityPharmaTextEnum_VanityPharmaText.Descriptor instead.
func (VanityPharmaTextEnum_VanityPharmaText) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_rawDescGZIP(), []int{0, 0}
}
// The text that will be displayed in display URL of the text ad when website
@@ -148,7 +148,7 @@ type VanityPharmaTextEnum struct {
func (x *VanityPharmaTextEnum) Reset() {
*x = VanityPharmaTextEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -161,7 +161,7 @@ func (x *VanityPharmaTextEnum) String() string {
func (*VanityPharmaTextEnum) ProtoMessage() {}
func (x *VanityPharmaTextEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -174,18 +174,18 @@ func (x *VanityPharmaTextEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use VanityPharmaTextEnum.ProtoReflect.Descriptor instead.
func (*VanityPharmaTextEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_vanity_pharma_text_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_vanity_pharma_text_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x76, 0x61, 0x6e, 0x69, 0x74, 0x79, 0x5f, 0x70, 0x68, 0x61, 0x72, 0x6d, 0x61, 0x5f, 0x74,
0x65, 0x78, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8b, 0x04, 0x0a, 0x14, 0x56, 0x61,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8b, 0x04, 0x0a, 0x14, 0x56, 0x61,
0x6e, 0x69, 0x74, 0x79, 0x50, 0x68, 0x61, 0x72, 0x6d, 0x61, 0x54, 0x65, 0x78, 0x74, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0xf2, 0x03, 0x0a, 0x10, 0x56, 0x61, 0x6e, 0x69, 0x74, 0x79, 0x50, 0x68, 0x61,
0x72, 0x6d, 0x61, 0x54, 0x65, 0x78, 0x74, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45,
@@ -220,42 +220,42 @@ var file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_rawDesc = []byt
0x4f, 0x4e, 0x5f, 0x56, 0x41, 0x43, 0x43, 0x49, 0x4e, 0x45, 0x5f, 0x57, 0x45, 0x42, 0x53, 0x49,
0x54, 0x45, 0x5f, 0x45, 0x53, 0x10, 0x0d, 0x42, 0xef, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15,
0x56, 0x61, 0x6e, 0x69, 0x74, 0x79, 0x50, 0x68, 0x61, 0x72, 0x6d, 0x61, 0x54, 0x65, 0x78, 0x74,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e,
0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_rawDescData = file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_rawDesc
+ file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_rawDescData = file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_goTypes = []interface{}{
- (VanityPharmaTextEnum_VanityPharmaText)(0), // 0: google.ads.googleads.v16.enums.VanityPharmaTextEnum.VanityPharmaText
- (*VanityPharmaTextEnum)(nil), // 1: google.ads.googleads.v16.enums.VanityPharmaTextEnum
+var file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_goTypes = []interface{}{
+ (VanityPharmaTextEnum_VanityPharmaText)(0), // 0: google.ads.googleads.v17.enums.VanityPharmaTextEnum.VanityPharmaText
+ (*VanityPharmaTextEnum)(nil), // 1: google.ads.googleads.v17.enums.VanityPharmaTextEnum
}
-var file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -263,13 +263,13 @@ var file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_depIdxs = []int
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_init() }
-func file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_init() {
- if File_google_ads_googleads_v16_enums_vanity_pharma_text_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_init() }
+func file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_init() {
+ if File_google_ads_googleads_v17_enums_vanity_pharma_text_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*VanityPharmaTextEnum); i {
case 0:
return &v.state
@@ -286,19 +286,19 @@ func file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_vanity_pharma_text_proto = out.File
- file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_vanity_pharma_text_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_vanity_pharma_text_proto = out.File
+ file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_vanity_pharma_text_proto_depIdxs = nil
}
diff --git a/enums/video_thumbnail.pb.go b/enums/video_thumbnail.pb.go
index aa6c690e..5410b712 100644
--- a/enums/video_thumbnail.pb.go
+++ b/enums/video_thumbnail.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/video_thumbnail.proto
+// source: google/ads/googleads/v17/enums/video_thumbnail.proto
package enums
@@ -84,11 +84,11 @@ func (x VideoThumbnailEnum_VideoThumbnail) String() string {
}
func (VideoThumbnailEnum_VideoThumbnail) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_video_thumbnail_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_video_thumbnail_proto_enumTypes[0].Descriptor()
}
func (VideoThumbnailEnum_VideoThumbnail) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_video_thumbnail_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_video_thumbnail_proto_enumTypes[0]
}
func (x VideoThumbnailEnum_VideoThumbnail) Number() protoreflect.EnumNumber {
@@ -97,7 +97,7 @@ func (x VideoThumbnailEnum_VideoThumbnail) Number() protoreflect.EnumNumber {
// Deprecated: Use VideoThumbnailEnum_VideoThumbnail.Descriptor instead.
func (VideoThumbnailEnum_VideoThumbnail) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_video_thumbnail_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_video_thumbnail_proto_rawDescGZIP(), []int{0, 0}
}
// Defines the thumbnail to use for In-Display video ads. Note that
@@ -112,7 +112,7 @@ type VideoThumbnailEnum struct {
func (x *VideoThumbnailEnum) Reset() {
*x = VideoThumbnailEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_video_thumbnail_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_video_thumbnail_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -125,7 +125,7 @@ func (x *VideoThumbnailEnum) String() string {
func (*VideoThumbnailEnum) ProtoMessage() {}
func (x *VideoThumbnailEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_video_thumbnail_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_video_thumbnail_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -138,17 +138,17 @@ func (x *VideoThumbnailEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use VideoThumbnailEnum.ProtoReflect.Descriptor instead.
func (*VideoThumbnailEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_video_thumbnail_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_video_thumbnail_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_video_thumbnail_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_video_thumbnail_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_video_thumbnail_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_video_thumbnail_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x74, 0x68, 0x75, 0x6d, 0x62, 0x6e, 0x61, 0x69, 0x6c,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8e, 0x01, 0x0a, 0x12, 0x56, 0x69, 0x64, 0x65, 0x6f,
0x54, 0x68, 0x75, 0x6d, 0x62, 0x6e, 0x61, 0x69, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x78, 0x0a,
0x0e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x54, 0x68, 0x75, 0x6d, 0x62, 0x6e, 0x61, 0x69, 0x6c, 0x12,
@@ -160,41 +160,41 @@ var file_google_ads_googleads_v16_enums_video_thumbnail_proto_rawDesc = []byte{
0x49, 0x4c, 0x5f, 0x32, 0x10, 0x04, 0x12, 0x0f, 0x0a, 0x0b, 0x54, 0x48, 0x55, 0x4d, 0x42, 0x4e,
0x41, 0x49, 0x4c, 0x5f, 0x33, 0x10, 0x05, 0x42, 0xed, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13,
0x56, 0x69, 0x64, 0x65, 0x6f, 0x54, 0x68, 0x75, 0x6d, 0x62, 0x6e, 0x61, 0x69, 0x6c, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75,
0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_video_thumbnail_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_video_thumbnail_proto_rawDescData = file_google_ads_googleads_v16_enums_video_thumbnail_proto_rawDesc
+ file_google_ads_googleads_v17_enums_video_thumbnail_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_video_thumbnail_proto_rawDescData = file_google_ads_googleads_v17_enums_video_thumbnail_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_video_thumbnail_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_video_thumbnail_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_video_thumbnail_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_video_thumbnail_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_video_thumbnail_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_video_thumbnail_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_video_thumbnail_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_video_thumbnail_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_video_thumbnail_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_video_thumbnail_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_video_thumbnail_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_video_thumbnail_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_video_thumbnail_proto_goTypes = []interface{}{
- (VideoThumbnailEnum_VideoThumbnail)(0), // 0: google.ads.googleads.v16.enums.VideoThumbnailEnum.VideoThumbnail
- (*VideoThumbnailEnum)(nil), // 1: google.ads.googleads.v16.enums.VideoThumbnailEnum
+var file_google_ads_googleads_v17_enums_video_thumbnail_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_video_thumbnail_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_video_thumbnail_proto_goTypes = []interface{}{
+ (VideoThumbnailEnum_VideoThumbnail)(0), // 0: google.ads.googleads.v17.enums.VideoThumbnailEnum.VideoThumbnail
+ (*VideoThumbnailEnum)(nil), // 1: google.ads.googleads.v17.enums.VideoThumbnailEnum
}
-var file_google_ads_googleads_v16_enums_video_thumbnail_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_video_thumbnail_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -202,13 +202,13 @@ var file_google_ads_googleads_v16_enums_video_thumbnail_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_video_thumbnail_proto_init() }
-func file_google_ads_googleads_v16_enums_video_thumbnail_proto_init() {
- if File_google_ads_googleads_v16_enums_video_thumbnail_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_video_thumbnail_proto_init() }
+func file_google_ads_googleads_v17_enums_video_thumbnail_proto_init() {
+ if File_google_ads_googleads_v17_enums_video_thumbnail_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_video_thumbnail_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_video_thumbnail_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*VideoThumbnailEnum); i {
case 0:
return &v.state
@@ -225,19 +225,19 @@ func file_google_ads_googleads_v16_enums_video_thumbnail_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_video_thumbnail_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_video_thumbnail_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_video_thumbnail_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_video_thumbnail_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_video_thumbnail_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_video_thumbnail_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_video_thumbnail_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_video_thumbnail_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_video_thumbnail_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_video_thumbnail_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_video_thumbnail_proto = out.File
- file_google_ads_googleads_v16_enums_video_thumbnail_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_video_thumbnail_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_video_thumbnail_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_video_thumbnail_proto = out.File
+ file_google_ads_googleads_v17_enums_video_thumbnail_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_video_thumbnail_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_video_thumbnail_proto_depIdxs = nil
}
diff --git a/enums/webpage_condition_operand.pb.go b/enums/webpage_condition_operand.pb.go
index 3ef7618a..15eceff7 100644
--- a/enums/webpage_condition_operand.pb.go
+++ b/enums/webpage_condition_operand.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/webpage_condition_operand.proto
+// source: google/ads/googleads/v17/enums/webpage_condition_operand.proto
package enums
@@ -87,11 +87,11 @@ func (x WebpageConditionOperandEnum_WebpageConditionOperand) String() string {
}
func (WebpageConditionOperandEnum_WebpageConditionOperand) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_enumTypes[0].Descriptor()
}
func (WebpageConditionOperandEnum_WebpageConditionOperand) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_enumTypes[0]
}
func (x WebpageConditionOperandEnum_WebpageConditionOperand) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x WebpageConditionOperandEnum_WebpageConditionOperand) Number() protorefle
// Deprecated: Use WebpageConditionOperandEnum_WebpageConditionOperand.Descriptor instead.
func (WebpageConditionOperandEnum_WebpageConditionOperand) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing webpage condition operand in webpage criterion.
@@ -113,7 +113,7 @@ type WebpageConditionOperandEnum struct {
func (x *WebpageConditionOperandEnum) Reset() {
*x = WebpageConditionOperandEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +126,7 @@ func (x *WebpageConditionOperandEnum) String() string {
func (*WebpageConditionOperandEnum) ProtoMessage() {}
func (x *WebpageConditionOperandEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,18 +139,18 @@ func (x *WebpageConditionOperandEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use WebpageConditionOperandEnum.ProtoReflect.Descriptor instead.
func (*WebpageConditionOperandEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_webpage_condition_operand_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_webpage_condition_operand_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x22, 0xa2, 0x01, 0x0a, 0x1b, 0x57, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x6e, 0x64,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x6e, 0x64, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x82, 0x01, 0x0a, 0x17, 0x57, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x6e, 0x64,
@@ -163,42 +163,42 @@ var file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_rawDesc
0x54, 0x10, 0x05, 0x12, 0x10, 0x0a, 0x0c, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x5f, 0x4c, 0x41,
0x42, 0x45, 0x4c, 0x10, 0x06, 0x42, 0xf6, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x57, 0x65,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x57, 0x65,
0x62, 0x70, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70,
0x65, 0x72, 0x61, 0x6e, 0x64, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_rawDescData = file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_rawDesc
+ file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_rawDescData = file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_goTypes = []interface{}{
- (WebpageConditionOperandEnum_WebpageConditionOperand)(0), // 0: google.ads.googleads.v16.enums.WebpageConditionOperandEnum.WebpageConditionOperand
- (*WebpageConditionOperandEnum)(nil), // 1: google.ads.googleads.v16.enums.WebpageConditionOperandEnum
+var file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_goTypes = []interface{}{
+ (WebpageConditionOperandEnum_WebpageConditionOperand)(0), // 0: google.ads.googleads.v17.enums.WebpageConditionOperandEnum.WebpageConditionOperand
+ (*WebpageConditionOperandEnum)(nil), // 1: google.ads.googleads.v17.enums.WebpageConditionOperandEnum
}
-var file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -206,13 +206,13 @@ var file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_init() }
-func file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_init() {
- if File_google_ads_googleads_v16_enums_webpage_condition_operand_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_init() }
+func file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_init() {
+ if File_google_ads_googleads_v17_enums_webpage_condition_operand_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*WebpageConditionOperandEnum); i {
case 0:
return &v.state
@@ -229,19 +229,19 @@ func file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_webpage_condition_operand_proto = out.File
- file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_webpage_condition_operand_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_webpage_condition_operand_proto = out.File
+ file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_webpage_condition_operand_proto_depIdxs = nil
}
diff --git a/enums/webpage_condition_operator.pb.go b/enums/webpage_condition_operator.pb.go
index e5538499..2a5c5a8e 100644
--- a/enums/webpage_condition_operator.pb.go
+++ b/enums/webpage_condition_operator.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/enums/webpage_condition_operator.proto
+// source: google/ads/googleads/v17/enums/webpage_condition_operator.proto
package enums
@@ -75,11 +75,11 @@ func (x WebpageConditionOperatorEnum_WebpageConditionOperator) String() string {
}
func (WebpageConditionOperatorEnum_WebpageConditionOperator) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_enumTypes[0].Descriptor()
}
func (WebpageConditionOperatorEnum_WebpageConditionOperator) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_enumTypes[0]
}
func (x WebpageConditionOperatorEnum_WebpageConditionOperator) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x WebpageConditionOperatorEnum_WebpageConditionOperator) Number() protoref
// Deprecated: Use WebpageConditionOperatorEnum_WebpageConditionOperator.Descriptor instead.
func (WebpageConditionOperatorEnum_WebpageConditionOperator) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing webpage condition operator in webpage
@@ -102,7 +102,7 @@ type WebpageConditionOperatorEnum struct {
func (x *WebpageConditionOperatorEnum) Reset() {
*x = WebpageConditionOperatorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -115,7 +115,7 @@ func (x *WebpageConditionOperatorEnum) String() string {
func (*WebpageConditionOperatorEnum) ProtoMessage() {}
func (x *WebpageConditionOperatorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -128,18 +128,18 @@ func (x *WebpageConditionOperatorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use WebpageConditionOperatorEnum.ProtoReflect.Descriptor instead.
func (*WebpageConditionOperatorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_enums_webpage_condition_operator_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_enums_webpage_condition_operator_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x22, 0x72, 0x0a, 0x1c, 0x57, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x6e, 0x64,
0x69, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x52, 0x0a, 0x18, 0x57, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x6e, 0x64,
@@ -149,42 +149,42 @@ var file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_rawDesc
0x51, 0x55, 0x41, 0x4c, 0x53, 0x10, 0x02, 0x12, 0x0c, 0x0a, 0x08, 0x43, 0x4f, 0x4e, 0x54, 0x41,
0x49, 0x4e, 0x53, 0x10, 0x03, 0x42, 0xf7, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x57, 0x65,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x57, 0x65,
0x62, 0x70, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x70,
0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_rawDescData = file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_rawDesc
+ file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_rawDescData = file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_rawDesc
)
-func file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_rawDescData)
+func file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_rawDescData)
})
- return file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_rawDescData
+ return file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_rawDescData
}
-var file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_goTypes = []interface{}{
- (WebpageConditionOperatorEnum_WebpageConditionOperator)(0), // 0: google.ads.googleads.v16.enums.WebpageConditionOperatorEnum.WebpageConditionOperator
- (*WebpageConditionOperatorEnum)(nil), // 1: google.ads.googleads.v16.enums.WebpageConditionOperatorEnum
+var file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_goTypes = []interface{}{
+ (WebpageConditionOperatorEnum_WebpageConditionOperator)(0), // 0: google.ads.googleads.v17.enums.WebpageConditionOperatorEnum.WebpageConditionOperator
+ (*WebpageConditionOperatorEnum)(nil), // 1: google.ads.googleads.v17.enums.WebpageConditionOperatorEnum
}
-var file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -192,13 +192,13 @@ var file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_init() }
-func file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_init() {
- if File_google_ads_googleads_v16_enums_webpage_condition_operator_proto != nil {
+func init() { file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_init() }
+func file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_init() {
+ if File_google_ads_googleads_v17_enums_webpage_condition_operator_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*WebpageConditionOperatorEnum); i {
case 0:
return &v.state
@@ -215,19 +215,19 @@ func file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_enums_webpage_condition_operator_proto = out.File
- file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_rawDesc = nil
- file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_goTypes = nil
- file_google_ads_googleads_v16_enums_webpage_condition_operator_proto_depIdxs = nil
+ File_google_ads_googleads_v17_enums_webpage_condition_operator_proto = out.File
+ file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_rawDesc = nil
+ file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_goTypes = nil
+ file_google_ads_googleads_v17_enums_webpage_condition_operator_proto_depIdxs = nil
}
diff --git a/errors/access_invitation_error.pb.go b/errors/access_invitation_error.pb.go
index d9285459..b32c15ec 100644
--- a/errors/access_invitation_error.pb.go
+++ b/errors/access_invitation_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/access_invitation_error.proto
+// source: google/ads/googleads/v17/errors/access_invitation_error.proto
package errors
@@ -100,11 +100,11 @@ func (x AccessInvitationErrorEnum_AccessInvitationError) String() string {
}
func (AccessInvitationErrorEnum_AccessInvitationError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_access_invitation_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_access_invitation_error_proto_enumTypes[0].Descriptor()
}
func (AccessInvitationErrorEnum_AccessInvitationError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_access_invitation_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_access_invitation_error_proto_enumTypes[0]
}
func (x AccessInvitationErrorEnum_AccessInvitationError) Number() protoreflect.EnumNumber {
@@ -113,7 +113,7 @@ func (x AccessInvitationErrorEnum_AccessInvitationError) Number() protoreflect.E
// Deprecated: Use AccessInvitationErrorEnum_AccessInvitationError.Descriptor instead.
func (AccessInvitationErrorEnum_AccessInvitationError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_access_invitation_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_access_invitation_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible AccessInvitation errors.
@@ -126,7 +126,7 @@ type AccessInvitationErrorEnum struct {
func (x *AccessInvitationErrorEnum) Reset() {
*x = AccessInvitationErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_access_invitation_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_access_invitation_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -139,7 +139,7 @@ func (x *AccessInvitationErrorEnum) String() string {
func (*AccessInvitationErrorEnum) ProtoMessage() {}
func (x *AccessInvitationErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_access_invitation_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_access_invitation_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -152,18 +152,18 @@ func (x *AccessInvitationErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AccessInvitationErrorEnum.ProtoReflect.Descriptor instead.
func (*AccessInvitationErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_access_invitation_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_access_invitation_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_access_invitation_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_access_invitation_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_access_invitation_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_access_invitation_error_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x22, 0xf3, 0x02, 0x0a, 0x19, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xd5,
0x02, 0x0a, 0x15, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74,
@@ -189,42 +189,42 @@ var file_google_ads_googleads_v16_errors_access_invitation_error_proto_rawDesc =
0x4d, 0x41, 0x49, 0x4e, 0x5f, 0x50, 0x4f, 0x4c, 0x49, 0x43, 0x59, 0x5f, 0x56, 0x49, 0x4f, 0x4c,
0x41, 0x54, 0x45, 0x44, 0x10, 0x09, 0x42, 0xfa, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a,
0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_access_invitation_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_access_invitation_error_proto_rawDescData = file_google_ads_googleads_v16_errors_access_invitation_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_access_invitation_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_access_invitation_error_proto_rawDescData = file_google_ads_googleads_v17_errors_access_invitation_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_access_invitation_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_access_invitation_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_access_invitation_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_access_invitation_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_access_invitation_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_access_invitation_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_access_invitation_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_access_invitation_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_access_invitation_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_access_invitation_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_access_invitation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_access_invitation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_access_invitation_error_proto_goTypes = []interface{}{
- (AccessInvitationErrorEnum_AccessInvitationError)(0), // 0: google.ads.googleads.v16.errors.AccessInvitationErrorEnum.AccessInvitationError
- (*AccessInvitationErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AccessInvitationErrorEnum
+var file_google_ads_googleads_v17_errors_access_invitation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_access_invitation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_access_invitation_error_proto_goTypes = []interface{}{
+ (AccessInvitationErrorEnum_AccessInvitationError)(0), // 0: google.ads.googleads.v17.errors.AccessInvitationErrorEnum.AccessInvitationError
+ (*AccessInvitationErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AccessInvitationErrorEnum
}
-var file_google_ads_googleads_v16_errors_access_invitation_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_access_invitation_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -232,13 +232,13 @@ var file_google_ads_googleads_v16_errors_access_invitation_error_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_access_invitation_error_proto_init() }
-func file_google_ads_googleads_v16_errors_access_invitation_error_proto_init() {
- if File_google_ads_googleads_v16_errors_access_invitation_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_access_invitation_error_proto_init() }
+func file_google_ads_googleads_v17_errors_access_invitation_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_access_invitation_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_access_invitation_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_access_invitation_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccessInvitationErrorEnum); i {
case 0:
return &v.state
@@ -255,19 +255,19 @@ func file_google_ads_googleads_v16_errors_access_invitation_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_access_invitation_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_access_invitation_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_access_invitation_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_access_invitation_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_access_invitation_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_access_invitation_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_access_invitation_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_access_invitation_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_access_invitation_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_access_invitation_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_access_invitation_error_proto = out.File
- file_google_ads_googleads_v16_errors_access_invitation_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_access_invitation_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_access_invitation_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_access_invitation_error_proto = out.File
+ file_google_ads_googleads_v17_errors_access_invitation_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_access_invitation_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_access_invitation_error_proto_depIdxs = nil
}
diff --git a/errors/account_budget_proposal_error.pb.go b/errors/account_budget_proposal_error.pb.go
index dc89c57b..e973505c 100644
--- a/errors/account_budget_proposal_error.pb.go
+++ b/errors/account_budget_proposal_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/account_budget_proposal_error.proto
+// source: google/ads/googleads/v17/errors/account_budget_proposal_error.proto
package errors
@@ -179,11 +179,11 @@ func (x AccountBudgetProposalErrorEnum_AccountBudgetProposalError) String() stri
}
func (AccountBudgetProposalErrorEnum_AccountBudgetProposalError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_enumTypes[0].Descriptor()
}
func (AccountBudgetProposalErrorEnum_AccountBudgetProposalError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_enumTypes[0]
}
func (x AccountBudgetProposalErrorEnum_AccountBudgetProposalError) Number() protoreflect.EnumNumber {
@@ -192,7 +192,7 @@ func (x AccountBudgetProposalErrorEnum_AccountBudgetProposalError) Number() prot
// Deprecated: Use AccountBudgetProposalErrorEnum_AccountBudgetProposalError.Descriptor instead.
func (AccountBudgetProposalErrorEnum_AccountBudgetProposalError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible account budget proposal errors.
@@ -205,7 +205,7 @@ type AccountBudgetProposalErrorEnum struct {
func (x *AccountBudgetProposalErrorEnum) Reset() {
*x = AccountBudgetProposalErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -218,7 +218,7 @@ func (x *AccountBudgetProposalErrorEnum) String() string {
func (*AccountBudgetProposalErrorEnum) ProtoMessage() {}
func (x *AccountBudgetProposalErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -231,18 +231,18 @@ func (x *AccountBudgetProposalErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AccountBudgetProposalErrorEnum.ProtoReflect.Descriptor instead.
func (*AccountBudgetProposalErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_account_budget_proposal_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_account_budget_proposal_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74,
0x5f, 0x70, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xda, 0x07, 0x0a, 0x1e, 0x41, 0x63, 0x63, 0x6f, 0x75,
0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb7, 0x07, 0x0a, 0x1a, 0x41, 0x63,
@@ -307,42 +307,42 @@ var file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_raw
0x4c, 0x45, 0x44, 0x5f, 0x42, 0x49, 0x4c, 0x4c, 0x49, 0x4e, 0x47, 0x5f, 0x53, 0x45, 0x54, 0x55,
0x50, 0x10, 0x1b, 0x42, 0xff, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1f, 0x41, 0x63, 0x63,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1f, 0x41, 0x63, 0x63,
0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73,
0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_rawDescData = file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_rawDescData = file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_goTypes = []interface{}{
- (AccountBudgetProposalErrorEnum_AccountBudgetProposalError)(0), // 0: google.ads.googleads.v16.errors.AccountBudgetProposalErrorEnum.AccountBudgetProposalError
- (*AccountBudgetProposalErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AccountBudgetProposalErrorEnum
+var file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_goTypes = []interface{}{
+ (AccountBudgetProposalErrorEnum_AccountBudgetProposalError)(0), // 0: google.ads.googleads.v17.errors.AccountBudgetProposalErrorEnum.AccountBudgetProposalError
+ (*AccountBudgetProposalErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AccountBudgetProposalErrorEnum
}
-var file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -350,13 +350,13 @@ var file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_init() }
-func file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_init() {
- if File_google_ads_googleads_v16_errors_account_budget_proposal_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_init() }
+func file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_account_budget_proposal_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccountBudgetProposalErrorEnum); i {
case 0:
return &v.state
@@ -373,19 +373,19 @@ func file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_account_budget_proposal_error_proto = out.File
- file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_account_budget_proposal_error_proto = out.File
+ file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_depIdxs = nil
}
diff --git a/errors/account_link_error.pb.go b/errors/account_link_error.pb.go
index ceaafdaa..de2a43cf 100644
--- a/errors/account_link_error.pb.go
+++ b/errors/account_link_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/account_link_error.proto
+// source: google/ads/googleads/v17/errors/account_link_error.proto
package errors
@@ -75,11 +75,11 @@ func (x AccountLinkErrorEnum_AccountLinkError) String() string {
}
func (AccountLinkErrorEnum_AccountLinkError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_account_link_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_account_link_error_proto_enumTypes[0].Descriptor()
}
func (AccountLinkErrorEnum_AccountLinkError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_account_link_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_account_link_error_proto_enumTypes[0]
}
func (x AccountLinkErrorEnum_AccountLinkError) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x AccountLinkErrorEnum_AccountLinkError) Number() protoreflect.EnumNumber
// Deprecated: Use AccountLinkErrorEnum_AccountLinkError.Descriptor instead.
func (AccountLinkErrorEnum_AccountLinkError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_account_link_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_account_link_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible account link errors.
@@ -101,7 +101,7 @@ type AccountLinkErrorEnum struct {
func (x *AccountLinkErrorEnum) Reset() {
*x = AccountLinkErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_account_link_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_account_link_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *AccountLinkErrorEnum) String() string {
func (*AccountLinkErrorEnum) ProtoMessage() {}
func (x *AccountLinkErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_account_link_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_account_link_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *AccountLinkErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AccountLinkErrorEnum.ProtoReflect.Descriptor instead.
func (*AccountLinkErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_account_link_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_account_link_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_account_link_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_account_link_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_account_link_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_account_link_error_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x73, 0x0a, 0x14, 0x41,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x73, 0x0a, 0x14, 0x41,
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0x5b, 0x0a, 0x10, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69,
0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45,
@@ -148,41 +148,41 @@ var file_google_ads_googleads_v16_errors_account_link_error_proto_rawDesc = []by
0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x44, 0x45, 0x4e, 0x49, 0x45, 0x44, 0x10, 0x03,
0x42, 0xf5, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_account_link_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_account_link_error_proto_rawDescData = file_google_ads_googleads_v16_errors_account_link_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_account_link_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_account_link_error_proto_rawDescData = file_google_ads_googleads_v17_errors_account_link_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_account_link_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_account_link_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_account_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_account_link_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_account_link_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_account_link_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_account_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_account_link_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_account_link_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_account_link_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_account_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_account_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_account_link_error_proto_goTypes = []interface{}{
- (AccountLinkErrorEnum_AccountLinkError)(0), // 0: google.ads.googleads.v16.errors.AccountLinkErrorEnum.AccountLinkError
- (*AccountLinkErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AccountLinkErrorEnum
+var file_google_ads_googleads_v17_errors_account_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_account_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_account_link_error_proto_goTypes = []interface{}{
+ (AccountLinkErrorEnum_AccountLinkError)(0), // 0: google.ads.googleads.v17.errors.AccountLinkErrorEnum.AccountLinkError
+ (*AccountLinkErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AccountLinkErrorEnum
}
-var file_google_ads_googleads_v16_errors_account_link_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_account_link_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_errors_account_link_error_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_account_link_error_proto_init() }
-func file_google_ads_googleads_v16_errors_account_link_error_proto_init() {
- if File_google_ads_googleads_v16_errors_account_link_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_account_link_error_proto_init() }
+func file_google_ads_googleads_v17_errors_account_link_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_account_link_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_account_link_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_account_link_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccountLinkErrorEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_errors_account_link_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_account_link_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_account_link_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_account_link_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_account_link_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_account_link_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_account_link_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_account_link_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_account_link_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_account_link_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_account_link_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_account_link_error_proto = out.File
- file_google_ads_googleads_v16_errors_account_link_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_account_link_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_account_link_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_account_link_error_proto = out.File
+ file_google_ads_googleads_v17_errors_account_link_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_account_link_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_account_link_error_proto_depIdxs = nil
}
diff --git a/errors/ad_customizer_error.pb.go b/errors/ad_customizer_error.pb.go
index 665391d8..9fc643f4 100644
--- a/errors/ad_customizer_error.pb.go
+++ b/errors/ad_customizer_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/ad_customizer_error.proto
+// source: google/ads/googleads/v17/errors/ad_customizer_error.proto
package errors
@@ -87,11 +87,11 @@ func (x AdCustomizerErrorEnum_AdCustomizerError) String() string {
}
func (AdCustomizerErrorEnum_AdCustomizerError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_ad_customizer_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_ad_customizer_error_proto_enumTypes[0].Descriptor()
}
func (AdCustomizerErrorEnum_AdCustomizerError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_ad_customizer_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_ad_customizer_error_proto_enumTypes[0]
}
func (x AdCustomizerErrorEnum_AdCustomizerError) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x AdCustomizerErrorEnum_AdCustomizerError) Number() protoreflect.EnumNumbe
// Deprecated: Use AdCustomizerErrorEnum_AdCustomizerError.Descriptor instead.
func (AdCustomizerErrorEnum_AdCustomizerError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_customizer_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_ad_customizer_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible ad customizer errors.
@@ -113,7 +113,7 @@ type AdCustomizerErrorEnum struct {
func (x *AdCustomizerErrorEnum) Reset() {
*x = AdCustomizerErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_ad_customizer_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_customizer_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +126,7 @@ func (x *AdCustomizerErrorEnum) String() string {
func (*AdCustomizerErrorEnum) ProtoMessage() {}
func (x *AdCustomizerErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_ad_customizer_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_customizer_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,18 +139,18 @@ func (x *AdCustomizerErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdCustomizerErrorEnum.ProtoReflect.Descriptor instead.
func (*AdCustomizerErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_customizer_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_ad_customizer_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_ad_customizer_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_ad_customizer_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_ad_customizer_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_ad_customizer_error_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x64, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xe8, 0x01, 0x0a,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xe8, 0x01, 0x0a,
0x15, 0x41, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xce, 0x01, 0x0a, 0x11, 0x41, 0x64, 0x43, 0x75, 0x73,
0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b,
@@ -167,42 +167,42 @@ var file_google_ads_googleads_v16_errors_ad_customizer_error_proto_rawDesc = []b
0x12, 0x15, 0x0a, 0x11, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x5f, 0x55, 0x53, 0x45, 0x52,
0x5f, 0x4c, 0x49, 0x53, 0x54, 0x10, 0x06, 0x42, 0xf6, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42,
0x16, 0x41, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_ad_customizer_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_ad_customizer_error_proto_rawDescData = file_google_ads_googleads_v16_errors_ad_customizer_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_ad_customizer_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_ad_customizer_error_proto_rawDescData = file_google_ads_googleads_v17_errors_ad_customizer_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_ad_customizer_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_ad_customizer_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_ad_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_ad_customizer_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_ad_customizer_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_ad_customizer_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_ad_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_ad_customizer_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_ad_customizer_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_ad_customizer_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_ad_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_customizer_error_proto_goTypes = []interface{}{
- (AdCustomizerErrorEnum_AdCustomizerError)(0), // 0: google.ads.googleads.v16.errors.AdCustomizerErrorEnum.AdCustomizerError
- (*AdCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AdCustomizerErrorEnum
+var file_google_ads_googleads_v17_errors_ad_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_customizer_error_proto_goTypes = []interface{}{
+ (AdCustomizerErrorEnum_AdCustomizerError)(0), // 0: google.ads.googleads.v17.errors.AdCustomizerErrorEnum.AdCustomizerError
+ (*AdCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AdCustomizerErrorEnum
}
-var file_google_ads_googleads_v16_errors_ad_customizer_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_ad_customizer_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -210,13 +210,13 @@ var file_google_ads_googleads_v16_errors_ad_customizer_error_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_ad_customizer_error_proto_init() }
-func file_google_ads_googleads_v16_errors_ad_customizer_error_proto_init() {
- if File_google_ads_googleads_v16_errors_ad_customizer_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_ad_customizer_error_proto_init() }
+func file_google_ads_googleads_v17_errors_ad_customizer_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_ad_customizer_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_ad_customizer_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_ad_customizer_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdCustomizerErrorEnum); i {
case 0:
return &v.state
@@ -233,19 +233,19 @@ func file_google_ads_googleads_v16_errors_ad_customizer_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_ad_customizer_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_ad_customizer_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_ad_customizer_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_ad_customizer_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_ad_customizer_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_ad_customizer_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_ad_customizer_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_ad_customizer_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_ad_customizer_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_ad_customizer_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_ad_customizer_error_proto = out.File
- file_google_ads_googleads_v16_errors_ad_customizer_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_ad_customizer_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_ad_customizer_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_ad_customizer_error_proto = out.File
+ file_google_ads_googleads_v17_errors_ad_customizer_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_ad_customizer_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_ad_customizer_error_proto_depIdxs = nil
}
diff --git a/errors/ad_error.pb.go b/errors/ad_error.pb.go
index 526be2ee..4623f924 100644
--- a/errors/ad_error.pb.go
+++ b/errors/ad_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/ad_error.proto
+// source: google/ads/googleads/v17/errors/ad_error.proto
package errors
@@ -705,11 +705,11 @@ func (x AdErrorEnum_AdError) String() string {
}
func (AdErrorEnum_AdError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_ad_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_ad_error_proto_enumTypes[0].Descriptor()
}
func (AdErrorEnum_AdError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_ad_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_ad_error_proto_enumTypes[0]
}
func (x AdErrorEnum_AdError) Number() protoreflect.EnumNumber {
@@ -718,7 +718,7 @@ func (x AdErrorEnum_AdError) Number() protoreflect.EnumNumber {
// Deprecated: Use AdErrorEnum_AdError.Descriptor instead.
func (AdErrorEnum_AdError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_ad_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible ad errors.
@@ -731,7 +731,7 @@ type AdErrorEnum struct {
func (x *AdErrorEnum) Reset() {
*x = AdErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_ad_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -744,7 +744,7 @@ func (x *AdErrorEnum) String() string {
func (*AdErrorEnum) ProtoMessage() {}
func (x *AdErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_ad_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -757,17 +757,17 @@ func (x *AdErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdErrorEnum.ProtoReflect.Descriptor instead.
func (*AdErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_ad_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_ad_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_ad_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_ad_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_ad_error_proto_rawDesc = []byte{
0x0a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x22, 0xce, 0x28, 0x0a, 0x0b, 0x41, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0xbe, 0x28, 0x0a, 0x07, 0x41, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a,
0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b,
@@ -1095,41 +1095,41 @@ var file_google_ads_googleads_v16_errors_ad_error_proto_rawDesc = []byte{
0x5f, 0x43, 0x41, 0x52, 0x4f, 0x55, 0x53, 0x45, 0x4c, 0x5f, 0x43, 0x41, 0x52, 0x44, 0x53, 0x10,
0x9c, 0x01, 0x42, 0xec, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0c, 0x41, 0x64, 0x45, 0x72,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0c, 0x41, 0x64, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_ad_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_ad_error_proto_rawDescData = file_google_ads_googleads_v16_errors_ad_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_ad_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_ad_error_proto_rawDescData = file_google_ads_googleads_v17_errors_ad_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_ad_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_ad_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_ad_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_ad_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_ad_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_ad_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_ad_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_ad_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_ad_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_ad_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_ad_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_error_proto_goTypes = []interface{}{
- (AdErrorEnum_AdError)(0), // 0: google.ads.googleads.v16.errors.AdErrorEnum.AdError
- (*AdErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AdErrorEnum
+var file_google_ads_googleads_v17_errors_ad_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_error_proto_goTypes = []interface{}{
+ (AdErrorEnum_AdError)(0), // 0: google.ads.googleads.v17.errors.AdErrorEnum.AdError
+ (*AdErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AdErrorEnum
}
-var file_google_ads_googleads_v16_errors_ad_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_ad_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -1137,13 +1137,13 @@ var file_google_ads_googleads_v16_errors_ad_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_ad_error_proto_init() }
-func file_google_ads_googleads_v16_errors_ad_error_proto_init() {
- if File_google_ads_googleads_v16_errors_ad_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_ad_error_proto_init() }
+func file_google_ads_googleads_v17_errors_ad_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_ad_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_ad_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_ad_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdErrorEnum); i {
case 0:
return &v.state
@@ -1160,19 +1160,19 @@ func file_google_ads_googleads_v16_errors_ad_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_ad_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_ad_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_ad_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_ad_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_ad_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_ad_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_ad_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_ad_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_ad_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_ad_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_ad_error_proto = out.File
- file_google_ads_googleads_v16_errors_ad_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_ad_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_ad_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_ad_error_proto = out.File
+ file_google_ads_googleads_v17_errors_ad_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_ad_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_ad_error_proto_depIdxs = nil
}
diff --git a/errors/ad_group_ad_error.pb.go b/errors/ad_group_ad_error.pb.go
index 5c655f69..90b90b9a 100644
--- a/errors/ad_group_ad_error.pb.go
+++ b/errors/ad_group_ad_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/ad_group_ad_error.proto
+// source: google/ads/googleads/v17/errors/ad_group_ad_error.proto
package errors
@@ -114,11 +114,11 @@ func (x AdGroupAdErrorEnum_AdGroupAdError) String() string {
}
func (AdGroupAdErrorEnum_AdGroupAdError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_enumTypes[0].Descriptor()
}
func (AdGroupAdErrorEnum_AdGroupAdError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_enumTypes[0]
}
func (x AdGroupAdErrorEnum_AdGroupAdError) Number() protoreflect.EnumNumber {
@@ -127,7 +127,7 @@ func (x AdGroupAdErrorEnum_AdGroupAdError) Number() protoreflect.EnumNumber {
// Deprecated: Use AdGroupAdErrorEnum_AdGroupAdError.Descriptor instead.
func (AdGroupAdErrorEnum_AdGroupAdError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible ad group ad errors.
@@ -140,7 +140,7 @@ type AdGroupAdErrorEnum struct {
func (x *AdGroupAdErrorEnum) Reset() {
*x = AdGroupAdErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -153,7 +153,7 @@ func (x *AdGroupAdErrorEnum) String() string {
func (*AdGroupAdErrorEnum) ProtoMessage() {}
func (x *AdGroupAdErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -166,18 +166,18 @@ func (x *AdGroupAdErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroupAdErrorEnum.ProtoReflect.Descriptor instead.
func (*AdGroupAdErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_ad_group_ad_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_ad_group_ad_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xab, 0x03, 0x0a, 0x12, 0x41,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xab, 0x03, 0x0a, 0x12, 0x41,
0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x94, 0x03, 0x0a, 0x0e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46,
@@ -206,42 +206,42 @@ var file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_rawDesc = []byt
0x5f, 0x55, 0x50, 0x44, 0x41, 0x54, 0x45, 0x5f, 0x44, 0x45, 0x50, 0x52, 0x45, 0x43, 0x41, 0x54,
0x45, 0x44, 0x5f, 0x41, 0x44, 0x53, 0x10, 0x0c, 0x42, 0xf3, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x42, 0x13, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_rawDescData = file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_rawDescData = file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_goTypes = []interface{}{
- (AdGroupAdErrorEnum_AdGroupAdError)(0), // 0: google.ads.googleads.v16.errors.AdGroupAdErrorEnum.AdGroupAdError
- (*AdGroupAdErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AdGroupAdErrorEnum
+var file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_goTypes = []interface{}{
+ (AdGroupAdErrorEnum_AdGroupAdError)(0), // 0: google.ads.googleads.v17.errors.AdGroupAdErrorEnum.AdGroupAdError
+ (*AdGroupAdErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AdGroupAdErrorEnum
}
-var file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -249,13 +249,13 @@ var file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_depIdxs = []int
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_init() }
-func file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_init() {
- if File_google_ads_googleads_v16_errors_ad_group_ad_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_init() }
+func file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_ad_group_ad_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupAdErrorEnum); i {
case 0:
return &v.state
@@ -272,19 +272,19 @@ func file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_ad_group_ad_error_proto = out.File
- file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_ad_group_ad_error_proto = out.File
+ file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_depIdxs = nil
}
diff --git a/errors/ad_group_bid_modifier_error.pb.go b/errors/ad_group_bid_modifier_error.pb.go
index e5cc23f4..f48be32b 100644
--- a/errors/ad_group_bid_modifier_error.pb.go
+++ b/errors/ad_group_bid_modifier_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/ad_group_bid_modifier_error.proto
+// source: google/ads/googleads/v17/errors/ad_group_bid_modifier_error.proto
package errors
@@ -76,11 +76,11 @@ func (x AdGroupBidModifierErrorEnum_AdGroupBidModifierError) String() string {
}
func (AdGroupBidModifierErrorEnum_AdGroupBidModifierError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_enumTypes[0].Descriptor()
}
func (AdGroupBidModifierErrorEnum_AdGroupBidModifierError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_enumTypes[0]
}
func (x AdGroupBidModifierErrorEnum_AdGroupBidModifierError) Number() protoreflect.EnumNumber {
@@ -89,7 +89,7 @@ func (x AdGroupBidModifierErrorEnum_AdGroupBidModifierError) Number() protorefle
// Deprecated: Use AdGroupBidModifierErrorEnum_AdGroupBidModifierError.Descriptor instead.
func (AdGroupBidModifierErrorEnum_AdGroupBidModifierError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible ad group bid modifier errors.
@@ -102,7 +102,7 @@ type AdGroupBidModifierErrorEnum struct {
func (x *AdGroupBidModifierErrorEnum) Reset() {
*x = AdGroupBidModifierErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -115,7 +115,7 @@ func (x *AdGroupBidModifierErrorEnum) String() string {
func (*AdGroupBidModifierErrorEnum) ProtoMessage() {}
func (x *AdGroupBidModifierErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -128,18 +128,18 @@ func (x *AdGroupBidModifierErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroupBidModifierErrorEnum.ProtoReflect.Descriptor instead.
func (*AdGroupBidModifierErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_rawDesc = []byte{
0x0a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d,
0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x22, 0xb6, 0x01, 0x0a, 0x1b, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70,
0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x96, 0x01, 0x0a, 0x17, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70,
@@ -153,43 +153,43 @@ var file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_rawDe
0x41, 0x49, 0x47, 0x4e, 0x5f, 0x43, 0x52, 0x49, 0x54, 0x45, 0x52, 0x49, 0x4f, 0x4e, 0x5f, 0x42,
0x49, 0x44, 0x5f, 0x4d, 0x4f, 0x44, 0x49, 0x46, 0x49, 0x45, 0x52, 0x10, 0x03, 0x42, 0xfc, 0x01,
0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1c, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69,
0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
- 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_rawDescData = file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_rawDescData = file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_goTypes = []interface{}{
- (AdGroupBidModifierErrorEnum_AdGroupBidModifierError)(0), // 0: google.ads.googleads.v16.errors.AdGroupBidModifierErrorEnum.AdGroupBidModifierError
- (*AdGroupBidModifierErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AdGroupBidModifierErrorEnum
+var file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_goTypes = []interface{}{
+ (AdGroupBidModifierErrorEnum_AdGroupBidModifierError)(0), // 0: google.ads.googleads.v17.errors.AdGroupBidModifierErrorEnum.AdGroupBidModifierError
+ (*AdGroupBidModifierErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AdGroupBidModifierErrorEnum
}
-var file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -197,13 +197,13 @@ var file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_depId
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_init() }
-func file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_init() {
- if File_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_init() }
+func file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupBidModifierErrorEnum); i {
case 0:
return &v.state
@@ -220,19 +220,19 @@ func file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_init
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto = out.File
- file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto = out.File
+ file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_depIdxs = nil
}
diff --git a/errors/ad_group_criterion_customizer_error.pb.go b/errors/ad_group_criterion_customizer_error.pb.go
index d53b5f8b..a5ce51d8 100644
--- a/errors/ad_group_criterion_customizer_error.pb.go
+++ b/errors/ad_group_criterion_customizer_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/ad_group_criterion_customizer_error.proto
+// source: google/ads/googleads/v17/errors/ad_group_criterion_customizer_error.proto
package errors
@@ -71,11 +71,11 @@ func (x AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError) Str
}
func (AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_enumTypes[0].Descriptor()
}
func (AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_enumTypes[0]
}
func (x AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError) Num
// Deprecated: Use AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError.Descriptor instead.
func (AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible ad group criterion customizer errors.
@@ -97,7 +97,7 @@ type AdGroupCriterionCustomizerErrorEnum struct {
func (x *AdGroupCriterionCustomizerErrorEnum) Reset() {
*x = AdGroupCriterionCustomizerErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *AdGroupCriterionCustomizerErrorEnum) String() string {
func (*AdGroupCriterionCustomizerErrorEnum) ProtoMessage() {}
func (x *AdGroupCriterionCustomizerErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,19 +123,19 @@ func (x *AdGroupCriterionCustomizerErrorEnum) ProtoReflect() protoreflect.Messag
// Deprecated: Use AdGroupCriterionCustomizerErrorEnum.ProtoReflect.Descriptor instead.
func (*AdGroupCriterionCustomizerErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_rawDesc = []byte{
0x0a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65,
0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x84, 0x01, 0x0a,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x84, 0x01, 0x0a,
0x23, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f,
0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5d, 0x0a, 0x1f, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43,
@@ -146,43 +146,43 @@ var file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_pro
0x4f, 0x4e, 0x5f, 0x49, 0x53, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x4b, 0x45, 0x59, 0x57, 0x4f, 0x52,
0x44, 0x10, 0x02, 0x42, 0x84, 0x02, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x24, 0x41, 0x64, 0x47,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x24, 0x41, 0x64, 0x47,
0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73,
0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_rawDescData = file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_rawDescData = file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_goTypes = []interface{}{
- (AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError)(0), // 0: google.ads.googleads.v16.errors.AdGroupCriterionCustomizerErrorEnum.AdGroupCriterionCustomizerError
- (*AdGroupCriterionCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AdGroupCriterionCustomizerErrorEnum
+var file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_goTypes = []interface{}{
+ (AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError)(0), // 0: google.ads.googleads.v17.errors.AdGroupCriterionCustomizerErrorEnum.AdGroupCriterionCustomizerError
+ (*AdGroupCriterionCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AdGroupCriterionCustomizerErrorEnum
}
-var file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_pro
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_init() }
-func file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_init() {
- if File_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_init() }
+func file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupCriterionCustomizerErrorEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_pr
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto = out.File
- file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto = out.File
+ file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_depIdxs = nil
}
diff --git a/errors/ad_group_criterion_error.pb.go b/errors/ad_group_criterion_error.pb.go
index 7d319991..febd77c0 100644
--- a/errors/ad_group_criterion_error.pb.go
+++ b/errors/ad_group_criterion_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/ad_group_criterion_error.proto
+// source: google/ads/googleads/v17/errors/ad_group_criterion_error.proto
package errors
@@ -188,11 +188,11 @@ func (x AdGroupCriterionErrorEnum_AdGroupCriterionError) String() string {
}
func (AdGroupCriterionErrorEnum_AdGroupCriterionError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_enumTypes[0].Descriptor()
}
func (AdGroupCriterionErrorEnum_AdGroupCriterionError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_enumTypes[0]
}
func (x AdGroupCriterionErrorEnum_AdGroupCriterionError) Number() protoreflect.EnumNumber {
@@ -201,7 +201,7 @@ func (x AdGroupCriterionErrorEnum_AdGroupCriterionError) Number() protoreflect.E
// Deprecated: Use AdGroupCriterionErrorEnum_AdGroupCriterionError.Descriptor instead.
func (AdGroupCriterionErrorEnum_AdGroupCriterionError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible ad group criterion errors.
@@ -214,7 +214,7 @@ type AdGroupCriterionErrorEnum struct {
func (x *AdGroupCriterionErrorEnum) Reset() {
*x = AdGroupCriterionErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -227,7 +227,7 @@ func (x *AdGroupCriterionErrorEnum) String() string {
func (*AdGroupCriterionErrorEnum) ProtoMessage() {}
func (x *AdGroupCriterionErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -240,18 +240,18 @@ func (x *AdGroupCriterionErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroupCriterionErrorEnum.ProtoReflect.Descriptor instead.
func (*AdGroupCriterionErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_ad_group_criterion_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_ad_group_criterion_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65,
0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x22, 0xe0, 0x09, 0x0a, 0x19, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69,
0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0xc2, 0x09, 0x0a, 0x15, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65,
@@ -332,42 +332,42 @@ var file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_rawDesc
0x46, 0x4f, 0x52, 0x5f, 0x43, 0x52, 0x49, 0x54, 0x45, 0x52, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59,
0x50, 0x45, 0x10, 0x26, 0x42, 0xfa, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a, 0x41, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a, 0x41, 0x64,
0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_rawDescData = file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_rawDescData = file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_goTypes = []interface{}{
- (AdGroupCriterionErrorEnum_AdGroupCriterionError)(0), // 0: google.ads.googleads.v16.errors.AdGroupCriterionErrorEnum.AdGroupCriterionError
- (*AdGroupCriterionErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AdGroupCriterionErrorEnum
+var file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_goTypes = []interface{}{
+ (AdGroupCriterionErrorEnum_AdGroupCriterionError)(0), // 0: google.ads.googleads.v17.errors.AdGroupCriterionErrorEnum.AdGroupCriterionError
+ (*AdGroupCriterionErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AdGroupCriterionErrorEnum
}
-var file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -375,13 +375,13 @@ var file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_init() }
-func file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_init() {
- if File_google_ads_googleads_v16_errors_ad_group_criterion_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_init() }
+func file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_ad_group_criterion_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupCriterionErrorEnum); i {
case 0:
return &v.state
@@ -398,19 +398,19 @@ func file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_ad_group_criterion_error_proto = out.File
- file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_ad_group_criterion_error_proto = out.File
+ file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_depIdxs = nil
}
diff --git a/errors/ad_group_customizer_error.pb.go b/errors/ad_group_customizer_error.pb.go
index 6c18bbf9..b747becf 100644
--- a/errors/ad_group_customizer_error.pb.go
+++ b/errors/ad_group_customizer_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/ad_group_customizer_error.proto
+// source: google/ads/googleads/v17/errors/ad_group_customizer_error.proto
package errors
@@ -67,11 +67,11 @@ func (x AdGroupCustomizerErrorEnum_AdGroupCustomizerError) String() string {
}
func (AdGroupCustomizerErrorEnum_AdGroupCustomizerError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_enumTypes[0].Descriptor()
}
func (AdGroupCustomizerErrorEnum_AdGroupCustomizerError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_enumTypes[0]
}
func (x AdGroupCustomizerErrorEnum_AdGroupCustomizerError) Number() protoreflect.EnumNumber {
@@ -80,7 +80,7 @@ func (x AdGroupCustomizerErrorEnum_AdGroupCustomizerError) Number() protoreflect
// Deprecated: Use AdGroupCustomizerErrorEnum_AdGroupCustomizerError.Descriptor instead.
func (AdGroupCustomizerErrorEnum_AdGroupCustomizerError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible ad group customizer errors.
@@ -93,7 +93,7 @@ type AdGroupCustomizerErrorEnum struct {
func (x *AdGroupCustomizerErrorEnum) Reset() {
*x = AdGroupCustomizerErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -106,7 +106,7 @@ func (x *AdGroupCustomizerErrorEnum) String() string {
func (*AdGroupCustomizerErrorEnum) ProtoMessage() {}
func (x *AdGroupCustomizerErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -119,18 +119,18 @@ func (x *AdGroupCustomizerErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroupCustomizerErrorEnum.ProtoReflect.Descriptor instead.
func (*AdGroupCustomizerErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_ad_group_customizer_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_ad_group_customizer_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f,
0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x22, 0x54, 0x0a, 0x1a, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73,
0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x36, 0x0a, 0x16, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f,
@@ -138,42 +138,42 @@ var file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_rawDesc
0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55,
0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x42, 0xfb, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x42, 0x1b, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69,
0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_rawDescData = file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_rawDescData = file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_goTypes = []interface{}{
- (AdGroupCustomizerErrorEnum_AdGroupCustomizerError)(0), // 0: google.ads.googleads.v16.errors.AdGroupCustomizerErrorEnum.AdGroupCustomizerError
- (*AdGroupCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AdGroupCustomizerErrorEnum
+var file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_goTypes = []interface{}{
+ (AdGroupCustomizerErrorEnum_AdGroupCustomizerError)(0), // 0: google.ads.googleads.v17.errors.AdGroupCustomizerErrorEnum.AdGroupCustomizerError
+ (*AdGroupCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AdGroupCustomizerErrorEnum
}
-var file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -181,13 +181,13 @@ var file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_init() }
-func file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_init() {
- if File_google_ads_googleads_v16_errors_ad_group_customizer_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_init() }
+func file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_ad_group_customizer_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupCustomizerErrorEnum); i {
case 0:
return &v.state
@@ -204,19 +204,19 @@ func file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_ad_group_customizer_error_proto = out.File
- file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_ad_group_customizer_error_proto = out.File
+ file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_depIdxs = nil
}
diff --git a/errors/ad_group_error.pb.go b/errors/ad_group_error.pb.go
index 79ef225c..7aa8c578 100644
--- a/errors/ad_group_error.pb.go
+++ b/errors/ad_group_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/ad_group_error.proto
+// source: google/ads/googleads/v17/errors/ad_group_error.proto
package errors
@@ -141,11 +141,11 @@ func (x AdGroupErrorEnum_AdGroupError) String() string {
}
func (AdGroupErrorEnum_AdGroupError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_ad_group_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_ad_group_error_proto_enumTypes[0].Descriptor()
}
func (AdGroupErrorEnum_AdGroupError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_ad_group_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_ad_group_error_proto_enumTypes[0]
}
func (x AdGroupErrorEnum_AdGroupError) Number() protoreflect.EnumNumber {
@@ -154,7 +154,7 @@ func (x AdGroupErrorEnum_AdGroupError) Number() protoreflect.EnumNumber {
// Deprecated: Use AdGroupErrorEnum_AdGroupError.Descriptor instead.
func (AdGroupErrorEnum_AdGroupError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_group_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_ad_group_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible ad group errors.
@@ -167,7 +167,7 @@ type AdGroupErrorEnum struct {
func (x *AdGroupErrorEnum) Reset() {
*x = AdGroupErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_ad_group_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_group_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -180,7 +180,7 @@ func (x *AdGroupErrorEnum) String() string {
func (*AdGroupErrorEnum) ProtoMessage() {}
func (x *AdGroupErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_ad_group_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_group_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -193,17 +193,17 @@ func (x *AdGroupErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroupErrorEnum.ProtoReflect.Descriptor instead.
func (*AdGroupErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_group_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_ad_group_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_ad_group_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_ad_group_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_ad_group_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_ad_group_error_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xf2, 0x05, 0x0a, 0x10, 0x41, 0x64, 0x47, 0x72,
0x6f, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xdd, 0x05, 0x0a,
0x0c, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a,
@@ -253,42 +253,42 @@ var file_google_ads_googleads_v16_errors_ad_group_error_proto_rawDesc = []byte{
0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x12, 0x12, 0x12, 0x0a, 0x0e, 0x49, 0x4e, 0x56, 0x41,
0x4c, 0x49, 0x44, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x10, 0x13, 0x42, 0xf1, 0x01, 0x0a,
0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x42, 0x11, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_ad_group_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_ad_group_error_proto_rawDescData = file_google_ads_googleads_v16_errors_ad_group_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_ad_group_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_ad_group_error_proto_rawDescData = file_google_ads_googleads_v17_errors_ad_group_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_ad_group_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_ad_group_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_ad_group_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_ad_group_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_ad_group_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_ad_group_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_ad_group_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_ad_group_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_ad_group_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_ad_group_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_ad_group_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_group_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_group_error_proto_goTypes = []interface{}{
- (AdGroupErrorEnum_AdGroupError)(0), // 0: google.ads.googleads.v16.errors.AdGroupErrorEnum.AdGroupError
- (*AdGroupErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AdGroupErrorEnum
+var file_google_ads_googleads_v17_errors_ad_group_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_group_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_group_error_proto_goTypes = []interface{}{
+ (AdGroupErrorEnum_AdGroupError)(0), // 0: google.ads.googleads.v17.errors.AdGroupErrorEnum.AdGroupError
+ (*AdGroupErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AdGroupErrorEnum
}
-var file_google_ads_googleads_v16_errors_ad_group_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_ad_group_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -296,13 +296,13 @@ var file_google_ads_googleads_v16_errors_ad_group_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_ad_group_error_proto_init() }
-func file_google_ads_googleads_v16_errors_ad_group_error_proto_init() {
- if File_google_ads_googleads_v16_errors_ad_group_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_ad_group_error_proto_init() }
+func file_google_ads_googleads_v17_errors_ad_group_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_ad_group_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_ad_group_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_ad_group_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupErrorEnum); i {
case 0:
return &v.state
@@ -319,19 +319,19 @@ func file_google_ads_googleads_v16_errors_ad_group_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_ad_group_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_ad_group_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_ad_group_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_ad_group_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_ad_group_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_ad_group_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_ad_group_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_ad_group_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_ad_group_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_ad_group_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_ad_group_error_proto = out.File
- file_google_ads_googleads_v16_errors_ad_group_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_ad_group_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_ad_group_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_ad_group_error_proto = out.File
+ file_google_ads_googleads_v17_errors_ad_group_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_ad_group_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_ad_group_error_proto_depIdxs = nil
}
diff --git a/errors/ad_group_feed_error.pb.go b/errors/ad_group_feed_error.pb.go
index b227fe9d..629caaa6 100644
--- a/errors/ad_group_feed_error.pb.go
+++ b/errors/ad_group_feed_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/ad_group_feed_error.proto
+// source: google/ads/googleads/v17/errors/ad_group_feed_error.proto
package errors
@@ -97,11 +97,11 @@ func (x AdGroupFeedErrorEnum_AdGroupFeedError) String() string {
}
func (AdGroupFeedErrorEnum_AdGroupFeedError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_enumTypes[0].Descriptor()
}
func (AdGroupFeedErrorEnum_AdGroupFeedError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_enumTypes[0]
}
func (x AdGroupFeedErrorEnum_AdGroupFeedError) Number() protoreflect.EnumNumber {
@@ -110,7 +110,7 @@ func (x AdGroupFeedErrorEnum_AdGroupFeedError) Number() protoreflect.EnumNumber
// Deprecated: Use AdGroupFeedErrorEnum_AdGroupFeedError.Descriptor instead.
func (AdGroupFeedErrorEnum_AdGroupFeedError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible ad group feed errors.
@@ -123,7 +123,7 @@ type AdGroupFeedErrorEnum struct {
func (x *AdGroupFeedErrorEnum) Reset() {
*x = AdGroupFeedErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -136,7 +136,7 @@ func (x *AdGroupFeedErrorEnum) String() string {
func (*AdGroupFeedErrorEnum) ProtoMessage() {}
func (x *AdGroupFeedErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -149,18 +149,18 @@ func (x *AdGroupFeedErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroupFeedErrorEnum.ProtoReflect.Descriptor instead.
func (*AdGroupFeedErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_ad_group_feed_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_ad_group_feed_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xdc, 0x02, 0x0a,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xdc, 0x02, 0x0a,
0x14, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xc3, 0x02, 0x0a, 0x10, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75,
0x70, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e,
@@ -184,42 +184,42 @@ var file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_rawDesc = []b
0x4e, 0x47, 0x5f, 0x4c, 0x4f, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x43, 0x55, 0x53, 0x54,
0x4f, 0x4d, 0x45, 0x52, 0x5f, 0x46, 0x45, 0x45, 0x44, 0x10, 0x08, 0x42, 0xf5, 0x01, 0x0a, 0x23,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x42, 0x15, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_rawDescData = file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_rawDescData = file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_goTypes = []interface{}{
- (AdGroupFeedErrorEnum_AdGroupFeedError)(0), // 0: google.ads.googleads.v16.errors.AdGroupFeedErrorEnum.AdGroupFeedError
- (*AdGroupFeedErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AdGroupFeedErrorEnum
+var file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_goTypes = []interface{}{
+ (AdGroupFeedErrorEnum_AdGroupFeedError)(0), // 0: google.ads.googleads.v17.errors.AdGroupFeedErrorEnum.AdGroupFeedError
+ (*AdGroupFeedErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AdGroupFeedErrorEnum
}
-var file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -227,13 +227,13 @@ var file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_init() }
-func file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_init() {
- if File_google_ads_googleads_v16_errors_ad_group_feed_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_init() }
+func file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_ad_group_feed_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupFeedErrorEnum); i {
case 0:
return &v.state
@@ -250,19 +250,19 @@ func file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_ad_group_feed_error_proto = out.File
- file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_ad_group_feed_error_proto = out.File
+ file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_depIdxs = nil
}
diff --git a/errors/ad_parameter_error.pb.go b/errors/ad_parameter_error.pb.go
index b74c4134..8b8a9450 100644
--- a/errors/ad_parameter_error.pb.go
+++ b/errors/ad_parameter_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/ad_parameter_error.proto
+// source: google/ads/googleads/v17/errors/ad_parameter_error.proto
package errors
@@ -75,11 +75,11 @@ func (x AdParameterErrorEnum_AdParameterError) String() string {
}
func (AdParameterErrorEnum_AdParameterError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_ad_parameter_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_ad_parameter_error_proto_enumTypes[0].Descriptor()
}
func (AdParameterErrorEnum_AdParameterError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_ad_parameter_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_ad_parameter_error_proto_enumTypes[0]
}
func (x AdParameterErrorEnum_AdParameterError) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x AdParameterErrorEnum_AdParameterError) Number() protoreflect.EnumNumber
// Deprecated: Use AdParameterErrorEnum_AdParameterError.Descriptor instead.
func (AdParameterErrorEnum_AdParameterError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_parameter_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_ad_parameter_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible ad parameter errors.
@@ -101,7 +101,7 @@ type AdParameterErrorEnum struct {
func (x *AdParameterErrorEnum) Reset() {
*x = AdParameterErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_ad_parameter_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_parameter_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *AdParameterErrorEnum) String() string {
func (*AdParameterErrorEnum) ProtoMessage() {}
func (x *AdParameterErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_ad_parameter_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_parameter_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *AdParameterErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdParameterErrorEnum.ProtoReflect.Descriptor instead.
func (*AdParameterErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_parameter_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_ad_parameter_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_ad_parameter_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_ad_parameter_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_ad_parameter_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_ad_parameter_error_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x5f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x93, 0x01, 0x0a, 0x14,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x93, 0x01, 0x0a, 0x14,
0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x7b, 0x0a, 0x10, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65,
0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50,
@@ -150,42 +150,42 @@ var file_google_ads_googleads_v16_errors_ad_parameter_error_proto_rawDesc = []by
0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x5f, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x10,
0x03, 0x42, 0xf5, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, 0x41, 0x64, 0x50, 0x61, 0x72,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, 0x41, 0x64, 0x50, 0x61, 0x72,
0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_errors_ad_parameter_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_ad_parameter_error_proto_rawDescData = file_google_ads_googleads_v16_errors_ad_parameter_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_ad_parameter_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_ad_parameter_error_proto_rawDescData = file_google_ads_googleads_v17_errors_ad_parameter_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_ad_parameter_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_ad_parameter_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_ad_parameter_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_ad_parameter_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_ad_parameter_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_ad_parameter_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_ad_parameter_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_ad_parameter_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_ad_parameter_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_ad_parameter_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_ad_parameter_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_parameter_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_parameter_error_proto_goTypes = []interface{}{
- (AdParameterErrorEnum_AdParameterError)(0), // 0: google.ads.googleads.v16.errors.AdParameterErrorEnum.AdParameterError
- (*AdParameterErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AdParameterErrorEnum
+var file_google_ads_googleads_v17_errors_ad_parameter_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_parameter_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_parameter_error_proto_goTypes = []interface{}{
+ (AdParameterErrorEnum_AdParameterError)(0), // 0: google.ads.googleads.v17.errors.AdParameterErrorEnum.AdParameterError
+ (*AdParameterErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AdParameterErrorEnum
}
-var file_google_ads_googleads_v16_errors_ad_parameter_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_ad_parameter_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -193,13 +193,13 @@ var file_google_ads_googleads_v16_errors_ad_parameter_error_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_ad_parameter_error_proto_init() }
-func file_google_ads_googleads_v16_errors_ad_parameter_error_proto_init() {
- if File_google_ads_googleads_v16_errors_ad_parameter_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_ad_parameter_error_proto_init() }
+func file_google_ads_googleads_v17_errors_ad_parameter_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_ad_parameter_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_ad_parameter_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_ad_parameter_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdParameterErrorEnum); i {
case 0:
return &v.state
@@ -216,19 +216,19 @@ func file_google_ads_googleads_v16_errors_ad_parameter_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_ad_parameter_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_ad_parameter_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_ad_parameter_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_ad_parameter_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_ad_parameter_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_ad_parameter_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_ad_parameter_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_ad_parameter_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_ad_parameter_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_ad_parameter_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_ad_parameter_error_proto = out.File
- file_google_ads_googleads_v16_errors_ad_parameter_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_ad_parameter_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_ad_parameter_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_ad_parameter_error_proto = out.File
+ file_google_ads_googleads_v17_errors_ad_parameter_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_ad_parameter_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_ad_parameter_error_proto_depIdxs = nil
}
diff --git a/errors/ad_sharing_error.pb.go b/errors/ad_sharing_error.pb.go
index accf55ba..dcb02bd5 100644
--- a/errors/ad_sharing_error.pb.go
+++ b/errors/ad_sharing_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/ad_sharing_error.proto
+// source: google/ads/googleads/v17/errors/ad_sharing_error.proto
package errors
@@ -80,11 +80,11 @@ func (x AdSharingErrorEnum_AdSharingError) String() string {
}
func (AdSharingErrorEnum_AdSharingError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_ad_sharing_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_ad_sharing_error_proto_enumTypes[0].Descriptor()
}
func (AdSharingErrorEnum_AdSharingError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_ad_sharing_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_ad_sharing_error_proto_enumTypes[0]
}
func (x AdSharingErrorEnum_AdSharingError) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x AdSharingErrorEnum_AdSharingError) Number() protoreflect.EnumNumber {
// Deprecated: Use AdSharingErrorEnum_AdSharingError.Descriptor instead.
func (AdSharingErrorEnum_AdSharingError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_sharing_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_ad_sharing_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible ad sharing errors.
@@ -106,7 +106,7 @@ type AdSharingErrorEnum struct {
func (x *AdSharingErrorEnum) Reset() {
*x = AdSharingErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_ad_sharing_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_sharing_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *AdSharingErrorEnum) String() string {
func (*AdSharingErrorEnum) ProtoMessage() {}
func (x *AdSharingErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_ad_sharing_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_ad_sharing_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,18 +132,18 @@ func (x *AdSharingErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdSharingErrorEnum.ProtoReflect.Descriptor instead.
func (*AdSharingErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_ad_sharing_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_ad_sharing_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_ad_sharing_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_ad_sharing_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_ad_sharing_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_ad_sharing_error_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x64, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa9, 0x01, 0x0a, 0x12, 0x41, 0x64,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa9, 0x01, 0x0a, 0x12, 0x41, 0x64,
0x53, 0x68, 0x61, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x92, 0x01, 0x0a, 0x0e, 0x41, 0x64, 0x53, 0x68, 0x61, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
@@ -156,42 +156,42 @@ var file_google_ads_googleads_v16_errors_ad_sharing_error_proto_rawDesc = []byte
0x54, 0x5f, 0x53, 0x48, 0x41, 0x52, 0x45, 0x5f, 0x49, 0x4e, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45,
0x5f, 0x41, 0x44, 0x10, 0x04, 0x42, 0xf3, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x13, 0x41,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x13, 0x41,
0x64, 0x53, 0x68, 0x61, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_ad_sharing_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_ad_sharing_error_proto_rawDescData = file_google_ads_googleads_v16_errors_ad_sharing_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_ad_sharing_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_ad_sharing_error_proto_rawDescData = file_google_ads_googleads_v17_errors_ad_sharing_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_ad_sharing_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_ad_sharing_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_ad_sharing_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_ad_sharing_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_ad_sharing_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_ad_sharing_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_ad_sharing_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_ad_sharing_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_ad_sharing_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_ad_sharing_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_ad_sharing_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_sharing_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_ad_sharing_error_proto_goTypes = []interface{}{
- (AdSharingErrorEnum_AdSharingError)(0), // 0: google.ads.googleads.v16.errors.AdSharingErrorEnum.AdSharingError
- (*AdSharingErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AdSharingErrorEnum
+var file_google_ads_googleads_v17_errors_ad_sharing_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_sharing_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_ad_sharing_error_proto_goTypes = []interface{}{
+ (AdSharingErrorEnum_AdSharingError)(0), // 0: google.ads.googleads.v17.errors.AdSharingErrorEnum.AdSharingError
+ (*AdSharingErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AdSharingErrorEnum
}
-var file_google_ads_googleads_v16_errors_ad_sharing_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_ad_sharing_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -199,13 +199,13 @@ var file_google_ads_googleads_v16_errors_ad_sharing_error_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_ad_sharing_error_proto_init() }
-func file_google_ads_googleads_v16_errors_ad_sharing_error_proto_init() {
- if File_google_ads_googleads_v16_errors_ad_sharing_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_ad_sharing_error_proto_init() }
+func file_google_ads_googleads_v17_errors_ad_sharing_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_ad_sharing_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_ad_sharing_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_ad_sharing_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdSharingErrorEnum); i {
case 0:
return &v.state
@@ -222,19 +222,19 @@ func file_google_ads_googleads_v16_errors_ad_sharing_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_ad_sharing_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_ad_sharing_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_ad_sharing_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_ad_sharing_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_ad_sharing_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_ad_sharing_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_ad_sharing_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_ad_sharing_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_ad_sharing_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_ad_sharing_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_ad_sharing_error_proto = out.File
- file_google_ads_googleads_v16_errors_ad_sharing_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_ad_sharing_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_ad_sharing_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_ad_sharing_error_proto = out.File
+ file_google_ads_googleads_v17_errors_ad_sharing_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_ad_sharing_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_ad_sharing_error_proto_depIdxs = nil
}
diff --git a/errors/adx_error.pb.go b/errors/adx_error.pb.go
index dc6d7bef..1950fa7a 100644
--- a/errors/adx_error.pb.go
+++ b/errors/adx_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/adx_error.proto
+// source: google/ads/googleads/v17/errors/adx_error.proto
package errors
@@ -71,11 +71,11 @@ func (x AdxErrorEnum_AdxError) String() string {
}
func (AdxErrorEnum_AdxError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_adx_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_adx_error_proto_enumTypes[0].Descriptor()
}
func (AdxErrorEnum_AdxError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_adx_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_adx_error_proto_enumTypes[0]
}
func (x AdxErrorEnum_AdxError) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x AdxErrorEnum_AdxError) Number() protoreflect.EnumNumber {
// Deprecated: Use AdxErrorEnum_AdxError.Descriptor instead.
func (AdxErrorEnum_AdxError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_adx_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_adx_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible adx errors.
@@ -97,7 +97,7 @@ type AdxErrorEnum struct {
func (x *AdxErrorEnum) Reset() {
*x = AdxErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_adx_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_adx_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *AdxErrorEnum) String() string {
func (*AdxErrorEnum) ProtoMessage() {}
func (x *AdxErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_adx_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_adx_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,17 +123,17 @@ func (x *AdxErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdxErrorEnum.ProtoReflect.Descriptor instead.
func (*AdxErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_adx_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_adx_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_adx_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_adx_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_adx_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_adx_error_proto_rawDesc = []byte{
0x0a, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x64, 0x78, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x22, 0x51, 0x0a, 0x0c, 0x41, 0x64, 0x78, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0x41, 0x0a, 0x08, 0x41, 0x64, 0x78, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f,
0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12,
@@ -141,41 +141,41 @@ var file_google_ads_googleads_v16_errors_adx_error_proto_rawDesc = []byte{
0x55, 0x4e, 0x53, 0x55, 0x50, 0x50, 0x4f, 0x52, 0x54, 0x45, 0x44, 0x5f, 0x46, 0x45, 0x41, 0x54,
0x55, 0x52, 0x45, 0x10, 0x02, 0x42, 0xed, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0d, 0x41,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0d, 0x41,
0x64, 0x78, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_adx_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_adx_error_proto_rawDescData = file_google_ads_googleads_v16_errors_adx_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_adx_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_adx_error_proto_rawDescData = file_google_ads_googleads_v17_errors_adx_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_adx_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_adx_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_adx_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_adx_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_adx_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_adx_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_adx_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_adx_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_adx_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_adx_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_adx_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_adx_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_adx_error_proto_goTypes = []interface{}{
- (AdxErrorEnum_AdxError)(0), // 0: google.ads.googleads.v16.errors.AdxErrorEnum.AdxError
- (*AdxErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AdxErrorEnum
+var file_google_ads_googleads_v17_errors_adx_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_adx_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_adx_error_proto_goTypes = []interface{}{
+ (AdxErrorEnum_AdxError)(0), // 0: google.ads.googleads.v17.errors.AdxErrorEnum.AdxError
+ (*AdxErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AdxErrorEnum
}
-var file_google_ads_googleads_v16_errors_adx_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_adx_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -183,13 +183,13 @@ var file_google_ads_googleads_v16_errors_adx_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_adx_error_proto_init() }
-func file_google_ads_googleads_v16_errors_adx_error_proto_init() {
- if File_google_ads_googleads_v16_errors_adx_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_adx_error_proto_init() }
+func file_google_ads_googleads_v17_errors_adx_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_adx_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_adx_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_adx_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdxErrorEnum); i {
case 0:
return &v.state
@@ -206,19 +206,19 @@ func file_google_ads_googleads_v16_errors_adx_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_adx_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_adx_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_adx_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_adx_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_adx_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_adx_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_adx_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_adx_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_adx_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_adx_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_adx_error_proto = out.File
- file_google_ads_googleads_v16_errors_adx_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_adx_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_adx_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_adx_error_proto = out.File
+ file_google_ads_googleads_v17_errors_adx_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_adx_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_adx_error_proto_depIdxs = nil
}
diff --git a/errors/asset_error.pb.go b/errors/asset_error.pb.go
index b007589f..f5ea53a4 100644
--- a/errors/asset_error.pb.go
+++ b/errors/asset_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/asset_error.proto
+// source: google/ads/googleads/v17/errors/asset_error.proto
package errors
@@ -221,11 +221,11 @@ func (x AssetErrorEnum_AssetError) String() string {
}
func (AssetErrorEnum_AssetError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_asset_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_asset_error_proto_enumTypes[0].Descriptor()
}
func (AssetErrorEnum_AssetError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_asset_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_asset_error_proto_enumTypes[0]
}
func (x AssetErrorEnum_AssetError) Number() protoreflect.EnumNumber {
@@ -234,7 +234,7 @@ func (x AssetErrorEnum_AssetError) Number() protoreflect.EnumNumber {
// Deprecated: Use AssetErrorEnum_AssetError.Descriptor instead.
func (AssetErrorEnum_AssetError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_asset_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_asset_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible asset errors.
@@ -247,7 +247,7 @@ type AssetErrorEnum struct {
func (x *AssetErrorEnum) Reset() {
*x = AssetErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_asset_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_asset_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -260,7 +260,7 @@ func (x *AssetErrorEnum) String() string {
func (*AssetErrorEnum) ProtoMessage() {}
func (x *AssetErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_asset_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_asset_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -273,17 +273,17 @@ func (x *AssetErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetErrorEnum.ProtoReflect.Descriptor instead.
func (*AssetErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_asset_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_asset_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_asset_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_asset_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_asset_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_asset_error_proto_rawDesc = []byte{
0x0a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x22, 0xd7, 0x0b, 0x0a, 0x0e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xc4, 0x0b, 0x0a, 0x0a, 0x41, 0x73, 0x73, 0x65,
0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
@@ -379,42 +379,42 @@ var file_google_ads_googleads_v16_errors_asset_error_proto_rawDesc = []byte{
0x50, 0x41, 0x47, 0x45, 0x5f, 0x46, 0x45, 0x45, 0x44, 0x5f, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49,
0x44, 0x5f, 0x4c, 0x41, 0x42, 0x45, 0x4c, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x10, 0x26, 0x42, 0xef,
0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_asset_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_asset_error_proto_rawDescData = file_google_ads_googleads_v16_errors_asset_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_asset_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_asset_error_proto_rawDescData = file_google_ads_googleads_v17_errors_asset_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_asset_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_asset_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_asset_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_asset_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_asset_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_asset_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_asset_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_asset_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_asset_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_asset_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_asset_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_asset_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_asset_error_proto_goTypes = []interface{}{
- (AssetErrorEnum_AssetError)(0), // 0: google.ads.googleads.v16.errors.AssetErrorEnum.AssetError
- (*AssetErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AssetErrorEnum
+var file_google_ads_googleads_v17_errors_asset_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_asset_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_asset_error_proto_goTypes = []interface{}{
+ (AssetErrorEnum_AssetError)(0), // 0: google.ads.googleads.v17.errors.AssetErrorEnum.AssetError
+ (*AssetErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AssetErrorEnum
}
-var file_google_ads_googleads_v16_errors_asset_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_asset_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -422,13 +422,13 @@ var file_google_ads_googleads_v16_errors_asset_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_asset_error_proto_init() }
-func file_google_ads_googleads_v16_errors_asset_error_proto_init() {
- if File_google_ads_googleads_v16_errors_asset_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_asset_error_proto_init() }
+func file_google_ads_googleads_v17_errors_asset_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_asset_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_asset_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_asset_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetErrorEnum); i {
case 0:
return &v.state
@@ -445,19 +445,19 @@ func file_google_ads_googleads_v16_errors_asset_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_asset_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_asset_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_asset_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_asset_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_asset_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_asset_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_asset_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_asset_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_asset_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_asset_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_asset_error_proto = out.File
- file_google_ads_googleads_v16_errors_asset_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_asset_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_asset_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_asset_error_proto = out.File
+ file_google_ads_googleads_v17_errors_asset_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_asset_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_asset_error_proto_depIdxs = nil
}
diff --git a/errors/asset_group_asset_error.pb.go b/errors/asset_group_asset_error.pb.go
index 16cbaceb..85f7256a 100644
--- a/errors/asset_group_asset_error.pb.go
+++ b/errors/asset_group_asset_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/asset_group_asset_error.proto
+// source: google/ads/googleads/v17/errors/asset_group_asset_error.proto
package errors
@@ -84,11 +84,11 @@ func (x AssetGroupAssetErrorEnum_AssetGroupAssetError) String() string {
}
func (AssetGroupAssetErrorEnum_AssetGroupAssetError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_enumTypes[0].Descriptor()
}
func (AssetGroupAssetErrorEnum_AssetGroupAssetError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_enumTypes[0]
}
func (x AssetGroupAssetErrorEnum_AssetGroupAssetError) Number() protoreflect.EnumNumber {
@@ -97,7 +97,7 @@ func (x AssetGroupAssetErrorEnum_AssetGroupAssetError) Number() protoreflect.Enu
// Deprecated: Use AssetGroupAssetErrorEnum_AssetGroupAssetError.Descriptor instead.
func (AssetGroupAssetErrorEnum_AssetGroupAssetError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible asset group asset errors.
@@ -110,7 +110,7 @@ type AssetGroupAssetErrorEnum struct {
func (x *AssetGroupAssetErrorEnum) Reset() {
*x = AssetGroupAssetErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -123,7 +123,7 @@ func (x *AssetGroupAssetErrorEnum) String() string {
func (*AssetGroupAssetErrorEnum) ProtoMessage() {}
func (x *AssetGroupAssetErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -136,18 +136,18 @@ func (x *AssetGroupAssetErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetGroupAssetErrorEnum.ProtoReflect.Descriptor instead.
func (*AssetGroupAssetErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_asset_group_asset_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_asset_group_asset_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73,
0x73, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x22, 0xeb, 0x01, 0x0a, 0x18, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41,
0x73, 0x73, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xce, 0x01,
0x0a, 0x14, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65,
@@ -164,43 +164,43 @@ var file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_rawDesc =
0x41, 0x53, 0x53, 0x45, 0x54, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x4c, 0x49, 0x4e, 0x4b, 0x45, 0x44,
0x5f, 0x54, 0x4f, 0x5f, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x10, 0x05, 0x42, 0xf9,
0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x19, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f,
0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_rawDescData = file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_rawDescData = file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_goTypes = []interface{}{
- (AssetGroupAssetErrorEnum_AssetGroupAssetError)(0), // 0: google.ads.googleads.v16.errors.AssetGroupAssetErrorEnum.AssetGroupAssetError
- (*AssetGroupAssetErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AssetGroupAssetErrorEnum
+var file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_goTypes = []interface{}{
+ (AssetGroupAssetErrorEnum_AssetGroupAssetError)(0), // 0: google.ads.googleads.v17.errors.AssetGroupAssetErrorEnum.AssetGroupAssetError
+ (*AssetGroupAssetErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AssetGroupAssetErrorEnum
}
-var file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -208,13 +208,13 @@ var file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_init() }
-func file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_init() {
- if File_google_ads_googleads_v16_errors_asset_group_asset_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_init() }
+func file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_asset_group_asset_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetGroupAssetErrorEnum); i {
case 0:
return &v.state
@@ -231,19 +231,19 @@ func file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_asset_group_asset_error_proto = out.File
- file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_asset_group_asset_error_proto = out.File
+ file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_depIdxs = nil
}
diff --git a/errors/asset_group_error.pb.go b/errors/asset_group_error.pb.go
index dd8a8ae0..f6d6b06d 100644
--- a/errors/asset_group_error.pb.go
+++ b/errors/asset_group_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/asset_group_error.proto
+// source: google/ads/googleads/v17/errors/asset_group_error.proto
package errors
@@ -131,11 +131,11 @@ func (x AssetGroupErrorEnum_AssetGroupError) String() string {
}
func (AssetGroupErrorEnum_AssetGroupError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_asset_group_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_asset_group_error_proto_enumTypes[0].Descriptor()
}
func (AssetGroupErrorEnum_AssetGroupError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_asset_group_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_asset_group_error_proto_enumTypes[0]
}
func (x AssetGroupErrorEnum_AssetGroupError) Number() protoreflect.EnumNumber {
@@ -144,7 +144,7 @@ func (x AssetGroupErrorEnum_AssetGroupError) Number() protoreflect.EnumNumber {
// Deprecated: Use AssetGroupErrorEnum_AssetGroupError.Descriptor instead.
func (AssetGroupErrorEnum_AssetGroupError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_asset_group_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_asset_group_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible asset group errors.
@@ -157,7 +157,7 @@ type AssetGroupErrorEnum struct {
func (x *AssetGroupErrorEnum) Reset() {
*x = AssetGroupErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_asset_group_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_asset_group_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -170,7 +170,7 @@ func (x *AssetGroupErrorEnum) String() string {
func (*AssetGroupErrorEnum) ProtoMessage() {}
func (x *AssetGroupErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_asset_group_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_asset_group_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -183,18 +183,18 @@ func (x *AssetGroupErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetGroupErrorEnum.ProtoReflect.Descriptor instead.
func (*AssetGroupErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_asset_group_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_asset_group_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_asset_group_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_asset_group_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_asset_group_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_asset_group_error_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x9d, 0x05, 0x0a, 0x13, 0x41,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x9d, 0x05, 0x0a, 0x13, 0x41,
0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0x85, 0x05, 0x0a, 0x0f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75,
0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
@@ -238,42 +238,42 @@ var file_google_ads_googleads_v16_errors_asset_group_error_proto_rawDesc = []byt
0x4f, 0x55, 0x50, 0x5f, 0x46, 0x4f, 0x52, 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x5f,
0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x10, 0x11, 0x42, 0xf4, 0x01, 0x0a, 0x23, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x42, 0x14, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_asset_group_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_asset_group_error_proto_rawDescData = file_google_ads_googleads_v16_errors_asset_group_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_asset_group_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_asset_group_error_proto_rawDescData = file_google_ads_googleads_v17_errors_asset_group_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_asset_group_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_asset_group_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_asset_group_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_asset_group_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_asset_group_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_asset_group_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_asset_group_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_asset_group_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_asset_group_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_asset_group_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_asset_group_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_asset_group_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_asset_group_error_proto_goTypes = []interface{}{
- (AssetGroupErrorEnum_AssetGroupError)(0), // 0: google.ads.googleads.v16.errors.AssetGroupErrorEnum.AssetGroupError
- (*AssetGroupErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AssetGroupErrorEnum
+var file_google_ads_googleads_v17_errors_asset_group_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_asset_group_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_asset_group_error_proto_goTypes = []interface{}{
+ (AssetGroupErrorEnum_AssetGroupError)(0), // 0: google.ads.googleads.v17.errors.AssetGroupErrorEnum.AssetGroupError
+ (*AssetGroupErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AssetGroupErrorEnum
}
-var file_google_ads_googleads_v16_errors_asset_group_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_asset_group_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -281,13 +281,13 @@ var file_google_ads_googleads_v16_errors_asset_group_error_proto_depIdxs = []int
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_asset_group_error_proto_init() }
-func file_google_ads_googleads_v16_errors_asset_group_error_proto_init() {
- if File_google_ads_googleads_v16_errors_asset_group_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_asset_group_error_proto_init() }
+func file_google_ads_googleads_v17_errors_asset_group_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_asset_group_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_asset_group_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_asset_group_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetGroupErrorEnum); i {
case 0:
return &v.state
@@ -304,19 +304,19 @@ func file_google_ads_googleads_v16_errors_asset_group_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_asset_group_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_asset_group_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_asset_group_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_asset_group_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_asset_group_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_asset_group_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_asset_group_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_asset_group_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_asset_group_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_asset_group_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_asset_group_error_proto = out.File
- file_google_ads_googleads_v16_errors_asset_group_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_asset_group_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_asset_group_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_asset_group_error_proto = out.File
+ file_google_ads_googleads_v17_errors_asset_group_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_asset_group_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_asset_group_error_proto_depIdxs = nil
}
diff --git a/errors/asset_group_listing_group_filter_error.pb.go b/errors/asset_group_listing_group_filter_error.pb.go
index 784a1626..a44c3f44 100644
--- a/errors/asset_group_listing_group_filter_error.pb.go
+++ b/errors/asset_group_listing_group_filter_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/asset_group_listing_group_filter_error.proto
+// source: google/ads/googleads/v17/errors/asset_group_listing_group_filter_error.proto
package errors
@@ -159,11 +159,11 @@ func (x AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError)
}
func (AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_enumTypes[0].Descriptor()
}
func (AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_enumTypes[0]
}
func (x AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError) Number() protoreflect.EnumNumber {
@@ -172,7 +172,7 @@ func (x AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError)
// Deprecated: Use AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError.Descriptor instead.
func (AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible asset group listing group filter
@@ -186,7 +186,7 @@ type AssetGroupListingGroupFilterErrorEnum struct {
func (x *AssetGroupListingGroupFilterErrorEnum) Reset() {
*x = AssetGroupListingGroupFilterErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -199,7 +199,7 @@ func (x *AssetGroupListingGroupFilterErrorEnum) String() string {
func (*AssetGroupListingGroupFilterErrorEnum) ProtoMessage() {}
func (x *AssetGroupListingGroupFilterErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -212,19 +212,19 @@ func (x *AssetGroupListingGroupFilterErrorEnum) ProtoReflect() protoreflect.Mess
// Deprecated: Use AssetGroupListingGroupFilterErrorEnum.ProtoReflect.Descriptor instead.
func (*AssetGroupListingGroupFilterErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_rawDesc = []byte{
0x0a, 0x4c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x6c, 0x69,
0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x69, 0x6c, 0x74,
0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22,
0x9d, 0x07, 0x0a, 0x25, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x69,
0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xf3, 0x06, 0x0a, 0x21, 0x41, 0x73,
@@ -284,43 +284,43 @@ var file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_
0x4c, 0x54, 0x49, 0x50, 0x4c, 0x45, 0x5f, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e,
0x53, 0x5f, 0x4f, 0x4e, 0x5f, 0x4f, 0x4e, 0x45, 0x5f, 0x4e, 0x4f, 0x44, 0x45, 0x10, 0x17, 0x42,
0x86, 0x02, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x26, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72,
0x6f, 0x75, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46,
0x69, 0x6c, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_rawDescData = file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_rawDescData = file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_goTypes = []interface{}{
- (AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError)(0), // 0: google.ads.googleads.v16.errors.AssetGroupListingGroupFilterErrorEnum.AssetGroupListingGroupFilterError
- (*AssetGroupListingGroupFilterErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AssetGroupListingGroupFilterErrorEnum
+var file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_goTypes = []interface{}{
+ (AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError)(0), // 0: google.ads.googleads.v17.errors.AssetGroupListingGroupFilterErrorEnum.AssetGroupListingGroupFilterError
+ (*AssetGroupListingGroupFilterErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AssetGroupListingGroupFilterErrorEnum
}
-var file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -328,13 +328,13 @@ var file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_init() }
-func file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_init() {
- if File_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_init() }
+func file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetGroupListingGroupFilterErrorEnum); i {
case 0:
return &v.state
@@ -351,19 +351,19 @@ func file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto = out.File
- file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto = out.File
+ file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_depIdxs = nil
}
diff --git a/errors/asset_group_signal_error.pb.go b/errors/asset_group_signal_error.pb.go
index 5ceb047a..ad397c99 100644
--- a/errors/asset_group_signal_error.pb.go
+++ b/errors/asset_group_signal_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/asset_group_signal_error.proto
+// source: google/ads/googleads/v17/errors/asset_group_signal_error.proto
package errors
@@ -84,11 +84,11 @@ func (x AssetGroupSignalErrorEnum_AssetGroupSignalError) String() string {
}
func (AssetGroupSignalErrorEnum_AssetGroupSignalError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_enumTypes[0].Descriptor()
}
func (AssetGroupSignalErrorEnum_AssetGroupSignalError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_enumTypes[0]
}
func (x AssetGroupSignalErrorEnum_AssetGroupSignalError) Number() protoreflect.EnumNumber {
@@ -97,7 +97,7 @@ func (x AssetGroupSignalErrorEnum_AssetGroupSignalError) Number() protoreflect.E
// Deprecated: Use AssetGroupSignalErrorEnum_AssetGroupSignalError.Descriptor instead.
func (AssetGroupSignalErrorEnum_AssetGroupSignalError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible asset group signal errors.
@@ -110,7 +110,7 @@ type AssetGroupSignalErrorEnum struct {
func (x *AssetGroupSignalErrorEnum) Reset() {
*x = AssetGroupSignalErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -123,7 +123,7 @@ func (x *AssetGroupSignalErrorEnum) String() string {
func (*AssetGroupSignalErrorEnum) ProtoMessage() {}
func (x *AssetGroupSignalErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -136,18 +136,18 @@ func (x *AssetGroupSignalErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetGroupSignalErrorEnum.ProtoReflect.Descriptor instead.
func (*AssetGroupSignalErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_asset_group_signal_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_asset_group_signal_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x69,
0x67, 0x6e, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x22, 0xb2, 0x01, 0x0a, 0x19, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70,
0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x94, 0x01, 0x0a, 0x15, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69,
@@ -161,42 +161,42 @@ var file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_rawDesc
0x57, 0x52, 0x4f, 0x4e, 0x47, 0x5f, 0x41, 0x53, 0x53, 0x45, 0x54, 0x5f, 0x47, 0x52, 0x4f, 0x55,
0x50, 0x5f, 0x49, 0x44, 0x10, 0x04, 0x42, 0xfa, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a,
0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_rawDescData = file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_rawDescData = file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_goTypes = []interface{}{
- (AssetGroupSignalErrorEnum_AssetGroupSignalError)(0), // 0: google.ads.googleads.v16.errors.AssetGroupSignalErrorEnum.AssetGroupSignalError
- (*AssetGroupSignalErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AssetGroupSignalErrorEnum
+var file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_goTypes = []interface{}{
+ (AssetGroupSignalErrorEnum_AssetGroupSignalError)(0), // 0: google.ads.googleads.v17.errors.AssetGroupSignalErrorEnum.AssetGroupSignalError
+ (*AssetGroupSignalErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AssetGroupSignalErrorEnum
}
-var file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -204,13 +204,13 @@ var file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_init() }
-func file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_init() {
- if File_google_ads_googleads_v16_errors_asset_group_signal_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_init() }
+func file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_asset_group_signal_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetGroupSignalErrorEnum); i {
case 0:
return &v.state
@@ -227,19 +227,19 @@ func file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_asset_group_signal_error_proto = out.File
- file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_asset_group_signal_error_proto = out.File
+ file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_depIdxs = nil
}
diff --git a/errors/asset_link_error.pb.go b/errors/asset_link_error.pb.go
index bfb09877..c3232389 100644
--- a/errors/asset_link_error.pb.go
+++ b/errors/asset_link_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/asset_link_error.proto
+// source: google/ads/googleads/v17/errors/asset_link_error.proto
package errors
@@ -177,11 +177,11 @@ func (x AssetLinkErrorEnum_AssetLinkError) String() string {
}
func (AssetLinkErrorEnum_AssetLinkError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_asset_link_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_asset_link_error_proto_enumTypes[0].Descriptor()
}
func (AssetLinkErrorEnum_AssetLinkError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_asset_link_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_asset_link_error_proto_enumTypes[0]
}
func (x AssetLinkErrorEnum_AssetLinkError) Number() protoreflect.EnumNumber {
@@ -190,7 +190,7 @@ func (x AssetLinkErrorEnum_AssetLinkError) Number() protoreflect.EnumNumber {
// Deprecated: Use AssetLinkErrorEnum_AssetLinkError.Descriptor instead.
func (AssetLinkErrorEnum_AssetLinkError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_asset_link_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_asset_link_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible asset link errors.
@@ -203,7 +203,7 @@ type AssetLinkErrorEnum struct {
func (x *AssetLinkErrorEnum) Reset() {
*x = AssetLinkErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_asset_link_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_asset_link_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -216,7 +216,7 @@ func (x *AssetLinkErrorEnum) String() string {
func (*AssetLinkErrorEnum) ProtoMessage() {}
func (x *AssetLinkErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_asset_link_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_asset_link_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -229,18 +229,18 @@ func (x *AssetLinkErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetLinkErrorEnum.ProtoReflect.Descriptor instead.
func (*AssetLinkErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_asset_link_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_asset_link_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_asset_link_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_asset_link_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_asset_link_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_asset_link_error_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xdc, 0x07, 0x0a, 0x12, 0x41, 0x73,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xdc, 0x07, 0x0a, 0x12, 0x41, 0x73,
0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0xc5, 0x07, 0x0a, 0x0e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
@@ -304,42 +304,42 @@ var file_google_ads_googleads_v16_errors_asset_link_error_proto_rawDesc = []byte
0x50, 0x50, 0x4f, 0x52, 0x54, 0x45, 0x44, 0x5f, 0x43, 0x41, 0x4c, 0x4c, 0x5f, 0x54, 0x4f, 0x5f,
0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x18, 0x42, 0xf3, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x42, 0x13, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_asset_link_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_asset_link_error_proto_rawDescData = file_google_ads_googleads_v16_errors_asset_link_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_asset_link_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_asset_link_error_proto_rawDescData = file_google_ads_googleads_v17_errors_asset_link_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_asset_link_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_asset_link_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_asset_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_asset_link_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_asset_link_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_asset_link_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_asset_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_asset_link_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_asset_link_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_asset_link_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_asset_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_asset_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_asset_link_error_proto_goTypes = []interface{}{
- (AssetLinkErrorEnum_AssetLinkError)(0), // 0: google.ads.googleads.v16.errors.AssetLinkErrorEnum.AssetLinkError
- (*AssetLinkErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AssetLinkErrorEnum
+var file_google_ads_googleads_v17_errors_asset_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_asset_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_asset_link_error_proto_goTypes = []interface{}{
+ (AssetLinkErrorEnum_AssetLinkError)(0), // 0: google.ads.googleads.v17.errors.AssetLinkErrorEnum.AssetLinkError
+ (*AssetLinkErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AssetLinkErrorEnum
}
-var file_google_ads_googleads_v16_errors_asset_link_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_asset_link_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -347,13 +347,13 @@ var file_google_ads_googleads_v16_errors_asset_link_error_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_asset_link_error_proto_init() }
-func file_google_ads_googleads_v16_errors_asset_link_error_proto_init() {
- if File_google_ads_googleads_v16_errors_asset_link_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_asset_link_error_proto_init() }
+func file_google_ads_googleads_v17_errors_asset_link_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_asset_link_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_asset_link_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_asset_link_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetLinkErrorEnum); i {
case 0:
return &v.state
@@ -370,19 +370,19 @@ func file_google_ads_googleads_v16_errors_asset_link_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_asset_link_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_asset_link_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_asset_link_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_asset_link_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_asset_link_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_asset_link_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_asset_link_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_asset_link_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_asset_link_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_asset_link_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_asset_link_error_proto = out.File
- file_google_ads_googleads_v16_errors_asset_link_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_asset_link_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_asset_link_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_asset_link_error_proto = out.File
+ file_google_ads_googleads_v17_errors_asset_link_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_asset_link_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_asset_link_error_proto_depIdxs = nil
}
diff --git a/errors/asset_set_asset_error.pb.go b/errors/asset_set_asset_error.pb.go
index adff68b2..0bc0ae19 100644
--- a/errors/asset_set_asset_error.pb.go
+++ b/errors/asset_set_asset_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/asset_set_asset_error.proto
+// source: google/ads/googleads/v17/errors/asset_set_asset_error.proto
package errors
@@ -88,11 +88,11 @@ func (x AssetSetAssetErrorEnum_AssetSetAssetError) String() string {
}
func (AssetSetAssetErrorEnum_AssetSetAssetError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_enumTypes[0].Descriptor()
}
func (AssetSetAssetErrorEnum_AssetSetAssetError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_enumTypes[0]
}
func (x AssetSetAssetErrorEnum_AssetSetAssetError) Number() protoreflect.EnumNumber {
@@ -101,7 +101,7 @@ func (x AssetSetAssetErrorEnum_AssetSetAssetError) Number() protoreflect.EnumNum
// Deprecated: Use AssetSetAssetErrorEnum_AssetSetAssetError.Descriptor instead.
func (AssetSetAssetErrorEnum_AssetSetAssetError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible asset set asset errors.
@@ -114,7 +114,7 @@ type AssetSetAssetErrorEnum struct {
func (x *AssetSetAssetErrorEnum) Reset() {
*x = AssetSetAssetErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -127,7 +127,7 @@ func (x *AssetSetAssetErrorEnum) String() string {
func (*AssetSetAssetErrorEnum) ProtoMessage() {}
func (x *AssetSetAssetErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -140,18 +140,18 @@ func (x *AssetSetAssetErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetSetAssetErrorEnum.ProtoReflect.Descriptor instead.
func (*AssetSetAssetErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_asset_set_asset_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_asset_set_asset_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65,
0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xc0,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xc0,
0x01, 0x0a, 0x16, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xa5, 0x01, 0x0a, 0x12, 0x41, 0x73,
0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72,
@@ -166,42 +166,42 @@ var file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_rawDesc = [
0x5f, 0x44, 0x4f, 0x45, 0x53, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x45, 0x58, 0x49, 0x53, 0x54, 0x10,
0x05, 0x42, 0xf7, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x17, 0x41, 0x73, 0x73, 0x65, 0x74,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x17, 0x41, 0x73, 0x73, 0x65, 0x74,
0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_rawDescData = file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_rawDescData = file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_goTypes = []interface{}{
- (AssetSetAssetErrorEnum_AssetSetAssetError)(0), // 0: google.ads.googleads.v16.errors.AssetSetAssetErrorEnum.AssetSetAssetError
- (*AssetSetAssetErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AssetSetAssetErrorEnum
+var file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_goTypes = []interface{}{
+ (AssetSetAssetErrorEnum_AssetSetAssetError)(0), // 0: google.ads.googleads.v17.errors.AssetSetAssetErrorEnum.AssetSetAssetError
+ (*AssetSetAssetErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AssetSetAssetErrorEnum
}
-var file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -209,13 +209,13 @@ var file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_init() }
-func file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_init() {
- if File_google_ads_googleads_v16_errors_asset_set_asset_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_init() }
+func file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_asset_set_asset_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetSetAssetErrorEnum); i {
case 0:
return &v.state
@@ -232,19 +232,19 @@ func file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_asset_set_asset_error_proto = out.File
- file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_asset_set_asset_error_proto = out.File
+ file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_depIdxs = nil
}
diff --git a/errors/asset_set_error.pb.go b/errors/asset_set_error.pb.go
index 3021a074..a6004e80 100644
--- a/errors/asset_set_error.pb.go
+++ b/errors/asset_set_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/asset_set_error.proto
+// source: google/ads/googleads/v17/errors/asset_set_error.proto
package errors
@@ -117,11 +117,11 @@ func (x AssetSetErrorEnum_AssetSetError) String() string {
}
func (AssetSetErrorEnum_AssetSetError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_asset_set_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_asset_set_error_proto_enumTypes[0].Descriptor()
}
func (AssetSetErrorEnum_AssetSetError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_asset_set_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_asset_set_error_proto_enumTypes[0]
}
func (x AssetSetErrorEnum_AssetSetError) Number() protoreflect.EnumNumber {
@@ -130,7 +130,7 @@ func (x AssetSetErrorEnum_AssetSetError) Number() protoreflect.EnumNumber {
// Deprecated: Use AssetSetErrorEnum_AssetSetError.Descriptor instead.
func (AssetSetErrorEnum_AssetSetError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_asset_set_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_asset_set_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible asset set errors.
@@ -143,7 +143,7 @@ type AssetSetErrorEnum struct {
func (x *AssetSetErrorEnum) Reset() {
*x = AssetSetErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_asset_set_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_asset_set_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -156,7 +156,7 @@ func (x *AssetSetErrorEnum) String() string {
func (*AssetSetErrorEnum) ProtoMessage() {}
func (x *AssetSetErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_asset_set_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_asset_set_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -169,18 +169,18 @@ func (x *AssetSetErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetSetErrorEnum.ProtoReflect.Descriptor instead.
func (*AssetSetErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_asset_set_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_asset_set_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_asset_set_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_asset_set_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_asset_set_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_asset_set_error_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xef, 0x03, 0x0a, 0x11, 0x41, 0x73, 0x73,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xef, 0x03, 0x0a, 0x11, 0x41, 0x73, 0x73,
0x65, 0x74, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xd9,
0x03, 0x0a, 0x0d, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
@@ -213,42 +213,42 @@ var file_google_ads_googleads_v16_errors_asset_set_error_proto_rawDesc = []byte{
0x53, 0x5f, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x5f, 0x4c, 0x49, 0x4e, 0x4b, 0x41, 0x47,
0x45, 0x53, 0x5f, 0x45, 0x58, 0x49, 0x53, 0x54, 0x10, 0x0a, 0x42, 0xf2, 0x01, 0x0a, 0x23, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x42, 0x12, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2,
+ 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_asset_set_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_asset_set_error_proto_rawDescData = file_google_ads_googleads_v16_errors_asset_set_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_asset_set_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_asset_set_error_proto_rawDescData = file_google_ads_googleads_v17_errors_asset_set_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_asset_set_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_asset_set_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_asset_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_asset_set_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_asset_set_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_asset_set_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_asset_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_asset_set_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_asset_set_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_asset_set_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_asset_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_asset_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_asset_set_error_proto_goTypes = []interface{}{
- (AssetSetErrorEnum_AssetSetError)(0), // 0: google.ads.googleads.v16.errors.AssetSetErrorEnum.AssetSetError
- (*AssetSetErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AssetSetErrorEnum
+var file_google_ads_googleads_v17_errors_asset_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_asset_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_asset_set_error_proto_goTypes = []interface{}{
+ (AssetSetErrorEnum_AssetSetError)(0), // 0: google.ads.googleads.v17.errors.AssetSetErrorEnum.AssetSetError
+ (*AssetSetErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AssetSetErrorEnum
}
-var file_google_ads_googleads_v16_errors_asset_set_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_asset_set_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -256,13 +256,13 @@ var file_google_ads_googleads_v16_errors_asset_set_error_proto_depIdxs = []int32
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_asset_set_error_proto_init() }
-func file_google_ads_googleads_v16_errors_asset_set_error_proto_init() {
- if File_google_ads_googleads_v16_errors_asset_set_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_asset_set_error_proto_init() }
+func file_google_ads_googleads_v17_errors_asset_set_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_asset_set_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_asset_set_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_asset_set_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetSetErrorEnum); i {
case 0:
return &v.state
@@ -279,19 +279,19 @@ func file_google_ads_googleads_v16_errors_asset_set_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_asset_set_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_asset_set_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_asset_set_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_asset_set_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_asset_set_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_asset_set_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_asset_set_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_asset_set_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_asset_set_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_asset_set_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_asset_set_error_proto = out.File
- file_google_ads_googleads_v16_errors_asset_set_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_asset_set_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_asset_set_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_asset_set_error_proto = out.File
+ file_google_ads_googleads_v17_errors_asset_set_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_asset_set_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_asset_set_error_proto_depIdxs = nil
}
diff --git a/errors/asset_set_link_error.pb.go b/errors/asset_set_link_error.pb.go
index f4423858..e0a3f1a1 100644
--- a/errors/asset_set_link_error.pb.go
+++ b/errors/asset_set_link_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/asset_set_link_error.proto
+// source: google/ads/googleads/v17/errors/asset_set_link_error.proto
package errors
@@ -89,11 +89,11 @@ func (x AssetSetLinkErrorEnum_AssetSetLinkError) String() string {
}
func (AssetSetLinkErrorEnum_AssetSetLinkError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_asset_set_link_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_asset_set_link_error_proto_enumTypes[0].Descriptor()
}
func (AssetSetLinkErrorEnum_AssetSetLinkError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_asset_set_link_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_asset_set_link_error_proto_enumTypes[0]
}
func (x AssetSetLinkErrorEnum_AssetSetLinkError) Number() protoreflect.EnumNumber {
@@ -102,7 +102,7 @@ func (x AssetSetLinkErrorEnum_AssetSetLinkError) Number() protoreflect.EnumNumbe
// Deprecated: Use AssetSetLinkErrorEnum_AssetSetLinkError.Descriptor instead.
func (AssetSetLinkErrorEnum_AssetSetLinkError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_asset_set_link_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_asset_set_link_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible asset set link errors.
@@ -115,7 +115,7 @@ type AssetSetLinkErrorEnum struct {
func (x *AssetSetLinkErrorEnum) Reset() {
*x = AssetSetLinkErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_asset_set_link_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_asset_set_link_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -128,7 +128,7 @@ func (x *AssetSetLinkErrorEnum) String() string {
func (*AssetSetLinkErrorEnum) ProtoMessage() {}
func (x *AssetSetLinkErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_asset_set_link_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_asset_set_link_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -141,18 +141,18 @@ func (x *AssetSetLinkErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AssetSetLinkErrorEnum.ProtoReflect.Descriptor instead.
func (*AssetSetLinkErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_asset_set_link_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_asset_set_link_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_asset_set_link_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_asset_set_link_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_asset_set_link_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_asset_set_link_error_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b,
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x87, 0x02,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x87, 0x02,
0x0a, 0x15, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xed, 0x01, 0x0a, 0x11, 0x41, 0x73, 0x73, 0x65,
0x74, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a,
@@ -171,42 +171,42 @@ var file_google_ads_googleads_v16_errors_asset_set_link_error_proto_rawDesc = []
0x49, 0x4e, 0x4b, 0x5f, 0x43, 0x41, 0x4e, 0x4e, 0x4f, 0x54, 0x5f, 0x42, 0x45, 0x5f, 0x52, 0x45,
0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x06, 0x42, 0xf6, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42,
0x16, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_asset_set_link_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_asset_set_link_error_proto_rawDescData = file_google_ads_googleads_v16_errors_asset_set_link_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_asset_set_link_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_asset_set_link_error_proto_rawDescData = file_google_ads_googleads_v17_errors_asset_set_link_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_asset_set_link_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_asset_set_link_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_asset_set_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_asset_set_link_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_asset_set_link_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_asset_set_link_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_asset_set_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_asset_set_link_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_asset_set_link_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_asset_set_link_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_asset_set_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_asset_set_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_asset_set_link_error_proto_goTypes = []interface{}{
- (AssetSetLinkErrorEnum_AssetSetLinkError)(0), // 0: google.ads.googleads.v16.errors.AssetSetLinkErrorEnum.AssetSetLinkError
- (*AssetSetLinkErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AssetSetLinkErrorEnum
+var file_google_ads_googleads_v17_errors_asset_set_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_asset_set_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_asset_set_link_error_proto_goTypes = []interface{}{
+ (AssetSetLinkErrorEnum_AssetSetLinkError)(0), // 0: google.ads.googleads.v17.errors.AssetSetLinkErrorEnum.AssetSetLinkError
+ (*AssetSetLinkErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AssetSetLinkErrorEnum
}
-var file_google_ads_googleads_v16_errors_asset_set_link_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_asset_set_link_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -214,13 +214,13 @@ var file_google_ads_googleads_v16_errors_asset_set_link_error_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_asset_set_link_error_proto_init() }
-func file_google_ads_googleads_v16_errors_asset_set_link_error_proto_init() {
- if File_google_ads_googleads_v16_errors_asset_set_link_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_asset_set_link_error_proto_init() }
+func file_google_ads_googleads_v17_errors_asset_set_link_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_asset_set_link_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_asset_set_link_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_asset_set_link_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AssetSetLinkErrorEnum); i {
case 0:
return &v.state
@@ -237,19 +237,19 @@ func file_google_ads_googleads_v16_errors_asset_set_link_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_asset_set_link_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_asset_set_link_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_asset_set_link_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_asset_set_link_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_asset_set_link_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_asset_set_link_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_asset_set_link_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_asset_set_link_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_asset_set_link_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_asset_set_link_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_asset_set_link_error_proto = out.File
- file_google_ads_googleads_v16_errors_asset_set_link_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_asset_set_link_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_asset_set_link_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_asset_set_link_error_proto = out.File
+ file_google_ads_googleads_v17_errors_asset_set_link_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_asset_set_link_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_asset_set_link_error_proto_depIdxs = nil
}
diff --git a/errors/audience_error.pb.go b/errors/audience_error.pb.go
index 50fa9891..8193030e 100644
--- a/errors/audience_error.pb.go
+++ b/errors/audience_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/audience_error.proto
+// source: google/ads/googleads/v17/errors/audience_error.proto
package errors
@@ -109,11 +109,11 @@ func (x AudienceErrorEnum_AudienceError) String() string {
}
func (AudienceErrorEnum_AudienceError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_audience_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_audience_error_proto_enumTypes[0].Descriptor()
}
func (AudienceErrorEnum_AudienceError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_audience_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_audience_error_proto_enumTypes[0]
}
func (x AudienceErrorEnum_AudienceError) Number() protoreflect.EnumNumber {
@@ -122,7 +122,7 @@ func (x AudienceErrorEnum_AudienceError) Number() protoreflect.EnumNumber {
// Deprecated: Use AudienceErrorEnum_AudienceError.Descriptor instead.
func (AudienceErrorEnum_AudienceError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_audience_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_audience_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible audience errors.
@@ -135,7 +135,7 @@ type AudienceErrorEnum struct {
func (x *AudienceErrorEnum) Reset() {
*x = AudienceErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_audience_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_audience_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -148,7 +148,7 @@ func (x *AudienceErrorEnum) String() string {
func (*AudienceErrorEnum) ProtoMessage() {}
func (x *AudienceErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_audience_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_audience_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -161,17 +161,17 @@ func (x *AudienceErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AudienceErrorEnum.ProtoReflect.Descriptor instead.
func (*AudienceErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_audience_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_audience_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_audience_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_audience_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_audience_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_audience_error_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xf7, 0x02, 0x0a, 0x11, 0x41, 0x75, 0x64, 0x69,
0x65, 0x6e, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xe1, 0x02,
0x0a, 0x0d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
@@ -198,41 +198,41 @@ var file_google_ads_googleads_v16_errors_audience_error_proto_rawDesc = []byte{
0x53, 0x45, 0x54, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x5f, 0x53, 0x43, 0x4f, 0x50, 0x45, 0x10,
0x0b, 0x42, 0xf2, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x41, 0x75, 0x64, 0x69, 0x65,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x41, 0x75, 0x64, 0x69, 0x65,
0x6e, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_audience_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_audience_error_proto_rawDescData = file_google_ads_googleads_v16_errors_audience_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_audience_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_audience_error_proto_rawDescData = file_google_ads_googleads_v17_errors_audience_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_audience_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_audience_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_audience_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_audience_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_audience_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_audience_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_audience_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_audience_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_audience_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_audience_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_audience_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_audience_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_audience_error_proto_goTypes = []interface{}{
- (AudienceErrorEnum_AudienceError)(0), // 0: google.ads.googleads.v16.errors.AudienceErrorEnum.AudienceError
- (*AudienceErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AudienceErrorEnum
+var file_google_ads_googleads_v17_errors_audience_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_audience_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_audience_error_proto_goTypes = []interface{}{
+ (AudienceErrorEnum_AudienceError)(0), // 0: google.ads.googleads.v17.errors.AudienceErrorEnum.AudienceError
+ (*AudienceErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AudienceErrorEnum
}
-var file_google_ads_googleads_v16_errors_audience_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_audience_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -240,13 +240,13 @@ var file_google_ads_googleads_v16_errors_audience_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_audience_error_proto_init() }
-func file_google_ads_googleads_v16_errors_audience_error_proto_init() {
- if File_google_ads_googleads_v16_errors_audience_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_audience_error_proto_init() }
+func file_google_ads_googleads_v17_errors_audience_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_audience_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_audience_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_audience_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AudienceErrorEnum); i {
case 0:
return &v.state
@@ -263,19 +263,19 @@ func file_google_ads_googleads_v16_errors_audience_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_audience_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_audience_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_audience_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_audience_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_audience_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_audience_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_audience_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_audience_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_audience_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_audience_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_audience_error_proto = out.File
- file_google_ads_googleads_v16_errors_audience_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_audience_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_audience_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_audience_error_proto = out.File
+ file_google_ads_googleads_v17_errors_audience_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_audience_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_audience_error_proto_depIdxs = nil
}
diff --git a/errors/audience_insights_error.pb.go b/errors/audience_insights_error.pb.go
index ac668c61..0439917a 100644
--- a/errors/audience_insights_error.pb.go
+++ b/errors/audience_insights_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/audience_insights_error.proto
+// source: google/ads/googleads/v17/errors/audience_insights_error.proto
package errors
@@ -71,11 +71,11 @@ func (x AudienceInsightsErrorEnum_AudienceInsightsError) String() string {
}
func (AudienceInsightsErrorEnum_AudienceInsightsError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_audience_insights_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_audience_insights_error_proto_enumTypes[0].Descriptor()
}
func (AudienceInsightsErrorEnum_AudienceInsightsError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_audience_insights_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_audience_insights_error_proto_enumTypes[0]
}
func (x AudienceInsightsErrorEnum_AudienceInsightsError) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x AudienceInsightsErrorEnum_AudienceInsightsError) Number() protoreflect.E
// Deprecated: Use AudienceInsightsErrorEnum_AudienceInsightsError.Descriptor instead.
func (AudienceInsightsErrorEnum_AudienceInsightsError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_audience_insights_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_audience_insights_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible errors returned from
@@ -98,7 +98,7 @@ type AudienceInsightsErrorEnum struct {
func (x *AudienceInsightsErrorEnum) Reset() {
*x = AudienceInsightsErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_audience_insights_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_audience_insights_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -111,7 +111,7 @@ func (x *AudienceInsightsErrorEnum) String() string {
func (*AudienceInsightsErrorEnum) ProtoMessage() {}
func (x *AudienceInsightsErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_audience_insights_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_audience_insights_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -124,18 +124,18 @@ func (x *AudienceInsightsErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AudienceInsightsErrorEnum.ProtoReflect.Descriptor instead.
func (*AudienceInsightsErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_audience_insights_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_audience_insights_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_audience_insights_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_audience_insights_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_audience_insights_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_audience_insights_error_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67,
0x68, 0x74, 0x73, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x22, 0x8f, 0x01, 0x0a, 0x19, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73,
0x69, 0x67, 0x68, 0x74, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x72,
0x0a, 0x15, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68,
@@ -147,42 +147,42 @@ var file_google_ads_googleads_v16_errors_audience_insights_error_proto_rawDesc =
0x4e, 0x43, 0x45, 0x5f, 0x43, 0x4f, 0x4d, 0x42, 0x49, 0x4e, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x53,
0x10, 0x02, 0x42, 0xfa, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a, 0x41, 0x75, 0x64, 0x69,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a, 0x41, 0x75, 0x64, 0x69,
0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2,
+ 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_audience_insights_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_audience_insights_error_proto_rawDescData = file_google_ads_googleads_v16_errors_audience_insights_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_audience_insights_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_audience_insights_error_proto_rawDescData = file_google_ads_googleads_v17_errors_audience_insights_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_audience_insights_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_audience_insights_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_audience_insights_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_audience_insights_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_audience_insights_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_audience_insights_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_audience_insights_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_audience_insights_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_audience_insights_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_audience_insights_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_audience_insights_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_audience_insights_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_audience_insights_error_proto_goTypes = []interface{}{
- (AudienceInsightsErrorEnum_AudienceInsightsError)(0), // 0: google.ads.googleads.v16.errors.AudienceInsightsErrorEnum.AudienceInsightsError
- (*AudienceInsightsErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AudienceInsightsErrorEnum
+var file_google_ads_googleads_v17_errors_audience_insights_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_audience_insights_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_audience_insights_error_proto_goTypes = []interface{}{
+ (AudienceInsightsErrorEnum_AudienceInsightsError)(0), // 0: google.ads.googleads.v17.errors.AudienceInsightsErrorEnum.AudienceInsightsError
+ (*AudienceInsightsErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AudienceInsightsErrorEnum
}
-var file_google_ads_googleads_v16_errors_audience_insights_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_audience_insights_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_errors_audience_insights_error_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_audience_insights_error_proto_init() }
-func file_google_ads_googleads_v16_errors_audience_insights_error_proto_init() {
- if File_google_ads_googleads_v16_errors_audience_insights_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_audience_insights_error_proto_init() }
+func file_google_ads_googleads_v17_errors_audience_insights_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_audience_insights_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_audience_insights_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_audience_insights_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AudienceInsightsErrorEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_errors_audience_insights_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_audience_insights_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_audience_insights_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_audience_insights_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_audience_insights_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_audience_insights_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_audience_insights_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_audience_insights_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_audience_insights_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_audience_insights_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_audience_insights_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_audience_insights_error_proto = out.File
- file_google_ads_googleads_v16_errors_audience_insights_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_audience_insights_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_audience_insights_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_audience_insights_error_proto = out.File
+ file_google_ads_googleads_v17_errors_audience_insights_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_audience_insights_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_audience_insights_error_proto_depIdxs = nil
}
diff --git a/errors/authentication_error.pb.go b/errors/authentication_error.pb.go
index 69582d59..8aa8fbe6 100644
--- a/errors/authentication_error.pb.go
+++ b/errors/authentication_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/authentication_error.proto
+// source: google/ads/googleads/v17/errors/authentication_error.proto
package errors
@@ -160,11 +160,11 @@ func (x AuthenticationErrorEnum_AuthenticationError) String() string {
}
func (AuthenticationErrorEnum_AuthenticationError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_authentication_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_authentication_error_proto_enumTypes[0].Descriptor()
}
func (AuthenticationErrorEnum_AuthenticationError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_authentication_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_authentication_error_proto_enumTypes[0]
}
func (x AuthenticationErrorEnum_AuthenticationError) Number() protoreflect.EnumNumber {
@@ -173,7 +173,7 @@ func (x AuthenticationErrorEnum_AuthenticationError) Number() protoreflect.EnumN
// Deprecated: Use AuthenticationErrorEnum_AuthenticationError.Descriptor instead.
func (AuthenticationErrorEnum_AuthenticationError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_authentication_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_authentication_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible authentication errors.
@@ -186,7 +186,7 @@ type AuthenticationErrorEnum struct {
func (x *AuthenticationErrorEnum) Reset() {
*x = AuthenticationErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_authentication_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_authentication_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -199,7 +199,7 @@ func (x *AuthenticationErrorEnum) String() string {
func (*AuthenticationErrorEnum) ProtoMessage() {}
func (x *AuthenticationErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_authentication_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_authentication_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -212,18 +212,18 @@ func (x *AuthenticationErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AuthenticationErrorEnum.ProtoReflect.Descriptor instead.
func (*AuthenticationErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_authentication_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_authentication_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_authentication_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_authentication_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_authentication_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_authentication_error_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xde, 0x05,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xde, 0x05,
0x0a, 0x17, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xc2, 0x05, 0x0a, 0x13, 0x41, 0x75,
0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f,
@@ -271,43 +271,43 @@ var file_google_ads_googleads_v16_errors_authentication_error_proto_rawDesc = []
0x4f, 0x43, 0x49, 0x41, 0x54, 0x45, 0x44, 0x5f, 0x57, 0x49, 0x54, 0x48, 0x5f, 0x44, 0x45, 0x56,
0x45, 0x4c, 0x4f, 0x50, 0x45, 0x52, 0x5f, 0x54, 0x4f, 0x4b, 0x45, 0x4e, 0x10, 0x1c, 0x42, 0xf8,
0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x18, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69,
0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_errors_authentication_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_authentication_error_proto_rawDescData = file_google_ads_googleads_v16_errors_authentication_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_authentication_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_authentication_error_proto_rawDescData = file_google_ads_googleads_v17_errors_authentication_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_authentication_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_authentication_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_authentication_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_authentication_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_authentication_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_authentication_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_authentication_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_authentication_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_authentication_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_authentication_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_authentication_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_authentication_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_authentication_error_proto_goTypes = []interface{}{
- (AuthenticationErrorEnum_AuthenticationError)(0), // 0: google.ads.googleads.v16.errors.AuthenticationErrorEnum.AuthenticationError
- (*AuthenticationErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AuthenticationErrorEnum
+var file_google_ads_googleads_v17_errors_authentication_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_authentication_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_authentication_error_proto_goTypes = []interface{}{
+ (AuthenticationErrorEnum_AuthenticationError)(0), // 0: google.ads.googleads.v17.errors.AuthenticationErrorEnum.AuthenticationError
+ (*AuthenticationErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AuthenticationErrorEnum
}
-var file_google_ads_googleads_v16_errors_authentication_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_authentication_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -315,13 +315,13 @@ var file_google_ads_googleads_v16_errors_authentication_error_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_authentication_error_proto_init() }
-func file_google_ads_googleads_v16_errors_authentication_error_proto_init() {
- if File_google_ads_googleads_v16_errors_authentication_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_authentication_error_proto_init() }
+func file_google_ads_googleads_v17_errors_authentication_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_authentication_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_authentication_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_authentication_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AuthenticationErrorEnum); i {
case 0:
return &v.state
@@ -338,19 +338,19 @@ func file_google_ads_googleads_v16_errors_authentication_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_authentication_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_authentication_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_authentication_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_authentication_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_authentication_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_authentication_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_authentication_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_authentication_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_authentication_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_authentication_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_authentication_error_proto = out.File
- file_google_ads_googleads_v16_errors_authentication_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_authentication_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_authentication_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_authentication_error_proto = out.File
+ file_google_ads_googleads_v17_errors_authentication_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_authentication_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_authentication_error_proto_depIdxs = nil
}
diff --git a/errors/authorization_error.pb.go b/errors/authorization_error.pb.go
index d0154573..0b307536 100644
--- a/errors/authorization_error.pb.go
+++ b/errors/authorization_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/authorization_error.proto
+// source: google/ads/googleads/v17/errors/authorization_error.proto
package errors
@@ -142,11 +142,11 @@ func (x AuthorizationErrorEnum_AuthorizationError) String() string {
}
func (AuthorizationErrorEnum_AuthorizationError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_authorization_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_authorization_error_proto_enumTypes[0].Descriptor()
}
func (AuthorizationErrorEnum_AuthorizationError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_authorization_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_authorization_error_proto_enumTypes[0]
}
func (x AuthorizationErrorEnum_AuthorizationError) Number() protoreflect.EnumNumber {
@@ -155,7 +155,7 @@ func (x AuthorizationErrorEnum_AuthorizationError) Number() protoreflect.EnumNum
// Deprecated: Use AuthorizationErrorEnum_AuthorizationError.Descriptor instead.
func (AuthorizationErrorEnum_AuthorizationError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_authorization_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_authorization_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible authorization errors.
@@ -168,7 +168,7 @@ type AuthorizationErrorEnum struct {
func (x *AuthorizationErrorEnum) Reset() {
*x = AuthorizationErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_authorization_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_authorization_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -181,7 +181,7 @@ func (x *AuthorizationErrorEnum) String() string {
func (*AuthorizationErrorEnum) ProtoMessage() {}
func (x *AuthorizationErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_authorization_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_authorization_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -194,18 +194,18 @@ func (x *AuthorizationErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use AuthorizationErrorEnum.ProtoReflect.Descriptor instead.
func (*AuthorizationErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_authorization_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_authorization_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_authorization_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_authorization_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_authorization_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_authorization_error_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xce, 0x04, 0x0a,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xce, 0x04, 0x0a,
0x16, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb3, 0x04, 0x0a, 0x12, 0x41, 0x75, 0x74, 0x68,
0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f,
@@ -244,42 +244,42 @@ var file_google_ads_googleads_v16_errors_authorization_error_proto_rawDesc = []b
0x49, 0x54, 0x54, 0x45, 0x44, 0x5f, 0x46, 0x4f, 0x52, 0x5f, 0x53, 0x55, 0x53, 0x50, 0x45, 0x4e,
0x44, 0x45, 0x44, 0x5f, 0x41, 0x43, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x10, 0x1c, 0x42, 0xf7, 0x01,
0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x17, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_authorization_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_authorization_error_proto_rawDescData = file_google_ads_googleads_v16_errors_authorization_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_authorization_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_authorization_error_proto_rawDescData = file_google_ads_googleads_v17_errors_authorization_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_authorization_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_authorization_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_authorization_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_authorization_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_authorization_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_authorization_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_authorization_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_authorization_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_authorization_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_authorization_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_authorization_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_authorization_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_authorization_error_proto_goTypes = []interface{}{
- (AuthorizationErrorEnum_AuthorizationError)(0), // 0: google.ads.googleads.v16.errors.AuthorizationErrorEnum.AuthorizationError
- (*AuthorizationErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.AuthorizationErrorEnum
+var file_google_ads_googleads_v17_errors_authorization_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_authorization_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_authorization_error_proto_goTypes = []interface{}{
+ (AuthorizationErrorEnum_AuthorizationError)(0), // 0: google.ads.googleads.v17.errors.AuthorizationErrorEnum.AuthorizationError
+ (*AuthorizationErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.AuthorizationErrorEnum
}
-var file_google_ads_googleads_v16_errors_authorization_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_authorization_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -287,13 +287,13 @@ var file_google_ads_googleads_v16_errors_authorization_error_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_authorization_error_proto_init() }
-func file_google_ads_googleads_v16_errors_authorization_error_proto_init() {
- if File_google_ads_googleads_v16_errors_authorization_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_authorization_error_proto_init() }
+func file_google_ads_googleads_v17_errors_authorization_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_authorization_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_authorization_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_authorization_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AuthorizationErrorEnum); i {
case 0:
return &v.state
@@ -310,19 +310,19 @@ func file_google_ads_googleads_v16_errors_authorization_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_authorization_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_authorization_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_authorization_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_authorization_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_authorization_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_authorization_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_authorization_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_authorization_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_authorization_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_authorization_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_authorization_error_proto = out.File
- file_google_ads_googleads_v16_errors_authorization_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_authorization_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_authorization_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_authorization_error_proto = out.File
+ file_google_ads_googleads_v17_errors_authorization_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_authorization_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_authorization_error_proto_depIdxs = nil
}
diff --git a/errors/batch_job_error.pb.go b/errors/batch_job_error.pb.go
index ead740f9..4c606f3d 100644
--- a/errors/batch_job_error.pb.go
+++ b/errors/batch_job_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/batch_job_error.proto
+// source: google/ads/googleads/v17/errors/batch_job_error.proto
package errors
@@ -58,31 +58,58 @@ const (
// The batch job cannot be listed due to unexpected errors such as duplicate
// checkpoints.
BatchJobErrorEnum_CANNOT_LIST_RESULTS BatchJobErrorEnum_BatchJobError = 8
+ // The request contains interdependent AssetGroup and AssetGroupAsset
+ // operations that are treated atomically as a single transaction, and one
+ // or more of the operations in that transaction failed, which caused the
+ // entire transaction, and therefore this mutate operation, to fail. The
+ // operations that caused the transaction to fail can be found in the
+ // consecutive AssetGroup or AssetGroupAsset results with the same asset
+ // group id. The mutate operation will be successful once the remaining
+ // errors in the transaction are fixed.
+ BatchJobErrorEnum_ASSET_GROUP_AND_ASSET_GROUP_ASSET_TRANSACTION_FAILURE BatchJobErrorEnum_BatchJobError = 9
+ // The request contains interdependent AssetGroupListingGroupFilter
+ // operations that are treated atomically as a single transaction, and one
+ // or more of the operations in that transaction failed, which caused the
+ // entire transaction, and therefore this mutate operation, to fail. The
+ // operations that caused the transaction to fail can be found in the
+ // consecutive AssetGroupListingGroupFilter results with the same asset
+ // group id. The mutate operation will be successful once the remaining
+ // errors in the transaction are fixed.
+ BatchJobErrorEnum_ASSET_GROUP_LISTING_GROUP_FILTER_TRANSACTION_FAILURE BatchJobErrorEnum_BatchJobError = 10
+ // The AddBatchJobOperationsRequest is too large. Split the request into
+ // smaller requests. The maximum allowed request size is 10484504 bytes.
+ BatchJobErrorEnum_REQUEST_TOO_LARGE BatchJobErrorEnum_BatchJobError = 11
)
// Enum value maps for BatchJobErrorEnum_BatchJobError.
var (
BatchJobErrorEnum_BatchJobError_name = map[int32]string{
- 0: "UNSPECIFIED",
- 1: "UNKNOWN",
- 2: "CANNOT_MODIFY_JOB_AFTER_JOB_STARTS_RUNNING",
- 3: "EMPTY_OPERATIONS",
- 4: "INVALID_SEQUENCE_TOKEN",
- 5: "RESULTS_NOT_READY",
- 6: "INVALID_PAGE_SIZE",
- 7: "CAN_ONLY_REMOVE_PENDING_JOB",
- 8: "CANNOT_LIST_RESULTS",
+ 0: "UNSPECIFIED",
+ 1: "UNKNOWN",
+ 2: "CANNOT_MODIFY_JOB_AFTER_JOB_STARTS_RUNNING",
+ 3: "EMPTY_OPERATIONS",
+ 4: "INVALID_SEQUENCE_TOKEN",
+ 5: "RESULTS_NOT_READY",
+ 6: "INVALID_PAGE_SIZE",
+ 7: "CAN_ONLY_REMOVE_PENDING_JOB",
+ 8: "CANNOT_LIST_RESULTS",
+ 9: "ASSET_GROUP_AND_ASSET_GROUP_ASSET_TRANSACTION_FAILURE",
+ 10: "ASSET_GROUP_LISTING_GROUP_FILTER_TRANSACTION_FAILURE",
+ 11: "REQUEST_TOO_LARGE",
}
BatchJobErrorEnum_BatchJobError_value = map[string]int32{
"UNSPECIFIED": 0,
"UNKNOWN": 1,
- "CANNOT_MODIFY_JOB_AFTER_JOB_STARTS_RUNNING": 2,
- "EMPTY_OPERATIONS": 3,
- "INVALID_SEQUENCE_TOKEN": 4,
- "RESULTS_NOT_READY": 5,
- "INVALID_PAGE_SIZE": 6,
- "CAN_ONLY_REMOVE_PENDING_JOB": 7,
- "CANNOT_LIST_RESULTS": 8,
+ "CANNOT_MODIFY_JOB_AFTER_JOB_STARTS_RUNNING": 2,
+ "EMPTY_OPERATIONS": 3,
+ "INVALID_SEQUENCE_TOKEN": 4,
+ "RESULTS_NOT_READY": 5,
+ "INVALID_PAGE_SIZE": 6,
+ "CAN_ONLY_REMOVE_PENDING_JOB": 7,
+ "CANNOT_LIST_RESULTS": 8,
+ "ASSET_GROUP_AND_ASSET_GROUP_ASSET_TRANSACTION_FAILURE": 9,
+ "ASSET_GROUP_LISTING_GROUP_FILTER_TRANSACTION_FAILURE": 10,
+ "REQUEST_TOO_LARGE": 11,
}
)
@@ -97,11 +124,11 @@ func (x BatchJobErrorEnum_BatchJobError) String() string {
}
func (BatchJobErrorEnum_BatchJobError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_batch_job_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_batch_job_error_proto_enumTypes[0].Descriptor()
}
func (BatchJobErrorEnum_BatchJobError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_batch_job_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_batch_job_error_proto_enumTypes[0]
}
func (x BatchJobErrorEnum_BatchJobError) Number() protoreflect.EnumNumber {
@@ -110,7 +137,7 @@ func (x BatchJobErrorEnum_BatchJobError) Number() protoreflect.EnumNumber {
// Deprecated: Use BatchJobErrorEnum_BatchJobError.Descriptor instead.
func (BatchJobErrorEnum_BatchJobError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_batch_job_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_batch_job_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible batch job errors.
@@ -123,7 +150,7 @@ type BatchJobErrorEnum struct {
func (x *BatchJobErrorEnum) Reset() {
*x = BatchJobErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_batch_job_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_batch_job_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -136,7 +163,7 @@ func (x *BatchJobErrorEnum) String() string {
func (*BatchJobErrorEnum) ProtoMessage() {}
func (x *BatchJobErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_batch_job_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_batch_job_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -149,20 +176,20 @@ func (x *BatchJobErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use BatchJobErrorEnum.ProtoReflect.Descriptor instead.
func (*BatchJobErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_batch_job_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_batch_job_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_batch_job_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_batch_job_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_batch_job_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_batch_job_error_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x62, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x6a, 0x6f, 0x62, 0x5f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x8d, 0x02, 0x0a, 0x11, 0x42, 0x61, 0x74,
- 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xf7,
- 0x01, 0x0a, 0x0d, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x99, 0x03, 0x0a, 0x11, 0x42, 0x61, 0x74,
+ 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x83,
+ 0x03, 0x0a, 0x0d, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x2e,
0x0a, 0x2a, 0x43, 0x41, 0x4e, 0x4e, 0x4f, 0x54, 0x5f, 0x4d, 0x4f, 0x44, 0x49, 0x46, 0x59, 0x5f,
@@ -177,44 +204,53 @@ var file_google_ads_googleads_v16_errors_batch_job_error_proto_rawDesc = []byte{
0x0a, 0x1b, 0x43, 0x41, 0x4e, 0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56,
0x45, 0x5f, 0x50, 0x45, 0x4e, 0x44, 0x49, 0x4e, 0x47, 0x5f, 0x4a, 0x4f, 0x42, 0x10, 0x07, 0x12,
0x17, 0x0a, 0x13, 0x43, 0x41, 0x4e, 0x4e, 0x4f, 0x54, 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x5f, 0x52,
- 0x45, 0x53, 0x55, 0x4c, 0x54, 0x53, 0x10, 0x08, 0x42, 0xf2, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
- 0x42, 0x12, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50,
- 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
- 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03,
- 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73,
- 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
- 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x45, 0x53, 0x55, 0x4c, 0x54, 0x53, 0x10, 0x08, 0x12, 0x39, 0x0a, 0x35, 0x41, 0x53, 0x53, 0x45,
+ 0x54, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x5f, 0x41, 0x4e, 0x44, 0x5f, 0x41, 0x53, 0x53, 0x45,
+ 0x54, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x5f, 0x41, 0x53, 0x53, 0x45, 0x54, 0x5f, 0x54, 0x52,
+ 0x41, 0x4e, 0x53, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x49, 0x4c, 0x55, 0x52,
+ 0x45, 0x10, 0x09, 0x12, 0x38, 0x0a, 0x34, 0x41, 0x53, 0x53, 0x45, 0x54, 0x5f, 0x47, 0x52, 0x4f,
+ 0x55, 0x50, 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x49, 0x4e, 0x47, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50,
+ 0x5f, 0x46, 0x49, 0x4c, 0x54, 0x45, 0x52, 0x5f, 0x54, 0x52, 0x41, 0x4e, 0x53, 0x41, 0x43, 0x54,
+ 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x49, 0x4c, 0x55, 0x52, 0x45, 0x10, 0x0a, 0x12, 0x15, 0x0a,
+ 0x11, 0x52, 0x45, 0x51, 0x55, 0x45, 0x53, 0x54, 0x5f, 0x54, 0x4f, 0x4f, 0x5f, 0x4c, 0x41, 0x52,
+ 0x47, 0x45, 0x10, 0x0b, 0x42, 0xf2, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x42, 0x61,
+ 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f,
+ 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
+ 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
+ 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
+ 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
+ 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x33,
}
var (
- file_google_ads_googleads_v16_errors_batch_job_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_batch_job_error_proto_rawDescData = file_google_ads_googleads_v16_errors_batch_job_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_batch_job_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_batch_job_error_proto_rawDescData = file_google_ads_googleads_v17_errors_batch_job_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_batch_job_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_batch_job_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_batch_job_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_batch_job_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_batch_job_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_batch_job_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_batch_job_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_batch_job_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_batch_job_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_batch_job_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_batch_job_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_batch_job_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_batch_job_error_proto_goTypes = []interface{}{
- (BatchJobErrorEnum_BatchJobError)(0), // 0: google.ads.googleads.v16.errors.BatchJobErrorEnum.BatchJobError
- (*BatchJobErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.BatchJobErrorEnum
+var file_google_ads_googleads_v17_errors_batch_job_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_batch_job_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_batch_job_error_proto_goTypes = []interface{}{
+ (BatchJobErrorEnum_BatchJobError)(0), // 0: google.ads.googleads.v17.errors.BatchJobErrorEnum.BatchJobError
+ (*BatchJobErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.BatchJobErrorEnum
}
-var file_google_ads_googleads_v16_errors_batch_job_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_batch_job_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -222,13 +258,13 @@ var file_google_ads_googleads_v16_errors_batch_job_error_proto_depIdxs = []int32
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_batch_job_error_proto_init() }
-func file_google_ads_googleads_v16_errors_batch_job_error_proto_init() {
- if File_google_ads_googleads_v16_errors_batch_job_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_batch_job_error_proto_init() }
+func file_google_ads_googleads_v17_errors_batch_job_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_batch_job_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_batch_job_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_batch_job_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BatchJobErrorEnum); i {
case 0:
return &v.state
@@ -245,19 +281,19 @@ func file_google_ads_googleads_v16_errors_batch_job_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_batch_job_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_batch_job_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_batch_job_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_batch_job_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_batch_job_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_batch_job_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_batch_job_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_batch_job_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_batch_job_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_batch_job_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_batch_job_error_proto = out.File
- file_google_ads_googleads_v16_errors_batch_job_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_batch_job_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_batch_job_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_batch_job_error_proto = out.File
+ file_google_ads_googleads_v17_errors_batch_job_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_batch_job_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_batch_job_error_proto_depIdxs = nil
}
diff --git a/errors/bidding_error.pb.go b/errors/bidding_error.pb.go
index b7ca4db9..d8ca145a 100644
--- a/errors/bidding_error.pb.go
+++ b/errors/bidding_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/bidding_error.proto
+// source: google/ads/googleads/v17/errors/bidding_error.proto
package errors
@@ -170,11 +170,11 @@ func (x BiddingErrorEnum_BiddingError) String() string {
}
func (BiddingErrorEnum_BiddingError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_bidding_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_bidding_error_proto_enumTypes[0].Descriptor()
}
func (BiddingErrorEnum_BiddingError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_bidding_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_bidding_error_proto_enumTypes[0]
}
func (x BiddingErrorEnum_BiddingError) Number() protoreflect.EnumNumber {
@@ -183,7 +183,7 @@ func (x BiddingErrorEnum_BiddingError) Number() protoreflect.EnumNumber {
// Deprecated: Use BiddingErrorEnum_BiddingError.Descriptor instead.
func (BiddingErrorEnum_BiddingError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_bidding_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_bidding_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible bidding errors.
@@ -196,7 +196,7 @@ type BiddingErrorEnum struct {
func (x *BiddingErrorEnum) Reset() {
*x = BiddingErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_bidding_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_bidding_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -209,7 +209,7 @@ func (x *BiddingErrorEnum) String() string {
func (*BiddingErrorEnum) ProtoMessage() {}
func (x *BiddingErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_bidding_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_bidding_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -222,17 +222,17 @@ func (x *BiddingErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use BiddingErrorEnum.ProtoReflect.Descriptor instead.
func (*BiddingErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_bidding_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_bidding_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_bidding_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_bidding_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_bidding_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_bidding_error_proto_rawDesc = []byte{
0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xd3, 0x09, 0x0a, 0x10, 0x42, 0x69, 0x64, 0x64, 0x69,
0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xbe, 0x09, 0x0a, 0x0c,
0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b,
@@ -312,42 +312,42 @@ var file_google_ads_googleads_v16_errors_bidding_error_proto_rawDesc = []byte{
0x48, 0x41, 0x4e, 0x5f, 0x43, 0x50, 0x43, 0x5f, 0x42, 0x49, 0x44, 0x5f, 0x43, 0x45, 0x49, 0x4c,
0x49, 0x4e, 0x47, 0x5f, 0x4d, 0x49, 0x43, 0x52, 0x4f, 0x53, 0x10, 0x29, 0x42, 0xf1, 0x01, 0x0a,
0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x42, 0x11, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_bidding_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_bidding_error_proto_rawDescData = file_google_ads_googleads_v16_errors_bidding_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_bidding_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_bidding_error_proto_rawDescData = file_google_ads_googleads_v17_errors_bidding_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_bidding_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_bidding_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_bidding_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_bidding_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_bidding_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_bidding_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_bidding_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_bidding_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_bidding_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_bidding_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_bidding_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_bidding_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_bidding_error_proto_goTypes = []interface{}{
- (BiddingErrorEnum_BiddingError)(0), // 0: google.ads.googleads.v16.errors.BiddingErrorEnum.BiddingError
- (*BiddingErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.BiddingErrorEnum
+var file_google_ads_googleads_v17_errors_bidding_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_bidding_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_bidding_error_proto_goTypes = []interface{}{
+ (BiddingErrorEnum_BiddingError)(0), // 0: google.ads.googleads.v17.errors.BiddingErrorEnum.BiddingError
+ (*BiddingErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.BiddingErrorEnum
}
-var file_google_ads_googleads_v16_errors_bidding_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_bidding_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -355,13 +355,13 @@ var file_google_ads_googleads_v16_errors_bidding_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_bidding_error_proto_init() }
-func file_google_ads_googleads_v16_errors_bidding_error_proto_init() {
- if File_google_ads_googleads_v16_errors_bidding_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_bidding_error_proto_init() }
+func file_google_ads_googleads_v17_errors_bidding_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_bidding_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_bidding_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_bidding_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BiddingErrorEnum); i {
case 0:
return &v.state
@@ -378,19 +378,19 @@ func file_google_ads_googleads_v16_errors_bidding_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_bidding_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_bidding_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_bidding_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_bidding_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_bidding_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_bidding_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_bidding_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_bidding_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_bidding_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_bidding_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_bidding_error_proto = out.File
- file_google_ads_googleads_v16_errors_bidding_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_bidding_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_bidding_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_bidding_error_proto = out.File
+ file_google_ads_googleads_v17_errors_bidding_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_bidding_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_bidding_error_proto_depIdxs = nil
}
diff --git a/errors/bidding_strategy_error.pb.go b/errors/bidding_strategy_error.pb.go
index 80516a1e..ea59c76e 100644
--- a/errors/bidding_strategy_error.pb.go
+++ b/errors/bidding_strategy_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/bidding_strategy_error.proto
+// source: google/ads/googleads/v17/errors/bidding_strategy_error.proto
package errors
@@ -89,11 +89,11 @@ func (x BiddingStrategyErrorEnum_BiddingStrategyError) String() string {
}
func (BiddingStrategyErrorEnum_BiddingStrategyError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_enumTypes[0].Descriptor()
}
func (BiddingStrategyErrorEnum_BiddingStrategyError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_enumTypes[0]
}
func (x BiddingStrategyErrorEnum_BiddingStrategyError) Number() protoreflect.EnumNumber {
@@ -102,7 +102,7 @@ func (x BiddingStrategyErrorEnum_BiddingStrategyError) Number() protoreflect.Enu
// Deprecated: Use BiddingStrategyErrorEnum_BiddingStrategyError.Descriptor instead.
func (BiddingStrategyErrorEnum_BiddingStrategyError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible bidding strategy errors.
@@ -115,7 +115,7 @@ type BiddingStrategyErrorEnum struct {
func (x *BiddingStrategyErrorEnum) Reset() {
*x = BiddingStrategyErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -128,7 +128,7 @@ func (x *BiddingStrategyErrorEnum) String() string {
func (*BiddingStrategyErrorEnum) ProtoMessage() {}
func (x *BiddingStrategyErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -141,18 +141,18 @@ func (x *BiddingStrategyErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use BiddingStrategyErrorEnum.ProtoReflect.Descriptor instead.
func (*BiddingStrategyErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_bidding_strategy_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_bidding_strategy_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65,
0x67, 0x79, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22,
0x9b, 0x02, 0x0a, 0x18, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74,
0x65, 0x67, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xfe, 0x01, 0x0a,
0x14, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79,
@@ -172,43 +172,43 @@ var file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_rawDesc =
0x5f, 0x42, 0x49, 0x44, 0x44, 0x49, 0x4e, 0x47, 0x5f, 0x53, 0x54, 0x52, 0x41, 0x54, 0x45, 0x47,
0x59, 0x5f, 0x47, 0x4f, 0x41, 0x4c, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x06, 0x42, 0xf9, 0x01,
0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x19, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74,
0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_rawDescData = file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_rawDescData = file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_goTypes = []interface{}{
- (BiddingStrategyErrorEnum_BiddingStrategyError)(0), // 0: google.ads.googleads.v16.errors.BiddingStrategyErrorEnum.BiddingStrategyError
- (*BiddingStrategyErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.BiddingStrategyErrorEnum
+var file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_goTypes = []interface{}{
+ (BiddingStrategyErrorEnum_BiddingStrategyError)(0), // 0: google.ads.googleads.v17.errors.BiddingStrategyErrorEnum.BiddingStrategyError
+ (*BiddingStrategyErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.BiddingStrategyErrorEnum
}
-var file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -216,13 +216,13 @@ var file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_init() }
-func file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_init() {
- if File_google_ads_googleads_v16_errors_bidding_strategy_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_init() }
+func file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_bidding_strategy_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BiddingStrategyErrorEnum); i {
case 0:
return &v.state
@@ -239,19 +239,19 @@ func file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_bidding_strategy_error_proto = out.File
- file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_bidding_strategy_error_proto = out.File
+ file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_depIdxs = nil
}
diff --git a/errors/billing_setup_error.pb.go b/errors/billing_setup_error.pb.go
index 4d870a8c..7bd1b224 100644
--- a/errors/billing_setup_error.pb.go
+++ b/errors/billing_setup_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/billing_setup_error.proto
+// source: google/ads/googleads/v17/errors/billing_setup_error.proto
package errors
@@ -159,11 +159,11 @@ func (x BillingSetupErrorEnum_BillingSetupError) String() string {
}
func (BillingSetupErrorEnum_BillingSetupError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_billing_setup_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_billing_setup_error_proto_enumTypes[0].Descriptor()
}
func (BillingSetupErrorEnum_BillingSetupError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_billing_setup_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_billing_setup_error_proto_enumTypes[0]
}
func (x BillingSetupErrorEnum_BillingSetupError) Number() protoreflect.EnumNumber {
@@ -172,7 +172,7 @@ func (x BillingSetupErrorEnum_BillingSetupError) Number() protoreflect.EnumNumbe
// Deprecated: Use BillingSetupErrorEnum_BillingSetupError.Descriptor instead.
func (BillingSetupErrorEnum_BillingSetupError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_billing_setup_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_billing_setup_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible billing setup errors.
@@ -185,7 +185,7 @@ type BillingSetupErrorEnum struct {
func (x *BillingSetupErrorEnum) Reset() {
*x = BillingSetupErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_billing_setup_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_billing_setup_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -198,7 +198,7 @@ func (x *BillingSetupErrorEnum) String() string {
func (*BillingSetupErrorEnum) ProtoMessage() {}
func (x *BillingSetupErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_billing_setup_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_billing_setup_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -211,18 +211,18 @@ func (x *BillingSetupErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use BillingSetupErrorEnum.ProtoReflect.Descriptor instead.
func (*BillingSetupErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_billing_setup_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_billing_setup_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_billing_setup_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_billing_setup_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_billing_setup_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_billing_setup_error_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x75, 0x70, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xe6, 0x06, 0x0a,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xe6, 0x06, 0x0a,
0x15, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xcc, 0x06, 0x0a, 0x11, 0x42, 0x69, 0x6c, 0x6c, 0x69,
0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b,
@@ -279,42 +279,42 @@ var file_google_ads_googleads_v16_errors_billing_setup_error_proto_rawDesc = []b
0x4f, 0x52, 0x5f, 0x50, 0x41, 0x59, 0x4d, 0x45, 0x4e, 0x54, 0x53, 0x5f, 0x41, 0x43, 0x43, 0x4f,
0x55, 0x4e, 0x54, 0x10, 0x15, 0x42, 0xf6, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x16, 0x42,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x16, 0x42,
0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_billing_setup_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_billing_setup_error_proto_rawDescData = file_google_ads_googleads_v16_errors_billing_setup_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_billing_setup_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_billing_setup_error_proto_rawDescData = file_google_ads_googleads_v17_errors_billing_setup_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_billing_setup_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_billing_setup_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_billing_setup_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_billing_setup_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_billing_setup_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_billing_setup_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_billing_setup_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_billing_setup_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_billing_setup_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_billing_setup_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_billing_setup_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_billing_setup_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_billing_setup_error_proto_goTypes = []interface{}{
- (BillingSetupErrorEnum_BillingSetupError)(0), // 0: google.ads.googleads.v16.errors.BillingSetupErrorEnum.BillingSetupError
- (*BillingSetupErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.BillingSetupErrorEnum
+var file_google_ads_googleads_v17_errors_billing_setup_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_billing_setup_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_billing_setup_error_proto_goTypes = []interface{}{
+ (BillingSetupErrorEnum_BillingSetupError)(0), // 0: google.ads.googleads.v17.errors.BillingSetupErrorEnum.BillingSetupError
+ (*BillingSetupErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.BillingSetupErrorEnum
}
-var file_google_ads_googleads_v16_errors_billing_setup_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_billing_setup_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -322,13 +322,13 @@ var file_google_ads_googleads_v16_errors_billing_setup_error_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_billing_setup_error_proto_init() }
-func file_google_ads_googleads_v16_errors_billing_setup_error_proto_init() {
- if File_google_ads_googleads_v16_errors_billing_setup_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_billing_setup_error_proto_init() }
+func file_google_ads_googleads_v17_errors_billing_setup_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_billing_setup_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_billing_setup_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_billing_setup_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*BillingSetupErrorEnum); i {
case 0:
return &v.state
@@ -345,19 +345,19 @@ func file_google_ads_googleads_v16_errors_billing_setup_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_billing_setup_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_billing_setup_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_billing_setup_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_billing_setup_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_billing_setup_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_billing_setup_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_billing_setup_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_billing_setup_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_billing_setup_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_billing_setup_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_billing_setup_error_proto = out.File
- file_google_ads_googleads_v16_errors_billing_setup_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_billing_setup_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_billing_setup_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_billing_setup_error_proto = out.File
+ file_google_ads_googleads_v17_errors_billing_setup_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_billing_setup_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_billing_setup_error_proto_depIdxs = nil
}
diff --git a/errors/campaign_budget_error.pb.go b/errors/campaign_budget_error.pb.go
index 7568e45e..06114717 100644
--- a/errors/campaign_budget_error.pb.go
+++ b/errors/campaign_budget_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/campaign_budget_error.proto
+// source: google/ads/googleads/v17/errors/campaign_budget_error.proto
package errors
@@ -148,11 +148,11 @@ func (x CampaignBudgetErrorEnum_CampaignBudgetError) String() string {
}
func (CampaignBudgetErrorEnum_CampaignBudgetError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_campaign_budget_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_campaign_budget_error_proto_enumTypes[0].Descriptor()
}
func (CampaignBudgetErrorEnum_CampaignBudgetError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_campaign_budget_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_campaign_budget_error_proto_enumTypes[0]
}
func (x CampaignBudgetErrorEnum_CampaignBudgetError) Number() protoreflect.EnumNumber {
@@ -161,7 +161,7 @@ func (x CampaignBudgetErrorEnum_CampaignBudgetError) Number() protoreflect.EnumN
// Deprecated: Use CampaignBudgetErrorEnum_CampaignBudgetError.Descriptor instead.
func (CampaignBudgetErrorEnum_CampaignBudgetError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_budget_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_campaign_budget_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible campaign budget errors.
@@ -174,7 +174,7 @@ type CampaignBudgetErrorEnum struct {
func (x *CampaignBudgetErrorEnum) Reset() {
*x = CampaignBudgetErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_campaign_budget_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_budget_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -187,7 +187,7 @@ func (x *CampaignBudgetErrorEnum) String() string {
func (*CampaignBudgetErrorEnum) ProtoMessage() {}
func (x *CampaignBudgetErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_campaign_budget_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_budget_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -200,18 +200,18 @@ func (x *CampaignBudgetErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CampaignBudgetErrorEnum.ProtoReflect.Descriptor instead.
func (*CampaignBudgetErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_budget_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_campaign_budget_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_campaign_budget_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_campaign_budget_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_campaign_budget_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_campaign_budget_error_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65,
0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x97,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x97,
0x07, 0x0a, 0x17, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65,
0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xfb, 0x06, 0x0a, 0x13, 0x43,
0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x45, 0x72, 0x72,
@@ -271,42 +271,42 @@ var file_google_ads_googleads_v16_errors_campaign_budget_error_proto_rawDesc = [
0x52, 0x5f, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x5f, 0x42, 0x55, 0x44, 0x47, 0x45, 0x54, 0x5f,
0x50, 0x45, 0x52, 0x49, 0x4f, 0x44, 0x10, 0x15, 0x42, 0xf8, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x42, 0x18, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_campaign_budget_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_campaign_budget_error_proto_rawDescData = file_google_ads_googleads_v16_errors_campaign_budget_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_campaign_budget_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_campaign_budget_error_proto_rawDescData = file_google_ads_googleads_v17_errors_campaign_budget_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_campaign_budget_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_campaign_budget_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_campaign_budget_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_campaign_budget_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_campaign_budget_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_campaign_budget_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_campaign_budget_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_campaign_budget_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_campaign_budget_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_campaign_budget_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_campaign_budget_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_budget_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_budget_error_proto_goTypes = []interface{}{
- (CampaignBudgetErrorEnum_CampaignBudgetError)(0), // 0: google.ads.googleads.v16.errors.CampaignBudgetErrorEnum.CampaignBudgetError
- (*CampaignBudgetErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CampaignBudgetErrorEnum
+var file_google_ads_googleads_v17_errors_campaign_budget_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_budget_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_budget_error_proto_goTypes = []interface{}{
+ (CampaignBudgetErrorEnum_CampaignBudgetError)(0), // 0: google.ads.googleads.v17.errors.CampaignBudgetErrorEnum.CampaignBudgetError
+ (*CampaignBudgetErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CampaignBudgetErrorEnum
}
-var file_google_ads_googleads_v16_errors_campaign_budget_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_campaign_budget_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -314,13 +314,13 @@ var file_google_ads_googleads_v16_errors_campaign_budget_error_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_campaign_budget_error_proto_init() }
-func file_google_ads_googleads_v16_errors_campaign_budget_error_proto_init() {
- if File_google_ads_googleads_v16_errors_campaign_budget_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_campaign_budget_error_proto_init() }
+func file_google_ads_googleads_v17_errors_campaign_budget_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_campaign_budget_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_campaign_budget_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_campaign_budget_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CampaignBudgetErrorEnum); i {
case 0:
return &v.state
@@ -337,19 +337,19 @@ func file_google_ads_googleads_v16_errors_campaign_budget_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_campaign_budget_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_campaign_budget_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_campaign_budget_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_campaign_budget_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_campaign_budget_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_campaign_budget_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_campaign_budget_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_campaign_budget_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_campaign_budget_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_campaign_budget_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_campaign_budget_error_proto = out.File
- file_google_ads_googleads_v16_errors_campaign_budget_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_campaign_budget_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_campaign_budget_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_campaign_budget_error_proto = out.File
+ file_google_ads_googleads_v17_errors_campaign_budget_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_campaign_budget_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_campaign_budget_error_proto_depIdxs = nil
}
diff --git a/errors/campaign_conversion_goal_error.pb.go b/errors/campaign_conversion_goal_error.pb.go
index ebb71c1e..5a2e310e 100644
--- a/errors/campaign_conversion_goal_error.pb.go
+++ b/errors/campaign_conversion_goal_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/campaign_conversion_goal_error.proto
+// source: google/ads/googleads/v17/errors/campaign_conversion_goal_error.proto
package errors
@@ -75,11 +75,11 @@ func (x CampaignConversionGoalErrorEnum_CampaignConversionGoalError) String() st
}
func (CampaignConversionGoalErrorEnum_CampaignConversionGoalError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_enumTypes[0].Descriptor()
}
func (CampaignConversionGoalErrorEnum_CampaignConversionGoalError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_enumTypes[0]
}
func (x CampaignConversionGoalErrorEnum_CampaignConversionGoalError) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x CampaignConversionGoalErrorEnum_CampaignConversionGoalError) Number() pr
// Deprecated: Use CampaignConversionGoalErrorEnum_CampaignConversionGoalError.Descriptor instead.
func (CampaignConversionGoalErrorEnum_CampaignConversionGoalError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible campaign conversion goal errors.
@@ -101,7 +101,7 @@ type CampaignConversionGoalErrorEnum struct {
func (x *CampaignConversionGoalErrorEnum) Reset() {
*x = CampaignConversionGoalErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *CampaignConversionGoalErrorEnum) String() string {
func (*CampaignConversionGoalErrorEnum) ProtoMessage() {}
func (x *CampaignConversionGoalErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *CampaignConversionGoalErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CampaignConversionGoalErrorEnum.ProtoReflect.Descriptor instead.
func (*CampaignConversionGoalErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_rawDesc = []byte{
0x0a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xde, 0x01, 0x0a, 0x1f, 0x43, 0x61, 0x6d, 0x70,
0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f,
0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xba, 0x01, 0x0a, 0x1b,
@@ -155,43 +155,43 @@ var file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_ra
0x52, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x4e, 0x43, 0x45, 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x43, 0x41,
0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x10, 0x03, 0x42, 0x80, 0x02, 0x0a, 0x23, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x42, 0x20, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72,
0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_rawDescData = file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_rawDescData = file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_goTypes = []interface{}{
- (CampaignConversionGoalErrorEnum_CampaignConversionGoalError)(0), // 0: google.ads.googleads.v16.errors.CampaignConversionGoalErrorEnum.CampaignConversionGoalError
- (*CampaignConversionGoalErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CampaignConversionGoalErrorEnum
+var file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_goTypes = []interface{}{
+ (CampaignConversionGoalErrorEnum_CampaignConversionGoalError)(0), // 0: google.ads.googleads.v17.errors.CampaignConversionGoalErrorEnum.CampaignConversionGoalError
+ (*CampaignConversionGoalErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CampaignConversionGoalErrorEnum
}
-var file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -199,13 +199,13 @@ var file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_de
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_init() }
-func file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_init() {
- if File_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_init() }
+func file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CampaignConversionGoalErrorEnum); i {
case 0:
return &v.state
@@ -222,19 +222,19 @@ func file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_i
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto = out.File
- file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto = out.File
+ file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_depIdxs = nil
}
diff --git a/errors/campaign_criterion_error.pb.go b/errors/campaign_criterion_error.pb.go
index a99257f4..49350353 100644
--- a/errors/campaign_criterion_error.pb.go
+++ b/errors/campaign_criterion_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/campaign_criterion_error.proto
+// source: google/ads/googleads/v17/errors/campaign_criterion_error.proto
package errors
@@ -187,11 +187,11 @@ func (x CampaignCriterionErrorEnum_CampaignCriterionError) String() string {
}
func (CampaignCriterionErrorEnum_CampaignCriterionError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_enumTypes[0].Descriptor()
}
func (CampaignCriterionErrorEnum_CampaignCriterionError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_enumTypes[0]
}
func (x CampaignCriterionErrorEnum_CampaignCriterionError) Number() protoreflect.EnumNumber {
@@ -200,7 +200,7 @@ func (x CampaignCriterionErrorEnum_CampaignCriterionError) Number() protoreflect
// Deprecated: Use CampaignCriterionErrorEnum_CampaignCriterionError.Descriptor instead.
func (CampaignCriterionErrorEnum_CampaignCriterionError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible campaign criterion errors.
@@ -213,7 +213,7 @@ type CampaignCriterionErrorEnum struct {
func (x *CampaignCriterionErrorEnum) Reset() {
*x = CampaignCriterionErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -226,7 +226,7 @@ func (x *CampaignCriterionErrorEnum) String() string {
func (*CampaignCriterionErrorEnum) ProtoMessage() {}
func (x *CampaignCriterionErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -239,18 +239,18 @@ func (x *CampaignCriterionErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CampaignCriterionErrorEnum.ProtoReflect.Descriptor instead.
func (*CampaignCriterionErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_campaign_criterion_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_campaign_criterion_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65,
0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x22, 0x87, 0x0b, 0x0a, 0x1a, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72,
0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0xe8, 0x0a, 0x0a, 0x16, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69,
@@ -341,43 +341,43 @@ var file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_rawDesc
0x4f, 0x5f, 0x4d, 0x41, 0x4e, 0x59, 0x5f, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x52, 0x59, 0x5f, 0x45,
0x58, 0x43, 0x4c, 0x55, 0x53, 0x49, 0x4f, 0x4e, 0x53, 0x10, 0x1b, 0x42, 0xfb, 0x01, 0x0a, 0x23,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x42, 0x1b, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69,
0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_rawDescData = file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_rawDescData = file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_goTypes = []interface{}{
- (CampaignCriterionErrorEnum_CampaignCriterionError)(0), // 0: google.ads.googleads.v16.errors.CampaignCriterionErrorEnum.CampaignCriterionError
- (*CampaignCriterionErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CampaignCriterionErrorEnum
+var file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_goTypes = []interface{}{
+ (CampaignCriterionErrorEnum_CampaignCriterionError)(0), // 0: google.ads.googleads.v17.errors.CampaignCriterionErrorEnum.CampaignCriterionError
+ (*CampaignCriterionErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CampaignCriterionErrorEnum
}
-var file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -385,13 +385,13 @@ var file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_init() }
-func file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_init() {
- if File_google_ads_googleads_v16_errors_campaign_criterion_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_init() }
+func file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_campaign_criterion_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CampaignCriterionErrorEnum); i {
case 0:
return &v.state
@@ -408,19 +408,19 @@ func file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_campaign_criterion_error_proto = out.File
- file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_campaign_criterion_error_proto = out.File
+ file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_depIdxs = nil
}
diff --git a/errors/campaign_customizer_error.pb.go b/errors/campaign_customizer_error.pb.go
index 611a9ef8..d8e2158d 100644
--- a/errors/campaign_customizer_error.pb.go
+++ b/errors/campaign_customizer_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/campaign_customizer_error.proto
+// source: google/ads/googleads/v17/errors/campaign_customizer_error.proto
package errors
@@ -67,11 +67,11 @@ func (x CampaignCustomizerErrorEnum_CampaignCustomizerError) String() string {
}
func (CampaignCustomizerErrorEnum_CampaignCustomizerError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_enumTypes[0].Descriptor()
}
func (CampaignCustomizerErrorEnum_CampaignCustomizerError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_enumTypes[0]
}
func (x CampaignCustomizerErrorEnum_CampaignCustomizerError) Number() protoreflect.EnumNumber {
@@ -80,7 +80,7 @@ func (x CampaignCustomizerErrorEnum_CampaignCustomizerError) Number() protorefle
// Deprecated: Use CampaignCustomizerErrorEnum_CampaignCustomizerError.Descriptor instead.
func (CampaignCustomizerErrorEnum_CampaignCustomizerError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible campaign customizer errors.
@@ -93,7 +93,7 @@ type CampaignCustomizerErrorEnum struct {
func (x *CampaignCustomizerErrorEnum) Reset() {
*x = CampaignCustomizerErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -106,7 +106,7 @@ func (x *CampaignCustomizerErrorEnum) String() string {
func (*CampaignCustomizerErrorEnum) ProtoMessage() {}
func (x *CampaignCustomizerErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -119,18 +119,18 @@ func (x *CampaignCustomizerErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CampaignCustomizerErrorEnum.ProtoReflect.Descriptor instead.
func (*CampaignCustomizerErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_campaign_customizer_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_campaign_customizer_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f,
0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x22, 0x56, 0x0a, 0x1b, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75,
0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x37, 0x0a, 0x17, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73,
@@ -138,43 +138,43 @@ var file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_rawDesc
0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a,
0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x42, 0xfc, 0x01, 0x0a, 0x23, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x42, 0x1c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74,
0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_rawDescData = file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_rawDescData = file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_goTypes = []interface{}{
- (CampaignCustomizerErrorEnum_CampaignCustomizerError)(0), // 0: google.ads.googleads.v16.errors.CampaignCustomizerErrorEnum.CampaignCustomizerError
- (*CampaignCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CampaignCustomizerErrorEnum
+var file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_goTypes = []interface{}{
+ (CampaignCustomizerErrorEnum_CampaignCustomizerError)(0), // 0: google.ads.googleads.v17.errors.CampaignCustomizerErrorEnum.CampaignCustomizerError
+ (*CampaignCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CampaignCustomizerErrorEnum
}
-var file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -182,13 +182,13 @@ var file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_init() }
-func file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_init() {
- if File_google_ads_googleads_v16_errors_campaign_customizer_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_init() }
+func file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_campaign_customizer_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CampaignCustomizerErrorEnum); i {
case 0:
return &v.state
@@ -205,19 +205,19 @@ func file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_campaign_customizer_error_proto = out.File
- file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_campaign_customizer_error_proto = out.File
+ file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_depIdxs = nil
}
diff --git a/errors/campaign_draft_error.pb.go b/errors/campaign_draft_error.pb.go
index b3e0ef55..7201cee6 100644
--- a/errors/campaign_draft_error.pb.go
+++ b/errors/campaign_draft_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/campaign_draft_error.proto
+// source: google/ads/googleads/v17/errors/campaign_draft_error.proto
package errors
@@ -112,11 +112,11 @@ func (x CampaignDraftErrorEnum_CampaignDraftError) String() string {
}
func (CampaignDraftErrorEnum_CampaignDraftError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_campaign_draft_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_campaign_draft_error_proto_enumTypes[0].Descriptor()
}
func (CampaignDraftErrorEnum_CampaignDraftError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_campaign_draft_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_campaign_draft_error_proto_enumTypes[0]
}
func (x CampaignDraftErrorEnum_CampaignDraftError) Number() protoreflect.EnumNumber {
@@ -125,7 +125,7 @@ func (x CampaignDraftErrorEnum_CampaignDraftError) Number() protoreflect.EnumNum
// Deprecated: Use CampaignDraftErrorEnum_CampaignDraftError.Descriptor instead.
func (CampaignDraftErrorEnum_CampaignDraftError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_draft_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_campaign_draft_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible campaign draft errors.
@@ -138,7 +138,7 @@ type CampaignDraftErrorEnum struct {
func (x *CampaignDraftErrorEnum) Reset() {
*x = CampaignDraftErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_campaign_draft_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_draft_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -151,7 +151,7 @@ func (x *CampaignDraftErrorEnum) String() string {
func (*CampaignDraftErrorEnum) ProtoMessage() {}
func (x *CampaignDraftErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_campaign_draft_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_draft_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -164,18 +164,18 @@ func (x *CampaignDraftErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CampaignDraftErrorEnum.ProtoReflect.Descriptor instead.
func (*CampaignDraftErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_draft_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_campaign_draft_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_campaign_draft_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_campaign_draft_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_campaign_draft_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_campaign_draft_error_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x64, 0x72, 0x61, 0x66, 0x74,
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xc8, 0x03,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xc8, 0x03,
0x0a, 0x16, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xad, 0x03, 0x0a, 0x12, 0x43, 0x61, 0x6d,
0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
@@ -206,42 +206,42 @@ var file_google_ads_googleads_v16_errors_campaign_draft_error_proto_rawDesc = []
0x4f, 0x52, 0x5f, 0x50, 0x52, 0x4f, 0x4d, 0x4f, 0x54, 0x45, 0x44, 0x5f, 0x44, 0x52, 0x41, 0x46,
0x54, 0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x10, 0x0b, 0x42, 0xf7, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x42, 0x17, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_campaign_draft_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_campaign_draft_error_proto_rawDescData = file_google_ads_googleads_v16_errors_campaign_draft_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_campaign_draft_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_campaign_draft_error_proto_rawDescData = file_google_ads_googleads_v17_errors_campaign_draft_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_campaign_draft_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_campaign_draft_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_campaign_draft_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_campaign_draft_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_campaign_draft_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_campaign_draft_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_campaign_draft_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_campaign_draft_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_campaign_draft_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_campaign_draft_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_campaign_draft_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_draft_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_draft_error_proto_goTypes = []interface{}{
- (CampaignDraftErrorEnum_CampaignDraftError)(0), // 0: google.ads.googleads.v16.errors.CampaignDraftErrorEnum.CampaignDraftError
- (*CampaignDraftErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CampaignDraftErrorEnum
+var file_google_ads_googleads_v17_errors_campaign_draft_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_draft_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_draft_error_proto_goTypes = []interface{}{
+ (CampaignDraftErrorEnum_CampaignDraftError)(0), // 0: google.ads.googleads.v17.errors.CampaignDraftErrorEnum.CampaignDraftError
+ (*CampaignDraftErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CampaignDraftErrorEnum
}
-var file_google_ads_googleads_v16_errors_campaign_draft_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_campaign_draft_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -249,13 +249,13 @@ var file_google_ads_googleads_v16_errors_campaign_draft_error_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_campaign_draft_error_proto_init() }
-func file_google_ads_googleads_v16_errors_campaign_draft_error_proto_init() {
- if File_google_ads_googleads_v16_errors_campaign_draft_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_campaign_draft_error_proto_init() }
+func file_google_ads_googleads_v17_errors_campaign_draft_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_campaign_draft_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_campaign_draft_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_campaign_draft_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CampaignDraftErrorEnum); i {
case 0:
return &v.state
@@ -272,19 +272,19 @@ func file_google_ads_googleads_v16_errors_campaign_draft_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_campaign_draft_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_campaign_draft_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_campaign_draft_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_campaign_draft_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_campaign_draft_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_campaign_draft_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_campaign_draft_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_campaign_draft_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_campaign_draft_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_campaign_draft_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_campaign_draft_error_proto = out.File
- file_google_ads_googleads_v16_errors_campaign_draft_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_campaign_draft_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_campaign_draft_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_campaign_draft_error_proto = out.File
+ file_google_ads_googleads_v17_errors_campaign_draft_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_campaign_draft_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_campaign_draft_error_proto_depIdxs = nil
}
diff --git a/errors/campaign_error.pb.go b/errors/campaign_error.pb.go
index 85afef15..a50cba75 100644
--- a/errors/campaign_error.pb.go
+++ b/errors/campaign_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/campaign_error.proto
+// source: google/ads/googleads/v17/errors/campaign_error.proto
package errors
@@ -232,6 +232,21 @@ const (
// Dynamic text asset cannot be opted out when final URL expansion is opted
// in.
CampaignErrorEnum_DYNAMIC_TEXT_ASSET_CANNOT_OPT_OUT_WITH_FINAL_URL_EXPANSION_OPT_IN CampaignErrorEnum_CampaignError = 89
+ // Can not set a campaign level match type.
+ CampaignErrorEnum_CANNOT_SET_CAMPAIGN_KEYWORD_MATCH_TYPE CampaignErrorEnum_CampaignError = 90
+ // The campaign level keyword match type cannot be switched to non-broad
+ // when keyword conversion to broad match is in process.
+ CampaignErrorEnum_CANNOT_DISABLE_BROAD_MATCH_WHEN_KEYWORD_CONVERSION_IN_PROCESS CampaignErrorEnum_CampaignError = 91
+ // The campaign level keyword match type cannot be switched to non-broad
+ // when the campaign has any attached brand list or when a brand hint shared
+ // set is attached to the campaign.
+ CampaignErrorEnum_CANNOT_DISABLE_BROAD_MATCH_WHEN_TARGETING_BRANDS CampaignErrorEnum_CampaignError = 92
+ // Cannot set campaign level keyword match type to BROAD if the campaign is
+ // a base campaign with an associated trial that is currently promoting.
+ CampaignErrorEnum_CANNOT_ENABLE_BROAD_MATCH_FOR_BASE_CAMPAIGN_WITH_PROMOTING_TRIAL CampaignErrorEnum_CampaignError = 93
+ // Cannot set campaign level keyword match type to BROAD if the campaign is
+ // a trial currently promoting.
+ CampaignErrorEnum_CANNOT_ENABLE_BROAD_MATCH_FOR_PROMOTING_TRIAL_CAMPAIGN CampaignErrorEnum_CampaignError = 94
)
// Enum value maps for CampaignErrorEnum_CampaignError.
@@ -316,6 +331,11 @@ var (
87: "CANNOT_TARGET_NETWORK_FOR_COMPARISON_SHOPPING_SERVICE_LINKED_ACCOUNTS",
88: "CANNOT_MODIFY_TEXT_ASSET_AUTOMATION_WITH_ENABLED_TRIAL",
89: "DYNAMIC_TEXT_ASSET_CANNOT_OPT_OUT_WITH_FINAL_URL_EXPANSION_OPT_IN",
+ 90: "CANNOT_SET_CAMPAIGN_KEYWORD_MATCH_TYPE",
+ 91: "CANNOT_DISABLE_BROAD_MATCH_WHEN_KEYWORD_CONVERSION_IN_PROCESS",
+ 92: "CANNOT_DISABLE_BROAD_MATCH_WHEN_TARGETING_BRANDS",
+ 93: "CANNOT_ENABLE_BROAD_MATCH_FOR_BASE_CAMPAIGN_WITH_PROMOTING_TRIAL",
+ 94: "CANNOT_ENABLE_BROAD_MATCH_FOR_PROMOTING_TRIAL_CAMPAIGN",
}
CampaignErrorEnum_CampaignError_value = map[string]int32{
"UNSPECIFIED": 0,
@@ -397,6 +417,11 @@ var (
"CANNOT_TARGET_NETWORK_FOR_COMPARISON_SHOPPING_SERVICE_LINKED_ACCOUNTS": 87,
"CANNOT_MODIFY_TEXT_ASSET_AUTOMATION_WITH_ENABLED_TRIAL": 88,
"DYNAMIC_TEXT_ASSET_CANNOT_OPT_OUT_WITH_FINAL_URL_EXPANSION_OPT_IN": 89,
+ "CANNOT_SET_CAMPAIGN_KEYWORD_MATCH_TYPE": 90,
+ "CANNOT_DISABLE_BROAD_MATCH_WHEN_KEYWORD_CONVERSION_IN_PROCESS": 91,
+ "CANNOT_DISABLE_BROAD_MATCH_WHEN_TARGETING_BRANDS": 92,
+ "CANNOT_ENABLE_BROAD_MATCH_FOR_BASE_CAMPAIGN_WITH_PROMOTING_TRIAL": 93,
+ "CANNOT_ENABLE_BROAD_MATCH_FOR_PROMOTING_TRIAL_CAMPAIGN": 94,
}
)
@@ -411,11 +436,11 @@ func (x CampaignErrorEnum_CampaignError) String() string {
}
func (CampaignErrorEnum_CampaignError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_campaign_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_campaign_error_proto_enumTypes[0].Descriptor()
}
func (CampaignErrorEnum_CampaignError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_campaign_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_campaign_error_proto_enumTypes[0]
}
func (x CampaignErrorEnum_CampaignError) Number() protoreflect.EnumNumber {
@@ -424,7 +449,7 @@ func (x CampaignErrorEnum_CampaignError) Number() protoreflect.EnumNumber {
// Deprecated: Use CampaignErrorEnum_CampaignError.Descriptor instead.
func (CampaignErrorEnum_CampaignError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_campaign_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible campaign errors.
@@ -437,7 +462,7 @@ type CampaignErrorEnum struct {
func (x *CampaignErrorEnum) Reset() {
*x = CampaignErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_campaign_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -450,7 +475,7 @@ func (x *CampaignErrorEnum) String() string {
func (*CampaignErrorEnum) ProtoMessage() {}
func (x *CampaignErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_campaign_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -463,19 +488,19 @@ func (x *CampaignErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CampaignErrorEnum.ProtoReflect.Descriptor instead.
func (*CampaignErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_campaign_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_campaign_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_campaign_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_campaign_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_campaign_error_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
- 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xdd, 0x1a, 0x0a, 0x11, 0x43, 0x61, 0x6d, 0x70,
- 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xc7, 0x1a,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
+ 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x84, 0x1d, 0x0a, 0x11, 0x43, 0x61, 0x6d, 0x70,
+ 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xee, 0x1c,
0x0a, 0x0d, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00,
0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x21, 0x0a,
@@ -688,44 +713,62 @@ var file_google_ads_googleads_v16_errors_campaign_error_proto_rawDesc = []byte{
0x5f, 0x41, 0x53, 0x53, 0x45, 0x54, 0x5f, 0x43, 0x41, 0x4e, 0x4e, 0x4f, 0x54, 0x5f, 0x4f, 0x50,
0x54, 0x5f, 0x4f, 0x55, 0x54, 0x5f, 0x57, 0x49, 0x54, 0x48, 0x5f, 0x46, 0x49, 0x4e, 0x41, 0x4c,
0x5f, 0x55, 0x52, 0x4c, 0x5f, 0x45, 0x58, 0x50, 0x41, 0x4e, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x4f,
- 0x50, 0x54, 0x5f, 0x49, 0x4e, 0x10, 0x59, 0x42, 0xf2, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42,
- 0x12, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72,
- 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
- 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47,
- 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
- 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
- 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x33,
+ 0x50, 0x54, 0x5f, 0x49, 0x4e, 0x10, 0x59, 0x12, 0x2a, 0x0a, 0x26, 0x43, 0x41, 0x4e, 0x4e, 0x4f,
+ 0x54, 0x5f, 0x53, 0x45, 0x54, 0x5f, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x5f, 0x4b,
+ 0x45, 0x59, 0x57, 0x4f, 0x52, 0x44, 0x5f, 0x4d, 0x41, 0x54, 0x43, 0x48, 0x5f, 0x54, 0x59, 0x50,
+ 0x45, 0x10, 0x5a, 0x12, 0x41, 0x0a, 0x3d, 0x43, 0x41, 0x4e, 0x4e, 0x4f, 0x54, 0x5f, 0x44, 0x49,
+ 0x53, 0x41, 0x42, 0x4c, 0x45, 0x5f, 0x42, 0x52, 0x4f, 0x41, 0x44, 0x5f, 0x4d, 0x41, 0x54, 0x43,
+ 0x48, 0x5f, 0x57, 0x48, 0x45, 0x4e, 0x5f, 0x4b, 0x45, 0x59, 0x57, 0x4f, 0x52, 0x44, 0x5f, 0x43,
+ 0x4f, 0x4e, 0x56, 0x45, 0x52, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x49, 0x4e, 0x5f, 0x50, 0x52, 0x4f,
+ 0x43, 0x45, 0x53, 0x53, 0x10, 0x5b, 0x12, 0x34, 0x0a, 0x30, 0x43, 0x41, 0x4e, 0x4e, 0x4f, 0x54,
+ 0x5f, 0x44, 0x49, 0x53, 0x41, 0x42, 0x4c, 0x45, 0x5f, 0x42, 0x52, 0x4f, 0x41, 0x44, 0x5f, 0x4d,
+ 0x41, 0x54, 0x43, 0x48, 0x5f, 0x57, 0x48, 0x45, 0x4e, 0x5f, 0x54, 0x41, 0x52, 0x47, 0x45, 0x54,
+ 0x49, 0x4e, 0x47, 0x5f, 0x42, 0x52, 0x41, 0x4e, 0x44, 0x53, 0x10, 0x5c, 0x12, 0x44, 0x0a, 0x40,
+ 0x43, 0x41, 0x4e, 0x4e, 0x4f, 0x54, 0x5f, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x5f, 0x42, 0x52,
+ 0x4f, 0x41, 0x44, 0x5f, 0x4d, 0x41, 0x54, 0x43, 0x48, 0x5f, 0x46, 0x4f, 0x52, 0x5f, 0x42, 0x41,
+ 0x53, 0x45, 0x5f, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x5f, 0x57, 0x49, 0x54, 0x48,
+ 0x5f, 0x50, 0x52, 0x4f, 0x4d, 0x4f, 0x54, 0x49, 0x4e, 0x47, 0x5f, 0x54, 0x52, 0x49, 0x41, 0x4c,
+ 0x10, 0x5d, 0x12, 0x3a, 0x0a, 0x36, 0x43, 0x41, 0x4e, 0x4e, 0x4f, 0x54, 0x5f, 0x45, 0x4e, 0x41,
+ 0x42, 0x4c, 0x45, 0x5f, 0x42, 0x52, 0x4f, 0x41, 0x44, 0x5f, 0x4d, 0x41, 0x54, 0x43, 0x48, 0x5f,
+ 0x46, 0x4f, 0x52, 0x5f, 0x50, 0x52, 0x4f, 0x4d, 0x4f, 0x54, 0x49, 0x4e, 0x47, 0x5f, 0x54, 0x52,
+ 0x49, 0x41, 0x4c, 0x5f, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x10, 0x5e, 0x42, 0xf2,
+ 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
+ 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
+ 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_campaign_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_campaign_error_proto_rawDescData = file_google_ads_googleads_v16_errors_campaign_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_campaign_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_campaign_error_proto_rawDescData = file_google_ads_googleads_v17_errors_campaign_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_campaign_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_campaign_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_campaign_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_campaign_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_campaign_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_campaign_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_campaign_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_campaign_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_campaign_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_campaign_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_campaign_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_error_proto_goTypes = []interface{}{
- (CampaignErrorEnum_CampaignError)(0), // 0: google.ads.googleads.v16.errors.CampaignErrorEnum.CampaignError
- (*CampaignErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CampaignErrorEnum
+var file_google_ads_googleads_v17_errors_campaign_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_error_proto_goTypes = []interface{}{
+ (CampaignErrorEnum_CampaignError)(0), // 0: google.ads.googleads.v17.errors.CampaignErrorEnum.CampaignError
+ (*CampaignErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CampaignErrorEnum
}
-var file_google_ads_googleads_v16_errors_campaign_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_campaign_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -733,13 +776,13 @@ var file_google_ads_googleads_v16_errors_campaign_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_campaign_error_proto_init() }
-func file_google_ads_googleads_v16_errors_campaign_error_proto_init() {
- if File_google_ads_googleads_v16_errors_campaign_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_campaign_error_proto_init() }
+func file_google_ads_googleads_v17_errors_campaign_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_campaign_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_campaign_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_campaign_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CampaignErrorEnum); i {
case 0:
return &v.state
@@ -756,19 +799,19 @@ func file_google_ads_googleads_v16_errors_campaign_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_campaign_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_campaign_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_campaign_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_campaign_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_campaign_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_campaign_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_campaign_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_campaign_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_campaign_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_campaign_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_campaign_error_proto = out.File
- file_google_ads_googleads_v16_errors_campaign_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_campaign_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_campaign_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_campaign_error_proto = out.File
+ file_google_ads_googleads_v17_errors_campaign_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_campaign_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_campaign_error_proto_depIdxs = nil
}
diff --git a/errors/campaign_experiment_error.pb.go b/errors/campaign_experiment_error.pb.go
index 80d1200e..0cef30cc 100644
--- a/errors/campaign_experiment_error.pb.go
+++ b/errors/campaign_experiment_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/campaign_experiment_error.proto
+// source: google/ads/googleads/v17/errors/campaign_experiment_error.proto
package errors
@@ -114,11 +114,11 @@ func (x CampaignExperimentErrorEnum_CampaignExperimentError) String() string {
}
func (CampaignExperimentErrorEnum_CampaignExperimentError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_enumTypes[0].Descriptor()
}
func (CampaignExperimentErrorEnum_CampaignExperimentError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_enumTypes[0]
}
func (x CampaignExperimentErrorEnum_CampaignExperimentError) Number() protoreflect.EnumNumber {
@@ -127,7 +127,7 @@ func (x CampaignExperimentErrorEnum_CampaignExperimentError) Number() protorefle
// Deprecated: Use CampaignExperimentErrorEnum_CampaignExperimentError.Descriptor instead.
func (CampaignExperimentErrorEnum_CampaignExperimentError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible campaign experiment errors.
@@ -140,7 +140,7 @@ type CampaignExperimentErrorEnum struct {
func (x *CampaignExperimentErrorEnum) Reset() {
*x = CampaignExperimentErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -153,7 +153,7 @@ func (x *CampaignExperimentErrorEnum) String() string {
func (*CampaignExperimentErrorEnum) ProtoMessage() {}
func (x *CampaignExperimentErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -166,18 +166,18 @@ func (x *CampaignExperimentErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CampaignExperimentErrorEnum.ProtoReflect.Descriptor instead.
func (*CampaignExperimentErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_campaign_experiment_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_campaign_experiment_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x78, 0x70, 0x65, 0x72,
0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x22, 0x80, 0x04, 0x0a, 0x1b, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45,
0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
0x75, 0x6d, 0x22, 0xe0, 0x03, 0x0a, 0x17, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45,
@@ -212,42 +212,42 @@ var file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_rawDesc
0x49, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x44, 0x55, 0x45, 0x5f, 0x54, 0x4f, 0x5f, 0x53, 0x54, 0x41,
0x54, 0x55, 0x53, 0x10, 0x0b, 0x42, 0xfc, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1c, 0x43,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1c, 0x43,
0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e,
0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02,
0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_rawDescData = file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_rawDescData = file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_goTypes = []interface{}{
- (CampaignExperimentErrorEnum_CampaignExperimentError)(0), // 0: google.ads.googleads.v16.errors.CampaignExperimentErrorEnum.CampaignExperimentError
- (*CampaignExperimentErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CampaignExperimentErrorEnum
+var file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_goTypes = []interface{}{
+ (CampaignExperimentErrorEnum_CampaignExperimentError)(0), // 0: google.ads.googleads.v17.errors.CampaignExperimentErrorEnum.CampaignExperimentError
+ (*CampaignExperimentErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CampaignExperimentErrorEnum
}
-var file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -255,13 +255,13 @@ var file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_init() }
-func file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_init() {
- if File_google_ads_googleads_v16_errors_campaign_experiment_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_init() }
+func file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_campaign_experiment_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CampaignExperimentErrorEnum); i {
case 0:
return &v.state
@@ -278,19 +278,19 @@ func file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_campaign_experiment_error_proto = out.File
- file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_campaign_experiment_error_proto = out.File
+ file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_depIdxs = nil
}
diff --git a/errors/campaign_feed_error.pb.go b/errors/campaign_feed_error.pb.go
index 8b85c8f3..293ebb69 100644
--- a/errors/campaign_feed_error.pb.go
+++ b/errors/campaign_feed_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/campaign_feed_error.proto
+// source: google/ads/googleads/v17/errors/campaign_feed_error.proto
package errors
@@ -101,11 +101,11 @@ func (x CampaignFeedErrorEnum_CampaignFeedError) String() string {
}
func (CampaignFeedErrorEnum_CampaignFeedError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_campaign_feed_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_campaign_feed_error_proto_enumTypes[0].Descriptor()
}
func (CampaignFeedErrorEnum_CampaignFeedError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_campaign_feed_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_campaign_feed_error_proto_enumTypes[0]
}
func (x CampaignFeedErrorEnum_CampaignFeedError) Number() protoreflect.EnumNumber {
@@ -114,7 +114,7 @@ func (x CampaignFeedErrorEnum_CampaignFeedError) Number() protoreflect.EnumNumbe
// Deprecated: Use CampaignFeedErrorEnum_CampaignFeedError.Descriptor instead.
func (CampaignFeedErrorEnum_CampaignFeedError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_feed_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_campaign_feed_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible campaign feed errors.
@@ -127,7 +127,7 @@ type CampaignFeedErrorEnum struct {
func (x *CampaignFeedErrorEnum) Reset() {
*x = CampaignFeedErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_campaign_feed_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_feed_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -140,7 +140,7 @@ func (x *CampaignFeedErrorEnum) String() string {
func (*CampaignFeedErrorEnum) ProtoMessage() {}
func (x *CampaignFeedErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_campaign_feed_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_feed_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -153,18 +153,18 @@ func (x *CampaignFeedErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CampaignFeedErrorEnum.ProtoReflect.Descriptor instead.
func (*CampaignFeedErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_feed_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_campaign_feed_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_campaign_feed_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_campaign_feed_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_campaign_feed_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_campaign_feed_error_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x8c, 0x03, 0x0a,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x8c, 0x03, 0x0a,
0x15, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xf2, 0x02, 0x0a, 0x11, 0x43, 0x61, 0x6d, 0x70, 0x61,
0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b,
@@ -191,42 +191,42 @@ var file_google_ads_googleads_v16_errors_campaign_feed_error_proto_rawDesc = []b
0x45, 0x47, 0x41, 0x43, 0x59, 0x5f, 0x46, 0x45, 0x45, 0x44, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f,
0x52, 0x45, 0x41, 0x44, 0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x10, 0x0a, 0x42, 0xf6, 0x01, 0x0a, 0x23,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x42, 0x16, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65,
0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02,
0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_campaign_feed_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_campaign_feed_error_proto_rawDescData = file_google_ads_googleads_v16_errors_campaign_feed_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_campaign_feed_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_campaign_feed_error_proto_rawDescData = file_google_ads_googleads_v17_errors_campaign_feed_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_campaign_feed_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_campaign_feed_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_campaign_feed_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_campaign_feed_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_campaign_feed_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_campaign_feed_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_campaign_feed_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_campaign_feed_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_campaign_feed_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_campaign_feed_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_campaign_feed_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_feed_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_feed_error_proto_goTypes = []interface{}{
- (CampaignFeedErrorEnum_CampaignFeedError)(0), // 0: google.ads.googleads.v16.errors.CampaignFeedErrorEnum.CampaignFeedError
- (*CampaignFeedErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CampaignFeedErrorEnum
+var file_google_ads_googleads_v17_errors_campaign_feed_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_feed_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_feed_error_proto_goTypes = []interface{}{
+ (CampaignFeedErrorEnum_CampaignFeedError)(0), // 0: google.ads.googleads.v17.errors.CampaignFeedErrorEnum.CampaignFeedError
+ (*CampaignFeedErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CampaignFeedErrorEnum
}
-var file_google_ads_googleads_v16_errors_campaign_feed_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_campaign_feed_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -234,13 +234,13 @@ var file_google_ads_googleads_v16_errors_campaign_feed_error_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_campaign_feed_error_proto_init() }
-func file_google_ads_googleads_v16_errors_campaign_feed_error_proto_init() {
- if File_google_ads_googleads_v16_errors_campaign_feed_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_campaign_feed_error_proto_init() }
+func file_google_ads_googleads_v17_errors_campaign_feed_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_campaign_feed_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_campaign_feed_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_campaign_feed_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CampaignFeedErrorEnum); i {
case 0:
return &v.state
@@ -257,19 +257,19 @@ func file_google_ads_googleads_v16_errors_campaign_feed_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_campaign_feed_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_campaign_feed_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_campaign_feed_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_campaign_feed_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_campaign_feed_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_campaign_feed_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_campaign_feed_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_campaign_feed_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_campaign_feed_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_campaign_feed_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_campaign_feed_error_proto = out.File
- file_google_ads_googleads_v16_errors_campaign_feed_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_campaign_feed_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_campaign_feed_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_campaign_feed_error_proto = out.File
+ file_google_ads_googleads_v17_errors_campaign_feed_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_campaign_feed_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_campaign_feed_error_proto_depIdxs = nil
}
diff --git a/errors/campaign_lifecycle_goal_error.pb.go b/errors/campaign_lifecycle_goal_error.pb.go
index 6451ff5e..ad794d7b 100644
--- a/errors/campaign_lifecycle_goal_error.pb.go
+++ b/errors/campaign_lifecycle_goal_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/campaign_lifecycle_goal_error.proto
+// source: google/ads/googleads/v17/errors/campaign_lifecycle_goal_error.proto
package errors
@@ -144,11 +144,11 @@ func (x CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError) String() stri
}
func (CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_enumTypes[0].Descriptor()
}
func (CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_enumTypes[0]
}
func (x CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError) Number() protoreflect.EnumNumber {
@@ -157,7 +157,7 @@ func (x CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError) Number() prot
// Deprecated: Use CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError.Descriptor instead.
func (CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible campaign lifecycle goal errors.
@@ -170,7 +170,7 @@ type CampaignLifecycleGoalErrorEnum struct {
func (x *CampaignLifecycleGoalErrorEnum) Reset() {
*x = CampaignLifecycleGoalErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -183,7 +183,7 @@ func (x *CampaignLifecycleGoalErrorEnum) String() string {
func (*CampaignLifecycleGoalErrorEnum) ProtoMessage() {}
func (x *CampaignLifecycleGoalErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -196,18 +196,18 @@ func (x *CampaignLifecycleGoalErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CampaignLifecycleGoalErrorEnum.ProtoReflect.Descriptor instead.
func (*CampaignLifecycleGoalErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x63,
0x79, 0x63, 0x6c, 0x65, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xb5, 0x04, 0x0a, 0x1e, 0x43, 0x61, 0x6d, 0x70, 0x61,
0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x92, 0x04, 0x0a, 0x1a, 0x43, 0x61,
@@ -245,43 +245,43 @@ var file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_raw
0x47, 0x48, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x45,
0x52, 0x5f, 0x44, 0x45, 0x46, 0x49, 0x4e, 0x49, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x0c, 0x42, 0xff,
0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e,
0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_rawDescData = file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_rawDescData = file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_goTypes = []interface{}{
- (CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError)(0), // 0: google.ads.googleads.v16.errors.CampaignLifecycleGoalErrorEnum.CampaignLifecycleGoalError
- (*CampaignLifecycleGoalErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CampaignLifecycleGoalErrorEnum
+var file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_goTypes = []interface{}{
+ (CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError)(0), // 0: google.ads.googleads.v17.errors.CampaignLifecycleGoalErrorEnum.CampaignLifecycleGoalError
+ (*CampaignLifecycleGoalErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CampaignLifecycleGoalErrorEnum
}
-var file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -289,13 +289,13 @@ var file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_init() }
-func file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_init() {
- if File_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_init() }
+func file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CampaignLifecycleGoalErrorEnum); i {
case 0:
return &v.state
@@ -312,19 +312,19 @@ func file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto = out.File
- file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto = out.File
+ file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_depIdxs = nil
}
diff --git a/errors/campaign_shared_set_error.pb.go b/errors/campaign_shared_set_error.pb.go
index 9f028c40..694e0aa7 100644
--- a/errors/campaign_shared_set_error.pb.go
+++ b/errors/campaign_shared_set_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/campaign_shared_set_error.proto
+// source: google/ads/googleads/v17/errors/campaign_shared_set_error.proto
package errors
@@ -71,11 +71,11 @@ func (x CampaignSharedSetErrorEnum_CampaignSharedSetError) String() string {
}
func (CampaignSharedSetErrorEnum_CampaignSharedSetError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_enumTypes[0].Descriptor()
}
func (CampaignSharedSetErrorEnum_CampaignSharedSetError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_enumTypes[0]
}
func (x CampaignSharedSetErrorEnum_CampaignSharedSetError) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x CampaignSharedSetErrorEnum_CampaignSharedSetError) Number() protoreflect
// Deprecated: Use CampaignSharedSetErrorEnum_CampaignSharedSetError.Descriptor instead.
func (CampaignSharedSetErrorEnum_CampaignSharedSetError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible campaign shared set errors.
@@ -97,7 +97,7 @@ type CampaignSharedSetErrorEnum struct {
func (x *CampaignSharedSetErrorEnum) Reset() {
*x = CampaignSharedSetErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *CampaignSharedSetErrorEnum) String() string {
func (*CampaignSharedSetErrorEnum) ProtoMessage() {}
func (x *CampaignSharedSetErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,18 +123,18 @@ func (x *CampaignSharedSetErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CampaignSharedSetErrorEnum.ProtoReflect.Descriptor instead.
func (*CampaignSharedSetErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_campaign_shared_set_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_campaign_shared_set_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65,
0x64, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x22, 0x72, 0x0a, 0x1a, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68,
0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x54, 0x0a, 0x16, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72,
@@ -144,42 +144,42 @@ var file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_rawDesc
0x45, 0x44, 0x5f, 0x53, 0x45, 0x54, 0x5f, 0x41, 0x43, 0x43, 0x45, 0x53, 0x53, 0x5f, 0x44, 0x45,
0x4e, 0x49, 0x45, 0x44, 0x10, 0x02, 0x42, 0xfb, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1b,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1b,
0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65,
0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02,
0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_rawDescData = file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_rawDescData = file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_goTypes = []interface{}{
- (CampaignSharedSetErrorEnum_CampaignSharedSetError)(0), // 0: google.ads.googleads.v16.errors.CampaignSharedSetErrorEnum.CampaignSharedSetError
- (*CampaignSharedSetErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CampaignSharedSetErrorEnum
+var file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_goTypes = []interface{}{
+ (CampaignSharedSetErrorEnum_CampaignSharedSetError)(0), // 0: google.ads.googleads.v17.errors.CampaignSharedSetErrorEnum.CampaignSharedSetError
+ (*CampaignSharedSetErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CampaignSharedSetErrorEnum
}
-var file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -187,13 +187,13 @@ var file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_init() }
-func file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_init() {
- if File_google_ads_googleads_v16_errors_campaign_shared_set_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_init() }
+func file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_campaign_shared_set_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CampaignSharedSetErrorEnum); i {
case 0:
return &v.state
@@ -210,19 +210,19 @@ func file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_campaign_shared_set_error_proto = out.File
- file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_campaign_shared_set_error_proto = out.File
+ file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_depIdxs = nil
}
diff --git a/errors/change_event_error.pb.go b/errors/change_event_error.pb.go
index b68d4f08..4c6ffb35 100644
--- a/errors/change_event_error.pb.go
+++ b/errors/change_event_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/change_event_error.proto
+// source: google/ads/googleads/v17/errors/change_event_error.proto
package errors
@@ -91,11 +91,11 @@ func (x ChangeEventErrorEnum_ChangeEventError) String() string {
}
func (ChangeEventErrorEnum_ChangeEventError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_change_event_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_change_event_error_proto_enumTypes[0].Descriptor()
}
func (ChangeEventErrorEnum_ChangeEventError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_change_event_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_change_event_error_proto_enumTypes[0]
}
func (x ChangeEventErrorEnum_ChangeEventError) Number() protoreflect.EnumNumber {
@@ -104,7 +104,7 @@ func (x ChangeEventErrorEnum_ChangeEventError) Number() protoreflect.EnumNumber
// Deprecated: Use ChangeEventErrorEnum_ChangeEventError.Descriptor instead.
func (ChangeEventErrorEnum_ChangeEventError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_change_event_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_change_event_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible change event errors.
@@ -117,7 +117,7 @@ type ChangeEventErrorEnum struct {
func (x *ChangeEventErrorEnum) Reset() {
*x = ChangeEventErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_change_event_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_change_event_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -130,7 +130,7 @@ func (x *ChangeEventErrorEnum) String() string {
func (*ChangeEventErrorEnum) ProtoMessage() {}
func (x *ChangeEventErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_change_event_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_change_event_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -143,18 +143,18 @@ func (x *ChangeEventErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChangeEventErrorEnum.ProtoReflect.Descriptor instead.
func (*ChangeEventErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_change_event_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_change_event_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_change_event_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_change_event_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_change_event_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_change_event_error_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xd4, 0x01, 0x0a, 0x14,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xd4, 0x01, 0x0a, 0x14,
0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0xbb, 0x01, 0x0a, 0x10, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45,
0x76, 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53,
@@ -170,42 +170,42 @@ var file_google_ads_googleads_v16_errors_change_event_error_proto_rawDesc = []by
0x4c, 0x49, 0x44, 0x5f, 0x4c, 0x49, 0x4d, 0x49, 0x54, 0x5f, 0x43, 0x4c, 0x41, 0x55, 0x53, 0x45,
0x10, 0x06, 0x42, 0xf5, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, 0x43, 0x68, 0x61, 0x6e,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, 0x43, 0x68, 0x61, 0x6e,
0x67, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_change_event_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_change_event_error_proto_rawDescData = file_google_ads_googleads_v16_errors_change_event_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_change_event_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_change_event_error_proto_rawDescData = file_google_ads_googleads_v17_errors_change_event_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_change_event_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_change_event_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_change_event_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_change_event_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_change_event_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_change_event_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_change_event_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_change_event_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_change_event_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_change_event_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_change_event_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_change_event_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_change_event_error_proto_goTypes = []interface{}{
- (ChangeEventErrorEnum_ChangeEventError)(0), // 0: google.ads.googleads.v16.errors.ChangeEventErrorEnum.ChangeEventError
- (*ChangeEventErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ChangeEventErrorEnum
+var file_google_ads_googleads_v17_errors_change_event_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_change_event_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_change_event_error_proto_goTypes = []interface{}{
+ (ChangeEventErrorEnum_ChangeEventError)(0), // 0: google.ads.googleads.v17.errors.ChangeEventErrorEnum.ChangeEventError
+ (*ChangeEventErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ChangeEventErrorEnum
}
-var file_google_ads_googleads_v16_errors_change_event_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_change_event_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -213,13 +213,13 @@ var file_google_ads_googleads_v16_errors_change_event_error_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_change_event_error_proto_init() }
-func file_google_ads_googleads_v16_errors_change_event_error_proto_init() {
- if File_google_ads_googleads_v16_errors_change_event_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_change_event_error_proto_init() }
+func file_google_ads_googleads_v17_errors_change_event_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_change_event_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_change_event_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_change_event_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ChangeEventErrorEnum); i {
case 0:
return &v.state
@@ -236,19 +236,19 @@ func file_google_ads_googleads_v16_errors_change_event_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_change_event_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_change_event_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_change_event_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_change_event_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_change_event_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_change_event_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_change_event_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_change_event_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_change_event_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_change_event_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_change_event_error_proto = out.File
- file_google_ads_googleads_v16_errors_change_event_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_change_event_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_change_event_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_change_event_error_proto = out.File
+ file_google_ads_googleads_v17_errors_change_event_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_change_event_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_change_event_error_proto_depIdxs = nil
}
diff --git a/errors/change_status_error.pb.go b/errors/change_status_error.pb.go
index c491ef3a..31e8eb15 100644
--- a/errors/change_status_error.pb.go
+++ b/errors/change_status_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/change_status_error.proto
+// source: google/ads/googleads/v17/errors/change_status_error.proto
package errors
@@ -91,11 +91,11 @@ func (x ChangeStatusErrorEnum_ChangeStatusError) String() string {
}
func (ChangeStatusErrorEnum_ChangeStatusError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_change_status_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_change_status_error_proto_enumTypes[0].Descriptor()
}
func (ChangeStatusErrorEnum_ChangeStatusError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_change_status_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_change_status_error_proto_enumTypes[0]
}
func (x ChangeStatusErrorEnum_ChangeStatusError) Number() protoreflect.EnumNumber {
@@ -104,7 +104,7 @@ func (x ChangeStatusErrorEnum_ChangeStatusError) Number() protoreflect.EnumNumbe
// Deprecated: Use ChangeStatusErrorEnum_ChangeStatusError.Descriptor instead.
func (ChangeStatusErrorEnum_ChangeStatusError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_change_status_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_change_status_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible change status errors.
@@ -117,7 +117,7 @@ type ChangeStatusErrorEnum struct {
func (x *ChangeStatusErrorEnum) Reset() {
*x = ChangeStatusErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_change_status_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_change_status_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -130,7 +130,7 @@ func (x *ChangeStatusErrorEnum) String() string {
func (*ChangeStatusErrorEnum) ProtoMessage() {}
func (x *ChangeStatusErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_change_status_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_change_status_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -143,18 +143,18 @@ func (x *ChangeStatusErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ChangeStatusErrorEnum.ProtoReflect.Descriptor instead.
func (*ChangeStatusErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_change_status_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_change_status_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_change_status_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_change_status_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_change_status_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_change_status_error_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xd6, 0x01, 0x0a,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xd6, 0x01, 0x0a,
0x15, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xbc, 0x01, 0x0a, 0x11, 0x43, 0x68, 0x61, 0x6e, 0x67,
0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b,
@@ -170,42 +170,42 @@ var file_google_ads_googleads_v16_errors_change_status_error_proto_rawDesc = []b
0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x5f, 0x4c, 0x49, 0x4d, 0x49, 0x54, 0x5f, 0x43, 0x4c, 0x41,
0x55, 0x53, 0x45, 0x10, 0x07, 0x42, 0xf6, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x16, 0x43,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x16, 0x43,
0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_change_status_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_change_status_error_proto_rawDescData = file_google_ads_googleads_v16_errors_change_status_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_change_status_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_change_status_error_proto_rawDescData = file_google_ads_googleads_v17_errors_change_status_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_change_status_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_change_status_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_change_status_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_change_status_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_change_status_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_change_status_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_change_status_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_change_status_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_change_status_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_change_status_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_change_status_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_change_status_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_change_status_error_proto_goTypes = []interface{}{
- (ChangeStatusErrorEnum_ChangeStatusError)(0), // 0: google.ads.googleads.v16.errors.ChangeStatusErrorEnum.ChangeStatusError
- (*ChangeStatusErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ChangeStatusErrorEnum
+var file_google_ads_googleads_v17_errors_change_status_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_change_status_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_change_status_error_proto_goTypes = []interface{}{
+ (ChangeStatusErrorEnum_ChangeStatusError)(0), // 0: google.ads.googleads.v17.errors.ChangeStatusErrorEnum.ChangeStatusError
+ (*ChangeStatusErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ChangeStatusErrorEnum
}
-var file_google_ads_googleads_v16_errors_change_status_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_change_status_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -213,13 +213,13 @@ var file_google_ads_googleads_v16_errors_change_status_error_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_change_status_error_proto_init() }
-func file_google_ads_googleads_v16_errors_change_status_error_proto_init() {
- if File_google_ads_googleads_v16_errors_change_status_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_change_status_error_proto_init() }
+func file_google_ads_googleads_v17_errors_change_status_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_change_status_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_change_status_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_change_status_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ChangeStatusErrorEnum); i {
case 0:
return &v.state
@@ -236,19 +236,19 @@ func file_google_ads_googleads_v16_errors_change_status_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_change_status_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_change_status_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_change_status_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_change_status_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_change_status_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_change_status_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_change_status_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_change_status_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_change_status_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_change_status_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_change_status_error_proto = out.File
- file_google_ads_googleads_v16_errors_change_status_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_change_status_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_change_status_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_change_status_error_proto = out.File
+ file_google_ads_googleads_v17_errors_change_status_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_change_status_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_change_status_error_proto_depIdxs = nil
}
diff --git a/errors/collection_size_error.pb.go b/errors/collection_size_error.pb.go
index d2f8998d..a85fc561 100644
--- a/errors/collection_size_error.pb.go
+++ b/errors/collection_size_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/collection_size_error.proto
+// source: google/ads/googleads/v17/errors/collection_size_error.proto
package errors
@@ -75,11 +75,11 @@ func (x CollectionSizeErrorEnum_CollectionSizeError) String() string {
}
func (CollectionSizeErrorEnum_CollectionSizeError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_collection_size_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_collection_size_error_proto_enumTypes[0].Descriptor()
}
func (CollectionSizeErrorEnum_CollectionSizeError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_collection_size_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_collection_size_error_proto_enumTypes[0]
}
func (x CollectionSizeErrorEnum_CollectionSizeError) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x CollectionSizeErrorEnum_CollectionSizeError) Number() protoreflect.EnumN
// Deprecated: Use CollectionSizeErrorEnum_CollectionSizeError.Descriptor instead.
func (CollectionSizeErrorEnum_CollectionSizeError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_collection_size_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_collection_size_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible collection size errors.
@@ -101,7 +101,7 @@ type CollectionSizeErrorEnum struct {
func (x *CollectionSizeErrorEnum) Reset() {
*x = CollectionSizeErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_collection_size_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_collection_size_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *CollectionSizeErrorEnum) String() string {
func (*CollectionSizeErrorEnum) ProtoMessage() {}
func (x *CollectionSizeErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_collection_size_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_collection_size_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *CollectionSizeErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CollectionSizeErrorEnum.ProtoReflect.Descriptor instead.
func (*CollectionSizeErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_collection_size_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_collection_size_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_collection_size_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_collection_size_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_collection_size_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_collection_size_error_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x69, 0x7a,
0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x69,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x69,
0x0a, 0x17, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x69, 0x7a, 0x65,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4e, 0x0a, 0x13, 0x43, 0x6f, 0x6c,
0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x69, 0x7a, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72,
@@ -147,42 +147,42 @@ var file_google_ads_googleads_v16_errors_collection_size_error_proto_rawDesc = [
0x0a, 0x07, 0x54, 0x4f, 0x4f, 0x5f, 0x46, 0x45, 0x57, 0x10, 0x02, 0x12, 0x0c, 0x0a, 0x08, 0x54,
0x4f, 0x4f, 0x5f, 0x4d, 0x41, 0x4e, 0x59, 0x10, 0x03, 0x42, 0xf8, 0x01, 0x0a, 0x23, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x42, 0x18, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x69, 0x7a,
0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02,
0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_collection_size_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_collection_size_error_proto_rawDescData = file_google_ads_googleads_v16_errors_collection_size_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_collection_size_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_collection_size_error_proto_rawDescData = file_google_ads_googleads_v17_errors_collection_size_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_collection_size_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_collection_size_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_collection_size_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_collection_size_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_collection_size_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_collection_size_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_collection_size_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_collection_size_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_collection_size_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_collection_size_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_collection_size_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_collection_size_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_collection_size_error_proto_goTypes = []interface{}{
- (CollectionSizeErrorEnum_CollectionSizeError)(0), // 0: google.ads.googleads.v16.errors.CollectionSizeErrorEnum.CollectionSizeError
- (*CollectionSizeErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CollectionSizeErrorEnum
+var file_google_ads_googleads_v17_errors_collection_size_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_collection_size_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_collection_size_error_proto_goTypes = []interface{}{
+ (CollectionSizeErrorEnum_CollectionSizeError)(0), // 0: google.ads.googleads.v17.errors.CollectionSizeErrorEnum.CollectionSizeError
+ (*CollectionSizeErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CollectionSizeErrorEnum
}
-var file_google_ads_googleads_v16_errors_collection_size_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_collection_size_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_errors_collection_size_error_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_collection_size_error_proto_init() }
-func file_google_ads_googleads_v16_errors_collection_size_error_proto_init() {
- if File_google_ads_googleads_v16_errors_collection_size_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_collection_size_error_proto_init() }
+func file_google_ads_googleads_v17_errors_collection_size_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_collection_size_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_collection_size_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_collection_size_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CollectionSizeErrorEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_errors_collection_size_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_collection_size_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_collection_size_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_collection_size_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_collection_size_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_collection_size_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_collection_size_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_collection_size_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_collection_size_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_collection_size_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_collection_size_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_collection_size_error_proto = out.File
- file_google_ads_googleads_v16_errors_collection_size_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_collection_size_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_collection_size_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_collection_size_error_proto = out.File
+ file_google_ads_googleads_v17_errors_collection_size_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_collection_size_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_collection_size_error_proto_depIdxs = nil
}
diff --git a/errors/context_error.pb.go b/errors/context_error.pb.go
index ca8f9117..54c8cbb8 100644
--- a/errors/context_error.pb.go
+++ b/errors/context_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/context_error.proto
+// source: google/ads/googleads/v17/errors/context_error.proto
package errors
@@ -75,11 +75,11 @@ func (x ContextErrorEnum_ContextError) String() string {
}
func (ContextErrorEnum_ContextError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_context_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_context_error_proto_enumTypes[0].Descriptor()
}
func (ContextErrorEnum_ContextError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_context_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_context_error_proto_enumTypes[0]
}
func (x ContextErrorEnum_ContextError) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x ContextErrorEnum_ContextError) Number() protoreflect.EnumNumber {
// Deprecated: Use ContextErrorEnum_ContextError.Descriptor instead.
func (ContextErrorEnum_ContextError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_context_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_context_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible context errors.
@@ -101,7 +101,7 @@ type ContextErrorEnum struct {
func (x *ContextErrorEnum) Reset() {
*x = ContextErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_context_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_context_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *ContextErrorEnum) String() string {
func (*ContextErrorEnum) ProtoMessage() {}
func (x *ContextErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_context_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_context_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,17 +127,17 @@ func (x *ContextErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ContextErrorEnum.ProtoReflect.Descriptor instead.
func (*ContextErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_context_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_context_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_context_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_context_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_context_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_context_error_proto_rawDesc = []byte{
0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x9c, 0x01, 0x0a, 0x10, 0x43, 0x6f, 0x6e, 0x74, 0x65,
0x78, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x87, 0x01, 0x0a, 0x0c,
0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b,
@@ -150,42 +150,42 @@ var file_google_ads_googleads_v16_errors_context_error_proto_rawDesc = []byte{
0x4f, 0x52, 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55,
0x52, 0x43, 0x45, 0x10, 0x03, 0x42, 0xf1, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x11, 0x43,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x11, 0x43,
0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_errors_context_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_context_error_proto_rawDescData = file_google_ads_googleads_v16_errors_context_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_context_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_context_error_proto_rawDescData = file_google_ads_googleads_v17_errors_context_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_context_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_context_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_context_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_context_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_context_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_context_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_context_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_context_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_context_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_context_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_context_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_context_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_context_error_proto_goTypes = []interface{}{
- (ContextErrorEnum_ContextError)(0), // 0: google.ads.googleads.v16.errors.ContextErrorEnum.ContextError
- (*ContextErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ContextErrorEnum
+var file_google_ads_googleads_v17_errors_context_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_context_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_context_error_proto_goTypes = []interface{}{
+ (ContextErrorEnum_ContextError)(0), // 0: google.ads.googleads.v17.errors.ContextErrorEnum.ContextError
+ (*ContextErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ContextErrorEnum
}
-var file_google_ads_googleads_v16_errors_context_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_context_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -193,13 +193,13 @@ var file_google_ads_googleads_v16_errors_context_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_context_error_proto_init() }
-func file_google_ads_googleads_v16_errors_context_error_proto_init() {
- if File_google_ads_googleads_v16_errors_context_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_context_error_proto_init() }
+func file_google_ads_googleads_v17_errors_context_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_context_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_context_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_context_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ContextErrorEnum); i {
case 0:
return &v.state
@@ -216,19 +216,19 @@ func file_google_ads_googleads_v16_errors_context_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_context_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_context_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_context_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_context_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_context_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_context_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_context_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_context_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_context_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_context_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_context_error_proto = out.File
- file_google_ads_googleads_v16_errors_context_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_context_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_context_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_context_error_proto = out.File
+ file_google_ads_googleads_v17_errors_context_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_context_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_context_error_proto_depIdxs = nil
}
diff --git a/errors/conversion_action_error.pb.go b/errors/conversion_action_error.pb.go
index 32e9f6b3..0d1576b4 100644
--- a/errors/conversion_action_error.pb.go
+++ b/errors/conversion_action_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/conversion_action_error.proto
+// source: google/ads/googleads/v17/errors/conversion_action_error.proto
package errors
@@ -120,11 +120,11 @@ func (x ConversionActionErrorEnum_ConversionActionError) String() string {
}
func (ConversionActionErrorEnum_ConversionActionError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_conversion_action_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_conversion_action_error_proto_enumTypes[0].Descriptor()
}
func (ConversionActionErrorEnum_ConversionActionError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_conversion_action_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_conversion_action_error_proto_enumTypes[0]
}
func (x ConversionActionErrorEnum_ConversionActionError) Number() protoreflect.EnumNumber {
@@ -133,7 +133,7 @@ func (x ConversionActionErrorEnum_ConversionActionError) Number() protoreflect.E
// Deprecated: Use ConversionActionErrorEnum_ConversionActionError.Descriptor instead.
func (ConversionActionErrorEnum_ConversionActionError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_conversion_action_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_conversion_action_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible conversion action errors.
@@ -146,7 +146,7 @@ type ConversionActionErrorEnum struct {
func (x *ConversionActionErrorEnum) Reset() {
*x = ConversionActionErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_conversion_action_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_conversion_action_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -159,7 +159,7 @@ func (x *ConversionActionErrorEnum) String() string {
func (*ConversionActionErrorEnum) ProtoMessage() {}
func (x *ConversionActionErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_conversion_action_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_conversion_action_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -172,18 +172,18 @@ func (x *ConversionActionErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ConversionActionErrorEnum.ProtoReflect.Descriptor instead.
func (*ConversionActionErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_conversion_action_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_conversion_action_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_conversion_action_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_conversion_action_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_conversion_action_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_conversion_action_error_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x22, 0xd3, 0x03, 0x0a, 0x19, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41,
0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb5,
0x03, 0x0a, 0x15, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74,
@@ -215,42 +215,42 @@ var file_google_ads_googleads_v16_errors_conversion_action_error_proto_rawDesc =
0x44, 0x5f, 0x41, 0x54, 0x54, 0x52, 0x49, 0x42, 0x55, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x4d, 0x4f,
0x44, 0x45, 0x4c, 0x53, 0x10, 0x0c, 0x42, 0xfa, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a,
0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_conversion_action_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_conversion_action_error_proto_rawDescData = file_google_ads_googleads_v16_errors_conversion_action_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_conversion_action_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_conversion_action_error_proto_rawDescData = file_google_ads_googleads_v17_errors_conversion_action_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_conversion_action_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_conversion_action_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_conversion_action_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_conversion_action_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_conversion_action_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_conversion_action_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_conversion_action_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_conversion_action_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_conversion_action_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_conversion_action_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_conversion_action_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_conversion_action_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_conversion_action_error_proto_goTypes = []interface{}{
- (ConversionActionErrorEnum_ConversionActionError)(0), // 0: google.ads.googleads.v16.errors.ConversionActionErrorEnum.ConversionActionError
- (*ConversionActionErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ConversionActionErrorEnum
+var file_google_ads_googleads_v17_errors_conversion_action_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_conversion_action_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_conversion_action_error_proto_goTypes = []interface{}{
+ (ConversionActionErrorEnum_ConversionActionError)(0), // 0: google.ads.googleads.v17.errors.ConversionActionErrorEnum.ConversionActionError
+ (*ConversionActionErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ConversionActionErrorEnum
}
-var file_google_ads_googleads_v16_errors_conversion_action_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_conversion_action_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -258,13 +258,13 @@ var file_google_ads_googleads_v16_errors_conversion_action_error_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_conversion_action_error_proto_init() }
-func file_google_ads_googleads_v16_errors_conversion_action_error_proto_init() {
- if File_google_ads_googleads_v16_errors_conversion_action_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_conversion_action_error_proto_init() }
+func file_google_ads_googleads_v17_errors_conversion_action_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_conversion_action_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_conversion_action_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_conversion_action_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionActionErrorEnum); i {
case 0:
return &v.state
@@ -281,19 +281,19 @@ func file_google_ads_googleads_v16_errors_conversion_action_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_conversion_action_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_conversion_action_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_conversion_action_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_conversion_action_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_conversion_action_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_conversion_action_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_conversion_action_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_conversion_action_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_conversion_action_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_conversion_action_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_conversion_action_error_proto = out.File
- file_google_ads_googleads_v16_errors_conversion_action_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_conversion_action_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_conversion_action_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_conversion_action_error_proto = out.File
+ file_google_ads_googleads_v17_errors_conversion_action_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_conversion_action_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_conversion_action_error_proto_depIdxs = nil
}
diff --git a/errors/conversion_adjustment_upload_error.pb.go b/errors/conversion_adjustment_upload_error.pb.go
index f404abc3..7e92a4f6 100644
--- a/errors/conversion_adjustment_upload_error.pb.go
+++ b/errors/conversion_adjustment_upload_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/conversion_adjustment_upload_error.proto
+// source: google/ads/googleads/v17/errors/conversion_adjustment_upload_error.proto
package errors
@@ -199,11 +199,11 @@ func (x ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError) Str
}
func (ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_enumTypes[0].Descriptor()
}
func (ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_enumTypes[0]
}
func (x ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError) Number() protoreflect.EnumNumber {
@@ -212,7 +212,7 @@ func (x ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError) Num
// Deprecated: Use ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError.Descriptor instead.
func (ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible conversion adjustment upload errors.
@@ -225,7 +225,7 @@ type ConversionAdjustmentUploadErrorEnum struct {
func (x *ConversionAdjustmentUploadErrorEnum) Reset() {
*x = ConversionAdjustmentUploadErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -238,7 +238,7 @@ func (x *ConversionAdjustmentUploadErrorEnum) String() string {
func (*ConversionAdjustmentUploadErrorEnum) ProtoMessage() {}
func (x *ConversionAdjustmentUploadErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -251,19 +251,19 @@ func (x *ConversionAdjustmentUploadErrorEnum) ProtoReflect() protoreflect.Messag
// Deprecated: Use ConversionAdjustmentUploadErrorEnum.ProtoReflect.Descriptor instead.
func (*ConversionAdjustmentUploadErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_rawDesc = []byte{
0x0a, 0x48, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x64, 0x6a,
0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xf0, 0x07, 0x0a, 0x23,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xf0, 0x07, 0x0a, 0x23,
0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74,
0x6d, 0x65, 0x6e, 0x74, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0xc8, 0x07, 0x0a, 0x1f, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
@@ -328,43 +328,43 @@ var file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_prot
0x56, 0x41, 0x4c, 0x49, 0x44, 0x5f, 0x43, 0x4f, 0x4e, 0x56, 0x45, 0x52, 0x53, 0x49, 0x4f, 0x4e,
0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x1c, 0x42, 0x84,
0x02, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x24, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
0x6f, 0x6e, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x55, 0x70, 0x6c, 0x6f,
0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_rawDescData = file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_rawDescData = file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_goTypes = []interface{}{
- (ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError)(0), // 0: google.ads.googleads.v16.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError
- (*ConversionAdjustmentUploadErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ConversionAdjustmentUploadErrorEnum
+var file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_goTypes = []interface{}{
+ (ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError)(0), // 0: google.ads.googleads.v17.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError
+ (*ConversionAdjustmentUploadErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ConversionAdjustmentUploadErrorEnum
}
-var file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -372,13 +372,13 @@ var file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_prot
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_init() }
-func file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_init() {
- if File_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_init() }
+func file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionAdjustmentUploadErrorEnum); i {
case 0:
return &v.state
@@ -395,19 +395,19 @@ func file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_pro
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto = out.File
- file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto = out.File
+ file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_depIdxs = nil
}
diff --git a/errors/conversion_custom_variable_error.pb.go b/errors/conversion_custom_variable_error.pb.go
index e9650b0c..e9c4227c 100644
--- a/errors/conversion_custom_variable_error.pb.go
+++ b/errors/conversion_custom_variable_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/conversion_custom_variable_error.proto
+// source: google/ads/googleads/v17/errors/conversion_custom_variable_error.proto
package errors
@@ -80,11 +80,11 @@ func (x ConversionCustomVariableErrorEnum_ConversionCustomVariableError) String(
}
func (ConversionCustomVariableErrorEnum_ConversionCustomVariableError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_enumTypes[0].Descriptor()
}
func (ConversionCustomVariableErrorEnum_ConversionCustomVariableError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_enumTypes[0]
}
func (x ConversionCustomVariableErrorEnum_ConversionCustomVariableError) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x ConversionCustomVariableErrorEnum_ConversionCustomVariableError) Number(
// Deprecated: Use ConversionCustomVariableErrorEnum_ConversionCustomVariableError.Descriptor instead.
func (ConversionCustomVariableErrorEnum_ConversionCustomVariableError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible conversion custom variable errors.
@@ -106,7 +106,7 @@ type ConversionCustomVariableErrorEnum struct {
func (x *ConversionCustomVariableErrorEnum) Reset() {
*x = ConversionCustomVariableErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *ConversionCustomVariableErrorEnum) String() string {
func (*ConversionCustomVariableErrorEnum) ProtoMessage() {}
func (x *ConversionCustomVariableErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,19 +132,19 @@ func (x *ConversionCustomVariableErrorEnum) ProtoReflect() protoreflect.Message
// Deprecated: Use ConversionCustomVariableErrorEnum.ProtoReflect.Descriptor instead.
func (*ConversionCustomVariableErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_rawDesc = []byte{
0x0a, 0x46, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x75, 0x73,
0x74, 0x6f, 0x6d, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x9b, 0x01, 0x0a, 0x21, 0x43, 0x6f,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x9b, 0x01, 0x0a, 0x21, 0x43, 0x6f,
0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61,
0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x76, 0x0a, 0x1d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73,
@@ -156,43 +156,43 @@ var file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_
0x54, 0x41, 0x47, 0x10, 0x03, 0x12, 0x10, 0x0a, 0x0c, 0x52, 0x45, 0x53, 0x45, 0x52, 0x56, 0x45,
0x44, 0x5f, 0x54, 0x41, 0x47, 0x10, 0x04, 0x42, 0x82, 0x02, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42,
0x22, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f,
0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
- 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_rawDescData = file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_rawDescData = file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_goTypes = []interface{}{
- (ConversionCustomVariableErrorEnum_ConversionCustomVariableError)(0), // 0: google.ads.googleads.v16.errors.ConversionCustomVariableErrorEnum.ConversionCustomVariableError
- (*ConversionCustomVariableErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ConversionCustomVariableErrorEnum
+var file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_goTypes = []interface{}{
+ (ConversionCustomVariableErrorEnum_ConversionCustomVariableError)(0), // 0: google.ads.googleads.v17.errors.ConversionCustomVariableErrorEnum.ConversionCustomVariableError
+ (*ConversionCustomVariableErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ConversionCustomVariableErrorEnum
}
-var file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -200,13 +200,13 @@ var file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_init() }
-func file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_init() {
- if File_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_init() }
+func file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionCustomVariableErrorEnum); i {
case 0:
return &v.state
@@ -223,19 +223,19 @@ func file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto = out.File
- file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto = out.File
+ file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_depIdxs = nil
}
diff --git a/errors/conversion_goal_campaign_config_error.pb.go b/errors/conversion_goal_campaign_config_error.pb.go
index 46bb1af5..07f9909e 100644
--- a/errors/conversion_goal_campaign_config_error.pb.go
+++ b/errors/conversion_goal_campaign_config_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/conversion_goal_campaign_config_error.proto
+// source: google/ads/googleads/v17/errors/conversion_goal_campaign_config_error.proto
package errors
@@ -95,11 +95,11 @@ func (x ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError)
}
func (ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_enumTypes[0].Descriptor()
}
func (ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_enumTypes[0]
}
func (x ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError) Number() protoreflect.EnumNumber {
@@ -108,7 +108,7 @@ func (x ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError)
// Deprecated: Use ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError.Descriptor instead.
func (ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible conversion goal campaign config
@@ -122,7 +122,7 @@ type ConversionGoalCampaignConfigErrorEnum struct {
func (x *ConversionGoalCampaignConfigErrorEnum) Reset() {
*x = ConversionGoalCampaignConfigErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -135,7 +135,7 @@ func (x *ConversionGoalCampaignConfigErrorEnum) String() string {
func (*ConversionGoalCampaignConfigErrorEnum) ProtoMessage() {}
func (x *ConversionGoalCampaignConfigErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -148,19 +148,19 @@ func (x *ConversionGoalCampaignConfigErrorEnum) ProtoReflect() protoreflect.Mess
// Deprecated: Use ConversionGoalCampaignConfigErrorEnum.ProtoReflect.Descriptor instead.
func (*ConversionGoalCampaignConfigErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_rawDesc = []byte{
0x0a, 0x4b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61,
0x6c, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69,
0x67, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xad,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xad,
0x03, 0x0a, 0x25, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61,
0x6c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x83, 0x03, 0x0a, 0x21, 0x43, 0x6f, 0x6e,
@@ -189,43 +189,43 @@ var file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_p
0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x5f, 0x47, 0x4f, 0x41, 0x4c, 0x5f, 0x57, 0x49, 0x54, 0x48,
0x5f, 0x53, 0x54, 0x4f, 0x52, 0x45, 0x5f, 0x53, 0x41, 0x4c, 0x45, 0x53, 0x10, 0x07, 0x42, 0x86,
0x02, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x26, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f,
0x6e, 0x66, 0x69, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_rawDescData = file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_rawDescData = file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_goTypes = []interface{}{
- (ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError)(0), // 0: google.ads.googleads.v16.errors.ConversionGoalCampaignConfigErrorEnum.ConversionGoalCampaignConfigError
- (*ConversionGoalCampaignConfigErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ConversionGoalCampaignConfigErrorEnum
+var file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_goTypes = []interface{}{
+ (ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError)(0), // 0: google.ads.googleads.v17.errors.ConversionGoalCampaignConfigErrorEnum.ConversionGoalCampaignConfigError
+ (*ConversionGoalCampaignConfigErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ConversionGoalCampaignConfigErrorEnum
}
-var file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -233,13 +233,13 @@ var file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_p
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_init() }
-func file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_init() {
- if File_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_init() }
+func file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionGoalCampaignConfigErrorEnum); i {
case 0:
return &v.state
@@ -256,19 +256,19 @@ func file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto = out.File
- file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto = out.File
+ file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_depIdxs = nil
}
diff --git a/errors/conversion_upload_error.pb.go b/errors/conversion_upload_error.pb.go
index c29c2e86..8a5893c2 100644
--- a/errors/conversion_upload_error.pb.go
+++ b/errors/conversion_upload_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/conversion_upload_error.proto
+// source: google/ads/googleads/v17/errors/conversion_upload_error.proto
package errors
@@ -301,11 +301,11 @@ func (x ConversionUploadErrorEnum_ConversionUploadError) String() string {
}
func (ConversionUploadErrorEnum_ConversionUploadError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_conversion_upload_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_conversion_upload_error_proto_enumTypes[0].Descriptor()
}
func (ConversionUploadErrorEnum_ConversionUploadError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_conversion_upload_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_conversion_upload_error_proto_enumTypes[0]
}
func (x ConversionUploadErrorEnum_ConversionUploadError) Number() protoreflect.EnumNumber {
@@ -314,7 +314,7 @@ func (x ConversionUploadErrorEnum_ConversionUploadError) Number() protoreflect.E
// Deprecated: Use ConversionUploadErrorEnum_ConversionUploadError.Descriptor instead.
func (ConversionUploadErrorEnum_ConversionUploadError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_conversion_upload_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_conversion_upload_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible conversion upload errors.
@@ -327,7 +327,7 @@ type ConversionUploadErrorEnum struct {
func (x *ConversionUploadErrorEnum) Reset() {
*x = ConversionUploadErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_conversion_upload_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_conversion_upload_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -340,7 +340,7 @@ func (x *ConversionUploadErrorEnum) String() string {
func (*ConversionUploadErrorEnum) ProtoMessage() {}
func (x *ConversionUploadErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_conversion_upload_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_conversion_upload_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -353,18 +353,18 @@ func (x *ConversionUploadErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ConversionUploadErrorEnum.ProtoReflect.Descriptor instead.
func (*ConversionUploadErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_conversion_upload_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_conversion_upload_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_conversion_upload_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_conversion_upload_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_conversion_upload_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_conversion_upload_error_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x75, 0x70, 0x6c,
0x6f, 0x61, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x22, 0xca, 0x0d, 0x0a, 0x19, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x55,
0x70, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xac,
0x0d, 0x0a, 0x15, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x6c,
@@ -475,43 +475,43 @@ var file_google_ads_googleads_v16_errors_conversion_upload_error_proto_rawDesc =
0x41, 0x4c, 0x49, 0x44, 0x5f, 0x43, 0x4f, 0x4e, 0x56, 0x45, 0x52, 0x53, 0x49, 0x4f, 0x4e, 0x5f,
0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x36, 0x42, 0xfa, 0x01,
0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
0x6e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_conversion_upload_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_conversion_upload_error_proto_rawDescData = file_google_ads_googleads_v16_errors_conversion_upload_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_conversion_upload_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_conversion_upload_error_proto_rawDescData = file_google_ads_googleads_v17_errors_conversion_upload_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_conversion_upload_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_conversion_upload_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_conversion_upload_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_conversion_upload_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_conversion_upload_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_conversion_upload_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_conversion_upload_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_conversion_upload_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_conversion_upload_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_conversion_upload_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_conversion_upload_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_conversion_upload_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_conversion_upload_error_proto_goTypes = []interface{}{
- (ConversionUploadErrorEnum_ConversionUploadError)(0), // 0: google.ads.googleads.v16.errors.ConversionUploadErrorEnum.ConversionUploadError
- (*ConversionUploadErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ConversionUploadErrorEnum
+var file_google_ads_googleads_v17_errors_conversion_upload_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_conversion_upload_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_conversion_upload_error_proto_goTypes = []interface{}{
+ (ConversionUploadErrorEnum_ConversionUploadError)(0), // 0: google.ads.googleads.v17.errors.ConversionUploadErrorEnum.ConversionUploadError
+ (*ConversionUploadErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ConversionUploadErrorEnum
}
-var file_google_ads_googleads_v16_errors_conversion_upload_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_conversion_upload_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -519,13 +519,13 @@ var file_google_ads_googleads_v16_errors_conversion_upload_error_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_conversion_upload_error_proto_init() }
-func file_google_ads_googleads_v16_errors_conversion_upload_error_proto_init() {
- if File_google_ads_googleads_v16_errors_conversion_upload_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_conversion_upload_error_proto_init() }
+func file_google_ads_googleads_v17_errors_conversion_upload_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_conversion_upload_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_conversion_upload_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_conversion_upload_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionUploadErrorEnum); i {
case 0:
return &v.state
@@ -542,19 +542,19 @@ func file_google_ads_googleads_v16_errors_conversion_upload_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_conversion_upload_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_conversion_upload_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_conversion_upload_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_conversion_upload_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_conversion_upload_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_conversion_upload_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_conversion_upload_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_conversion_upload_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_conversion_upload_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_conversion_upload_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_conversion_upload_error_proto = out.File
- file_google_ads_googleads_v16_errors_conversion_upload_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_conversion_upload_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_conversion_upload_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_conversion_upload_error_proto = out.File
+ file_google_ads_googleads_v17_errors_conversion_upload_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_conversion_upload_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_conversion_upload_error_proto_depIdxs = nil
}
diff --git a/errors/conversion_value_rule_error.pb.go b/errors/conversion_value_rule_error.pb.go
index 7adb9cf7..c4a305ac 100644
--- a/errors/conversion_value_rule_error.pb.go
+++ b/errors/conversion_value_rule_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/conversion_value_rule_error.proto
+// source: google/ads/googleads/v17/errors/conversion_value_rule_error.proto
package errors
@@ -127,11 +127,11 @@ func (x ConversionValueRuleErrorEnum_ConversionValueRuleError) String() string {
}
func (ConversionValueRuleErrorEnum_ConversionValueRuleError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_enumTypes[0].Descriptor()
}
func (ConversionValueRuleErrorEnum_ConversionValueRuleError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_enumTypes[0]
}
func (x ConversionValueRuleErrorEnum_ConversionValueRuleError) Number() protoreflect.EnumNumber {
@@ -140,7 +140,7 @@ func (x ConversionValueRuleErrorEnum_ConversionValueRuleError) Number() protoref
// Deprecated: Use ConversionValueRuleErrorEnum_ConversionValueRuleError.Descriptor instead.
func (ConversionValueRuleErrorEnum_ConversionValueRuleError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible conversion value rule errors.
@@ -153,7 +153,7 @@ type ConversionValueRuleErrorEnum struct {
func (x *ConversionValueRuleErrorEnum) Reset() {
*x = ConversionValueRuleErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -166,7 +166,7 @@ func (x *ConversionValueRuleErrorEnum) String() string {
func (*ConversionValueRuleErrorEnum) ProtoMessage() {}
func (x *ConversionValueRuleErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -179,18 +179,18 @@ func (x *ConversionValueRuleErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ConversionValueRuleErrorEnum.ProtoReflect.Descriptor instead.
func (*ConversionValueRuleErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_conversion_value_rule_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_conversion_value_rule_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_rawDesc = []byte{
0x0a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c,
0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x22, 0x85, 0x04, 0x0a, 0x1c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xe4, 0x03, 0x0a, 0x18, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72,
@@ -225,43 +225,43 @@ var file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_rawDe
0x44, 0x5f, 0x52, 0x55, 0x4c, 0x45, 0x5f, 0x57, 0x49, 0x54, 0x48, 0x5f, 0x53, 0x54, 0x41, 0x54,
0x55, 0x53, 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x0d, 0x42, 0xfd, 0x01, 0x0a,
0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x42, 0x1d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
- 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_rawDescData = file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_rawDescData = file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_goTypes = []interface{}{
- (ConversionValueRuleErrorEnum_ConversionValueRuleError)(0), // 0: google.ads.googleads.v16.errors.ConversionValueRuleErrorEnum.ConversionValueRuleError
- (*ConversionValueRuleErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ConversionValueRuleErrorEnum
+var file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_goTypes = []interface{}{
+ (ConversionValueRuleErrorEnum_ConversionValueRuleError)(0), // 0: google.ads.googleads.v17.errors.ConversionValueRuleErrorEnum.ConversionValueRuleError
+ (*ConversionValueRuleErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ConversionValueRuleErrorEnum
}
-var file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -269,13 +269,13 @@ var file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_depId
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_init() }
-func file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_init() {
- if File_google_ads_googleads_v16_errors_conversion_value_rule_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_init() }
+func file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_conversion_value_rule_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionValueRuleErrorEnum); i {
case 0:
return &v.state
@@ -292,19 +292,19 @@ func file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_init
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_conversion_value_rule_error_proto = out.File
- file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_conversion_value_rule_error_proto = out.File
+ file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_depIdxs = nil
}
diff --git a/errors/conversion_value_rule_set_error.pb.go b/errors/conversion_value_rule_set_error.pb.go
index 311841be..169d8339 100644
--- a/errors/conversion_value_rule_set_error.pb.go
+++ b/errors/conversion_value_rule_set_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/conversion_value_rule_set_error.proto
+// source: google/ads/googleads/v17/errors/conversion_value_rule_set_error.proto
package errors
@@ -138,11 +138,11 @@ func (x ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError) String() st
}
func (ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_enumTypes[0].Descriptor()
}
func (ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_enumTypes[0]
}
func (x ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError) Number() protoreflect.EnumNumber {
@@ -151,7 +151,7 @@ func (x ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError) Number() pr
// Deprecated: Use ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError.Descriptor instead.
func (ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible conversion value rule set errors.
@@ -164,7 +164,7 @@ type ConversionValueRuleSetErrorEnum struct {
func (x *ConversionValueRuleSetErrorEnum) Reset() {
*x = ConversionValueRuleSetErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -177,7 +177,7 @@ func (x *ConversionValueRuleSetErrorEnum) String() string {
func (*ConversionValueRuleSetErrorEnum) ProtoMessage() {}
func (x *ConversionValueRuleSetErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -190,19 +190,19 @@ func (x *ConversionValueRuleSetErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ConversionValueRuleSetErrorEnum.ProtoReflect.Descriptor instead.
func (*ConversionValueRuleSetErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_rawDesc = []byte{
0x0a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c,
0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xeb, 0x04, 0x0a, 0x1f, 0x43, 0x6f, 0x6e,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xeb, 0x04, 0x0a, 0x1f, 0x43, 0x6f, 0x6e,
0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65,
0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xc7, 0x04, 0x0a,
0x1b, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65,
@@ -243,43 +243,43 @@ var file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_r
0x4f, 0x4e, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x43, 0x41, 0x54, 0x45, 0x47, 0x4f,
0x52, 0x49, 0x45, 0x53, 0x10, 0x0e, 0x42, 0x80, 0x02, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x20,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x20,
0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_rawDescData = file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_rawDescData = file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_goTypes = []interface{}{
- (ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError)(0), // 0: google.ads.googleads.v16.errors.ConversionValueRuleSetErrorEnum.ConversionValueRuleSetError
- (*ConversionValueRuleSetErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ConversionValueRuleSetErrorEnum
+var file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_goTypes = []interface{}{
+ (ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError)(0), // 0: google.ads.googleads.v17.errors.ConversionValueRuleSetErrorEnum.ConversionValueRuleSetError
+ (*ConversionValueRuleSetErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ConversionValueRuleSetErrorEnum
}
-var file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -287,13 +287,13 @@ var file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_d
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_init() }
-func file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_init() {
- if File_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_init() }
+func file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ConversionValueRuleSetErrorEnum); i {
case 0:
return &v.state
@@ -310,19 +310,19 @@ func file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto = out.File
- file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto = out.File
+ file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_depIdxs = nil
}
diff --git a/errors/country_code_error.pb.go b/errors/country_code_error.pb.go
index aa2bacd3..a57d53cc 100644
--- a/errors/country_code_error.pb.go
+++ b/errors/country_code_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/country_code_error.proto
+// source: google/ads/googleads/v17/errors/country_code_error.proto
package errors
@@ -71,11 +71,11 @@ func (x CountryCodeErrorEnum_CountryCodeError) String() string {
}
func (CountryCodeErrorEnum_CountryCodeError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_country_code_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_country_code_error_proto_enumTypes[0].Descriptor()
}
func (CountryCodeErrorEnum_CountryCodeError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_country_code_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_country_code_error_proto_enumTypes[0]
}
func (x CountryCodeErrorEnum_CountryCodeError) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x CountryCodeErrorEnum_CountryCodeError) Number() protoreflect.EnumNumber
// Deprecated: Use CountryCodeErrorEnum_CountryCodeError.Descriptor instead.
func (CountryCodeErrorEnum_CountryCodeError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_country_code_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_country_code_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing country code errors.
@@ -97,7 +97,7 @@ type CountryCodeErrorEnum struct {
func (x *CountryCodeErrorEnum) Reset() {
*x = CountryCodeErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_country_code_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_country_code_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *CountryCodeErrorEnum) String() string {
func (*CountryCodeErrorEnum) ProtoMessage() {}
func (x *CountryCodeErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_country_code_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_country_code_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,18 +123,18 @@ func (x *CountryCodeErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CountryCodeErrorEnum.ProtoReflect.Descriptor instead.
func (*CountryCodeErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_country_code_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_country_code_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_country_code_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_country_code_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_country_code_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_country_code_error_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x62, 0x0a, 0x14, 0x43,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x62, 0x0a, 0x14, 0x43,
0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0x4a, 0x0a, 0x10, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x43, 0x6f,
0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45,
@@ -142,42 +142,42 @@ var file_google_ads_googleads_v16_errors_country_code_error_proto_rawDesc = []by
0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x18, 0x0a, 0x14, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44,
0x5f, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x52, 0x59, 0x5f, 0x43, 0x4f, 0x44, 0x45, 0x10, 0x02, 0x42,
0xf5, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79,
0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_country_code_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_country_code_error_proto_rawDescData = file_google_ads_googleads_v16_errors_country_code_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_country_code_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_country_code_error_proto_rawDescData = file_google_ads_googleads_v17_errors_country_code_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_country_code_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_country_code_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_country_code_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_country_code_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_country_code_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_country_code_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_country_code_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_country_code_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_country_code_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_country_code_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_country_code_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_country_code_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_country_code_error_proto_goTypes = []interface{}{
- (CountryCodeErrorEnum_CountryCodeError)(0), // 0: google.ads.googleads.v16.errors.CountryCodeErrorEnum.CountryCodeError
- (*CountryCodeErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CountryCodeErrorEnum
+var file_google_ads_googleads_v17_errors_country_code_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_country_code_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_country_code_error_proto_goTypes = []interface{}{
+ (CountryCodeErrorEnum_CountryCodeError)(0), // 0: google.ads.googleads.v17.errors.CountryCodeErrorEnum.CountryCodeError
+ (*CountryCodeErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CountryCodeErrorEnum
}
-var file_google_ads_googleads_v16_errors_country_code_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_country_code_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -185,13 +185,13 @@ var file_google_ads_googleads_v16_errors_country_code_error_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_country_code_error_proto_init() }
-func file_google_ads_googleads_v16_errors_country_code_error_proto_init() {
- if File_google_ads_googleads_v16_errors_country_code_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_country_code_error_proto_init() }
+func file_google_ads_googleads_v17_errors_country_code_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_country_code_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_country_code_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_country_code_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CountryCodeErrorEnum); i {
case 0:
return &v.state
@@ -208,19 +208,19 @@ func file_google_ads_googleads_v16_errors_country_code_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_country_code_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_country_code_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_country_code_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_country_code_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_country_code_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_country_code_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_country_code_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_country_code_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_country_code_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_country_code_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_country_code_error_proto = out.File
- file_google_ads_googleads_v16_errors_country_code_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_country_code_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_country_code_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_country_code_error_proto = out.File
+ file_google_ads_googleads_v17_errors_country_code_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_country_code_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_country_code_error_proto_depIdxs = nil
}
diff --git a/errors/criterion_error.pb.go b/errors/criterion_error.pb.go
index d3ba3732..110401d2 100644
--- a/errors/criterion_error.pb.go
+++ b/errors/criterion_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/criterion_error.proto
+// source: google/ads/googleads/v17/errors/criterion_error.proto
package errors
@@ -703,11 +703,11 @@ func (x CriterionErrorEnum_CriterionError) String() string {
}
func (CriterionErrorEnum_CriterionError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_criterion_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_criterion_error_proto_enumTypes[0].Descriptor()
}
func (CriterionErrorEnum_CriterionError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_criterion_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_criterion_error_proto_enumTypes[0]
}
func (x CriterionErrorEnum_CriterionError) Number() protoreflect.EnumNumber {
@@ -716,7 +716,7 @@ func (x CriterionErrorEnum_CriterionError) Number() protoreflect.EnumNumber {
// Deprecated: Use CriterionErrorEnum_CriterionError.Descriptor instead.
func (CriterionErrorEnum_CriterionError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_criterion_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_criterion_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible criterion errors.
@@ -729,7 +729,7 @@ type CriterionErrorEnum struct {
func (x *CriterionErrorEnum) Reset() {
*x = CriterionErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_criterion_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_criterion_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -742,7 +742,7 @@ func (x *CriterionErrorEnum) String() string {
func (*CriterionErrorEnum) ProtoMessage() {}
func (x *CriterionErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_criterion_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_criterion_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -755,18 +755,18 @@ func (x *CriterionErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CriterionErrorEnum.ProtoReflect.Descriptor instead.
func (*CriterionErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_criterion_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_criterion_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_criterion_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_criterion_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_criterion_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_criterion_error_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xe0, 0x2f, 0x0a, 0x12, 0x43, 0x72, 0x69,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xe0, 0x2f, 0x0a, 0x12, 0x43, 0x72, 0x69,
0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0xc9, 0x2f, 0x0a, 0x0e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45,
@@ -1150,42 +1150,42 @@ var file_google_ads_googleads_v16_errors_criterion_error_proto_rawDesc = []byte{
0x4c, 0x4c, 0x4f, 0x57, 0x45, 0x44, 0x5f, 0x46, 0x4f, 0x52, 0x5f, 0x43, 0x41, 0x4d, 0x50, 0x41,
0x49, 0x47, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x9e, 0x01, 0x42, 0xf3, 0x01, 0x0a, 0x23,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x42, 0x13, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_criterion_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_criterion_error_proto_rawDescData = file_google_ads_googleads_v16_errors_criterion_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_criterion_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_criterion_error_proto_rawDescData = file_google_ads_googleads_v17_errors_criterion_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_criterion_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_criterion_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_criterion_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_criterion_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_criterion_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_criterion_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_criterion_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_criterion_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_criterion_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_criterion_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_criterion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_criterion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_criterion_error_proto_goTypes = []interface{}{
- (CriterionErrorEnum_CriterionError)(0), // 0: google.ads.googleads.v16.errors.CriterionErrorEnum.CriterionError
- (*CriterionErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CriterionErrorEnum
+var file_google_ads_googleads_v17_errors_criterion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_criterion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_criterion_error_proto_goTypes = []interface{}{
+ (CriterionErrorEnum_CriterionError)(0), // 0: google.ads.googleads.v17.errors.CriterionErrorEnum.CriterionError
+ (*CriterionErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CriterionErrorEnum
}
-var file_google_ads_googleads_v16_errors_criterion_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_criterion_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -1193,13 +1193,13 @@ var file_google_ads_googleads_v16_errors_criterion_error_proto_depIdxs = []int32
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_criterion_error_proto_init() }
-func file_google_ads_googleads_v16_errors_criterion_error_proto_init() {
- if File_google_ads_googleads_v16_errors_criterion_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_criterion_error_proto_init() }
+func file_google_ads_googleads_v17_errors_criterion_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_criterion_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_criterion_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_criterion_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CriterionErrorEnum); i {
case 0:
return &v.state
@@ -1216,19 +1216,19 @@ func file_google_ads_googleads_v16_errors_criterion_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_criterion_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_criterion_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_criterion_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_criterion_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_criterion_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_criterion_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_criterion_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_criterion_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_criterion_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_criterion_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_criterion_error_proto = out.File
- file_google_ads_googleads_v16_errors_criterion_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_criterion_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_criterion_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_criterion_error_proto = out.File
+ file_google_ads_googleads_v17_errors_criterion_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_criterion_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_criterion_error_proto_depIdxs = nil
}
diff --git a/errors/currency_code_error.pb.go b/errors/currency_code_error.pb.go
index 50ac53aa..c156307d 100644
--- a/errors/currency_code_error.pb.go
+++ b/errors/currency_code_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/currency_code_error.proto
+// source: google/ads/googleads/v17/errors/currency_code_error.proto
package errors
@@ -71,11 +71,11 @@ func (x CurrencyCodeErrorEnum_CurrencyCodeError) String() string {
}
func (CurrencyCodeErrorEnum_CurrencyCodeError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_currency_code_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_currency_code_error_proto_enumTypes[0].Descriptor()
}
func (CurrencyCodeErrorEnum_CurrencyCodeError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_currency_code_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_currency_code_error_proto_enumTypes[0]
}
func (x CurrencyCodeErrorEnum_CurrencyCodeError) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x CurrencyCodeErrorEnum_CurrencyCodeError) Number() protoreflect.EnumNumbe
// Deprecated: Use CurrencyCodeErrorEnum_CurrencyCodeError.Descriptor instead.
func (CurrencyCodeErrorEnum_CurrencyCodeError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_currency_code_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_currency_code_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible currency code errors.
@@ -97,7 +97,7 @@ type CurrencyCodeErrorEnum struct {
func (x *CurrencyCodeErrorEnum) Reset() {
*x = CurrencyCodeErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_currency_code_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_currency_code_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *CurrencyCodeErrorEnum) String() string {
func (*CurrencyCodeErrorEnum) ProtoMessage() {}
func (x *CurrencyCodeErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_currency_code_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_currency_code_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,18 +123,18 @@ func (x *CurrencyCodeErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CurrencyCodeErrorEnum.ProtoReflect.Descriptor instead.
func (*CurrencyCodeErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_currency_code_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_currency_code_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_currency_code_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_currency_code_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_currency_code_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_currency_code_error_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x5b, 0x0a, 0x15,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x5b, 0x0a, 0x15,
0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x42, 0x0a, 0x11, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63,
0x79, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e,
@@ -142,42 +142,42 @@ var file_google_ads_googleads_v16_errors_currency_code_error_proto_rawDesc = []b
0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x55,
0x50, 0x50, 0x4f, 0x52, 0x54, 0x45, 0x44, 0x10, 0x02, 0x42, 0xf6, 0x01, 0x0a, 0x23, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x42, 0x16, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_currency_code_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_currency_code_error_proto_rawDescData = file_google_ads_googleads_v16_errors_currency_code_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_currency_code_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_currency_code_error_proto_rawDescData = file_google_ads_googleads_v17_errors_currency_code_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_currency_code_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_currency_code_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_currency_code_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_currency_code_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_currency_code_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_currency_code_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_currency_code_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_currency_code_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_currency_code_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_currency_code_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_currency_code_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_currency_code_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_currency_code_error_proto_goTypes = []interface{}{
- (CurrencyCodeErrorEnum_CurrencyCodeError)(0), // 0: google.ads.googleads.v16.errors.CurrencyCodeErrorEnum.CurrencyCodeError
- (*CurrencyCodeErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CurrencyCodeErrorEnum
+var file_google_ads_googleads_v17_errors_currency_code_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_currency_code_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_currency_code_error_proto_goTypes = []interface{}{
+ (CurrencyCodeErrorEnum_CurrencyCodeError)(0), // 0: google.ads.googleads.v17.errors.CurrencyCodeErrorEnum.CurrencyCodeError
+ (*CurrencyCodeErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CurrencyCodeErrorEnum
}
-var file_google_ads_googleads_v16_errors_currency_code_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_currency_code_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -185,13 +185,13 @@ var file_google_ads_googleads_v16_errors_currency_code_error_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_currency_code_error_proto_init() }
-func file_google_ads_googleads_v16_errors_currency_code_error_proto_init() {
- if File_google_ads_googleads_v16_errors_currency_code_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_currency_code_error_proto_init() }
+func file_google_ads_googleads_v17_errors_currency_code_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_currency_code_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_currency_code_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_currency_code_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CurrencyCodeErrorEnum); i {
case 0:
return &v.state
@@ -208,19 +208,19 @@ func file_google_ads_googleads_v16_errors_currency_code_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_currency_code_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_currency_code_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_currency_code_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_currency_code_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_currency_code_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_currency_code_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_currency_code_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_currency_code_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_currency_code_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_currency_code_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_currency_code_error_proto = out.File
- file_google_ads_googleads_v16_errors_currency_code_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_currency_code_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_currency_code_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_currency_code_error_proto = out.File
+ file_google_ads_googleads_v17_errors_currency_code_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_currency_code_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_currency_code_error_proto_depIdxs = nil
}
diff --git a/errors/currency_error.pb.go b/errors/currency_error.pb.go
index b8d59f7a..8665b14b 100644
--- a/errors/currency_error.pb.go
+++ b/errors/currency_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/currency_error.proto
+// source: google/ads/googleads/v17/errors/currency_error.proto
package errors
@@ -71,11 +71,11 @@ func (x CurrencyErrorEnum_CurrencyError) String() string {
}
func (CurrencyErrorEnum_CurrencyError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_currency_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_currency_error_proto_enumTypes[0].Descriptor()
}
func (CurrencyErrorEnum_CurrencyError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_currency_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_currency_error_proto_enumTypes[0]
}
func (x CurrencyErrorEnum_CurrencyError) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x CurrencyErrorEnum_CurrencyError) Number() protoreflect.EnumNumber {
// Deprecated: Use CurrencyErrorEnum_CurrencyError.Descriptor instead.
func (CurrencyErrorEnum_CurrencyError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_currency_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_currency_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible currency errors.
@@ -97,7 +97,7 @@ type CurrencyErrorEnum struct {
func (x *CurrencyErrorEnum) Reset() {
*x = CurrencyErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_currency_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_currency_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *CurrencyErrorEnum) String() string {
func (*CurrencyErrorEnum) ProtoMessage() {}
func (x *CurrencyErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_currency_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_currency_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,17 +123,17 @@ func (x *CurrencyErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CurrencyErrorEnum.ProtoReflect.Descriptor instead.
func (*CurrencyErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_currency_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_currency_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_currency_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_currency_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_currency_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_currency_error_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x6b, 0x0a, 0x11, 0x43, 0x75, 0x72, 0x72, 0x65,
0x6e, 0x63, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x56, 0x0a, 0x0d,
0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a,
@@ -143,42 +143,42 @@ var file_google_ads_googleads_v16_errors_currency_error_proto_rawDesc = []byte{
0x45, 0x5f, 0x4f, 0x46, 0x5f, 0x42, 0x49, 0x4c, 0x4c, 0x41, 0x42, 0x4c, 0x45, 0x5f, 0x55, 0x4e,
0x49, 0x54, 0x10, 0x02, 0x42, 0xf2, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x43, 0x75,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x43, 0x75,
0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_errors_currency_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_currency_error_proto_rawDescData = file_google_ads_googleads_v16_errors_currency_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_currency_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_currency_error_proto_rawDescData = file_google_ads_googleads_v17_errors_currency_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_currency_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_currency_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_currency_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_currency_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_currency_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_currency_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_currency_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_currency_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_currency_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_currency_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_currency_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_currency_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_currency_error_proto_goTypes = []interface{}{
- (CurrencyErrorEnum_CurrencyError)(0), // 0: google.ads.googleads.v16.errors.CurrencyErrorEnum.CurrencyError
- (*CurrencyErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CurrencyErrorEnum
+var file_google_ads_googleads_v17_errors_currency_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_currency_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_currency_error_proto_goTypes = []interface{}{
+ (CurrencyErrorEnum_CurrencyError)(0), // 0: google.ads.googleads.v17.errors.CurrencyErrorEnum.CurrencyError
+ (*CurrencyErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CurrencyErrorEnum
}
-var file_google_ads_googleads_v16_errors_currency_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_currency_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -186,13 +186,13 @@ var file_google_ads_googleads_v16_errors_currency_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_currency_error_proto_init() }
-func file_google_ads_googleads_v16_errors_currency_error_proto_init() {
- if File_google_ads_googleads_v16_errors_currency_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_currency_error_proto_init() }
+func file_google_ads_googleads_v17_errors_currency_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_currency_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_currency_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_currency_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CurrencyErrorEnum); i {
case 0:
return &v.state
@@ -209,19 +209,19 @@ func file_google_ads_googleads_v16_errors_currency_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_currency_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_currency_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_currency_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_currency_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_currency_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_currency_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_currency_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_currency_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_currency_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_currency_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_currency_error_proto = out.File
- file_google_ads_googleads_v16_errors_currency_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_currency_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_currency_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_currency_error_proto = out.File
+ file_google_ads_googleads_v17_errors_currency_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_currency_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_currency_error_proto_depIdxs = nil
}
diff --git a/errors/custom_audience_error.pb.go b/errors/custom_audience_error.pb.go
index efcaea80..1aefbe8f 100644
--- a/errors/custom_audience_error.pb.go
+++ b/errors/custom_audience_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/custom_audience_error.proto
+// source: google/ads/googleads/v17/errors/custom_audience_error.proto
package errors
@@ -99,11 +99,11 @@ func (x CustomAudienceErrorEnum_CustomAudienceError) String() string {
}
func (CustomAudienceErrorEnum_CustomAudienceError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_custom_audience_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_custom_audience_error_proto_enumTypes[0].Descriptor()
}
func (CustomAudienceErrorEnum_CustomAudienceError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_custom_audience_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_custom_audience_error_proto_enumTypes[0]
}
func (x CustomAudienceErrorEnum_CustomAudienceError) Number() protoreflect.EnumNumber {
@@ -112,7 +112,7 @@ func (x CustomAudienceErrorEnum_CustomAudienceError) Number() protoreflect.EnumN
// Deprecated: Use CustomAudienceErrorEnum_CustomAudienceError.Descriptor instead.
func (CustomAudienceErrorEnum_CustomAudienceError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_custom_audience_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_custom_audience_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible custom audience errors.
@@ -125,7 +125,7 @@ type CustomAudienceErrorEnum struct {
func (x *CustomAudienceErrorEnum) Reset() {
*x = CustomAudienceErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_custom_audience_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_custom_audience_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -138,7 +138,7 @@ func (x *CustomAudienceErrorEnum) String() string {
func (*CustomAudienceErrorEnum) ProtoMessage() {}
func (x *CustomAudienceErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_custom_audience_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_custom_audience_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -151,18 +151,18 @@ func (x *CustomAudienceErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomAudienceErrorEnum.ProtoReflect.Descriptor instead.
func (*CustomAudienceErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_custom_audience_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_custom_audience_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_custom_audience_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_custom_audience_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_custom_audience_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_custom_audience_error_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63,
0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xc5,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xc5,
0x02, 0x0a, 0x17, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63,
0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xa9, 0x02, 0x0a, 0x13, 0x43,
0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x45, 0x72, 0x72,
@@ -185,42 +185,42 @@ var file_google_ads_googleads_v16_errors_custom_audience_error_proto_rawDesc = [
0x13, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x43, 0x48,
0x41, 0x4e, 0x47, 0x45, 0x10, 0x09, 0x42, 0xf8, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x18,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x18,
0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_custom_audience_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_custom_audience_error_proto_rawDescData = file_google_ads_googleads_v16_errors_custom_audience_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_custom_audience_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_custom_audience_error_proto_rawDescData = file_google_ads_googleads_v17_errors_custom_audience_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_custom_audience_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_custom_audience_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_custom_audience_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_custom_audience_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_custom_audience_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_custom_audience_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_custom_audience_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_custom_audience_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_custom_audience_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_custom_audience_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_custom_audience_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_custom_audience_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_custom_audience_error_proto_goTypes = []interface{}{
- (CustomAudienceErrorEnum_CustomAudienceError)(0), // 0: google.ads.googleads.v16.errors.CustomAudienceErrorEnum.CustomAudienceError
- (*CustomAudienceErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CustomAudienceErrorEnum
+var file_google_ads_googleads_v17_errors_custom_audience_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_custom_audience_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_custom_audience_error_proto_goTypes = []interface{}{
+ (CustomAudienceErrorEnum_CustomAudienceError)(0), // 0: google.ads.googleads.v17.errors.CustomAudienceErrorEnum.CustomAudienceError
+ (*CustomAudienceErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CustomAudienceErrorEnum
}
-var file_google_ads_googleads_v16_errors_custom_audience_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_custom_audience_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -228,13 +228,13 @@ var file_google_ads_googleads_v16_errors_custom_audience_error_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_custom_audience_error_proto_init() }
-func file_google_ads_googleads_v16_errors_custom_audience_error_proto_init() {
- if File_google_ads_googleads_v16_errors_custom_audience_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_custom_audience_error_proto_init() }
+func file_google_ads_googleads_v17_errors_custom_audience_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_custom_audience_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_custom_audience_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_custom_audience_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomAudienceErrorEnum); i {
case 0:
return &v.state
@@ -251,19 +251,19 @@ func file_google_ads_googleads_v16_errors_custom_audience_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_custom_audience_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_custom_audience_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_custom_audience_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_custom_audience_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_custom_audience_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_custom_audience_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_custom_audience_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_custom_audience_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_custom_audience_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_custom_audience_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_custom_audience_error_proto = out.File
- file_google_ads_googleads_v16_errors_custom_audience_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_custom_audience_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_custom_audience_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_custom_audience_error_proto = out.File
+ file_google_ads_googleads_v17_errors_custom_audience_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_custom_audience_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_custom_audience_error_proto_depIdxs = nil
}
diff --git a/errors/custom_conversion_goal_error.pb.go b/errors/custom_conversion_goal_error.pb.go
index af47abe4..25fb9940 100644
--- a/errors/custom_conversion_goal_error.pb.go
+++ b/errors/custom_conversion_goal_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/custom_conversion_goal_error.proto
+// source: google/ads/googleads/v17/errors/custom_conversion_goal_error.proto
package errors
@@ -94,11 +94,11 @@ func (x CustomConversionGoalErrorEnum_CustomConversionGoalError) String() string
}
func (CustomConversionGoalErrorEnum_CustomConversionGoalError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_enumTypes[0].Descriptor()
}
func (CustomConversionGoalErrorEnum_CustomConversionGoalError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_enumTypes[0]
}
func (x CustomConversionGoalErrorEnum_CustomConversionGoalError) Number() protoreflect.EnumNumber {
@@ -107,7 +107,7 @@ func (x CustomConversionGoalErrorEnum_CustomConversionGoalError) Number() protor
// Deprecated: Use CustomConversionGoalErrorEnum_CustomConversionGoalError.Descriptor instead.
func (CustomConversionGoalErrorEnum_CustomConversionGoalError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible custom conversion goal errors.
@@ -120,7 +120,7 @@ type CustomConversionGoalErrorEnum struct {
func (x *CustomConversionGoalErrorEnum) Reset() {
*x = CustomConversionGoalErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -133,7 +133,7 @@ func (x *CustomConversionGoalErrorEnum) String() string {
func (*CustomConversionGoalErrorEnum) ProtoMessage() {}
func (x *CustomConversionGoalErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -146,18 +146,18 @@ func (x *CustomConversionGoalErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomConversionGoalErrorEnum.ProtoReflect.Descriptor instead.
func (*CustomConversionGoalErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_rawDesc = []byte{
0x0a, 0x42, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xd5, 0x02, 0x0a, 0x1d, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb3, 0x02, 0x0a, 0x19, 0x43, 0x75, 0x73, 0x74,
@@ -181,43 +181,43 @@ var file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_rawD
0x4f, 0x54, 0x5f, 0x45, 0x4c, 0x49, 0x47, 0x49, 0x42, 0x4c, 0x45, 0x5f, 0x46, 0x4f, 0x52, 0x5f,
0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x5f, 0x47, 0x4f, 0x41, 0x4c, 0x10, 0x07, 0x42, 0xfe, 0x01,
0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e,
0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_rawDescData = file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_rawDescData = file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_goTypes = []interface{}{
- (CustomConversionGoalErrorEnum_CustomConversionGoalError)(0), // 0: google.ads.googleads.v16.errors.CustomConversionGoalErrorEnum.CustomConversionGoalError
- (*CustomConversionGoalErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CustomConversionGoalErrorEnum
+var file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_goTypes = []interface{}{
+ (CustomConversionGoalErrorEnum_CustomConversionGoalError)(0), // 0: google.ads.googleads.v17.errors.CustomConversionGoalErrorEnum.CustomConversionGoalError
+ (*CustomConversionGoalErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CustomConversionGoalErrorEnum
}
-var file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -225,13 +225,13 @@ var file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_depI
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_init() }
-func file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_init() {
- if File_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_init() }
+func file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomConversionGoalErrorEnum); i {
case 0:
return &v.state
@@ -248,19 +248,19 @@ func file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_ini
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto = out.File
- file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto = out.File
+ file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_depIdxs = nil
}
diff --git a/errors/custom_interest_error.pb.go b/errors/custom_interest_error.pb.go
index 97298821..5cd51f71 100644
--- a/errors/custom_interest_error.pb.go
+++ b/errors/custom_interest_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/custom_interest_error.proto
+// source: google/ads/googleads/v17/errors/custom_interest_error.proto
package errors
@@ -96,11 +96,11 @@ func (x CustomInterestErrorEnum_CustomInterestError) String() string {
}
func (CustomInterestErrorEnum_CustomInterestError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_custom_interest_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_custom_interest_error_proto_enumTypes[0].Descriptor()
}
func (CustomInterestErrorEnum_CustomInterestError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_custom_interest_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_custom_interest_error_proto_enumTypes[0]
}
func (x CustomInterestErrorEnum_CustomInterestError) Number() protoreflect.EnumNumber {
@@ -109,7 +109,7 @@ func (x CustomInterestErrorEnum_CustomInterestError) Number() protoreflect.EnumN
// Deprecated: Use CustomInterestErrorEnum_CustomInterestError.Descriptor instead.
func (CustomInterestErrorEnum_CustomInterestError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_custom_interest_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_custom_interest_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible custom interest errors.
@@ -122,7 +122,7 @@ type CustomInterestErrorEnum struct {
func (x *CustomInterestErrorEnum) Reset() {
*x = CustomInterestErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_custom_interest_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_custom_interest_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -135,7 +135,7 @@ func (x *CustomInterestErrorEnum) String() string {
func (*CustomInterestErrorEnum) ProtoMessage() {}
func (x *CustomInterestErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_custom_interest_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_custom_interest_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -148,18 +148,18 @@ func (x *CustomInterestErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomInterestErrorEnum.ProtoReflect.Descriptor instead.
func (*CustomInterestErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_custom_interest_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_custom_interest_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_custom_interest_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_custom_interest_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_custom_interest_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_custom_interest_error_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73,
0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xd9,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xd9,
0x02, 0x0a, 0x17, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73,
0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xbd, 0x02, 0x0a, 0x13, 0x43,
0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x45, 0x72, 0x72,
@@ -183,42 +183,42 @@ var file_google_ads_googleads_v16_errors_custom_interest_error_proto_rawDesc = [
0x10, 0x07, 0x12, 0x16, 0x0a, 0x12, 0x43, 0x41, 0x4e, 0x4e, 0x4f, 0x54, 0x5f, 0x43, 0x48, 0x41,
0x4e, 0x47, 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x08, 0x42, 0xf8, 0x01, 0x0a, 0x23, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x42, 0x18, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65,
0x73, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_custom_interest_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_custom_interest_error_proto_rawDescData = file_google_ads_googleads_v16_errors_custom_interest_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_custom_interest_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_custom_interest_error_proto_rawDescData = file_google_ads_googleads_v17_errors_custom_interest_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_custom_interest_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_custom_interest_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_custom_interest_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_custom_interest_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_custom_interest_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_custom_interest_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_custom_interest_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_custom_interest_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_custom_interest_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_custom_interest_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_custom_interest_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_custom_interest_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_custom_interest_error_proto_goTypes = []interface{}{
- (CustomInterestErrorEnum_CustomInterestError)(0), // 0: google.ads.googleads.v16.errors.CustomInterestErrorEnum.CustomInterestError
- (*CustomInterestErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CustomInterestErrorEnum
+var file_google_ads_googleads_v17_errors_custom_interest_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_custom_interest_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_custom_interest_error_proto_goTypes = []interface{}{
+ (CustomInterestErrorEnum_CustomInterestError)(0), // 0: google.ads.googleads.v17.errors.CustomInterestErrorEnum.CustomInterestError
+ (*CustomInterestErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CustomInterestErrorEnum
}
-var file_google_ads_googleads_v16_errors_custom_interest_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_custom_interest_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -226,13 +226,13 @@ var file_google_ads_googleads_v16_errors_custom_interest_error_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_custom_interest_error_proto_init() }
-func file_google_ads_googleads_v16_errors_custom_interest_error_proto_init() {
- if File_google_ads_googleads_v16_errors_custom_interest_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_custom_interest_error_proto_init() }
+func file_google_ads_googleads_v17_errors_custom_interest_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_custom_interest_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_custom_interest_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_custom_interest_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomInterestErrorEnum); i {
case 0:
return &v.state
@@ -249,19 +249,19 @@ func file_google_ads_googleads_v16_errors_custom_interest_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_custom_interest_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_custom_interest_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_custom_interest_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_custom_interest_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_custom_interest_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_custom_interest_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_custom_interest_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_custom_interest_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_custom_interest_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_custom_interest_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_custom_interest_error_proto = out.File
- file_google_ads_googleads_v16_errors_custom_interest_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_custom_interest_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_custom_interest_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_custom_interest_error_proto = out.File
+ file_google_ads_googleads_v17_errors_custom_interest_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_custom_interest_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_custom_interest_error_proto_depIdxs = nil
}
diff --git a/errors/customer_client_link_error.pb.go b/errors/customer_client_link_error.pb.go
index 5837aaf1..2b99c7aa 100644
--- a/errors/customer_client_link_error.pb.go
+++ b/errors/customer_client_link_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/customer_client_link_error.proto
+// source: google/ads/googleads/v17/errors/customer_client_link_error.proto
package errors
@@ -99,11 +99,11 @@ func (x CustomerClientLinkErrorEnum_CustomerClientLinkError) String() string {
}
func (CustomerClientLinkErrorEnum_CustomerClientLinkError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_customer_client_link_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_customer_client_link_error_proto_enumTypes[0].Descriptor()
}
func (CustomerClientLinkErrorEnum_CustomerClientLinkError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_customer_client_link_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_customer_client_link_error_proto_enumTypes[0]
}
func (x CustomerClientLinkErrorEnum_CustomerClientLinkError) Number() protoreflect.EnumNumber {
@@ -112,7 +112,7 @@ func (x CustomerClientLinkErrorEnum_CustomerClientLinkError) Number() protorefle
// Deprecated: Use CustomerClientLinkErrorEnum_CustomerClientLinkError.Descriptor instead.
func (CustomerClientLinkErrorEnum_CustomerClientLinkError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_customer_client_link_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_customer_client_link_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible CustomeClientLink errors.
@@ -125,7 +125,7 @@ type CustomerClientLinkErrorEnum struct {
func (x *CustomerClientLinkErrorEnum) Reset() {
*x = CustomerClientLinkErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_customer_client_link_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_customer_client_link_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -138,7 +138,7 @@ func (x *CustomerClientLinkErrorEnum) String() string {
func (*CustomerClientLinkErrorEnum) ProtoMessage() {}
func (x *CustomerClientLinkErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_customer_client_link_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_customer_client_link_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -151,18 +151,18 @@ func (x *CustomerClientLinkErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomerClientLinkErrorEnum.ProtoReflect.Descriptor instead.
func (*CustomerClientLinkErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_customer_client_link_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_customer_client_link_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_customer_client_link_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_customer_client_link_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_customer_client_link_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_customer_client_link_error_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e,
0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x22, 0x8f, 0x03, 0x0a, 0x1b, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72,
0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0xef, 0x02, 0x0a, 0x17, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72,
@@ -190,42 +190,42 @@ var file_google_ads_googleads_v16_errors_customer_client_link_error_proto_rawDes
0x53, 0x5f, 0x54, 0x4f, 0x4f, 0x5f, 0x4d, 0x41, 0x4e, 0x59, 0x5f, 0x4d, 0x41, 0x4e, 0x41, 0x47,
0x45, 0x52, 0x53, 0x10, 0x09, 0x42, 0xfc, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1c, 0x43,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1c, 0x43,
0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e,
0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02,
0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_customer_client_link_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_customer_client_link_error_proto_rawDescData = file_google_ads_googleads_v16_errors_customer_client_link_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_customer_client_link_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_customer_client_link_error_proto_rawDescData = file_google_ads_googleads_v17_errors_customer_client_link_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_customer_client_link_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_customer_client_link_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_customer_client_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_customer_client_link_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_customer_client_link_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_customer_client_link_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_customer_client_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_customer_client_link_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_customer_client_link_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_customer_client_link_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_customer_client_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_customer_client_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_customer_client_link_error_proto_goTypes = []interface{}{
- (CustomerClientLinkErrorEnum_CustomerClientLinkError)(0), // 0: google.ads.googleads.v16.errors.CustomerClientLinkErrorEnum.CustomerClientLinkError
- (*CustomerClientLinkErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CustomerClientLinkErrorEnum
+var file_google_ads_googleads_v17_errors_customer_client_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_customer_client_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_customer_client_link_error_proto_goTypes = []interface{}{
+ (CustomerClientLinkErrorEnum_CustomerClientLinkError)(0), // 0: google.ads.googleads.v17.errors.CustomerClientLinkErrorEnum.CustomerClientLinkError
+ (*CustomerClientLinkErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CustomerClientLinkErrorEnum
}
-var file_google_ads_googleads_v16_errors_customer_client_link_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_customer_client_link_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -233,13 +233,13 @@ var file_google_ads_googleads_v16_errors_customer_client_link_error_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_customer_client_link_error_proto_init() }
-func file_google_ads_googleads_v16_errors_customer_client_link_error_proto_init() {
- if File_google_ads_googleads_v16_errors_customer_client_link_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_customer_client_link_error_proto_init() }
+func file_google_ads_googleads_v17_errors_customer_client_link_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_customer_client_link_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_customer_client_link_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_customer_client_link_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomerClientLinkErrorEnum); i {
case 0:
return &v.state
@@ -256,19 +256,19 @@ func file_google_ads_googleads_v16_errors_customer_client_link_error_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_customer_client_link_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_customer_client_link_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_customer_client_link_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_customer_client_link_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_customer_client_link_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_customer_client_link_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_customer_client_link_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_customer_client_link_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_customer_client_link_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_customer_client_link_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_customer_client_link_error_proto = out.File
- file_google_ads_googleads_v16_errors_customer_client_link_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_customer_client_link_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_customer_client_link_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_customer_client_link_error_proto = out.File
+ file_google_ads_googleads_v17_errors_customer_client_link_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_customer_client_link_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_customer_client_link_error_proto_depIdxs = nil
}
diff --git a/errors/customer_customizer_error.pb.go b/errors/customer_customizer_error.pb.go
index f2e9b529..1ade1bc4 100644
--- a/errors/customer_customizer_error.pb.go
+++ b/errors/customer_customizer_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/customer_customizer_error.proto
+// source: google/ads/googleads/v17/errors/customer_customizer_error.proto
package errors
@@ -67,11 +67,11 @@ func (x CustomerCustomizerErrorEnum_CustomerCustomizerError) String() string {
}
func (CustomerCustomizerErrorEnum_CustomerCustomizerError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_customer_customizer_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_customer_customizer_error_proto_enumTypes[0].Descriptor()
}
func (CustomerCustomizerErrorEnum_CustomerCustomizerError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_customer_customizer_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_customer_customizer_error_proto_enumTypes[0]
}
func (x CustomerCustomizerErrorEnum_CustomerCustomizerError) Number() protoreflect.EnumNumber {
@@ -80,7 +80,7 @@ func (x CustomerCustomizerErrorEnum_CustomerCustomizerError) Number() protorefle
// Deprecated: Use CustomerCustomizerErrorEnum_CustomerCustomizerError.Descriptor instead.
func (CustomerCustomizerErrorEnum_CustomerCustomizerError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_customer_customizer_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_customer_customizer_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible customer customizer errors.
@@ -93,7 +93,7 @@ type CustomerCustomizerErrorEnum struct {
func (x *CustomerCustomizerErrorEnum) Reset() {
*x = CustomerCustomizerErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_customer_customizer_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_customer_customizer_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -106,7 +106,7 @@ func (x *CustomerCustomizerErrorEnum) String() string {
func (*CustomerCustomizerErrorEnum) ProtoMessage() {}
func (x *CustomerCustomizerErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_customer_customizer_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_customer_customizer_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -119,18 +119,18 @@ func (x *CustomerCustomizerErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomerCustomizerErrorEnum.ProtoReflect.Descriptor instead.
func (*CustomerCustomizerErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_customer_customizer_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_customer_customizer_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_customer_customizer_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_customer_customizer_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_customer_customizer_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_customer_customizer_error_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f,
0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x22, 0x56, 0x0a, 0x1b, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75,
0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x37, 0x0a, 0x17, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73,
@@ -138,43 +138,43 @@ var file_google_ads_googleads_v16_errors_customer_customizer_error_proto_rawDesc
0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a,
0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x42, 0xfc, 0x01, 0x0a, 0x23, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x42, 0x1c, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74,
0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_errors_customer_customizer_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_customer_customizer_error_proto_rawDescData = file_google_ads_googleads_v16_errors_customer_customizer_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_customer_customizer_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_customer_customizer_error_proto_rawDescData = file_google_ads_googleads_v17_errors_customer_customizer_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_customer_customizer_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_customer_customizer_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_customer_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_customer_customizer_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_customer_customizer_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_customer_customizer_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_customer_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_customer_customizer_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_customer_customizer_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_customer_customizer_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_customer_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_customer_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_customer_customizer_error_proto_goTypes = []interface{}{
- (CustomerCustomizerErrorEnum_CustomerCustomizerError)(0), // 0: google.ads.googleads.v16.errors.CustomerCustomizerErrorEnum.CustomerCustomizerError
- (*CustomerCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CustomerCustomizerErrorEnum
+var file_google_ads_googleads_v17_errors_customer_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_customer_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_customer_customizer_error_proto_goTypes = []interface{}{
+ (CustomerCustomizerErrorEnum_CustomerCustomizerError)(0), // 0: google.ads.googleads.v17.errors.CustomerCustomizerErrorEnum.CustomerCustomizerError
+ (*CustomerCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CustomerCustomizerErrorEnum
}
-var file_google_ads_googleads_v16_errors_customer_customizer_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_customer_customizer_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -182,13 +182,13 @@ var file_google_ads_googleads_v16_errors_customer_customizer_error_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_customer_customizer_error_proto_init() }
-func file_google_ads_googleads_v16_errors_customer_customizer_error_proto_init() {
- if File_google_ads_googleads_v16_errors_customer_customizer_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_customer_customizer_error_proto_init() }
+func file_google_ads_googleads_v17_errors_customer_customizer_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_customer_customizer_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_customer_customizer_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_customer_customizer_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomerCustomizerErrorEnum); i {
case 0:
return &v.state
@@ -205,19 +205,19 @@ func file_google_ads_googleads_v16_errors_customer_customizer_error_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_customer_customizer_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_customer_customizer_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_customer_customizer_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_customer_customizer_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_customer_customizer_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_customer_customizer_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_customer_customizer_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_customer_customizer_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_customer_customizer_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_customer_customizer_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_customer_customizer_error_proto = out.File
- file_google_ads_googleads_v16_errors_customer_customizer_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_customer_customizer_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_customer_customizer_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_customer_customizer_error_proto = out.File
+ file_google_ads_googleads_v17_errors_customer_customizer_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_customer_customizer_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_customer_customizer_error_proto_depIdxs = nil
}
diff --git a/errors/customer_error.pb.go b/errors/customer_error.pb.go
index f2b69a31..5e44d14a 100644
--- a/errors/customer_error.pb.go
+++ b/errors/customer_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/customer_error.proto
+// source: google/ads/googleads/v17/errors/customer_error.proto
package errors
@@ -77,11 +77,11 @@ func (x CustomerErrorEnum_CustomerError) String() string {
}
func (CustomerErrorEnum_CustomerError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_customer_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_customer_error_proto_enumTypes[0].Descriptor()
}
func (CustomerErrorEnum_CustomerError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_customer_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_customer_error_proto_enumTypes[0]
}
func (x CustomerErrorEnum_CustomerError) Number() protoreflect.EnumNumber {
@@ -90,7 +90,7 @@ func (x CustomerErrorEnum_CustomerError) Number() protoreflect.EnumNumber {
// Deprecated: Use CustomerErrorEnum_CustomerError.Descriptor instead.
func (CustomerErrorEnum_CustomerError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_customer_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_customer_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible customer errors.
@@ -103,7 +103,7 @@ type CustomerErrorEnum struct {
func (x *CustomerErrorEnum) Reset() {
*x = CustomerErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_customer_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_customer_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -116,7 +116,7 @@ func (x *CustomerErrorEnum) String() string {
func (*CustomerErrorEnum) ProtoMessage() {}
func (x *CustomerErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_customer_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_customer_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -129,17 +129,17 @@ func (x *CustomerErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomerErrorEnum.ProtoReflect.Descriptor instead.
func (*CustomerErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_customer_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_customer_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_customer_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_customer_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_customer_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_customer_error_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x78, 0x0a, 0x11, 0x43, 0x75, 0x73, 0x74, 0x6f,
0x6d, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x63, 0x0a, 0x0d,
0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a,
@@ -150,41 +150,41 @@ var file_google_ads_googleads_v16_errors_customer_error_proto_rawDesc = []byte{
0x4f, 0x55, 0x4e, 0x54, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x53, 0x45, 0x54, 0x5f, 0x55, 0x50, 0x10,
0x03, 0x42, 0xf2, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x43, 0x75, 0x73, 0x74, 0x6f,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x43, 0x75, 0x73, 0x74, 0x6f,
0x6d, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_customer_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_customer_error_proto_rawDescData = file_google_ads_googleads_v16_errors_customer_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_customer_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_customer_error_proto_rawDescData = file_google_ads_googleads_v17_errors_customer_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_customer_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_customer_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_customer_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_customer_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_customer_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_customer_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_customer_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_customer_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_customer_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_customer_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_customer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_customer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_customer_error_proto_goTypes = []interface{}{
- (CustomerErrorEnum_CustomerError)(0), // 0: google.ads.googleads.v16.errors.CustomerErrorEnum.CustomerError
- (*CustomerErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CustomerErrorEnum
+var file_google_ads_googleads_v17_errors_customer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_customer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_customer_error_proto_goTypes = []interface{}{
+ (CustomerErrorEnum_CustomerError)(0), // 0: google.ads.googleads.v17.errors.CustomerErrorEnum.CustomerError
+ (*CustomerErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CustomerErrorEnum
}
-var file_google_ads_googleads_v16_errors_customer_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_customer_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -192,13 +192,13 @@ var file_google_ads_googleads_v16_errors_customer_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_customer_error_proto_init() }
-func file_google_ads_googleads_v16_errors_customer_error_proto_init() {
- if File_google_ads_googleads_v16_errors_customer_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_customer_error_proto_init() }
+func file_google_ads_googleads_v17_errors_customer_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_customer_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_customer_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_customer_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomerErrorEnum); i {
case 0:
return &v.state
@@ -215,19 +215,19 @@ func file_google_ads_googleads_v16_errors_customer_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_customer_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_customer_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_customer_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_customer_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_customer_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_customer_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_customer_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_customer_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_customer_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_customer_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_customer_error_proto = out.File
- file_google_ads_googleads_v16_errors_customer_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_customer_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_customer_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_customer_error_proto = out.File
+ file_google_ads_googleads_v17_errors_customer_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_customer_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_customer_error_proto_depIdxs = nil
}
diff --git a/errors/customer_feed_error.pb.go b/errors/customer_feed_error.pb.go
index 21e85de4..d58249e3 100644
--- a/errors/customer_feed_error.pb.go
+++ b/errors/customer_feed_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/customer_feed_error.proto
+// source: google/ads/googleads/v17/errors/customer_feed_error.proto
package errors
@@ -96,11 +96,11 @@ func (x CustomerFeedErrorEnum_CustomerFeedError) String() string {
}
func (CustomerFeedErrorEnum_CustomerFeedError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_customer_feed_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_customer_feed_error_proto_enumTypes[0].Descriptor()
}
func (CustomerFeedErrorEnum_CustomerFeedError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_customer_feed_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_customer_feed_error_proto_enumTypes[0]
}
func (x CustomerFeedErrorEnum_CustomerFeedError) Number() protoreflect.EnumNumber {
@@ -109,7 +109,7 @@ func (x CustomerFeedErrorEnum_CustomerFeedError) Number() protoreflect.EnumNumbe
// Deprecated: Use CustomerFeedErrorEnum_CustomerFeedError.Descriptor instead.
func (CustomerFeedErrorEnum_CustomerFeedError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_customer_feed_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_customer_feed_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible customer feed errors.
@@ -122,7 +122,7 @@ type CustomerFeedErrorEnum struct {
func (x *CustomerFeedErrorEnum) Reset() {
*x = CustomerFeedErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_customer_feed_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_customer_feed_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -135,7 +135,7 @@ func (x *CustomerFeedErrorEnum) String() string {
func (*CustomerFeedErrorEnum) ProtoMessage() {}
func (x *CustomerFeedErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_customer_feed_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_customer_feed_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -148,18 +148,18 @@ func (x *CustomerFeedErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomerFeedErrorEnum.ProtoReflect.Descriptor instead.
func (*CustomerFeedErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_customer_feed_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_customer_feed_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_customer_feed_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_customer_feed_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_customer_feed_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_customer_feed_error_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xf7, 0x02, 0x0a,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xf7, 0x02, 0x0a,
0x15, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xdd, 0x02, 0x0a, 0x11, 0x43, 0x75, 0x73, 0x74, 0x6f,
0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b,
@@ -185,42 +185,42 @@ var file_google_ads_googleads_v16_errors_customer_feed_error_proto_rawDesc = []b
0x57, 0x45, 0x44, 0x5f, 0x4f, 0x4e, 0x5f, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x45, 0x52, 0x5f,
0x46, 0x45, 0x45, 0x44, 0x10, 0x08, 0x42, 0xf6, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x16,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x16,
0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2,
+ 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_customer_feed_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_customer_feed_error_proto_rawDescData = file_google_ads_googleads_v16_errors_customer_feed_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_customer_feed_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_customer_feed_error_proto_rawDescData = file_google_ads_googleads_v17_errors_customer_feed_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_customer_feed_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_customer_feed_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_customer_feed_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_customer_feed_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_customer_feed_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_customer_feed_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_customer_feed_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_customer_feed_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_customer_feed_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_customer_feed_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_customer_feed_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_customer_feed_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_customer_feed_error_proto_goTypes = []interface{}{
- (CustomerFeedErrorEnum_CustomerFeedError)(0), // 0: google.ads.googleads.v16.errors.CustomerFeedErrorEnum.CustomerFeedError
- (*CustomerFeedErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CustomerFeedErrorEnum
+var file_google_ads_googleads_v17_errors_customer_feed_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_customer_feed_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_customer_feed_error_proto_goTypes = []interface{}{
+ (CustomerFeedErrorEnum_CustomerFeedError)(0), // 0: google.ads.googleads.v17.errors.CustomerFeedErrorEnum.CustomerFeedError
+ (*CustomerFeedErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CustomerFeedErrorEnum
}
-var file_google_ads_googleads_v16_errors_customer_feed_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_customer_feed_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -228,13 +228,13 @@ var file_google_ads_googleads_v16_errors_customer_feed_error_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_customer_feed_error_proto_init() }
-func file_google_ads_googleads_v16_errors_customer_feed_error_proto_init() {
- if File_google_ads_googleads_v16_errors_customer_feed_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_customer_feed_error_proto_init() }
+func file_google_ads_googleads_v17_errors_customer_feed_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_customer_feed_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_customer_feed_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_customer_feed_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomerFeedErrorEnum); i {
case 0:
return &v.state
@@ -251,19 +251,19 @@ func file_google_ads_googleads_v16_errors_customer_feed_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_customer_feed_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_customer_feed_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_customer_feed_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_customer_feed_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_customer_feed_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_customer_feed_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_customer_feed_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_customer_feed_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_customer_feed_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_customer_feed_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_customer_feed_error_proto = out.File
- file_google_ads_googleads_v16_errors_customer_feed_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_customer_feed_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_customer_feed_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_customer_feed_error_proto = out.File
+ file_google_ads_googleads_v17_errors_customer_feed_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_customer_feed_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_customer_feed_error_proto_depIdxs = nil
}
diff --git a/errors/customer_lifecycle_goal_error.pb.go b/errors/customer_lifecycle_goal_error.pb.go
index e06714d5..e018c331 100644
--- a/errors/customer_lifecycle_goal_error.pb.go
+++ b/errors/customer_lifecycle_goal_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/customer_lifecycle_goal_error.proto
+// source: google/ads/googleads/v17/errors/customer_lifecycle_goal_error.proto
package errors
@@ -111,11 +111,11 @@ func (x CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError) String() stri
}
func (CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_enumTypes[0].Descriptor()
}
func (CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_enumTypes[0]
}
func (x CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError) Number() protoreflect.EnumNumber {
@@ -124,7 +124,7 @@ func (x CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError) Number() prot
// Deprecated: Use CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError.Descriptor instead.
func (CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible customer lifecycle goal errors.
@@ -137,7 +137,7 @@ type CustomerLifecycleGoalErrorEnum struct {
func (x *CustomerLifecycleGoalErrorEnum) Reset() {
*x = CustomerLifecycleGoalErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -150,7 +150,7 @@ func (x *CustomerLifecycleGoalErrorEnum) String() string {
func (*CustomerLifecycleGoalErrorEnum) ProtoMessage() {}
func (x *CustomerLifecycleGoalErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -163,18 +163,18 @@ func (x *CustomerLifecycleGoalErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomerLifecycleGoalErrorEnum.ProtoReflect.Descriptor instead.
func (*CustomerLifecycleGoalErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x63,
0x79, 0x63, 0x6c, 0x65, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa0, 0x03, 0x0a, 0x1e, 0x43, 0x75, 0x73, 0x74, 0x6f,
0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xfd, 0x02, 0x0a, 0x1a, 0x43, 0x75,
@@ -203,43 +203,43 @@ var file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_raw
0x49, 0x46, 0x45, 0x54, 0x49, 0x4d, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x55, 0x53,
0x45, 0x52, 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x10, 0x08, 0x42, 0xff, 0x01, 0x0a, 0x23, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x42, 0x1f, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63,
0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_rawDescData = file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_rawDescData = file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_goTypes = []interface{}{
- (CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError)(0), // 0: google.ads.googleads.v16.errors.CustomerLifecycleGoalErrorEnum.CustomerLifecycleGoalError
- (*CustomerLifecycleGoalErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CustomerLifecycleGoalErrorEnum
+var file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_goTypes = []interface{}{
+ (CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError)(0), // 0: google.ads.googleads.v17.errors.CustomerLifecycleGoalErrorEnum.CustomerLifecycleGoalError
+ (*CustomerLifecycleGoalErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CustomerLifecycleGoalErrorEnum
}
-var file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -247,13 +247,13 @@ var file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_init() }
-func file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_init() {
- if File_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_init() }
+func file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomerLifecycleGoalErrorEnum); i {
case 0:
return &v.state
@@ -270,19 +270,19 @@ func file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto = out.File
- file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto = out.File
+ file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_depIdxs = nil
}
diff --git a/errors/customer_manager_link_error.pb.go b/errors/customer_manager_link_error.pb.go
index 824d2602..fb27f4db 100644
--- a/errors/customer_manager_link_error.pb.go
+++ b/errors/customer_manager_link_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/customer_manager_link_error.proto
+// source: google/ads/googleads/v17/errors/customer_manager_link_error.proto
package errors
@@ -107,11 +107,11 @@ func (x CustomerManagerLinkErrorEnum_CustomerManagerLinkError) String() string {
}
func (CustomerManagerLinkErrorEnum_CustomerManagerLinkError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_enumTypes[0].Descriptor()
}
func (CustomerManagerLinkErrorEnum_CustomerManagerLinkError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_enumTypes[0]
}
func (x CustomerManagerLinkErrorEnum_CustomerManagerLinkError) Number() protoreflect.EnumNumber {
@@ -120,7 +120,7 @@ func (x CustomerManagerLinkErrorEnum_CustomerManagerLinkError) Number() protoref
// Deprecated: Use CustomerManagerLinkErrorEnum_CustomerManagerLinkError.Descriptor instead.
func (CustomerManagerLinkErrorEnum_CustomerManagerLinkError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible CustomerManagerLink errors.
@@ -133,7 +133,7 @@ type CustomerManagerLinkErrorEnum struct {
func (x *CustomerManagerLinkErrorEnum) Reset() {
*x = CustomerManagerLinkErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -146,7 +146,7 @@ func (x *CustomerManagerLinkErrorEnum) String() string {
func (*CustomerManagerLinkErrorEnum) ProtoMessage() {}
func (x *CustomerManagerLinkErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -159,18 +159,18 @@ func (x *CustomerManagerLinkErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomerManagerLinkErrorEnum.ProtoReflect.Descriptor instead.
func (*CustomerManagerLinkErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_customer_manager_link_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_customer_manager_link_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_rawDesc = []byte{
0x0a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67,
0x65, 0x72, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x22, 0xd0, 0x03, 0x0a, 0x1c, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
0x72, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xaf, 0x03, 0x0a, 0x18, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
@@ -202,42 +202,42 @@ var file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_rawDe
0x4f, 0x5f, 0x4d, 0x41, 0x4e, 0x59, 0x5f, 0x43, 0x48, 0x49, 0x4c, 0x44, 0x5f, 0x41, 0x43, 0x43,
0x4f, 0x55, 0x4e, 0x54, 0x53, 0x10, 0x0a, 0x42, 0xfd, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42,
0x1d, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_rawDescData = file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_rawDescData = file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_goTypes = []interface{}{
- (CustomerManagerLinkErrorEnum_CustomerManagerLinkError)(0), // 0: google.ads.googleads.v16.errors.CustomerManagerLinkErrorEnum.CustomerManagerLinkError
- (*CustomerManagerLinkErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CustomerManagerLinkErrorEnum
+var file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_goTypes = []interface{}{
+ (CustomerManagerLinkErrorEnum_CustomerManagerLinkError)(0), // 0: google.ads.googleads.v17.errors.CustomerManagerLinkErrorEnum.CustomerManagerLinkError
+ (*CustomerManagerLinkErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CustomerManagerLinkErrorEnum
}
-var file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -245,13 +245,13 @@ var file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_depId
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_init() }
-func file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_init() {
- if File_google_ads_googleads_v16_errors_customer_manager_link_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_init() }
+func file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_customer_manager_link_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomerManagerLinkErrorEnum); i {
case 0:
return &v.state
@@ -268,19 +268,19 @@ func file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_init
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_customer_manager_link_error_proto = out.File
- file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_customer_manager_link_error_proto = out.File
+ file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_depIdxs = nil
}
diff --git a/errors/customer_sk_ad_network_conversion_value_schema_error.pb.go b/errors/customer_sk_ad_network_conversion_value_schema_error.pb.go
index 4fe5966e..dc7ea7e0 100644
--- a/errors/customer_sk_ad_network_conversion_value_schema_error.pb.go
+++ b/errors/customer_sk_ad_network_conversion_value_schema_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/customer_sk_ad_network_conversion_value_schema_error.proto
+// source: google/ads/googleads/v17/errors/customer_sk_ad_network_conversion_value_schema_error.proto
package errors
@@ -91,11 +91,11 @@ func (x CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkCon
}
func (CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_enumTypes[0].Descriptor()
}
func (CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_enumTypes[0]
}
func (x CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError) Number() protoreflect.EnumNumber {
@@ -104,7 +104,7 @@ func (x CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkCon
// Deprecated: Use CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError.Descriptor instead.
func (CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible
@@ -118,7 +118,7 @@ type CustomerSkAdNetworkConversionValueSchemaErrorEnum struct {
func (x *CustomerSkAdNetworkConversionValueSchemaErrorEnum) Reset() {
*x = CustomerSkAdNetworkConversionValueSchemaErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -131,7 +131,7 @@ func (x *CustomerSkAdNetworkConversionValueSchemaErrorEnum) String() string {
func (*CustomerSkAdNetworkConversionValueSchemaErrorEnum) ProtoMessage() {}
func (x *CustomerSkAdNetworkConversionValueSchemaErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -144,20 +144,20 @@ func (x *CustomerSkAdNetworkConversionValueSchemaErrorEnum) ProtoReflect() proto
// Deprecated: Use CustomerSkAdNetworkConversionValueSchemaErrorEnum.ProtoReflect.Descriptor instead.
func (*CustomerSkAdNetworkConversionValueSchemaErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDesc = []byte{
0x0a, 0x5a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x73, 0x6b, 0x5f, 0x61, 0x64,
0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61,
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x8c, 0x02,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x8c, 0x02,
0x0a, 0x31, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65,
0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56,
0x61, 0x6c, 0x75, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
@@ -176,7 +176,7 @@ var file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value
0x45, 0x52, 0x10, 0x07, 0x12, 0x16, 0x0a, 0x12, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x5f,
0x45, 0x56, 0x45, 0x4e, 0x54, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x08, 0x42, 0x92, 0x02, 0x0a,
0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x42, 0x32, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x6b,
0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x45, 0x72,
@@ -184,36 +184,36 @@ var file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescData = file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescData = file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_goTypes = []interface{}{
- (CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError)(0), // 0: google.ads.googleads.v16.errors.CustomerSkAdNetworkConversionValueSchemaErrorEnum.CustomerSkAdNetworkConversionValueSchemaError
- (*CustomerSkAdNetworkConversionValueSchemaErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CustomerSkAdNetworkConversionValueSchemaErrorEnum
+var file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_goTypes = []interface{}{
+ (CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError)(0), // 0: google.ads.googleads.v17.errors.CustomerSkAdNetworkConversionValueSchemaErrorEnum.CustomerSkAdNetworkConversionValueSchemaError
+ (*CustomerSkAdNetworkConversionValueSchemaErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CustomerSkAdNetworkConversionValueSchemaErrorEnum
}
-var file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -222,14 +222,14 @@ var file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value
}
func init() {
- file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_init()
+ file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_init()
}
-func file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_init() {
- if File_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto != nil {
+func file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomerSkAdNetworkConversionValueSchemaErrorEnum); i {
case 0:
return &v.state
@@ -246,19 +246,19 @@ func file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_valu
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto = out.File
- file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto = out.File
+ file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_depIdxs = nil
}
diff --git a/errors/customer_user_access_error.pb.go b/errors/customer_user_access_error.pb.go
index 210d68b2..af1de1e1 100644
--- a/errors/customer_user_access_error.pb.go
+++ b/errors/customer_user_access_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/customer_user_access_error.proto
+// source: google/ads/googleads/v17/errors/customer_user_access_error.proto
package errors
@@ -88,11 +88,11 @@ func (x CustomerUserAccessErrorEnum_CustomerUserAccessError) String() string {
}
func (CustomerUserAccessErrorEnum_CustomerUserAccessError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_customer_user_access_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_customer_user_access_error_proto_enumTypes[0].Descriptor()
}
func (CustomerUserAccessErrorEnum_CustomerUserAccessError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_customer_user_access_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_customer_user_access_error_proto_enumTypes[0]
}
func (x CustomerUserAccessErrorEnum_CustomerUserAccessError) Number() protoreflect.EnumNumber {
@@ -101,7 +101,7 @@ func (x CustomerUserAccessErrorEnum_CustomerUserAccessError) Number() protorefle
// Deprecated: Use CustomerUserAccessErrorEnum_CustomerUserAccessError.Descriptor instead.
func (CustomerUserAccessErrorEnum_CustomerUserAccessError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_customer_user_access_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_customer_user_access_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible CustomerUserAccess errors.
@@ -114,7 +114,7 @@ type CustomerUserAccessErrorEnum struct {
func (x *CustomerUserAccessErrorEnum) Reset() {
*x = CustomerUserAccessErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_customer_user_access_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_customer_user_access_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -127,7 +127,7 @@ func (x *CustomerUserAccessErrorEnum) String() string {
func (*CustomerUserAccessErrorEnum) ProtoMessage() {}
func (x *CustomerUserAccessErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_customer_user_access_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_customer_user_access_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -140,18 +140,18 @@ func (x *CustomerUserAccessErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomerUserAccessErrorEnum.ProtoReflect.Descriptor instead.
func (*CustomerUserAccessErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_customer_user_access_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_customer_user_access_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_customer_user_access_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_customer_user_access_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_customer_user_access_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_customer_user_access_error_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f,
0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x22, 0xe9, 0x01, 0x0a, 0x1b, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72,
0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0xc9, 0x01, 0x0a, 0x17, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72,
@@ -168,43 +168,43 @@ var file_google_ads_googleads_v16_errors_customer_user_access_error_proto_rawDes
0x1e, 0x0a, 0x1a, 0x4c, 0x41, 0x53, 0x54, 0x5f, 0x41, 0x44, 0x4d, 0x49, 0x4e, 0x5f, 0x55, 0x53,
0x45, 0x52, 0x5f, 0x4f, 0x46, 0x5f, 0x4d, 0x41, 0x4e, 0x41, 0x47, 0x45, 0x52, 0x10, 0x06, 0x42,
0xfc, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1c, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_customer_user_access_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_customer_user_access_error_proto_rawDescData = file_google_ads_googleads_v16_errors_customer_user_access_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_customer_user_access_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_customer_user_access_error_proto_rawDescData = file_google_ads_googleads_v17_errors_customer_user_access_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_customer_user_access_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_customer_user_access_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_customer_user_access_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_customer_user_access_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_customer_user_access_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_customer_user_access_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_customer_user_access_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_customer_user_access_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_customer_user_access_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_customer_user_access_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_customer_user_access_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_customer_user_access_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_customer_user_access_error_proto_goTypes = []interface{}{
- (CustomerUserAccessErrorEnum_CustomerUserAccessError)(0), // 0: google.ads.googleads.v16.errors.CustomerUserAccessErrorEnum.CustomerUserAccessError
- (*CustomerUserAccessErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CustomerUserAccessErrorEnum
+var file_google_ads_googleads_v17_errors_customer_user_access_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_customer_user_access_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_customer_user_access_error_proto_goTypes = []interface{}{
+ (CustomerUserAccessErrorEnum_CustomerUserAccessError)(0), // 0: google.ads.googleads.v17.errors.CustomerUserAccessErrorEnum.CustomerUserAccessError
+ (*CustomerUserAccessErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CustomerUserAccessErrorEnum
}
-var file_google_ads_googleads_v16_errors_customer_user_access_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_customer_user_access_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -212,13 +212,13 @@ var file_google_ads_googleads_v16_errors_customer_user_access_error_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_customer_user_access_error_proto_init() }
-func file_google_ads_googleads_v16_errors_customer_user_access_error_proto_init() {
- if File_google_ads_googleads_v16_errors_customer_user_access_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_customer_user_access_error_proto_init() }
+func file_google_ads_googleads_v17_errors_customer_user_access_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_customer_user_access_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_customer_user_access_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_customer_user_access_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomerUserAccessErrorEnum); i {
case 0:
return &v.state
@@ -235,19 +235,19 @@ func file_google_ads_googleads_v16_errors_customer_user_access_error_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_customer_user_access_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_customer_user_access_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_customer_user_access_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_customer_user_access_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_customer_user_access_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_customer_user_access_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_customer_user_access_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_customer_user_access_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_customer_user_access_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_customer_user_access_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_customer_user_access_error_proto = out.File
- file_google_ads_googleads_v16_errors_customer_user_access_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_customer_user_access_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_customer_user_access_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_customer_user_access_error_proto = out.File
+ file_google_ads_googleads_v17_errors_customer_user_access_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_customer_user_access_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_customer_user_access_error_proto_depIdxs = nil
}
diff --git a/errors/customizer_attribute_error.pb.go b/errors/customizer_attribute_error.pb.go
index e3766da9..6c719df4 100644
--- a/errors/customizer_attribute_error.pb.go
+++ b/errors/customizer_attribute_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/customizer_attribute_error.proto
+// source: google/ads/googleads/v17/errors/customizer_attribute_error.proto
package errors
@@ -72,11 +72,11 @@ func (x CustomizerAttributeErrorEnum_CustomizerAttributeError) String() string {
}
func (CustomizerAttributeErrorEnum_CustomizerAttributeError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_enumTypes[0].Descriptor()
}
func (CustomizerAttributeErrorEnum_CustomizerAttributeError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_enumTypes[0]
}
func (x CustomizerAttributeErrorEnum_CustomizerAttributeError) Number() protoreflect.EnumNumber {
@@ -85,7 +85,7 @@ func (x CustomizerAttributeErrorEnum_CustomizerAttributeError) Number() protoref
// Deprecated: Use CustomizerAttributeErrorEnum_CustomizerAttributeError.Descriptor instead.
func (CustomizerAttributeErrorEnum_CustomizerAttributeError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible customizer attribute errors.
@@ -98,7 +98,7 @@ type CustomizerAttributeErrorEnum struct {
func (x *CustomizerAttributeErrorEnum) Reset() {
*x = CustomizerAttributeErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -111,7 +111,7 @@ func (x *CustomizerAttributeErrorEnum) String() string {
func (*CustomizerAttributeErrorEnum) ProtoMessage() {}
func (x *CustomizerAttributeErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -124,18 +124,18 @@ func (x *CustomizerAttributeErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use CustomizerAttributeErrorEnum.ProtoReflect.Descriptor instead.
func (*CustomizerAttributeErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_customizer_attribute_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_customizer_attribute_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74,
0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x22, 0x81, 0x01, 0x0a, 0x1c, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a,
0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x61, 0x0a, 0x18, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a,
@@ -146,42 +146,42 @@ var file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_rawDes
0x4f, 0x4d, 0x49, 0x5a, 0x45, 0x52, 0x5f, 0x41, 0x54, 0x54, 0x52, 0x49, 0x42, 0x55, 0x54, 0x45,
0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x02, 0x42, 0xfd, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42,
0x1d, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69,
0x62, 0x75, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_rawDescData = file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_rawDescData = file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_goTypes = []interface{}{
- (CustomizerAttributeErrorEnum_CustomizerAttributeError)(0), // 0: google.ads.googleads.v16.errors.CustomizerAttributeErrorEnum.CustomizerAttributeError
- (*CustomizerAttributeErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.CustomizerAttributeErrorEnum
+var file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_goTypes = []interface{}{
+ (CustomizerAttributeErrorEnum_CustomizerAttributeError)(0), // 0: google.ads.googleads.v17.errors.CustomizerAttributeErrorEnum.CustomizerAttributeError
+ (*CustomizerAttributeErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.CustomizerAttributeErrorEnum
}
-var file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -189,13 +189,13 @@ var file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_init() }
-func file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_init() {
- if File_google_ads_googleads_v16_errors_customizer_attribute_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_init() }
+func file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_customizer_attribute_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*CustomizerAttributeErrorEnum); i {
case 0:
return &v.state
@@ -212,19 +212,19 @@ func file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_customizer_attribute_error_proto = out.File
- file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_customizer_attribute_error_proto = out.File
+ file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_depIdxs = nil
}
diff --git a/errors/database_error.pb.go b/errors/database_error.pb.go
index 30a57488..9c1c3c5f 100644
--- a/errors/database_error.pb.go
+++ b/errors/database_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/database_error.proto
+// source: google/ads/googleads/v17/errors/database_error.proto
package errors
@@ -82,11 +82,11 @@ func (x DatabaseErrorEnum_DatabaseError) String() string {
}
func (DatabaseErrorEnum_DatabaseError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_database_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_database_error_proto_enumTypes[0].Descriptor()
}
func (DatabaseErrorEnum_DatabaseError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_database_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_database_error_proto_enumTypes[0]
}
func (x DatabaseErrorEnum_DatabaseError) Number() protoreflect.EnumNumber {
@@ -95,7 +95,7 @@ func (x DatabaseErrorEnum_DatabaseError) Number() protoreflect.EnumNumber {
// Deprecated: Use DatabaseErrorEnum_DatabaseError.Descriptor instead.
func (DatabaseErrorEnum_DatabaseError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_database_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_database_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible database errors.
@@ -108,7 +108,7 @@ type DatabaseErrorEnum struct {
func (x *DatabaseErrorEnum) Reset() {
*x = DatabaseErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_database_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_database_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -121,7 +121,7 @@ func (x *DatabaseErrorEnum) String() string {
func (*DatabaseErrorEnum) ProtoMessage() {}
func (x *DatabaseErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_database_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_database_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -134,17 +134,17 @@ func (x *DatabaseErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use DatabaseErrorEnum.ProtoReflect.Descriptor instead.
func (*DatabaseErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_database_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_database_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_database_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_database_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_database_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_database_error_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x96, 0x01, 0x0a, 0x11, 0x44, 0x61, 0x74, 0x61,
0x62, 0x61, 0x73, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x80, 0x01,
0x0a, 0x0d, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
@@ -157,41 +157,41 @@ var file_google_ads_googleads_v16_errors_database_error_proto_rawDesc = []byte{
0x55, 0x45, 0x53, 0x54, 0x5f, 0x54, 0x4f, 0x4f, 0x5f, 0x4c, 0x41, 0x52, 0x47, 0x45, 0x10, 0x04,
0x42, 0xf2, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61,
0x73, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_database_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_database_error_proto_rawDescData = file_google_ads_googleads_v16_errors_database_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_database_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_database_error_proto_rawDescData = file_google_ads_googleads_v17_errors_database_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_database_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_database_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_database_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_database_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_database_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_database_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_database_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_database_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_database_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_database_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_database_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_database_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_database_error_proto_goTypes = []interface{}{
- (DatabaseErrorEnum_DatabaseError)(0), // 0: google.ads.googleads.v16.errors.DatabaseErrorEnum.DatabaseError
- (*DatabaseErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.DatabaseErrorEnum
+var file_google_ads_googleads_v17_errors_database_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_database_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_database_error_proto_goTypes = []interface{}{
+ (DatabaseErrorEnum_DatabaseError)(0), // 0: google.ads.googleads.v17.errors.DatabaseErrorEnum.DatabaseError
+ (*DatabaseErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.DatabaseErrorEnum
}
-var file_google_ads_googleads_v16_errors_database_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_database_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -199,13 +199,13 @@ var file_google_ads_googleads_v16_errors_database_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_database_error_proto_init() }
-func file_google_ads_googleads_v16_errors_database_error_proto_init() {
- if File_google_ads_googleads_v16_errors_database_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_database_error_proto_init() }
+func file_google_ads_googleads_v17_errors_database_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_database_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_database_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_database_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DatabaseErrorEnum); i {
case 0:
return &v.state
@@ -222,19 +222,19 @@ func file_google_ads_googleads_v16_errors_database_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_database_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_database_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_database_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_database_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_database_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_database_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_database_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_database_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_database_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_database_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_database_error_proto = out.File
- file_google_ads_googleads_v16_errors_database_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_database_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_database_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_database_error_proto = out.File
+ file_google_ads_googleads_v17_errors_database_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_database_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_database_error_proto_depIdxs = nil
}
diff --git a/errors/date_error.pb.go b/errors/date_error.pb.go
index d07d40e4..44a91a2b 100644
--- a/errors/date_error.pb.go
+++ b/errors/date_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/date_error.proto
+// source: google/ads/googleads/v17/errors/date_error.proto
package errors
@@ -107,11 +107,11 @@ func (x DateErrorEnum_DateError) String() string {
}
func (DateErrorEnum_DateError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_date_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_date_error_proto_enumTypes[0].Descriptor()
}
func (DateErrorEnum_DateError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_date_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_date_error_proto_enumTypes[0]
}
func (x DateErrorEnum_DateError) Number() protoreflect.EnumNumber {
@@ -120,7 +120,7 @@ func (x DateErrorEnum_DateError) Number() protoreflect.EnumNumber {
// Deprecated: Use DateErrorEnum_DateError.Descriptor instead.
func (DateErrorEnum_DateError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_date_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_date_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible date errors.
@@ -133,7 +133,7 @@ type DateErrorEnum struct {
func (x *DateErrorEnum) Reset() {
*x = DateErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_date_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_date_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -146,7 +146,7 @@ func (x *DateErrorEnum) String() string {
func (*DateErrorEnum) ProtoMessage() {}
func (x *DateErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_date_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_date_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -159,17 +159,17 @@ func (x *DateErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use DateErrorEnum.ProtoReflect.Descriptor instead.
func (*DateErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_date_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_date_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_date_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_date_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_date_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_date_error_proto_rawDesc = []byte{
0x0a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x22, 0xbf, 0x03, 0x0a, 0x0d, 0x44, 0x61, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xad, 0x03, 0x0a, 0x09, 0x44, 0x61, 0x74, 0x65, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
@@ -200,41 +200,41 @@ var file_google_ads_googleads_v16_errors_date_error_proto_rawDesc = []byte{
0x4d, 0x55, 0x4d, 0x5f, 0x44, 0x41, 0x54, 0x45, 0x53, 0x5f, 0x42, 0x4f, 0x54, 0x48, 0x5f, 0x4e,
0x55, 0x4c, 0x4c, 0x10, 0x0a, 0x42, 0xee, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0e, 0x44,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0e, 0x44,
0x61, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_date_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_date_error_proto_rawDescData = file_google_ads_googleads_v16_errors_date_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_date_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_date_error_proto_rawDescData = file_google_ads_googleads_v17_errors_date_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_date_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_date_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_date_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_date_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_date_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_date_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_date_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_date_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_date_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_date_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_date_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_date_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_date_error_proto_goTypes = []interface{}{
- (DateErrorEnum_DateError)(0), // 0: google.ads.googleads.v16.errors.DateErrorEnum.DateError
- (*DateErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.DateErrorEnum
+var file_google_ads_googleads_v17_errors_date_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_date_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_date_error_proto_goTypes = []interface{}{
+ (DateErrorEnum_DateError)(0), // 0: google.ads.googleads.v17.errors.DateErrorEnum.DateError
+ (*DateErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.DateErrorEnum
}
-var file_google_ads_googleads_v16_errors_date_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_date_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -242,13 +242,13 @@ var file_google_ads_googleads_v16_errors_date_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_date_error_proto_init() }
-func file_google_ads_googleads_v16_errors_date_error_proto_init() {
- if File_google_ads_googleads_v16_errors_date_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_date_error_proto_init() }
+func file_google_ads_googleads_v17_errors_date_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_date_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_date_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_date_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DateErrorEnum); i {
case 0:
return &v.state
@@ -265,19 +265,19 @@ func file_google_ads_googleads_v16_errors_date_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_date_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_date_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_date_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_date_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_date_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_date_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_date_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_date_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_date_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_date_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_date_error_proto = out.File
- file_google_ads_googleads_v16_errors_date_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_date_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_date_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_date_error_proto = out.File
+ file_google_ads_googleads_v17_errors_date_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_date_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_date_error_proto_depIdxs = nil
}
diff --git a/errors/date_range_error.pb.go b/errors/date_range_error.pb.go
index f48452d3..4613e43d 100644
--- a/errors/date_range_error.pb.go
+++ b/errors/date_range_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/date_range_error.proto
+// source: google/ads/googleads/v17/errors/date_range_error.proto
package errors
@@ -87,11 +87,11 @@ func (x DateRangeErrorEnum_DateRangeError) String() string {
}
func (DateRangeErrorEnum_DateRangeError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_date_range_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_date_range_error_proto_enumTypes[0].Descriptor()
}
func (DateRangeErrorEnum_DateRangeError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_date_range_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_date_range_error_proto_enumTypes[0]
}
func (x DateRangeErrorEnum_DateRangeError) Number() protoreflect.EnumNumber {
@@ -100,7 +100,7 @@ func (x DateRangeErrorEnum_DateRangeError) Number() protoreflect.EnumNumber {
// Deprecated: Use DateRangeErrorEnum_DateRangeError.Descriptor instead.
func (DateRangeErrorEnum_DateRangeError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_date_range_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_date_range_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible date range errors.
@@ -113,7 +113,7 @@ type DateRangeErrorEnum struct {
func (x *DateRangeErrorEnum) Reset() {
*x = DateRangeErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_date_range_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_date_range_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -126,7 +126,7 @@ func (x *DateRangeErrorEnum) String() string {
func (*DateRangeErrorEnum) ProtoMessage() {}
func (x *DateRangeErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_date_range_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_date_range_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -139,18 +139,18 @@ func (x *DateRangeErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use DateRangeErrorEnum.ProtoReflect.Descriptor instead.
func (*DateRangeErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_date_range_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_date_range_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_date_range_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_date_range_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_date_range_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_date_range_error_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xe6, 0x01, 0x0a, 0x12, 0x44, 0x61,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xe6, 0x01, 0x0a, 0x12, 0x44, 0x61,
0x74, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0xcf, 0x01, 0x0a, 0x0e, 0x44, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
@@ -167,41 +167,41 @@ var file_google_ads_googleads_v16_errors_date_range_error_proto_rawDesc = []byte
0x5f, 0x41, 0x4c, 0x52, 0x45, 0x41, 0x44, 0x59, 0x5f, 0x53, 0x54, 0x41, 0x52, 0x54, 0x45, 0x44,
0x10, 0x06, 0x42, 0xf3, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x13, 0x44, 0x61, 0x74, 0x65,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x13, 0x44, 0x61, 0x74, 0x65,
0x52, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_date_range_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_date_range_error_proto_rawDescData = file_google_ads_googleads_v16_errors_date_range_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_date_range_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_date_range_error_proto_rawDescData = file_google_ads_googleads_v17_errors_date_range_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_date_range_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_date_range_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_date_range_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_date_range_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_date_range_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_date_range_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_date_range_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_date_range_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_date_range_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_date_range_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_date_range_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_date_range_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_date_range_error_proto_goTypes = []interface{}{
- (DateRangeErrorEnum_DateRangeError)(0), // 0: google.ads.googleads.v16.errors.DateRangeErrorEnum.DateRangeError
- (*DateRangeErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.DateRangeErrorEnum
+var file_google_ads_googleads_v17_errors_date_range_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_date_range_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_date_range_error_proto_goTypes = []interface{}{
+ (DateRangeErrorEnum_DateRangeError)(0), // 0: google.ads.googleads.v17.errors.DateRangeErrorEnum.DateRangeError
+ (*DateRangeErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.DateRangeErrorEnum
}
-var file_google_ads_googleads_v16_errors_date_range_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_date_range_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -209,13 +209,13 @@ var file_google_ads_googleads_v16_errors_date_range_error_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_date_range_error_proto_init() }
-func file_google_ads_googleads_v16_errors_date_range_error_proto_init() {
- if File_google_ads_googleads_v16_errors_date_range_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_date_range_error_proto_init() }
+func file_google_ads_googleads_v17_errors_date_range_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_date_range_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_date_range_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_date_range_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DateRangeErrorEnum); i {
case 0:
return &v.state
@@ -232,19 +232,19 @@ func file_google_ads_googleads_v16_errors_date_range_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_date_range_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_date_range_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_date_range_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_date_range_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_date_range_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_date_range_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_date_range_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_date_range_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_date_range_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_date_range_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_date_range_error_proto = out.File
- file_google_ads_googleads_v16_errors_date_range_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_date_range_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_date_range_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_date_range_error_proto = out.File
+ file_google_ads_googleads_v17_errors_date_range_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_date_range_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_date_range_error_proto_depIdxs = nil
}
diff --git a/errors/distinct_error.pb.go b/errors/distinct_error.pb.go
index 7d876d85..dc999f94 100644
--- a/errors/distinct_error.pb.go
+++ b/errors/distinct_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/distinct_error.proto
+// source: google/ads/googleads/v17/errors/distinct_error.proto
package errors
@@ -75,11 +75,11 @@ func (x DistinctErrorEnum_DistinctError) String() string {
}
func (DistinctErrorEnum_DistinctError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_distinct_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_distinct_error_proto_enumTypes[0].Descriptor()
}
func (DistinctErrorEnum_DistinctError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_distinct_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_distinct_error_proto_enumTypes[0]
}
func (x DistinctErrorEnum_DistinctError) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x DistinctErrorEnum_DistinctError) Number() protoreflect.EnumNumber {
// Deprecated: Use DistinctErrorEnum_DistinctError.Descriptor instead.
func (DistinctErrorEnum_DistinctError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_distinct_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_distinct_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible distinct errors.
@@ -101,7 +101,7 @@ type DistinctErrorEnum struct {
func (x *DistinctErrorEnum) Reset() {
*x = DistinctErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_distinct_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_distinct_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *DistinctErrorEnum) String() string {
func (*DistinctErrorEnum) ProtoMessage() {}
func (x *DistinctErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_distinct_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_distinct_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,17 +127,17 @@ func (x *DistinctErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use DistinctErrorEnum.ProtoReflect.Descriptor instead.
func (*DistinctErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_distinct_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_distinct_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_distinct_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_distinct_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_distinct_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_distinct_error_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x64, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x63, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x6d, 0x0a, 0x11, 0x44, 0x69, 0x73, 0x74, 0x69,
0x6e, 0x63, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x58, 0x0a, 0x0d,
0x44, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x63, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a,
@@ -147,42 +147,42 @@ var file_google_ads_googleads_v16_errors_distinct_error_proto_rawDesc = []byte{
0x10, 0x02, 0x12, 0x12, 0x0a, 0x0e, 0x44, 0x55, 0x50, 0x4c, 0x49, 0x43, 0x41, 0x54, 0x45, 0x5f,
0x54, 0x59, 0x50, 0x45, 0x10, 0x03, 0x42, 0xf2, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12,
0x44, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x63, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_distinct_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_distinct_error_proto_rawDescData = file_google_ads_googleads_v16_errors_distinct_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_distinct_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_distinct_error_proto_rawDescData = file_google_ads_googleads_v17_errors_distinct_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_distinct_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_distinct_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_distinct_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_distinct_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_distinct_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_distinct_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_distinct_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_distinct_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_distinct_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_distinct_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_distinct_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_distinct_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_distinct_error_proto_goTypes = []interface{}{
- (DistinctErrorEnum_DistinctError)(0), // 0: google.ads.googleads.v16.errors.DistinctErrorEnum.DistinctError
- (*DistinctErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.DistinctErrorEnum
+var file_google_ads_googleads_v17_errors_distinct_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_distinct_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_distinct_error_proto_goTypes = []interface{}{
+ (DistinctErrorEnum_DistinctError)(0), // 0: google.ads.googleads.v17.errors.DistinctErrorEnum.DistinctError
+ (*DistinctErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.DistinctErrorEnum
}
-var file_google_ads_googleads_v16_errors_distinct_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_distinct_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_errors_distinct_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_distinct_error_proto_init() }
-func file_google_ads_googleads_v16_errors_distinct_error_proto_init() {
- if File_google_ads_googleads_v16_errors_distinct_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_distinct_error_proto_init() }
+func file_google_ads_googleads_v17_errors_distinct_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_distinct_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_distinct_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_distinct_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*DistinctErrorEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_errors_distinct_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_distinct_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_distinct_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_distinct_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_distinct_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_distinct_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_distinct_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_distinct_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_distinct_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_distinct_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_distinct_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_distinct_error_proto = out.File
- file_google_ads_googleads_v16_errors_distinct_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_distinct_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_distinct_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_distinct_error_proto = out.File
+ file_google_ads_googleads_v17_errors_distinct_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_distinct_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_distinct_error_proto_depIdxs = nil
}
diff --git a/errors/enum_error.pb.go b/errors/enum_error.pb.go
index 3a2dc05a..1044f971 100644
--- a/errors/enum_error.pb.go
+++ b/errors/enum_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/enum_error.proto
+// source: google/ads/googleads/v17/errors/enum_error.proto
package errors
@@ -71,11 +71,11 @@ func (x EnumErrorEnum_EnumError) String() string {
}
func (EnumErrorEnum_EnumError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_enum_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_enum_error_proto_enumTypes[0].Descriptor()
}
func (EnumErrorEnum_EnumError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_enum_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_enum_error_proto_enumTypes[0]
}
func (x EnumErrorEnum_EnumError) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x EnumErrorEnum_EnumError) Number() protoreflect.EnumNumber {
// Deprecated: Use EnumErrorEnum_EnumError.Descriptor instead.
func (EnumErrorEnum_EnumError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_enum_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_enum_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible enum errors.
@@ -97,7 +97,7 @@ type EnumErrorEnum struct {
func (x *EnumErrorEnum) Reset() {
*x = EnumErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_enum_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_enum_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *EnumErrorEnum) String() string {
func (*EnumErrorEnum) ProtoMessage() {}
func (x *EnumErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_enum_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_enum_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,17 +123,17 @@ func (x *EnumErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use EnumErrorEnum.ProtoReflect.Descriptor instead.
func (*EnumErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_enum_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_enum_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_enum_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_enum_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_enum_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_enum_error_proto_rawDesc = []byte{
0x0a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x22, 0x58, 0x0a, 0x0d, 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x47, 0x0a, 0x09, 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44,
@@ -141,42 +141,42 @@ var file_google_ads_googleads_v16_errors_enum_error_proto_rawDesc = []byte{
0x1c, 0x0a, 0x18, 0x45, 0x4e, 0x55, 0x4d, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x4e, 0x4f,
0x54, 0x5f, 0x50, 0x45, 0x52, 0x4d, 0x49, 0x54, 0x54, 0x45, 0x44, 0x10, 0x03, 0x42, 0xee, 0x01,
0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0e, 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_enum_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_enum_error_proto_rawDescData = file_google_ads_googleads_v16_errors_enum_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_enum_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_enum_error_proto_rawDescData = file_google_ads_googleads_v17_errors_enum_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_enum_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_enum_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_enum_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_enum_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_enum_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_enum_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_enum_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_enum_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_enum_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_enum_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_enum_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_enum_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_enum_error_proto_goTypes = []interface{}{
- (EnumErrorEnum_EnumError)(0), // 0: google.ads.googleads.v16.errors.EnumErrorEnum.EnumError
- (*EnumErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.EnumErrorEnum
+var file_google_ads_googleads_v17_errors_enum_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_enum_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_enum_error_proto_goTypes = []interface{}{
+ (EnumErrorEnum_EnumError)(0), // 0: google.ads.googleads.v17.errors.EnumErrorEnum.EnumError
+ (*EnumErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.EnumErrorEnum
}
-var file_google_ads_googleads_v16_errors_enum_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_enum_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -184,13 +184,13 @@ var file_google_ads_googleads_v16_errors_enum_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_enum_error_proto_init() }
-func file_google_ads_googleads_v16_errors_enum_error_proto_init() {
- if File_google_ads_googleads_v16_errors_enum_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_enum_error_proto_init() }
+func file_google_ads_googleads_v17_errors_enum_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_enum_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_enum_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_enum_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*EnumErrorEnum); i {
case 0:
return &v.state
@@ -207,19 +207,19 @@ func file_google_ads_googleads_v16_errors_enum_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_enum_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_enum_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_enum_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_enum_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_enum_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_enum_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_enum_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_enum_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_enum_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_enum_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_enum_error_proto = out.File
- file_google_ads_googleads_v16_errors_enum_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_enum_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_enum_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_enum_error_proto = out.File
+ file_google_ads_googleads_v17_errors_enum_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_enum_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_enum_error_proto_depIdxs = nil
}
diff --git a/errors/errors.pb.go b/errors/errors.pb.go
index 63141900..aaa55c32 100644
--- a/errors/errors.pb.go
+++ b/errors/errors.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/errors.proto
+// source: google/ads/googleads/v17/errors/errors.proto
package errors
@@ -78,11 +78,11 @@ func (x QuotaErrorDetails_QuotaRateScope) String() string {
}
func (QuotaErrorDetails_QuotaRateScope) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_errors_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_errors_proto_enumTypes[0].Descriptor()
}
func (QuotaErrorDetails_QuotaRateScope) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_errors_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_errors_proto_enumTypes[0]
}
func (x QuotaErrorDetails_QuotaRateScope) Number() protoreflect.EnumNumber {
@@ -91,7 +91,7 @@ func (x QuotaErrorDetails_QuotaRateScope) Number() protoreflect.EnumNumber {
// Deprecated: Use QuotaErrorDetails_QuotaRateScope.Descriptor instead.
func (QuotaErrorDetails_QuotaRateScope) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_errors_proto_rawDescGZIP(), []int{7, 0}
+ return file_google_ads_googleads_v17_errors_errors_proto_rawDescGZIP(), []int{7, 0}
}
// Describes how a GoogleAds API call failed. It's returned inside
@@ -110,7 +110,7 @@ type GoogleAdsFailure struct {
func (x *GoogleAdsFailure) Reset() {
*x = GoogleAdsFailure{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -123,7 +123,7 @@ func (x *GoogleAdsFailure) String() string {
func (*GoogleAdsFailure) ProtoMessage() {}
func (x *GoogleAdsFailure) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -136,7 +136,7 @@ func (x *GoogleAdsFailure) ProtoReflect() protoreflect.Message {
// Deprecated: Use GoogleAdsFailure.ProtoReflect.Descriptor instead.
func (*GoogleAdsFailure) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_errors_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_errors_proto_rawDescGZIP(), []int{0}
}
func (x *GoogleAdsFailure) GetErrors() []*GoogleAdsError {
@@ -175,7 +175,7 @@ type GoogleAdsError struct {
func (x *GoogleAdsError) Reset() {
*x = GoogleAdsError{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -188,7 +188,7 @@ func (x *GoogleAdsError) String() string {
func (*GoogleAdsError) ProtoMessage() {}
func (x *GoogleAdsError) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -201,7 +201,7 @@ func (x *GoogleAdsError) ProtoReflect() protoreflect.Message {
// Deprecated: Use GoogleAdsError.ProtoReflect.Descriptor instead.
func (*GoogleAdsError) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_errors_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_errors_errors_proto_rawDescGZIP(), []int{1}
}
func (x *GoogleAdsError) GetErrorCode() *ErrorCode {
@@ -401,13 +401,15 @@ type ErrorCode struct {
// *ErrorCode_CustomerLifecycleGoalError
// *ErrorCode_CampaignLifecycleGoalError
// *ErrorCode_IdentityVerificationError
+ // *ErrorCode_UserListCustomerTypeError
+ // *ErrorCode_ShoppingProductError
ErrorCode isErrorCode_ErrorCode `protobuf_oneof:"error_code"`
}
func (x *ErrorCode) Reset() {
*x = ErrorCode{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -420,7 +422,7 @@ func (x *ErrorCode) String() string {
func (*ErrorCode) ProtoMessage() {}
func (x *ErrorCode) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -433,7 +435,7 @@ func (x *ErrorCode) ProtoReflect() protoreflect.Message {
// Deprecated: Use ErrorCode.ProtoReflect.Descriptor instead.
func (*ErrorCode) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_errors_proto_rawDescGZIP(), []int{2}
+ return file_google_ads_googleads_v17_errors_errors_proto_rawDescGZIP(), []int{2}
}
func (m *ErrorCode) GetErrorCode() isErrorCode_ErrorCode {
@@ -1507,768 +1509,792 @@ func (x *ErrorCode) GetIdentityVerificationError() IdentityVerificationErrorEnum
return IdentityVerificationErrorEnum_UNSPECIFIED
}
+func (x *ErrorCode) GetUserListCustomerTypeError() UserListCustomerTypeErrorEnum_UserListCustomerTypeError {
+ if x, ok := x.GetErrorCode().(*ErrorCode_UserListCustomerTypeError); ok {
+ return x.UserListCustomerTypeError
+ }
+ return UserListCustomerTypeErrorEnum_UNSPECIFIED
+}
+
+func (x *ErrorCode) GetShoppingProductError() ShoppingProductErrorEnum_ShoppingProductError {
+ if x, ok := x.GetErrorCode().(*ErrorCode_ShoppingProductError); ok {
+ return x.ShoppingProductError
+ }
+ return ShoppingProductErrorEnum_UNSPECIFIED
+}
+
type isErrorCode_ErrorCode interface {
isErrorCode_ErrorCode()
}
type ErrorCode_RequestError struct {
// An error caused by the request
- RequestError RequestErrorEnum_RequestError `protobuf:"varint,1,opt,name=request_error,json=requestError,proto3,enum=google.ads.googleads.v16.errors.RequestErrorEnum_RequestError,oneof"`
+ RequestError RequestErrorEnum_RequestError `protobuf:"varint,1,opt,name=request_error,json=requestError,proto3,enum=google.ads.googleads.v17.errors.RequestErrorEnum_RequestError,oneof"`
}
type ErrorCode_BiddingStrategyError struct {
// An error with a Bidding Strategy mutate.
- BiddingStrategyError BiddingStrategyErrorEnum_BiddingStrategyError `protobuf:"varint,2,opt,name=bidding_strategy_error,json=biddingStrategyError,proto3,enum=google.ads.googleads.v16.errors.BiddingStrategyErrorEnum_BiddingStrategyError,oneof"`
+ BiddingStrategyError BiddingStrategyErrorEnum_BiddingStrategyError `protobuf:"varint,2,opt,name=bidding_strategy_error,json=biddingStrategyError,proto3,enum=google.ads.googleads.v17.errors.BiddingStrategyErrorEnum_BiddingStrategyError,oneof"`
}
type ErrorCode_UrlFieldError struct {
// An error with a URL field mutate.
- UrlFieldError UrlFieldErrorEnum_UrlFieldError `protobuf:"varint,3,opt,name=url_field_error,json=urlFieldError,proto3,enum=google.ads.googleads.v16.errors.UrlFieldErrorEnum_UrlFieldError,oneof"`
+ UrlFieldError UrlFieldErrorEnum_UrlFieldError `protobuf:"varint,3,opt,name=url_field_error,json=urlFieldError,proto3,enum=google.ads.googleads.v17.errors.UrlFieldErrorEnum_UrlFieldError,oneof"`
}
type ErrorCode_ListOperationError struct {
// An error with a list operation.
- ListOperationError ListOperationErrorEnum_ListOperationError `protobuf:"varint,4,opt,name=list_operation_error,json=listOperationError,proto3,enum=google.ads.googleads.v16.errors.ListOperationErrorEnum_ListOperationError,oneof"`
+ ListOperationError ListOperationErrorEnum_ListOperationError `protobuf:"varint,4,opt,name=list_operation_error,json=listOperationError,proto3,enum=google.ads.googleads.v17.errors.ListOperationErrorEnum_ListOperationError,oneof"`
}
type ErrorCode_QueryError struct {
// An error with an AWQL query
- QueryError QueryErrorEnum_QueryError `protobuf:"varint,5,opt,name=query_error,json=queryError,proto3,enum=google.ads.googleads.v16.errors.QueryErrorEnum_QueryError,oneof"`
+ QueryError QueryErrorEnum_QueryError `protobuf:"varint,5,opt,name=query_error,json=queryError,proto3,enum=google.ads.googleads.v17.errors.QueryErrorEnum_QueryError,oneof"`
}
type ErrorCode_MutateError struct {
// An error with a mutate
- MutateError MutateErrorEnum_MutateError `protobuf:"varint,7,opt,name=mutate_error,json=mutateError,proto3,enum=google.ads.googleads.v16.errors.MutateErrorEnum_MutateError,oneof"`
+ MutateError MutateErrorEnum_MutateError `protobuf:"varint,7,opt,name=mutate_error,json=mutateError,proto3,enum=google.ads.googleads.v17.errors.MutateErrorEnum_MutateError,oneof"`
}
type ErrorCode_FieldMaskError struct {
// An error with a field mask
- FieldMaskError FieldMaskErrorEnum_FieldMaskError `protobuf:"varint,8,opt,name=field_mask_error,json=fieldMaskError,proto3,enum=google.ads.googleads.v16.errors.FieldMaskErrorEnum_FieldMaskError,oneof"`
+ FieldMaskError FieldMaskErrorEnum_FieldMaskError `protobuf:"varint,8,opt,name=field_mask_error,json=fieldMaskError,proto3,enum=google.ads.googleads.v17.errors.FieldMaskErrorEnum_FieldMaskError,oneof"`
}
type ErrorCode_AuthorizationError struct {
// An error encountered when trying to authorize a user.
- AuthorizationError AuthorizationErrorEnum_AuthorizationError `protobuf:"varint,9,opt,name=authorization_error,json=authorizationError,proto3,enum=google.ads.googleads.v16.errors.AuthorizationErrorEnum_AuthorizationError,oneof"`
+ AuthorizationError AuthorizationErrorEnum_AuthorizationError `protobuf:"varint,9,opt,name=authorization_error,json=authorizationError,proto3,enum=google.ads.googleads.v17.errors.AuthorizationErrorEnum_AuthorizationError,oneof"`
}
type ErrorCode_InternalError struct {
// An unexpected server-side error.
- InternalError InternalErrorEnum_InternalError `protobuf:"varint,10,opt,name=internal_error,json=internalError,proto3,enum=google.ads.googleads.v16.errors.InternalErrorEnum_InternalError,oneof"`
+ InternalError InternalErrorEnum_InternalError `protobuf:"varint,10,opt,name=internal_error,json=internalError,proto3,enum=google.ads.googleads.v17.errors.InternalErrorEnum_InternalError,oneof"`
}
type ErrorCode_QuotaError struct {
// An error with the amount of quota remaining.
- QuotaError QuotaErrorEnum_QuotaError `protobuf:"varint,11,opt,name=quota_error,json=quotaError,proto3,enum=google.ads.googleads.v16.errors.QuotaErrorEnum_QuotaError,oneof"`
+ QuotaError QuotaErrorEnum_QuotaError `protobuf:"varint,11,opt,name=quota_error,json=quotaError,proto3,enum=google.ads.googleads.v17.errors.QuotaErrorEnum_QuotaError,oneof"`
}
type ErrorCode_AdError struct {
// An error with an Ad Group Ad mutate.
- AdError AdErrorEnum_AdError `protobuf:"varint,12,opt,name=ad_error,json=adError,proto3,enum=google.ads.googleads.v16.errors.AdErrorEnum_AdError,oneof"`
+ AdError AdErrorEnum_AdError `protobuf:"varint,12,opt,name=ad_error,json=adError,proto3,enum=google.ads.googleads.v17.errors.AdErrorEnum_AdError,oneof"`
}
type ErrorCode_AdGroupError struct {
// An error with an Ad Group mutate.
- AdGroupError AdGroupErrorEnum_AdGroupError `protobuf:"varint,13,opt,name=ad_group_error,json=adGroupError,proto3,enum=google.ads.googleads.v16.errors.AdGroupErrorEnum_AdGroupError,oneof"`
+ AdGroupError AdGroupErrorEnum_AdGroupError `protobuf:"varint,13,opt,name=ad_group_error,json=adGroupError,proto3,enum=google.ads.googleads.v17.errors.AdGroupErrorEnum_AdGroupError,oneof"`
}
type ErrorCode_CampaignBudgetError struct {
// An error with a Campaign Budget mutate.
- CampaignBudgetError CampaignBudgetErrorEnum_CampaignBudgetError `protobuf:"varint,14,opt,name=campaign_budget_error,json=campaignBudgetError,proto3,enum=google.ads.googleads.v16.errors.CampaignBudgetErrorEnum_CampaignBudgetError,oneof"`
+ CampaignBudgetError CampaignBudgetErrorEnum_CampaignBudgetError `protobuf:"varint,14,opt,name=campaign_budget_error,json=campaignBudgetError,proto3,enum=google.ads.googleads.v17.errors.CampaignBudgetErrorEnum_CampaignBudgetError,oneof"`
}
type ErrorCode_CampaignError struct {
// An error with a Campaign mutate.
- CampaignError CampaignErrorEnum_CampaignError `protobuf:"varint,15,opt,name=campaign_error,json=campaignError,proto3,enum=google.ads.googleads.v16.errors.CampaignErrorEnum_CampaignError,oneof"`
+ CampaignError CampaignErrorEnum_CampaignError `protobuf:"varint,15,opt,name=campaign_error,json=campaignError,proto3,enum=google.ads.googleads.v17.errors.CampaignErrorEnum_CampaignError,oneof"`
}
type ErrorCode_VideoCampaignError struct {
// An error with a Video Campaign mutate.
- VideoCampaignError VideoCampaignErrorEnum_VideoCampaignError `protobuf:"varint,182,opt,name=video_campaign_error,json=videoCampaignError,proto3,enum=google.ads.googleads.v16.errors.VideoCampaignErrorEnum_VideoCampaignError,oneof"`
+ VideoCampaignError VideoCampaignErrorEnum_VideoCampaignError `protobuf:"varint,182,opt,name=video_campaign_error,json=videoCampaignError,proto3,enum=google.ads.googleads.v17.errors.VideoCampaignErrorEnum_VideoCampaignError,oneof"`
}
type ErrorCode_AuthenticationError struct {
// Indicates failure to properly authenticate user.
- AuthenticationError AuthenticationErrorEnum_AuthenticationError `protobuf:"varint,17,opt,name=authentication_error,json=authenticationError,proto3,enum=google.ads.googleads.v16.errors.AuthenticationErrorEnum_AuthenticationError,oneof"`
+ AuthenticationError AuthenticationErrorEnum_AuthenticationError `protobuf:"varint,17,opt,name=authentication_error,json=authenticationError,proto3,enum=google.ads.googleads.v17.errors.AuthenticationErrorEnum_AuthenticationError,oneof"`
}
type ErrorCode_AdGroupCriterionCustomizerError struct {
// The reasons for the ad group criterion customizer error.
- AdGroupCriterionCustomizerError AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError `protobuf:"varint,161,opt,name=ad_group_criterion_customizer_error,json=adGroupCriterionCustomizerError,proto3,enum=google.ads.googleads.v16.errors.AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError,oneof"`
+ AdGroupCriterionCustomizerError AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError `protobuf:"varint,161,opt,name=ad_group_criterion_customizer_error,json=adGroupCriterionCustomizerError,proto3,enum=google.ads.googleads.v17.errors.AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError,oneof"`
}
type ErrorCode_AdGroupCriterionError struct {
// Indicates failure to properly authenticate user.
- AdGroupCriterionError AdGroupCriterionErrorEnum_AdGroupCriterionError `protobuf:"varint,18,opt,name=ad_group_criterion_error,json=adGroupCriterionError,proto3,enum=google.ads.googleads.v16.errors.AdGroupCriterionErrorEnum_AdGroupCriterionError,oneof"`
+ AdGroupCriterionError AdGroupCriterionErrorEnum_AdGroupCriterionError `protobuf:"varint,18,opt,name=ad_group_criterion_error,json=adGroupCriterionError,proto3,enum=google.ads.googleads.v17.errors.AdGroupCriterionErrorEnum_AdGroupCriterionError,oneof"`
}
type ErrorCode_AdGroupCustomizerError struct {
// The reasons for the ad group customizer error.
- AdGroupCustomizerError AdGroupCustomizerErrorEnum_AdGroupCustomizerError `protobuf:"varint,159,opt,name=ad_group_customizer_error,json=adGroupCustomizerError,proto3,enum=google.ads.googleads.v16.errors.AdGroupCustomizerErrorEnum_AdGroupCustomizerError,oneof"`
+ AdGroupCustomizerError AdGroupCustomizerErrorEnum_AdGroupCustomizerError `protobuf:"varint,159,opt,name=ad_group_customizer_error,json=adGroupCustomizerError,proto3,enum=google.ads.googleads.v17.errors.AdGroupCustomizerErrorEnum_AdGroupCustomizerError,oneof"`
}
type ErrorCode_AdCustomizerError struct {
// The reasons for the ad customizer error
- AdCustomizerError AdCustomizerErrorEnum_AdCustomizerError `protobuf:"varint,19,opt,name=ad_customizer_error,json=adCustomizerError,proto3,enum=google.ads.googleads.v16.errors.AdCustomizerErrorEnum_AdCustomizerError,oneof"`
+ AdCustomizerError AdCustomizerErrorEnum_AdCustomizerError `protobuf:"varint,19,opt,name=ad_customizer_error,json=adCustomizerError,proto3,enum=google.ads.googleads.v17.errors.AdCustomizerErrorEnum_AdCustomizerError,oneof"`
}
type ErrorCode_AdGroupAdError struct {
// The reasons for the ad group ad error
- AdGroupAdError AdGroupAdErrorEnum_AdGroupAdError `protobuf:"varint,21,opt,name=ad_group_ad_error,json=adGroupAdError,proto3,enum=google.ads.googleads.v16.errors.AdGroupAdErrorEnum_AdGroupAdError,oneof"`
+ AdGroupAdError AdGroupAdErrorEnum_AdGroupAdError `protobuf:"varint,21,opt,name=ad_group_ad_error,json=adGroupAdError,proto3,enum=google.ads.googleads.v17.errors.AdGroupAdErrorEnum_AdGroupAdError,oneof"`
}
type ErrorCode_AdSharingError struct {
// The reasons for the ad sharing error
- AdSharingError AdSharingErrorEnum_AdSharingError `protobuf:"varint,24,opt,name=ad_sharing_error,json=adSharingError,proto3,enum=google.ads.googleads.v16.errors.AdSharingErrorEnum_AdSharingError,oneof"`
+ AdSharingError AdSharingErrorEnum_AdSharingError `protobuf:"varint,24,opt,name=ad_sharing_error,json=adSharingError,proto3,enum=google.ads.googleads.v17.errors.AdSharingErrorEnum_AdSharingError,oneof"`
}
type ErrorCode_AdxError struct {
// The reasons for the adx error
- AdxError AdxErrorEnum_AdxError `protobuf:"varint,25,opt,name=adx_error,json=adxError,proto3,enum=google.ads.googleads.v16.errors.AdxErrorEnum_AdxError,oneof"`
+ AdxError AdxErrorEnum_AdxError `protobuf:"varint,25,opt,name=adx_error,json=adxError,proto3,enum=google.ads.googleads.v17.errors.AdxErrorEnum_AdxError,oneof"`
}
type ErrorCode_AssetError struct {
// The reasons for the asset error
- AssetError AssetErrorEnum_AssetError `protobuf:"varint,107,opt,name=asset_error,json=assetError,proto3,enum=google.ads.googleads.v16.errors.AssetErrorEnum_AssetError,oneof"`
+ AssetError AssetErrorEnum_AssetError `protobuf:"varint,107,opt,name=asset_error,json=assetError,proto3,enum=google.ads.googleads.v17.errors.AssetErrorEnum_AssetError,oneof"`
}
type ErrorCode_AssetGroupAssetError struct {
// The reasons for the asset group asset error
- AssetGroupAssetError AssetGroupAssetErrorEnum_AssetGroupAssetError `protobuf:"varint,149,opt,name=asset_group_asset_error,json=assetGroupAssetError,proto3,enum=google.ads.googleads.v16.errors.AssetGroupAssetErrorEnum_AssetGroupAssetError,oneof"`
+ AssetGroupAssetError AssetGroupAssetErrorEnum_AssetGroupAssetError `protobuf:"varint,149,opt,name=asset_group_asset_error,json=assetGroupAssetError,proto3,enum=google.ads.googleads.v17.errors.AssetGroupAssetErrorEnum_AssetGroupAssetError,oneof"`
}
type ErrorCode_AssetGroupListingGroupFilterError struct {
// The reasons for the asset group listing group filter error
- AssetGroupListingGroupFilterError AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError `protobuf:"varint,155,opt,name=asset_group_listing_group_filter_error,json=assetGroupListingGroupFilterError,proto3,enum=google.ads.googleads.v16.errors.AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError,oneof"`
+ AssetGroupListingGroupFilterError AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError `protobuf:"varint,155,opt,name=asset_group_listing_group_filter_error,json=assetGroupListingGroupFilterError,proto3,enum=google.ads.googleads.v17.errors.AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError,oneof"`
}
type ErrorCode_AssetGroupError struct {
// The reasons for the asset group error
- AssetGroupError AssetGroupErrorEnum_AssetGroupError `protobuf:"varint,148,opt,name=asset_group_error,json=assetGroupError,proto3,enum=google.ads.googleads.v16.errors.AssetGroupErrorEnum_AssetGroupError,oneof"`
+ AssetGroupError AssetGroupErrorEnum_AssetGroupError `protobuf:"varint,148,opt,name=asset_group_error,json=assetGroupError,proto3,enum=google.ads.googleads.v17.errors.AssetGroupErrorEnum_AssetGroupError,oneof"`
}
type ErrorCode_AssetSetAssetError struct {
// The reasons for the asset set asset error
- AssetSetAssetError AssetSetAssetErrorEnum_AssetSetAssetError `protobuf:"varint,153,opt,name=asset_set_asset_error,json=assetSetAssetError,proto3,enum=google.ads.googleads.v16.errors.AssetSetAssetErrorEnum_AssetSetAssetError,oneof"`
+ AssetSetAssetError AssetSetAssetErrorEnum_AssetSetAssetError `protobuf:"varint,153,opt,name=asset_set_asset_error,json=assetSetAssetError,proto3,enum=google.ads.googleads.v17.errors.AssetSetAssetErrorEnum_AssetSetAssetError,oneof"`
}
type ErrorCode_AssetSetLinkError struct {
// The reasons for the asset set link error
- AssetSetLinkError AssetSetLinkErrorEnum_AssetSetLinkError `protobuf:"varint,154,opt,name=asset_set_link_error,json=assetSetLinkError,proto3,enum=google.ads.googleads.v16.errors.AssetSetLinkErrorEnum_AssetSetLinkError,oneof"`
+ AssetSetLinkError AssetSetLinkErrorEnum_AssetSetLinkError `protobuf:"varint,154,opt,name=asset_set_link_error,json=assetSetLinkError,proto3,enum=google.ads.googleads.v17.errors.AssetSetLinkErrorEnum_AssetSetLinkError,oneof"`
}
type ErrorCode_AssetSetError struct {
// The reasons for the asset set error
- AssetSetError AssetSetErrorEnum_AssetSetError `protobuf:"varint,152,opt,name=asset_set_error,json=assetSetError,proto3,enum=google.ads.googleads.v16.errors.AssetSetErrorEnum_AssetSetError,oneof"`
+ AssetSetError AssetSetErrorEnum_AssetSetError `protobuf:"varint,152,opt,name=asset_set_error,json=assetSetError,proto3,enum=google.ads.googleads.v17.errors.AssetSetErrorEnum_AssetSetError,oneof"`
}
type ErrorCode_BiddingError struct {
// The reasons for the bidding errors
- BiddingError BiddingErrorEnum_BiddingError `protobuf:"varint,26,opt,name=bidding_error,json=biddingError,proto3,enum=google.ads.googleads.v16.errors.BiddingErrorEnum_BiddingError,oneof"`
+ BiddingError BiddingErrorEnum_BiddingError `protobuf:"varint,26,opt,name=bidding_error,json=biddingError,proto3,enum=google.ads.googleads.v17.errors.BiddingErrorEnum_BiddingError,oneof"`
}
type ErrorCode_CampaignCriterionError struct {
// The reasons for the campaign criterion error
- CampaignCriterionError CampaignCriterionErrorEnum_CampaignCriterionError `protobuf:"varint,29,opt,name=campaign_criterion_error,json=campaignCriterionError,proto3,enum=google.ads.googleads.v16.errors.CampaignCriterionErrorEnum_CampaignCriterionError,oneof"`
+ CampaignCriterionError CampaignCriterionErrorEnum_CampaignCriterionError `protobuf:"varint,29,opt,name=campaign_criterion_error,json=campaignCriterionError,proto3,enum=google.ads.googleads.v17.errors.CampaignCriterionErrorEnum_CampaignCriterionError,oneof"`
}
type ErrorCode_CampaignConversionGoalError struct {
// The reasons for the campaign conversion goal error
- CampaignConversionGoalError CampaignConversionGoalErrorEnum_CampaignConversionGoalError `protobuf:"varint,166,opt,name=campaign_conversion_goal_error,json=campaignConversionGoalError,proto3,enum=google.ads.googleads.v16.errors.CampaignConversionGoalErrorEnum_CampaignConversionGoalError,oneof"`
+ CampaignConversionGoalError CampaignConversionGoalErrorEnum_CampaignConversionGoalError `protobuf:"varint,166,opt,name=campaign_conversion_goal_error,json=campaignConversionGoalError,proto3,enum=google.ads.googleads.v17.errors.CampaignConversionGoalErrorEnum_CampaignConversionGoalError,oneof"`
}
type ErrorCode_CampaignCustomizerError struct {
// The reasons for the campaign customizer error.
- CampaignCustomizerError CampaignCustomizerErrorEnum_CampaignCustomizerError `protobuf:"varint,160,opt,name=campaign_customizer_error,json=campaignCustomizerError,proto3,enum=google.ads.googleads.v16.errors.CampaignCustomizerErrorEnum_CampaignCustomizerError,oneof"`
+ CampaignCustomizerError CampaignCustomizerErrorEnum_CampaignCustomizerError `protobuf:"varint,160,opt,name=campaign_customizer_error,json=campaignCustomizerError,proto3,enum=google.ads.googleads.v17.errors.CampaignCustomizerErrorEnum_CampaignCustomizerError,oneof"`
}
type ErrorCode_CollectionSizeError struct {
// The reasons for the collection size error
- CollectionSizeError CollectionSizeErrorEnum_CollectionSizeError `protobuf:"varint,31,opt,name=collection_size_error,json=collectionSizeError,proto3,enum=google.ads.googleads.v16.errors.CollectionSizeErrorEnum_CollectionSizeError,oneof"`
+ CollectionSizeError CollectionSizeErrorEnum_CollectionSizeError `protobuf:"varint,31,opt,name=collection_size_error,json=collectionSizeError,proto3,enum=google.ads.googleads.v17.errors.CollectionSizeErrorEnum_CollectionSizeError,oneof"`
}
type ErrorCode_ConversionGoalCampaignConfigError struct {
// The reasons for the conversion goal campaign config error
- ConversionGoalCampaignConfigError ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError `protobuf:"varint,165,opt,name=conversion_goal_campaign_config_error,json=conversionGoalCampaignConfigError,proto3,enum=google.ads.googleads.v16.errors.ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError,oneof"`
+ ConversionGoalCampaignConfigError ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError `protobuf:"varint,165,opt,name=conversion_goal_campaign_config_error,json=conversionGoalCampaignConfigError,proto3,enum=google.ads.googleads.v17.errors.ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError,oneof"`
}
type ErrorCode_CountryCodeError struct {
// The reasons for the country code error
- CountryCodeError CountryCodeErrorEnum_CountryCodeError `protobuf:"varint,109,opt,name=country_code_error,json=countryCodeError,proto3,enum=google.ads.googleads.v16.errors.CountryCodeErrorEnum_CountryCodeError,oneof"`
+ CountryCodeError CountryCodeErrorEnum_CountryCodeError `protobuf:"varint,109,opt,name=country_code_error,json=countryCodeError,proto3,enum=google.ads.googleads.v17.errors.CountryCodeErrorEnum_CountryCodeError,oneof"`
}
type ErrorCode_CriterionError struct {
// The reasons for the criterion error
- CriterionError CriterionErrorEnum_CriterionError `protobuf:"varint,32,opt,name=criterion_error,json=criterionError,proto3,enum=google.ads.googleads.v16.errors.CriterionErrorEnum_CriterionError,oneof"`
+ CriterionError CriterionErrorEnum_CriterionError `protobuf:"varint,32,opt,name=criterion_error,json=criterionError,proto3,enum=google.ads.googleads.v17.errors.CriterionErrorEnum_CriterionError,oneof"`
}
type ErrorCode_CustomConversionGoalError struct {
// The reasons for the custom conversion goal error
- CustomConversionGoalError CustomConversionGoalErrorEnum_CustomConversionGoalError `protobuf:"varint,150,opt,name=custom_conversion_goal_error,json=customConversionGoalError,proto3,enum=google.ads.googleads.v16.errors.CustomConversionGoalErrorEnum_CustomConversionGoalError,oneof"`
+ CustomConversionGoalError CustomConversionGoalErrorEnum_CustomConversionGoalError `protobuf:"varint,150,opt,name=custom_conversion_goal_error,json=customConversionGoalError,proto3,enum=google.ads.googleads.v17.errors.CustomConversionGoalErrorEnum_CustomConversionGoalError,oneof"`
}
type ErrorCode_CustomerCustomizerError struct {
// The reasons for the customer customizer error.
- CustomerCustomizerError CustomerCustomizerErrorEnum_CustomerCustomizerError `protobuf:"varint,158,opt,name=customer_customizer_error,json=customerCustomizerError,proto3,enum=google.ads.googleads.v16.errors.CustomerCustomizerErrorEnum_CustomerCustomizerError,oneof"`
+ CustomerCustomizerError CustomerCustomizerErrorEnum_CustomerCustomizerError `protobuf:"varint,158,opt,name=customer_customizer_error,json=customerCustomizerError,proto3,enum=google.ads.googleads.v17.errors.CustomerCustomizerErrorEnum_CustomerCustomizerError,oneof"`
}
type ErrorCode_CustomerError struct {
// The reasons for the customer error
- CustomerError CustomerErrorEnum_CustomerError `protobuf:"varint,90,opt,name=customer_error,json=customerError,proto3,enum=google.ads.googleads.v16.errors.CustomerErrorEnum_CustomerError,oneof"`
+ CustomerError CustomerErrorEnum_CustomerError `protobuf:"varint,90,opt,name=customer_error,json=customerError,proto3,enum=google.ads.googleads.v17.errors.CustomerErrorEnum_CustomerError,oneof"`
}
type ErrorCode_CustomizerAttributeError struct {
// The reasons for the customizer attribute error.
- CustomizerAttributeError CustomizerAttributeErrorEnum_CustomizerAttributeError `protobuf:"varint,151,opt,name=customizer_attribute_error,json=customizerAttributeError,proto3,enum=google.ads.googleads.v16.errors.CustomizerAttributeErrorEnum_CustomizerAttributeError,oneof"`
+ CustomizerAttributeError CustomizerAttributeErrorEnum_CustomizerAttributeError `protobuf:"varint,151,opt,name=customizer_attribute_error,json=customizerAttributeError,proto3,enum=google.ads.googleads.v17.errors.CustomizerAttributeErrorEnum_CustomizerAttributeError,oneof"`
}
type ErrorCode_DateError struct {
// The reasons for the date error
- DateError DateErrorEnum_DateError `protobuf:"varint,33,opt,name=date_error,json=dateError,proto3,enum=google.ads.googleads.v16.errors.DateErrorEnum_DateError,oneof"`
+ DateError DateErrorEnum_DateError `protobuf:"varint,33,opt,name=date_error,json=dateError,proto3,enum=google.ads.googleads.v17.errors.DateErrorEnum_DateError,oneof"`
}
type ErrorCode_DateRangeError struct {
// The reasons for the date range error
- DateRangeError DateRangeErrorEnum_DateRangeError `protobuf:"varint,34,opt,name=date_range_error,json=dateRangeError,proto3,enum=google.ads.googleads.v16.errors.DateRangeErrorEnum_DateRangeError,oneof"`
+ DateRangeError DateRangeErrorEnum_DateRangeError `protobuf:"varint,34,opt,name=date_range_error,json=dateRangeError,proto3,enum=google.ads.googleads.v17.errors.DateRangeErrorEnum_DateRangeError,oneof"`
}
type ErrorCode_DistinctError struct {
// The reasons for the distinct error
- DistinctError DistinctErrorEnum_DistinctError `protobuf:"varint,35,opt,name=distinct_error,json=distinctError,proto3,enum=google.ads.googleads.v16.errors.DistinctErrorEnum_DistinctError,oneof"`
+ DistinctError DistinctErrorEnum_DistinctError `protobuf:"varint,35,opt,name=distinct_error,json=distinctError,proto3,enum=google.ads.googleads.v17.errors.DistinctErrorEnum_DistinctError,oneof"`
}
type ErrorCode_FeedAttributeReferenceError struct {
// The reasons for the feed attribute reference error
- FeedAttributeReferenceError FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError `protobuf:"varint,36,opt,name=feed_attribute_reference_error,json=feedAttributeReferenceError,proto3,enum=google.ads.googleads.v16.errors.FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError,oneof"`
+ FeedAttributeReferenceError FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError `protobuf:"varint,36,opt,name=feed_attribute_reference_error,json=feedAttributeReferenceError,proto3,enum=google.ads.googleads.v17.errors.FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError,oneof"`
}
type ErrorCode_FunctionError struct {
// The reasons for the function error
- FunctionError FunctionErrorEnum_FunctionError `protobuf:"varint,37,opt,name=function_error,json=functionError,proto3,enum=google.ads.googleads.v16.errors.FunctionErrorEnum_FunctionError,oneof"`
+ FunctionError FunctionErrorEnum_FunctionError `protobuf:"varint,37,opt,name=function_error,json=functionError,proto3,enum=google.ads.googleads.v17.errors.FunctionErrorEnum_FunctionError,oneof"`
}
type ErrorCode_FunctionParsingError struct {
// The reasons for the function parsing error
- FunctionParsingError FunctionParsingErrorEnum_FunctionParsingError `protobuf:"varint,38,opt,name=function_parsing_error,json=functionParsingError,proto3,enum=google.ads.googleads.v16.errors.FunctionParsingErrorEnum_FunctionParsingError,oneof"`
+ FunctionParsingError FunctionParsingErrorEnum_FunctionParsingError `protobuf:"varint,38,opt,name=function_parsing_error,json=functionParsingError,proto3,enum=google.ads.googleads.v17.errors.FunctionParsingErrorEnum_FunctionParsingError,oneof"`
}
type ErrorCode_IdError struct {
// The reasons for the id error
- IdError IdErrorEnum_IdError `protobuf:"varint,39,opt,name=id_error,json=idError,proto3,enum=google.ads.googleads.v16.errors.IdErrorEnum_IdError,oneof"`
+ IdError IdErrorEnum_IdError `protobuf:"varint,39,opt,name=id_error,json=idError,proto3,enum=google.ads.googleads.v17.errors.IdErrorEnum_IdError,oneof"`
}
type ErrorCode_ImageError struct {
// The reasons for the image error
- ImageError ImageErrorEnum_ImageError `protobuf:"varint,40,opt,name=image_error,json=imageError,proto3,enum=google.ads.googleads.v16.errors.ImageErrorEnum_ImageError,oneof"`
+ ImageError ImageErrorEnum_ImageError `protobuf:"varint,40,opt,name=image_error,json=imageError,proto3,enum=google.ads.googleads.v17.errors.ImageErrorEnum_ImageError,oneof"`
}
type ErrorCode_LanguageCodeError struct {
// The reasons for the language code error
- LanguageCodeError LanguageCodeErrorEnum_LanguageCodeError `protobuf:"varint,110,opt,name=language_code_error,json=languageCodeError,proto3,enum=google.ads.googleads.v16.errors.LanguageCodeErrorEnum_LanguageCodeError,oneof"`
+ LanguageCodeError LanguageCodeErrorEnum_LanguageCodeError `protobuf:"varint,110,opt,name=language_code_error,json=languageCodeError,proto3,enum=google.ads.googleads.v17.errors.LanguageCodeErrorEnum_LanguageCodeError,oneof"`
}
type ErrorCode_MediaBundleError struct {
// The reasons for the media bundle error
- MediaBundleError MediaBundleErrorEnum_MediaBundleError `protobuf:"varint,42,opt,name=media_bundle_error,json=mediaBundleError,proto3,enum=google.ads.googleads.v16.errors.MediaBundleErrorEnum_MediaBundleError,oneof"`
+ MediaBundleError MediaBundleErrorEnum_MediaBundleError `protobuf:"varint,42,opt,name=media_bundle_error,json=mediaBundleError,proto3,enum=google.ads.googleads.v17.errors.MediaBundleErrorEnum_MediaBundleError,oneof"`
}
type ErrorCode_MediaUploadError struct {
// The reasons for media uploading errors.
- MediaUploadError MediaUploadErrorEnum_MediaUploadError `protobuf:"varint,116,opt,name=media_upload_error,json=mediaUploadError,proto3,enum=google.ads.googleads.v16.errors.MediaUploadErrorEnum_MediaUploadError,oneof"`
+ MediaUploadError MediaUploadErrorEnum_MediaUploadError `protobuf:"varint,116,opt,name=media_upload_error,json=mediaUploadError,proto3,enum=google.ads.googleads.v17.errors.MediaUploadErrorEnum_MediaUploadError,oneof"`
}
type ErrorCode_MediaFileError struct {
// The reasons for the media file error
- MediaFileError MediaFileErrorEnum_MediaFileError `protobuf:"varint,86,opt,name=media_file_error,json=mediaFileError,proto3,enum=google.ads.googleads.v16.errors.MediaFileErrorEnum_MediaFileError,oneof"`
+ MediaFileError MediaFileErrorEnum_MediaFileError `protobuf:"varint,86,opt,name=media_file_error,json=mediaFileError,proto3,enum=google.ads.googleads.v17.errors.MediaFileErrorEnum_MediaFileError,oneof"`
}
type ErrorCode_MerchantCenterError struct {
// Container for enum describing possible merchant center errors.
- MerchantCenterError MerchantCenterErrorEnum_MerchantCenterError `protobuf:"varint,162,opt,name=merchant_center_error,json=merchantCenterError,proto3,enum=google.ads.googleads.v16.errors.MerchantCenterErrorEnum_MerchantCenterError,oneof"`
+ MerchantCenterError MerchantCenterErrorEnum_MerchantCenterError `protobuf:"varint,162,opt,name=merchant_center_error,json=merchantCenterError,proto3,enum=google.ads.googleads.v17.errors.MerchantCenterErrorEnum_MerchantCenterError,oneof"`
}
type ErrorCode_MultiplierError struct {
// The reasons for the multiplier error
- MultiplierError MultiplierErrorEnum_MultiplierError `protobuf:"varint,44,opt,name=multiplier_error,json=multiplierError,proto3,enum=google.ads.googleads.v16.errors.MultiplierErrorEnum_MultiplierError,oneof"`
+ MultiplierError MultiplierErrorEnum_MultiplierError `protobuf:"varint,44,opt,name=multiplier_error,json=multiplierError,proto3,enum=google.ads.googleads.v17.errors.MultiplierErrorEnum_MultiplierError,oneof"`
}
type ErrorCode_NewResourceCreationError struct {
// The reasons for the new resource creation error
- NewResourceCreationError NewResourceCreationErrorEnum_NewResourceCreationError `protobuf:"varint,45,opt,name=new_resource_creation_error,json=newResourceCreationError,proto3,enum=google.ads.googleads.v16.errors.NewResourceCreationErrorEnum_NewResourceCreationError,oneof"`
+ NewResourceCreationError NewResourceCreationErrorEnum_NewResourceCreationError `protobuf:"varint,45,opt,name=new_resource_creation_error,json=newResourceCreationError,proto3,enum=google.ads.googleads.v17.errors.NewResourceCreationErrorEnum_NewResourceCreationError,oneof"`
}
type ErrorCode_NotEmptyError struct {
// The reasons for the not empty error
- NotEmptyError NotEmptyErrorEnum_NotEmptyError `protobuf:"varint,46,opt,name=not_empty_error,json=notEmptyError,proto3,enum=google.ads.googleads.v16.errors.NotEmptyErrorEnum_NotEmptyError,oneof"`
+ NotEmptyError NotEmptyErrorEnum_NotEmptyError `protobuf:"varint,46,opt,name=not_empty_error,json=notEmptyError,proto3,enum=google.ads.googleads.v17.errors.NotEmptyErrorEnum_NotEmptyError,oneof"`
}
type ErrorCode_NullError struct {
// The reasons for the null error
- NullError NullErrorEnum_NullError `protobuf:"varint,47,opt,name=null_error,json=nullError,proto3,enum=google.ads.googleads.v16.errors.NullErrorEnum_NullError,oneof"`
+ NullError NullErrorEnum_NullError `protobuf:"varint,47,opt,name=null_error,json=nullError,proto3,enum=google.ads.googleads.v17.errors.NullErrorEnum_NullError,oneof"`
}
type ErrorCode_OperatorError struct {
// The reasons for the operator error
- OperatorError OperatorErrorEnum_OperatorError `protobuf:"varint,48,opt,name=operator_error,json=operatorError,proto3,enum=google.ads.googleads.v16.errors.OperatorErrorEnum_OperatorError,oneof"`
+ OperatorError OperatorErrorEnum_OperatorError `protobuf:"varint,48,opt,name=operator_error,json=operatorError,proto3,enum=google.ads.googleads.v17.errors.OperatorErrorEnum_OperatorError,oneof"`
}
type ErrorCode_RangeError struct {
// The reasons for the range error
- RangeError RangeErrorEnum_RangeError `protobuf:"varint,49,opt,name=range_error,json=rangeError,proto3,enum=google.ads.googleads.v16.errors.RangeErrorEnum_RangeError,oneof"`
+ RangeError RangeErrorEnum_RangeError `protobuf:"varint,49,opt,name=range_error,json=rangeError,proto3,enum=google.ads.googleads.v17.errors.RangeErrorEnum_RangeError,oneof"`
}
type ErrorCode_RecommendationError struct {
// The reasons for error in applying a recommendation
- RecommendationError RecommendationErrorEnum_RecommendationError `protobuf:"varint,58,opt,name=recommendation_error,json=recommendationError,proto3,enum=google.ads.googleads.v16.errors.RecommendationErrorEnum_RecommendationError,oneof"`
+ RecommendationError RecommendationErrorEnum_RecommendationError `protobuf:"varint,58,opt,name=recommendation_error,json=recommendationError,proto3,enum=google.ads.googleads.v17.errors.RecommendationErrorEnum_RecommendationError,oneof"`
}
type ErrorCode_RecommendationSubscriptionError struct {
// The reasons for the recommendation subscription error.
- RecommendationSubscriptionError RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError `protobuf:"varint,180,opt,name=recommendation_subscription_error,json=recommendationSubscriptionError,proto3,enum=google.ads.googleads.v16.errors.RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError,oneof"`
+ RecommendationSubscriptionError RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError `protobuf:"varint,180,opt,name=recommendation_subscription_error,json=recommendationSubscriptionError,proto3,enum=google.ads.googleads.v17.errors.RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError,oneof"`
}
type ErrorCode_RegionCodeError struct {
// The reasons for the region code error
- RegionCodeError RegionCodeErrorEnum_RegionCodeError `protobuf:"varint,51,opt,name=region_code_error,json=regionCodeError,proto3,enum=google.ads.googleads.v16.errors.RegionCodeErrorEnum_RegionCodeError,oneof"`
+ RegionCodeError RegionCodeErrorEnum_RegionCodeError `protobuf:"varint,51,opt,name=region_code_error,json=regionCodeError,proto3,enum=google.ads.googleads.v17.errors.RegionCodeErrorEnum_RegionCodeError,oneof"`
}
type ErrorCode_SettingError struct {
// The reasons for the setting error
- SettingError SettingErrorEnum_SettingError `protobuf:"varint,52,opt,name=setting_error,json=settingError,proto3,enum=google.ads.googleads.v16.errors.SettingErrorEnum_SettingError,oneof"`
+ SettingError SettingErrorEnum_SettingError `protobuf:"varint,52,opt,name=setting_error,json=settingError,proto3,enum=google.ads.googleads.v17.errors.SettingErrorEnum_SettingError,oneof"`
}
type ErrorCode_StringFormatError struct {
// The reasons for the string format error
- StringFormatError StringFormatErrorEnum_StringFormatError `protobuf:"varint,53,opt,name=string_format_error,json=stringFormatError,proto3,enum=google.ads.googleads.v16.errors.StringFormatErrorEnum_StringFormatError,oneof"`
+ StringFormatError StringFormatErrorEnum_StringFormatError `protobuf:"varint,53,opt,name=string_format_error,json=stringFormatError,proto3,enum=google.ads.googleads.v17.errors.StringFormatErrorEnum_StringFormatError,oneof"`
}
type ErrorCode_StringLengthError struct {
// The reasons for the string length error
- StringLengthError StringLengthErrorEnum_StringLengthError `protobuf:"varint,54,opt,name=string_length_error,json=stringLengthError,proto3,enum=google.ads.googleads.v16.errors.StringLengthErrorEnum_StringLengthError,oneof"`
+ StringLengthError StringLengthErrorEnum_StringLengthError `protobuf:"varint,54,opt,name=string_length_error,json=stringLengthError,proto3,enum=google.ads.googleads.v17.errors.StringLengthErrorEnum_StringLengthError,oneof"`
}
type ErrorCode_OperationAccessDeniedError struct {
// The reasons for the operation access denied error
- OperationAccessDeniedError OperationAccessDeniedErrorEnum_OperationAccessDeniedError `protobuf:"varint,55,opt,name=operation_access_denied_error,json=operationAccessDeniedError,proto3,enum=google.ads.googleads.v16.errors.OperationAccessDeniedErrorEnum_OperationAccessDeniedError,oneof"`
+ OperationAccessDeniedError OperationAccessDeniedErrorEnum_OperationAccessDeniedError `protobuf:"varint,55,opt,name=operation_access_denied_error,json=operationAccessDeniedError,proto3,enum=google.ads.googleads.v17.errors.OperationAccessDeniedErrorEnum_OperationAccessDeniedError,oneof"`
}
type ErrorCode_ResourceAccessDeniedError struct {
// The reasons for the resource access denied error
- ResourceAccessDeniedError ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError `protobuf:"varint,56,opt,name=resource_access_denied_error,json=resourceAccessDeniedError,proto3,enum=google.ads.googleads.v16.errors.ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError,oneof"`
+ ResourceAccessDeniedError ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError `protobuf:"varint,56,opt,name=resource_access_denied_error,json=resourceAccessDeniedError,proto3,enum=google.ads.googleads.v17.errors.ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError,oneof"`
}
type ErrorCode_ResourceCountLimitExceededError struct {
// The reasons for the resource count limit exceeded error
- ResourceCountLimitExceededError ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError `protobuf:"varint,57,opt,name=resource_count_limit_exceeded_error,json=resourceCountLimitExceededError,proto3,enum=google.ads.googleads.v16.errors.ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError,oneof"`
+ ResourceCountLimitExceededError ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError `protobuf:"varint,57,opt,name=resource_count_limit_exceeded_error,json=resourceCountLimitExceededError,proto3,enum=google.ads.googleads.v17.errors.ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError,oneof"`
}
type ErrorCode_YoutubeVideoRegistrationError struct {
// The reasons for YouTube video registration errors.
- YoutubeVideoRegistrationError YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError `protobuf:"varint,117,opt,name=youtube_video_registration_error,json=youtubeVideoRegistrationError,proto3,enum=google.ads.googleads.v16.errors.YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError,oneof"`
+ YoutubeVideoRegistrationError YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError `protobuf:"varint,117,opt,name=youtube_video_registration_error,json=youtubeVideoRegistrationError,proto3,enum=google.ads.googleads.v17.errors.YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError,oneof"`
}
type ErrorCode_AdGroupBidModifierError struct {
// The reasons for the ad group bid modifier error
- AdGroupBidModifierError AdGroupBidModifierErrorEnum_AdGroupBidModifierError `protobuf:"varint,59,opt,name=ad_group_bid_modifier_error,json=adGroupBidModifierError,proto3,enum=google.ads.googleads.v16.errors.AdGroupBidModifierErrorEnum_AdGroupBidModifierError,oneof"`
+ AdGroupBidModifierError AdGroupBidModifierErrorEnum_AdGroupBidModifierError `protobuf:"varint,59,opt,name=ad_group_bid_modifier_error,json=adGroupBidModifierError,proto3,enum=google.ads.googleads.v17.errors.AdGroupBidModifierErrorEnum_AdGroupBidModifierError,oneof"`
}
type ErrorCode_ContextError struct {
// The reasons for the context error
- ContextError ContextErrorEnum_ContextError `protobuf:"varint,60,opt,name=context_error,json=contextError,proto3,enum=google.ads.googleads.v16.errors.ContextErrorEnum_ContextError,oneof"`
+ ContextError ContextErrorEnum_ContextError `protobuf:"varint,60,opt,name=context_error,json=contextError,proto3,enum=google.ads.googleads.v17.errors.ContextErrorEnum_ContextError,oneof"`
}
type ErrorCode_FieldError struct {
// The reasons for the field error
- FieldError FieldErrorEnum_FieldError `protobuf:"varint,61,opt,name=field_error,json=fieldError,proto3,enum=google.ads.googleads.v16.errors.FieldErrorEnum_FieldError,oneof"`
+ FieldError FieldErrorEnum_FieldError `protobuf:"varint,61,opt,name=field_error,json=fieldError,proto3,enum=google.ads.googleads.v17.errors.FieldErrorEnum_FieldError,oneof"`
}
type ErrorCode_SharedSetError struct {
// The reasons for the shared set error
- SharedSetError SharedSetErrorEnum_SharedSetError `protobuf:"varint,62,opt,name=shared_set_error,json=sharedSetError,proto3,enum=google.ads.googleads.v16.errors.SharedSetErrorEnum_SharedSetError,oneof"`
+ SharedSetError SharedSetErrorEnum_SharedSetError `protobuf:"varint,62,opt,name=shared_set_error,json=sharedSetError,proto3,enum=google.ads.googleads.v17.errors.SharedSetErrorEnum_SharedSetError,oneof"`
}
type ErrorCode_SharedCriterionError struct {
// The reasons for the shared criterion error
- SharedCriterionError SharedCriterionErrorEnum_SharedCriterionError `protobuf:"varint,63,opt,name=shared_criterion_error,json=sharedCriterionError,proto3,enum=google.ads.googleads.v16.errors.SharedCriterionErrorEnum_SharedCriterionError,oneof"`
+ SharedCriterionError SharedCriterionErrorEnum_SharedCriterionError `protobuf:"varint,63,opt,name=shared_criterion_error,json=sharedCriterionError,proto3,enum=google.ads.googleads.v17.errors.SharedCriterionErrorEnum_SharedCriterionError,oneof"`
}
type ErrorCode_CampaignSharedSetError struct {
// The reasons for the campaign shared set error
- CampaignSharedSetError CampaignSharedSetErrorEnum_CampaignSharedSetError `protobuf:"varint,64,opt,name=campaign_shared_set_error,json=campaignSharedSetError,proto3,enum=google.ads.googleads.v16.errors.CampaignSharedSetErrorEnum_CampaignSharedSetError,oneof"`
+ CampaignSharedSetError CampaignSharedSetErrorEnum_CampaignSharedSetError `protobuf:"varint,64,opt,name=campaign_shared_set_error,json=campaignSharedSetError,proto3,enum=google.ads.googleads.v17.errors.CampaignSharedSetErrorEnum_CampaignSharedSetError,oneof"`
}
type ErrorCode_ConversionActionError struct {
// The reasons for the conversion action error
- ConversionActionError ConversionActionErrorEnum_ConversionActionError `protobuf:"varint,65,opt,name=conversion_action_error,json=conversionActionError,proto3,enum=google.ads.googleads.v16.errors.ConversionActionErrorEnum_ConversionActionError,oneof"`
+ ConversionActionError ConversionActionErrorEnum_ConversionActionError `protobuf:"varint,65,opt,name=conversion_action_error,json=conversionActionError,proto3,enum=google.ads.googleads.v17.errors.ConversionActionErrorEnum_ConversionActionError,oneof"`
}
type ErrorCode_ConversionAdjustmentUploadError struct {
// The reasons for the conversion adjustment upload error
- ConversionAdjustmentUploadError ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError `protobuf:"varint,115,opt,name=conversion_adjustment_upload_error,json=conversionAdjustmentUploadError,proto3,enum=google.ads.googleads.v16.errors.ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError,oneof"`
+ ConversionAdjustmentUploadError ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError `protobuf:"varint,115,opt,name=conversion_adjustment_upload_error,json=conversionAdjustmentUploadError,proto3,enum=google.ads.googleads.v17.errors.ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError,oneof"`
}
type ErrorCode_ConversionCustomVariableError struct {
// The reasons for the conversion custom variable error
- ConversionCustomVariableError ConversionCustomVariableErrorEnum_ConversionCustomVariableError `protobuf:"varint,143,opt,name=conversion_custom_variable_error,json=conversionCustomVariableError,proto3,enum=google.ads.googleads.v16.errors.ConversionCustomVariableErrorEnum_ConversionCustomVariableError,oneof"`
+ ConversionCustomVariableError ConversionCustomVariableErrorEnum_ConversionCustomVariableError `protobuf:"varint,143,opt,name=conversion_custom_variable_error,json=conversionCustomVariableError,proto3,enum=google.ads.googleads.v17.errors.ConversionCustomVariableErrorEnum_ConversionCustomVariableError,oneof"`
}
type ErrorCode_ConversionUploadError struct {
// The reasons for the conversion upload error
- ConversionUploadError ConversionUploadErrorEnum_ConversionUploadError `protobuf:"varint,111,opt,name=conversion_upload_error,json=conversionUploadError,proto3,enum=google.ads.googleads.v16.errors.ConversionUploadErrorEnum_ConversionUploadError,oneof"`
+ ConversionUploadError ConversionUploadErrorEnum_ConversionUploadError `protobuf:"varint,111,opt,name=conversion_upload_error,json=conversionUploadError,proto3,enum=google.ads.googleads.v17.errors.ConversionUploadErrorEnum_ConversionUploadError,oneof"`
}
type ErrorCode_ConversionValueRuleError struct {
// The reasons for the conversion value rule error
- ConversionValueRuleError ConversionValueRuleErrorEnum_ConversionValueRuleError `protobuf:"varint,145,opt,name=conversion_value_rule_error,json=conversionValueRuleError,proto3,enum=google.ads.googleads.v16.errors.ConversionValueRuleErrorEnum_ConversionValueRuleError,oneof"`
+ ConversionValueRuleError ConversionValueRuleErrorEnum_ConversionValueRuleError `protobuf:"varint,145,opt,name=conversion_value_rule_error,json=conversionValueRuleError,proto3,enum=google.ads.googleads.v17.errors.ConversionValueRuleErrorEnum_ConversionValueRuleError,oneof"`
}
type ErrorCode_ConversionValueRuleSetError struct {
// The reasons for the conversion value rule set error
- ConversionValueRuleSetError ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError `protobuf:"varint,146,opt,name=conversion_value_rule_set_error,json=conversionValueRuleSetError,proto3,enum=google.ads.googleads.v16.errors.ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError,oneof"`
+ ConversionValueRuleSetError ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError `protobuf:"varint,146,opt,name=conversion_value_rule_set_error,json=conversionValueRuleSetError,proto3,enum=google.ads.googleads.v17.errors.ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError,oneof"`
}
type ErrorCode_HeaderError struct {
// The reasons for the header error.
- HeaderError HeaderErrorEnum_HeaderError `protobuf:"varint,66,opt,name=header_error,json=headerError,proto3,enum=google.ads.googleads.v16.errors.HeaderErrorEnum_HeaderError,oneof"`
+ HeaderError HeaderErrorEnum_HeaderError `protobuf:"varint,66,opt,name=header_error,json=headerError,proto3,enum=google.ads.googleads.v17.errors.HeaderErrorEnum_HeaderError,oneof"`
}
type ErrorCode_DatabaseError struct {
// The reasons for the database error.
- DatabaseError DatabaseErrorEnum_DatabaseError `protobuf:"varint,67,opt,name=database_error,json=databaseError,proto3,enum=google.ads.googleads.v16.errors.DatabaseErrorEnum_DatabaseError,oneof"`
+ DatabaseError DatabaseErrorEnum_DatabaseError `protobuf:"varint,67,opt,name=database_error,json=databaseError,proto3,enum=google.ads.googleads.v17.errors.DatabaseErrorEnum_DatabaseError,oneof"`
}
type ErrorCode_PolicyFindingError struct {
// The reasons for the policy finding error.
- PolicyFindingError PolicyFindingErrorEnum_PolicyFindingError `protobuf:"varint,68,opt,name=policy_finding_error,json=policyFindingError,proto3,enum=google.ads.googleads.v16.errors.PolicyFindingErrorEnum_PolicyFindingError,oneof"`
+ PolicyFindingError PolicyFindingErrorEnum_PolicyFindingError `protobuf:"varint,68,opt,name=policy_finding_error,json=policyFindingError,proto3,enum=google.ads.googleads.v17.errors.PolicyFindingErrorEnum_PolicyFindingError,oneof"`
}
type ErrorCode_EnumError struct {
// The reason for enum error.
- EnumError EnumErrorEnum_EnumError `protobuf:"varint,70,opt,name=enum_error,json=enumError,proto3,enum=google.ads.googleads.v16.errors.EnumErrorEnum_EnumError,oneof"`
+ EnumError EnumErrorEnum_EnumError `protobuf:"varint,70,opt,name=enum_error,json=enumError,proto3,enum=google.ads.googleads.v17.errors.EnumErrorEnum_EnumError,oneof"`
}
type ErrorCode_KeywordPlanError struct {
// The reason for keyword plan error.
- KeywordPlanError KeywordPlanErrorEnum_KeywordPlanError `protobuf:"varint,71,opt,name=keyword_plan_error,json=keywordPlanError,proto3,enum=google.ads.googleads.v16.errors.KeywordPlanErrorEnum_KeywordPlanError,oneof"`
+ KeywordPlanError KeywordPlanErrorEnum_KeywordPlanError `protobuf:"varint,71,opt,name=keyword_plan_error,json=keywordPlanError,proto3,enum=google.ads.googleads.v17.errors.KeywordPlanErrorEnum_KeywordPlanError,oneof"`
}
type ErrorCode_KeywordPlanCampaignError struct {
// The reason for keyword plan campaign error.
- KeywordPlanCampaignError KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError `protobuf:"varint,72,opt,name=keyword_plan_campaign_error,json=keywordPlanCampaignError,proto3,enum=google.ads.googleads.v16.errors.KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError,oneof"`
+ KeywordPlanCampaignError KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError `protobuf:"varint,72,opt,name=keyword_plan_campaign_error,json=keywordPlanCampaignError,proto3,enum=google.ads.googleads.v17.errors.KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError,oneof"`
}
type ErrorCode_KeywordPlanCampaignKeywordError struct {
// The reason for keyword plan campaign keyword error.
- KeywordPlanCampaignKeywordError KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError `protobuf:"varint,132,opt,name=keyword_plan_campaign_keyword_error,json=keywordPlanCampaignKeywordError,proto3,enum=google.ads.googleads.v16.errors.KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError,oneof"`
+ KeywordPlanCampaignKeywordError KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError `protobuf:"varint,132,opt,name=keyword_plan_campaign_keyword_error,json=keywordPlanCampaignKeywordError,proto3,enum=google.ads.googleads.v17.errors.KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError,oneof"`
}
type ErrorCode_KeywordPlanAdGroupError struct {
// The reason for keyword plan ad group error.
- KeywordPlanAdGroupError KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError `protobuf:"varint,74,opt,name=keyword_plan_ad_group_error,json=keywordPlanAdGroupError,proto3,enum=google.ads.googleads.v16.errors.KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError,oneof"`
+ KeywordPlanAdGroupError KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError `protobuf:"varint,74,opt,name=keyword_plan_ad_group_error,json=keywordPlanAdGroupError,proto3,enum=google.ads.googleads.v17.errors.KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError,oneof"`
}
type ErrorCode_KeywordPlanAdGroupKeywordError struct {
// The reason for keyword plan ad group keyword error.
- KeywordPlanAdGroupKeywordError KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError `protobuf:"varint,133,opt,name=keyword_plan_ad_group_keyword_error,json=keywordPlanAdGroupKeywordError,proto3,enum=google.ads.googleads.v16.errors.KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError,oneof"`
+ KeywordPlanAdGroupKeywordError KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError `protobuf:"varint,133,opt,name=keyword_plan_ad_group_keyword_error,json=keywordPlanAdGroupKeywordError,proto3,enum=google.ads.googleads.v17.errors.KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError,oneof"`
}
type ErrorCode_KeywordPlanIdeaError struct {
// The reason for keyword idea error.
- KeywordPlanIdeaError KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError `protobuf:"varint,76,opt,name=keyword_plan_idea_error,json=keywordPlanIdeaError,proto3,enum=google.ads.googleads.v16.errors.KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError,oneof"`
+ KeywordPlanIdeaError KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError `protobuf:"varint,76,opt,name=keyword_plan_idea_error,json=keywordPlanIdeaError,proto3,enum=google.ads.googleads.v17.errors.KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError,oneof"`
}
type ErrorCode_AccountBudgetProposalError struct {
// The reasons for account budget proposal errors.
- AccountBudgetProposalError AccountBudgetProposalErrorEnum_AccountBudgetProposalError `protobuf:"varint,77,opt,name=account_budget_proposal_error,json=accountBudgetProposalError,proto3,enum=google.ads.googleads.v16.errors.AccountBudgetProposalErrorEnum_AccountBudgetProposalError,oneof"`
+ AccountBudgetProposalError AccountBudgetProposalErrorEnum_AccountBudgetProposalError `protobuf:"varint,77,opt,name=account_budget_proposal_error,json=accountBudgetProposalError,proto3,enum=google.ads.googleads.v17.errors.AccountBudgetProposalErrorEnum_AccountBudgetProposalError,oneof"`
}
type ErrorCode_UserListError struct {
// The reasons for the user list error
- UserListError UserListErrorEnum_UserListError `protobuf:"varint,78,opt,name=user_list_error,json=userListError,proto3,enum=google.ads.googleads.v16.errors.UserListErrorEnum_UserListError,oneof"`
+ UserListError UserListErrorEnum_UserListError `protobuf:"varint,78,opt,name=user_list_error,json=userListError,proto3,enum=google.ads.googleads.v17.errors.UserListErrorEnum_UserListError,oneof"`
}
type ErrorCode_ChangeEventError struct {
// The reasons for the change event error
- ChangeEventError ChangeEventErrorEnum_ChangeEventError `protobuf:"varint,136,opt,name=change_event_error,json=changeEventError,proto3,enum=google.ads.googleads.v16.errors.ChangeEventErrorEnum_ChangeEventError,oneof"`
+ ChangeEventError ChangeEventErrorEnum_ChangeEventError `protobuf:"varint,136,opt,name=change_event_error,json=changeEventError,proto3,enum=google.ads.googleads.v17.errors.ChangeEventErrorEnum_ChangeEventError,oneof"`
}
type ErrorCode_ChangeStatusError struct {
// The reasons for the change status error
- ChangeStatusError ChangeStatusErrorEnum_ChangeStatusError `protobuf:"varint,79,opt,name=change_status_error,json=changeStatusError,proto3,enum=google.ads.googleads.v16.errors.ChangeStatusErrorEnum_ChangeStatusError,oneof"`
+ ChangeStatusError ChangeStatusErrorEnum_ChangeStatusError `protobuf:"varint,79,opt,name=change_status_error,json=changeStatusError,proto3,enum=google.ads.googleads.v17.errors.ChangeStatusErrorEnum_ChangeStatusError,oneof"`
}
type ErrorCode_FeedError struct {
// The reasons for the feed error
- FeedError FeedErrorEnum_FeedError `protobuf:"varint,80,opt,name=feed_error,json=feedError,proto3,enum=google.ads.googleads.v16.errors.FeedErrorEnum_FeedError,oneof"`
+ FeedError FeedErrorEnum_FeedError `protobuf:"varint,80,opt,name=feed_error,json=feedError,proto3,enum=google.ads.googleads.v17.errors.FeedErrorEnum_FeedError,oneof"`
}
type ErrorCode_GeoTargetConstantSuggestionError struct {
// The reasons for the geo target constant suggestion error.
- GeoTargetConstantSuggestionError GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError `protobuf:"varint,81,opt,name=geo_target_constant_suggestion_error,json=geoTargetConstantSuggestionError,proto3,enum=google.ads.googleads.v16.errors.GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError,oneof"`
+ GeoTargetConstantSuggestionError GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError `protobuf:"varint,81,opt,name=geo_target_constant_suggestion_error,json=geoTargetConstantSuggestionError,proto3,enum=google.ads.googleads.v17.errors.GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError,oneof"`
}
type ErrorCode_CampaignDraftError struct {
// The reasons for the campaign draft error
- CampaignDraftError CampaignDraftErrorEnum_CampaignDraftError `protobuf:"varint,82,opt,name=campaign_draft_error,json=campaignDraftError,proto3,enum=google.ads.googleads.v16.errors.CampaignDraftErrorEnum_CampaignDraftError,oneof"`
+ CampaignDraftError CampaignDraftErrorEnum_CampaignDraftError `protobuf:"varint,82,opt,name=campaign_draft_error,json=campaignDraftError,proto3,enum=google.ads.googleads.v17.errors.CampaignDraftErrorEnum_CampaignDraftError,oneof"`
}
type ErrorCode_FeedItemError struct {
// The reasons for the feed item error
- FeedItemError FeedItemErrorEnum_FeedItemError `protobuf:"varint,83,opt,name=feed_item_error,json=feedItemError,proto3,enum=google.ads.googleads.v16.errors.FeedItemErrorEnum_FeedItemError,oneof"`
+ FeedItemError FeedItemErrorEnum_FeedItemError `protobuf:"varint,83,opt,name=feed_item_error,json=feedItemError,proto3,enum=google.ads.googleads.v17.errors.FeedItemErrorEnum_FeedItemError,oneof"`
}
type ErrorCode_LabelError struct {
// The reason for the label error.
- LabelError LabelErrorEnum_LabelError `protobuf:"varint,84,opt,name=label_error,json=labelError,proto3,enum=google.ads.googleads.v16.errors.LabelErrorEnum_LabelError,oneof"`
+ LabelError LabelErrorEnum_LabelError `protobuf:"varint,84,opt,name=label_error,json=labelError,proto3,enum=google.ads.googleads.v17.errors.LabelErrorEnum_LabelError,oneof"`
}
type ErrorCode_BillingSetupError struct {
// The reasons for the billing setup error
- BillingSetupError BillingSetupErrorEnum_BillingSetupError `protobuf:"varint,87,opt,name=billing_setup_error,json=billingSetupError,proto3,enum=google.ads.googleads.v16.errors.BillingSetupErrorEnum_BillingSetupError,oneof"`
+ BillingSetupError BillingSetupErrorEnum_BillingSetupError `protobuf:"varint,87,opt,name=billing_setup_error,json=billingSetupError,proto3,enum=google.ads.googleads.v17.errors.BillingSetupErrorEnum_BillingSetupError,oneof"`
}
type ErrorCode_CustomerClientLinkError struct {
// The reasons for the customer client link error
- CustomerClientLinkError CustomerClientLinkErrorEnum_CustomerClientLinkError `protobuf:"varint,88,opt,name=customer_client_link_error,json=customerClientLinkError,proto3,enum=google.ads.googleads.v16.errors.CustomerClientLinkErrorEnum_CustomerClientLinkError,oneof"`
+ CustomerClientLinkError CustomerClientLinkErrorEnum_CustomerClientLinkError `protobuf:"varint,88,opt,name=customer_client_link_error,json=customerClientLinkError,proto3,enum=google.ads.googleads.v17.errors.CustomerClientLinkErrorEnum_CustomerClientLinkError,oneof"`
}
type ErrorCode_CustomerManagerLinkError struct {
// The reasons for the customer manager link error
- CustomerManagerLinkError CustomerManagerLinkErrorEnum_CustomerManagerLinkError `protobuf:"varint,91,opt,name=customer_manager_link_error,json=customerManagerLinkError,proto3,enum=google.ads.googleads.v16.errors.CustomerManagerLinkErrorEnum_CustomerManagerLinkError,oneof"`
+ CustomerManagerLinkError CustomerManagerLinkErrorEnum_CustomerManagerLinkError `protobuf:"varint,91,opt,name=customer_manager_link_error,json=customerManagerLinkError,proto3,enum=google.ads.googleads.v17.errors.CustomerManagerLinkErrorEnum_CustomerManagerLinkError,oneof"`
}
type ErrorCode_FeedMappingError struct {
// The reasons for the feed mapping error
- FeedMappingError FeedMappingErrorEnum_FeedMappingError `protobuf:"varint,92,opt,name=feed_mapping_error,json=feedMappingError,proto3,enum=google.ads.googleads.v16.errors.FeedMappingErrorEnum_FeedMappingError,oneof"`
+ FeedMappingError FeedMappingErrorEnum_FeedMappingError `protobuf:"varint,92,opt,name=feed_mapping_error,json=feedMappingError,proto3,enum=google.ads.googleads.v17.errors.FeedMappingErrorEnum_FeedMappingError,oneof"`
}
type ErrorCode_CustomerFeedError struct {
// The reasons for the customer feed error
- CustomerFeedError CustomerFeedErrorEnum_CustomerFeedError `protobuf:"varint,93,opt,name=customer_feed_error,json=customerFeedError,proto3,enum=google.ads.googleads.v16.errors.CustomerFeedErrorEnum_CustomerFeedError,oneof"`
+ CustomerFeedError CustomerFeedErrorEnum_CustomerFeedError `protobuf:"varint,93,opt,name=customer_feed_error,json=customerFeedError,proto3,enum=google.ads.googleads.v17.errors.CustomerFeedErrorEnum_CustomerFeedError,oneof"`
}
type ErrorCode_AdGroupFeedError struct {
// The reasons for the ad group feed error
- AdGroupFeedError AdGroupFeedErrorEnum_AdGroupFeedError `protobuf:"varint,94,opt,name=ad_group_feed_error,json=adGroupFeedError,proto3,enum=google.ads.googleads.v16.errors.AdGroupFeedErrorEnum_AdGroupFeedError,oneof"`
+ AdGroupFeedError AdGroupFeedErrorEnum_AdGroupFeedError `protobuf:"varint,94,opt,name=ad_group_feed_error,json=adGroupFeedError,proto3,enum=google.ads.googleads.v17.errors.AdGroupFeedErrorEnum_AdGroupFeedError,oneof"`
}
type ErrorCode_CampaignFeedError struct {
// The reasons for the campaign feed error
- CampaignFeedError CampaignFeedErrorEnum_CampaignFeedError `protobuf:"varint,96,opt,name=campaign_feed_error,json=campaignFeedError,proto3,enum=google.ads.googleads.v16.errors.CampaignFeedErrorEnum_CampaignFeedError,oneof"`
+ CampaignFeedError CampaignFeedErrorEnum_CampaignFeedError `protobuf:"varint,96,opt,name=campaign_feed_error,json=campaignFeedError,proto3,enum=google.ads.googleads.v17.errors.CampaignFeedErrorEnum_CampaignFeedError,oneof"`
}
type ErrorCode_CustomInterestError struct {
// The reasons for the custom interest error
- CustomInterestError CustomInterestErrorEnum_CustomInterestError `protobuf:"varint,97,opt,name=custom_interest_error,json=customInterestError,proto3,enum=google.ads.googleads.v16.errors.CustomInterestErrorEnum_CustomInterestError,oneof"`
+ CustomInterestError CustomInterestErrorEnum_CustomInterestError `protobuf:"varint,97,opt,name=custom_interest_error,json=customInterestError,proto3,enum=google.ads.googleads.v17.errors.CustomInterestErrorEnum_CustomInterestError,oneof"`
}
type ErrorCode_CampaignExperimentError struct {
// The reasons for the campaign experiment error
- CampaignExperimentError CampaignExperimentErrorEnum_CampaignExperimentError `protobuf:"varint,98,opt,name=campaign_experiment_error,json=campaignExperimentError,proto3,enum=google.ads.googleads.v16.errors.CampaignExperimentErrorEnum_CampaignExperimentError,oneof"`
+ CampaignExperimentError CampaignExperimentErrorEnum_CampaignExperimentError `protobuf:"varint,98,opt,name=campaign_experiment_error,json=campaignExperimentError,proto3,enum=google.ads.googleads.v17.errors.CampaignExperimentErrorEnum_CampaignExperimentError,oneof"`
}
type ErrorCode_ExtensionFeedItemError struct {
// The reasons for the extension feed item error
- ExtensionFeedItemError ExtensionFeedItemErrorEnum_ExtensionFeedItemError `protobuf:"varint,100,opt,name=extension_feed_item_error,json=extensionFeedItemError,proto3,enum=google.ads.googleads.v16.errors.ExtensionFeedItemErrorEnum_ExtensionFeedItemError,oneof"`
+ ExtensionFeedItemError ExtensionFeedItemErrorEnum_ExtensionFeedItemError `protobuf:"varint,100,opt,name=extension_feed_item_error,json=extensionFeedItemError,proto3,enum=google.ads.googleads.v17.errors.ExtensionFeedItemErrorEnum_ExtensionFeedItemError,oneof"`
}
type ErrorCode_AdParameterError struct {
// The reasons for the ad parameter error
- AdParameterError AdParameterErrorEnum_AdParameterError `protobuf:"varint,101,opt,name=ad_parameter_error,json=adParameterError,proto3,enum=google.ads.googleads.v16.errors.AdParameterErrorEnum_AdParameterError,oneof"`
+ AdParameterError AdParameterErrorEnum_AdParameterError `protobuf:"varint,101,opt,name=ad_parameter_error,json=adParameterError,proto3,enum=google.ads.googleads.v17.errors.AdParameterErrorEnum_AdParameterError,oneof"`
}
type ErrorCode_FeedItemValidationError struct {
// The reasons for the feed item validation error
- FeedItemValidationError FeedItemValidationErrorEnum_FeedItemValidationError `protobuf:"varint,102,opt,name=feed_item_validation_error,json=feedItemValidationError,proto3,enum=google.ads.googleads.v16.errors.FeedItemValidationErrorEnum_FeedItemValidationError,oneof"`
+ FeedItemValidationError FeedItemValidationErrorEnum_FeedItemValidationError `protobuf:"varint,102,opt,name=feed_item_validation_error,json=feedItemValidationError,proto3,enum=google.ads.googleads.v17.errors.FeedItemValidationErrorEnum_FeedItemValidationError,oneof"`
}
type ErrorCode_ExtensionSettingError struct {
// The reasons for the extension setting error
- ExtensionSettingError ExtensionSettingErrorEnum_ExtensionSettingError `protobuf:"varint,103,opt,name=extension_setting_error,json=extensionSettingError,proto3,enum=google.ads.googleads.v16.errors.ExtensionSettingErrorEnum_ExtensionSettingError,oneof"`
+ ExtensionSettingError ExtensionSettingErrorEnum_ExtensionSettingError `protobuf:"varint,103,opt,name=extension_setting_error,json=extensionSettingError,proto3,enum=google.ads.googleads.v17.errors.ExtensionSettingErrorEnum_ExtensionSettingError,oneof"`
}
type ErrorCode_FeedItemSetError struct {
// The reasons for the feed item set error
- FeedItemSetError FeedItemSetErrorEnum_FeedItemSetError `protobuf:"varint,140,opt,name=feed_item_set_error,json=feedItemSetError,proto3,enum=google.ads.googleads.v16.errors.FeedItemSetErrorEnum_FeedItemSetError,oneof"`
+ FeedItemSetError FeedItemSetErrorEnum_FeedItemSetError `protobuf:"varint,140,opt,name=feed_item_set_error,json=feedItemSetError,proto3,enum=google.ads.googleads.v17.errors.FeedItemSetErrorEnum_FeedItemSetError,oneof"`
}
type ErrorCode_FeedItemSetLinkError struct {
// The reasons for the feed item set link error
- FeedItemSetLinkError FeedItemSetLinkErrorEnum_FeedItemSetLinkError `protobuf:"varint,141,opt,name=feed_item_set_link_error,json=feedItemSetLinkError,proto3,enum=google.ads.googleads.v16.errors.FeedItemSetLinkErrorEnum_FeedItemSetLinkError,oneof"`
+ FeedItemSetLinkError FeedItemSetLinkErrorEnum_FeedItemSetLinkError `protobuf:"varint,141,opt,name=feed_item_set_link_error,json=feedItemSetLinkError,proto3,enum=google.ads.googleads.v17.errors.FeedItemSetLinkErrorEnum_FeedItemSetLinkError,oneof"`
}
type ErrorCode_FeedItemTargetError struct {
// The reasons for the feed item target error
- FeedItemTargetError FeedItemTargetErrorEnum_FeedItemTargetError `protobuf:"varint,104,opt,name=feed_item_target_error,json=feedItemTargetError,proto3,enum=google.ads.googleads.v16.errors.FeedItemTargetErrorEnum_FeedItemTargetError,oneof"`
+ FeedItemTargetError FeedItemTargetErrorEnum_FeedItemTargetError `protobuf:"varint,104,opt,name=feed_item_target_error,json=feedItemTargetError,proto3,enum=google.ads.googleads.v17.errors.FeedItemTargetErrorEnum_FeedItemTargetError,oneof"`
}
type ErrorCode_PolicyViolationError struct {
// The reasons for the policy violation error
- PolicyViolationError PolicyViolationErrorEnum_PolicyViolationError `protobuf:"varint,105,opt,name=policy_violation_error,json=policyViolationError,proto3,enum=google.ads.googleads.v16.errors.PolicyViolationErrorEnum_PolicyViolationError,oneof"`
+ PolicyViolationError PolicyViolationErrorEnum_PolicyViolationError `protobuf:"varint,105,opt,name=policy_violation_error,json=policyViolationError,proto3,enum=google.ads.googleads.v17.errors.PolicyViolationErrorEnum_PolicyViolationError,oneof"`
}
type ErrorCode_PartialFailureError struct {
// The reasons for the mutate job error
- PartialFailureError PartialFailureErrorEnum_PartialFailureError `protobuf:"varint,112,opt,name=partial_failure_error,json=partialFailureError,proto3,enum=google.ads.googleads.v16.errors.PartialFailureErrorEnum_PartialFailureError,oneof"`
+ PartialFailureError PartialFailureErrorEnum_PartialFailureError `protobuf:"varint,112,opt,name=partial_failure_error,json=partialFailureError,proto3,enum=google.ads.googleads.v17.errors.PartialFailureErrorEnum_PartialFailureError,oneof"`
}
type ErrorCode_PolicyValidationParameterError struct {
// The reasons for the policy validation parameter error
- PolicyValidationParameterError PolicyValidationParameterErrorEnum_PolicyValidationParameterError `protobuf:"varint,114,opt,name=policy_validation_parameter_error,json=policyValidationParameterError,proto3,enum=google.ads.googleads.v16.errors.PolicyValidationParameterErrorEnum_PolicyValidationParameterError,oneof"`
+ PolicyValidationParameterError PolicyValidationParameterErrorEnum_PolicyValidationParameterError `protobuf:"varint,114,opt,name=policy_validation_parameter_error,json=policyValidationParameterError,proto3,enum=google.ads.googleads.v17.errors.PolicyValidationParameterErrorEnum_PolicyValidationParameterError,oneof"`
}
type ErrorCode_SizeLimitError struct {
// The reasons for the size limit error
- SizeLimitError SizeLimitErrorEnum_SizeLimitError `protobuf:"varint,118,opt,name=size_limit_error,json=sizeLimitError,proto3,enum=google.ads.googleads.v16.errors.SizeLimitErrorEnum_SizeLimitError,oneof"`
+ SizeLimitError SizeLimitErrorEnum_SizeLimitError `protobuf:"varint,118,opt,name=size_limit_error,json=sizeLimitError,proto3,enum=google.ads.googleads.v17.errors.SizeLimitErrorEnum_SizeLimitError,oneof"`
}
type ErrorCode_OfflineUserDataJobError struct {
// The reasons for the offline user data job error.
- OfflineUserDataJobError OfflineUserDataJobErrorEnum_OfflineUserDataJobError `protobuf:"varint,119,opt,name=offline_user_data_job_error,json=offlineUserDataJobError,proto3,enum=google.ads.googleads.v16.errors.OfflineUserDataJobErrorEnum_OfflineUserDataJobError,oneof"`
+ OfflineUserDataJobError OfflineUserDataJobErrorEnum_OfflineUserDataJobError `protobuf:"varint,119,opt,name=offline_user_data_job_error,json=offlineUserDataJobError,proto3,enum=google.ads.googleads.v17.errors.OfflineUserDataJobErrorEnum_OfflineUserDataJobError,oneof"`
}
type ErrorCode_NotAllowlistedError struct {
// The reasons for the not allowlisted error
- NotAllowlistedError NotAllowlistedErrorEnum_NotAllowlistedError `protobuf:"varint,137,opt,name=not_allowlisted_error,json=notAllowlistedError,proto3,enum=google.ads.googleads.v16.errors.NotAllowlistedErrorEnum_NotAllowlistedError,oneof"`
+ NotAllowlistedError NotAllowlistedErrorEnum_NotAllowlistedError `protobuf:"varint,137,opt,name=not_allowlisted_error,json=notAllowlistedError,proto3,enum=google.ads.googleads.v17.errors.NotAllowlistedErrorEnum_NotAllowlistedError,oneof"`
}
type ErrorCode_ManagerLinkError struct {
// The reasons for the manager link error
- ManagerLinkError ManagerLinkErrorEnum_ManagerLinkError `protobuf:"varint,121,opt,name=manager_link_error,json=managerLinkError,proto3,enum=google.ads.googleads.v16.errors.ManagerLinkErrorEnum_ManagerLinkError,oneof"`
+ ManagerLinkError ManagerLinkErrorEnum_ManagerLinkError `protobuf:"varint,121,opt,name=manager_link_error,json=managerLinkError,proto3,enum=google.ads.googleads.v17.errors.ManagerLinkErrorEnum_ManagerLinkError,oneof"`
}
type ErrorCode_CurrencyCodeError struct {
// The reasons for the currency code error
- CurrencyCodeError CurrencyCodeErrorEnum_CurrencyCodeError `protobuf:"varint,122,opt,name=currency_code_error,json=currencyCodeError,proto3,enum=google.ads.googleads.v16.errors.CurrencyCodeErrorEnum_CurrencyCodeError,oneof"`
+ CurrencyCodeError CurrencyCodeErrorEnum_CurrencyCodeError `protobuf:"varint,122,opt,name=currency_code_error,json=currencyCodeError,proto3,enum=google.ads.googleads.v17.errors.CurrencyCodeErrorEnum_CurrencyCodeError,oneof"`
}
type ErrorCode_ExperimentError struct {
// The reasons for the experiment error
- ExperimentError ExperimentErrorEnum_ExperimentError `protobuf:"varint,123,opt,name=experiment_error,json=experimentError,proto3,enum=google.ads.googleads.v16.errors.ExperimentErrorEnum_ExperimentError,oneof"`
+ ExperimentError ExperimentErrorEnum_ExperimentError `protobuf:"varint,123,opt,name=experiment_error,json=experimentError,proto3,enum=google.ads.googleads.v17.errors.ExperimentErrorEnum_ExperimentError,oneof"`
}
type ErrorCode_AccessInvitationError struct {
// The reasons for the access invitation error
- AccessInvitationError AccessInvitationErrorEnum_AccessInvitationError `protobuf:"varint,124,opt,name=access_invitation_error,json=accessInvitationError,proto3,enum=google.ads.googleads.v16.errors.AccessInvitationErrorEnum_AccessInvitationError,oneof"`
+ AccessInvitationError AccessInvitationErrorEnum_AccessInvitationError `protobuf:"varint,124,opt,name=access_invitation_error,json=accessInvitationError,proto3,enum=google.ads.googleads.v17.errors.AccessInvitationErrorEnum_AccessInvitationError,oneof"`
}
type ErrorCode_ReachPlanError struct {
// The reasons for the reach plan error
- ReachPlanError ReachPlanErrorEnum_ReachPlanError `protobuf:"varint,125,opt,name=reach_plan_error,json=reachPlanError,proto3,enum=google.ads.googleads.v16.errors.ReachPlanErrorEnum_ReachPlanError,oneof"`
+ ReachPlanError ReachPlanErrorEnum_ReachPlanError `protobuf:"varint,125,opt,name=reach_plan_error,json=reachPlanError,proto3,enum=google.ads.googleads.v17.errors.ReachPlanErrorEnum_ReachPlanError,oneof"`
}
type ErrorCode_InvoiceError struct {
// The reasons for the invoice error
- InvoiceError InvoiceErrorEnum_InvoiceError `protobuf:"varint,126,opt,name=invoice_error,json=invoiceError,proto3,enum=google.ads.googleads.v16.errors.InvoiceErrorEnum_InvoiceError,oneof"`
+ InvoiceError InvoiceErrorEnum_InvoiceError `protobuf:"varint,126,opt,name=invoice_error,json=invoiceError,proto3,enum=google.ads.googleads.v17.errors.InvoiceErrorEnum_InvoiceError,oneof"`
}
type ErrorCode_PaymentsAccountError struct {
// The reasons for errors in payments accounts service
- PaymentsAccountError PaymentsAccountErrorEnum_PaymentsAccountError `protobuf:"varint,127,opt,name=payments_account_error,json=paymentsAccountError,proto3,enum=google.ads.googleads.v16.errors.PaymentsAccountErrorEnum_PaymentsAccountError,oneof"`
+ PaymentsAccountError PaymentsAccountErrorEnum_PaymentsAccountError `protobuf:"varint,127,opt,name=payments_account_error,json=paymentsAccountError,proto3,enum=google.ads.googleads.v17.errors.PaymentsAccountErrorEnum_PaymentsAccountError,oneof"`
}
type ErrorCode_TimeZoneError struct {
// The reasons for the time zone error
- TimeZoneError TimeZoneErrorEnum_TimeZoneError `protobuf:"varint,128,opt,name=time_zone_error,json=timeZoneError,proto3,enum=google.ads.googleads.v16.errors.TimeZoneErrorEnum_TimeZoneError,oneof"`
+ TimeZoneError TimeZoneErrorEnum_TimeZoneError `protobuf:"varint,128,opt,name=time_zone_error,json=timeZoneError,proto3,enum=google.ads.googleads.v17.errors.TimeZoneErrorEnum_TimeZoneError,oneof"`
}
type ErrorCode_AssetLinkError struct {
// The reasons for the asset link error
- AssetLinkError AssetLinkErrorEnum_AssetLinkError `protobuf:"varint,129,opt,name=asset_link_error,json=assetLinkError,proto3,enum=google.ads.googleads.v16.errors.AssetLinkErrorEnum_AssetLinkError,oneof"`
+ AssetLinkError AssetLinkErrorEnum_AssetLinkError `protobuf:"varint,129,opt,name=asset_link_error,json=assetLinkError,proto3,enum=google.ads.googleads.v17.errors.AssetLinkErrorEnum_AssetLinkError,oneof"`
}
type ErrorCode_UserDataError struct {
// The reasons for the user data error.
- UserDataError UserDataErrorEnum_UserDataError `protobuf:"varint,130,opt,name=user_data_error,json=userDataError,proto3,enum=google.ads.googleads.v16.errors.UserDataErrorEnum_UserDataError,oneof"`
+ UserDataError UserDataErrorEnum_UserDataError `protobuf:"varint,130,opt,name=user_data_error,json=userDataError,proto3,enum=google.ads.googleads.v17.errors.UserDataErrorEnum_UserDataError,oneof"`
}
type ErrorCode_BatchJobError struct {
// The reasons for the batch job error
- BatchJobError BatchJobErrorEnum_BatchJobError `protobuf:"varint,131,opt,name=batch_job_error,json=batchJobError,proto3,enum=google.ads.googleads.v16.errors.BatchJobErrorEnum_BatchJobError,oneof"`
+ BatchJobError BatchJobErrorEnum_BatchJobError `protobuf:"varint,131,opt,name=batch_job_error,json=batchJobError,proto3,enum=google.ads.googleads.v17.errors.BatchJobErrorEnum_BatchJobError,oneof"`
}
type ErrorCode_AccountLinkError struct {
// The reasons for the account link status change error
- AccountLinkError AccountLinkErrorEnum_AccountLinkError `protobuf:"varint,134,opt,name=account_link_error,json=accountLinkError,proto3,enum=google.ads.googleads.v16.errors.AccountLinkErrorEnum_AccountLinkError,oneof"`
+ AccountLinkError AccountLinkErrorEnum_AccountLinkError `protobuf:"varint,134,opt,name=account_link_error,json=accountLinkError,proto3,enum=google.ads.googleads.v17.errors.AccountLinkErrorEnum_AccountLinkError,oneof"`
}
type ErrorCode_ThirdPartyAppAnalyticsLinkError struct {
// The reasons for the third party app analytics link mutate error
- ThirdPartyAppAnalyticsLinkError ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError `protobuf:"varint,135,opt,name=third_party_app_analytics_link_error,json=thirdPartyAppAnalyticsLinkError,proto3,enum=google.ads.googleads.v16.errors.ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError,oneof"`
+ ThirdPartyAppAnalyticsLinkError ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError `protobuf:"varint,135,opt,name=third_party_app_analytics_link_error,json=thirdPartyAppAnalyticsLinkError,proto3,enum=google.ads.googleads.v17.errors.ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError,oneof"`
}
type ErrorCode_CustomerUserAccessError struct {
// The reasons for the customer user access mutate error
- CustomerUserAccessError CustomerUserAccessErrorEnum_CustomerUserAccessError `protobuf:"varint,138,opt,name=customer_user_access_error,json=customerUserAccessError,proto3,enum=google.ads.googleads.v16.errors.CustomerUserAccessErrorEnum_CustomerUserAccessError,oneof"`
+ CustomerUserAccessError CustomerUserAccessErrorEnum_CustomerUserAccessError `protobuf:"varint,138,opt,name=customer_user_access_error,json=customerUserAccessError,proto3,enum=google.ads.googleads.v17.errors.CustomerUserAccessErrorEnum_CustomerUserAccessError,oneof"`
}
type ErrorCode_CustomAudienceError struct {
// The reasons for the custom audience error
- CustomAudienceError CustomAudienceErrorEnum_CustomAudienceError `protobuf:"varint,139,opt,name=custom_audience_error,json=customAudienceError,proto3,enum=google.ads.googleads.v16.errors.CustomAudienceErrorEnum_CustomAudienceError,oneof"`
+ CustomAudienceError CustomAudienceErrorEnum_CustomAudienceError `protobuf:"varint,139,opt,name=custom_audience_error,json=customAudienceError,proto3,enum=google.ads.googleads.v17.errors.CustomAudienceErrorEnum_CustomAudienceError,oneof"`
}
type ErrorCode_AudienceError struct {
// The reasons for the audience error
- AudienceError AudienceErrorEnum_AudienceError `protobuf:"varint,164,opt,name=audience_error,json=audienceError,proto3,enum=google.ads.googleads.v16.errors.AudienceErrorEnum_AudienceError,oneof"`
+ AudienceError AudienceErrorEnum_AudienceError `protobuf:"varint,164,opt,name=audience_error,json=audienceError,proto3,enum=google.ads.googleads.v17.errors.AudienceErrorEnum_AudienceError,oneof"`
}
type ErrorCode_SearchTermInsightError struct {
// The reasons for the Search term insight error
- SearchTermInsightError SearchTermInsightErrorEnum_SearchTermInsightError `protobuf:"varint,174,opt,name=search_term_insight_error,json=searchTermInsightError,proto3,enum=google.ads.googleads.v16.errors.SearchTermInsightErrorEnum_SearchTermInsightError,oneof"`
+ SearchTermInsightError SearchTermInsightErrorEnum_SearchTermInsightError `protobuf:"varint,174,opt,name=search_term_insight_error,json=searchTermInsightError,proto3,enum=google.ads.googleads.v17.errors.SearchTermInsightErrorEnum_SearchTermInsightError,oneof"`
}
type ErrorCode_SmartCampaignError struct {
// The reasons for the Smart campaign error
- SmartCampaignError SmartCampaignErrorEnum_SmartCampaignError `protobuf:"varint,147,opt,name=smart_campaign_error,json=smartCampaignError,proto3,enum=google.ads.googleads.v16.errors.SmartCampaignErrorEnum_SmartCampaignError,oneof"`
+ SmartCampaignError SmartCampaignErrorEnum_SmartCampaignError `protobuf:"varint,147,opt,name=smart_campaign_error,json=smartCampaignError,proto3,enum=google.ads.googleads.v17.errors.SmartCampaignErrorEnum_SmartCampaignError,oneof"`
}
type ErrorCode_ExperimentArmError struct {
// The reasons for the experiment arm error
- ExperimentArmError ExperimentArmErrorEnum_ExperimentArmError `protobuf:"varint,156,opt,name=experiment_arm_error,json=experimentArmError,proto3,enum=google.ads.googleads.v16.errors.ExperimentArmErrorEnum_ExperimentArmError,oneof"`
+ ExperimentArmError ExperimentArmErrorEnum_ExperimentArmError `protobuf:"varint,156,opt,name=experiment_arm_error,json=experimentArmError,proto3,enum=google.ads.googleads.v17.errors.ExperimentArmErrorEnum_ExperimentArmError,oneof"`
}
type ErrorCode_AudienceInsightsError struct {
// The reasons for the Audience Insights error
- AudienceInsightsError AudienceInsightsErrorEnum_AudienceInsightsError `protobuf:"varint,167,opt,name=audience_insights_error,json=audienceInsightsError,proto3,enum=google.ads.googleads.v16.errors.AudienceInsightsErrorEnum_AudienceInsightsError,oneof"`
+ AudienceInsightsError AudienceInsightsErrorEnum_AudienceInsightsError `protobuf:"varint,167,opt,name=audience_insights_error,json=audienceInsightsError,proto3,enum=google.ads.googleads.v17.errors.AudienceInsightsErrorEnum_AudienceInsightsError,oneof"`
}
type ErrorCode_ProductLinkError struct {
// The reasons for the product link error
- ProductLinkError ProductLinkErrorEnum_ProductLinkError `protobuf:"varint,169,opt,name=product_link_error,json=productLinkError,proto3,enum=google.ads.googleads.v16.errors.ProductLinkErrorEnum_ProductLinkError,oneof"`
+ ProductLinkError ProductLinkErrorEnum_ProductLinkError `protobuf:"varint,169,opt,name=product_link_error,json=productLinkError,proto3,enum=google.ads.googleads.v17.errors.ProductLinkErrorEnum_ProductLinkError,oneof"`
}
type ErrorCode_CustomerSkAdNetworkConversionValueSchemaError struct {
// The reasons for the customer SK Ad network conversion value schema error
- CustomerSkAdNetworkConversionValueSchemaError CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError `protobuf:"varint,170,opt,name=customer_sk_ad_network_conversion_value_schema_error,json=customerSkAdNetworkConversionValueSchemaError,proto3,enum=google.ads.googleads.v16.errors.CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError,oneof"`
+ CustomerSkAdNetworkConversionValueSchemaError CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError `protobuf:"varint,170,opt,name=customer_sk_ad_network_conversion_value_schema_error,json=customerSkAdNetworkConversionValueSchemaError,proto3,enum=google.ads.googleads.v17.errors.CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError,oneof"`
}
type ErrorCode_CurrencyError struct {
// The reasons for the currency errors.
- CurrencyError CurrencyErrorEnum_CurrencyError `protobuf:"varint,171,opt,name=currency_error,json=currencyError,proto3,enum=google.ads.googleads.v16.errors.CurrencyErrorEnum_CurrencyError,oneof"`
+ CurrencyError CurrencyErrorEnum_CurrencyError `protobuf:"varint,171,opt,name=currency_error,json=currencyError,proto3,enum=google.ads.googleads.v17.errors.CurrencyErrorEnum_CurrencyError,oneof"`
}
type ErrorCode_AssetGroupSignalError struct {
// The reasons for the asset group hint error
- AssetGroupSignalError AssetGroupSignalErrorEnum_AssetGroupSignalError `protobuf:"varint,176,opt,name=asset_group_signal_error,json=assetGroupSignalError,proto3,enum=google.ads.googleads.v16.errors.AssetGroupSignalErrorEnum_AssetGroupSignalError,oneof"`
+ AssetGroupSignalError AssetGroupSignalErrorEnum_AssetGroupSignalError `protobuf:"varint,176,opt,name=asset_group_signal_error,json=assetGroupSignalError,proto3,enum=google.ads.googleads.v17.errors.AssetGroupSignalErrorEnum_AssetGroupSignalError,oneof"`
}
type ErrorCode_ProductLinkInvitationError struct {
// The reasons for the product link invitation error
- ProductLinkInvitationError ProductLinkInvitationErrorEnum_ProductLinkInvitationError `protobuf:"varint,177,opt,name=product_link_invitation_error,json=productLinkInvitationError,proto3,enum=google.ads.googleads.v16.errors.ProductLinkInvitationErrorEnum_ProductLinkInvitationError,oneof"`
+ ProductLinkInvitationError ProductLinkInvitationErrorEnum_ProductLinkInvitationError `protobuf:"varint,177,opt,name=product_link_invitation_error,json=productLinkInvitationError,proto3,enum=google.ads.googleads.v17.errors.ProductLinkInvitationErrorEnum_ProductLinkInvitationError,oneof"`
}
type ErrorCode_CustomerLifecycleGoalError struct {
// The reasons for the customer lifecycle goal error
- CustomerLifecycleGoalError CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError `protobuf:"varint,178,opt,name=customer_lifecycle_goal_error,json=customerLifecycleGoalError,proto3,enum=google.ads.googleads.v16.errors.CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError,oneof"`
+ CustomerLifecycleGoalError CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError `protobuf:"varint,178,opt,name=customer_lifecycle_goal_error,json=customerLifecycleGoalError,proto3,enum=google.ads.googleads.v17.errors.CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError,oneof"`
}
type ErrorCode_CampaignLifecycleGoalError struct {
// The reasons for the campaign lifecycle goal error
- CampaignLifecycleGoalError CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError `protobuf:"varint,179,opt,name=campaign_lifecycle_goal_error,json=campaignLifecycleGoalError,proto3,enum=google.ads.googleads.v16.errors.CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError,oneof"`
+ CampaignLifecycleGoalError CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError `protobuf:"varint,179,opt,name=campaign_lifecycle_goal_error,json=campaignLifecycleGoalError,proto3,enum=google.ads.googleads.v17.errors.CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError,oneof"`
}
type ErrorCode_IdentityVerificationError struct {
// The reasons for an identity verification error.
- IdentityVerificationError IdentityVerificationErrorEnum_IdentityVerificationError `protobuf:"varint,181,opt,name=identity_verification_error,json=identityVerificationError,proto3,enum=google.ads.googleads.v16.errors.IdentityVerificationErrorEnum_IdentityVerificationError,oneof"`
+ IdentityVerificationError IdentityVerificationErrorEnum_IdentityVerificationError `protobuf:"varint,181,opt,name=identity_verification_error,json=identityVerificationError,proto3,enum=google.ads.googleads.v17.errors.IdentityVerificationErrorEnum_IdentityVerificationError,oneof"`
+}
+
+type ErrorCode_UserListCustomerTypeError struct {
+ // The reasons for a user list customer type error.
+ UserListCustomerTypeError UserListCustomerTypeErrorEnum_UserListCustomerTypeError `protobuf:"varint,183,opt,name=user_list_customer_type_error,json=userListCustomerTypeError,proto3,enum=google.ads.googleads.v17.errors.UserListCustomerTypeErrorEnum_UserListCustomerTypeError,oneof"`
+}
+
+type ErrorCode_ShoppingProductError struct {
+ // The reasons for error in querying shopping product.
+ ShoppingProductError ShoppingProductErrorEnum_ShoppingProductError `protobuf:"varint,184,opt,name=shopping_product_error,json=shoppingProductError,proto3,enum=google.ads.googleads.v17.errors.ShoppingProductErrorEnum_ShoppingProductError,oneof"`
}
func (*ErrorCode_RequestError) isErrorCode_ErrorCode() {}
@@ -2575,6 +2601,10 @@ func (*ErrorCode_CampaignLifecycleGoalError) isErrorCode_ErrorCode() {}
func (*ErrorCode_IdentityVerificationError) isErrorCode_ErrorCode() {}
+func (*ErrorCode_UserListCustomerTypeError) isErrorCode_ErrorCode() {}
+
+func (*ErrorCode_ShoppingProductError) isErrorCode_ErrorCode() {}
+
// Describes the part of the request proto that caused the error.
type ErrorLocation struct {
state protoimpl.MessageState
@@ -2588,7 +2618,7 @@ type ErrorLocation struct {
func (x *ErrorLocation) Reset() {
*x = ErrorLocation{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2601,7 +2631,7 @@ func (x *ErrorLocation) String() string {
func (*ErrorLocation) ProtoMessage() {}
func (x *ErrorLocation) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2614,7 +2644,7 @@ func (x *ErrorLocation) ProtoReflect() protoreflect.Message {
// Deprecated: Use ErrorLocation.ProtoReflect.Descriptor instead.
func (*ErrorLocation) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_errors_proto_rawDescGZIP(), []int{3}
+ return file_google_ads_googleads_v17_errors_errors_proto_rawDescGZIP(), []int{3}
}
func (x *ErrorLocation) GetFieldPathElements() []*ErrorLocation_FieldPathElement {
@@ -2647,7 +2677,7 @@ type ErrorDetails struct {
func (x *ErrorDetails) Reset() {
*x = ErrorDetails{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2660,7 +2690,7 @@ func (x *ErrorDetails) String() string {
func (*ErrorDetails) ProtoMessage() {}
func (x *ErrorDetails) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2673,7 +2703,7 @@ func (x *ErrorDetails) ProtoReflect() protoreflect.Message {
// Deprecated: Use ErrorDetails.ProtoReflect.Descriptor instead.
func (*ErrorDetails) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_errors_proto_rawDescGZIP(), []int{4}
+ return file_google_ads_googleads_v17_errors_errors_proto_rawDescGZIP(), []int{4}
}
func (x *ErrorDetails) GetUnpublishedErrorCode() string {
@@ -2733,7 +2763,7 @@ type PolicyViolationDetails struct {
func (x *PolicyViolationDetails) Reset() {
*x = PolicyViolationDetails{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2746,7 +2776,7 @@ func (x *PolicyViolationDetails) String() string {
func (*PolicyViolationDetails) ProtoMessage() {}
func (x *PolicyViolationDetails) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2759,7 +2789,7 @@ func (x *PolicyViolationDetails) ProtoReflect() protoreflect.Message {
// Deprecated: Use PolicyViolationDetails.ProtoReflect.Descriptor instead.
func (*PolicyViolationDetails) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_errors_proto_rawDescGZIP(), []int{5}
+ return file_google_ads_googleads_v17_errors_errors_proto_rawDescGZIP(), []int{5}
}
func (x *PolicyViolationDetails) GetExternalPolicyDescription() string {
@@ -2807,7 +2837,7 @@ type PolicyFindingDetails struct {
func (x *PolicyFindingDetails) Reset() {
*x = PolicyFindingDetails{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2820,7 +2850,7 @@ func (x *PolicyFindingDetails) String() string {
func (*PolicyFindingDetails) ProtoMessage() {}
func (x *PolicyFindingDetails) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2833,7 +2863,7 @@ func (x *PolicyFindingDetails) ProtoReflect() protoreflect.Message {
// Deprecated: Use PolicyFindingDetails.ProtoReflect.Descriptor instead.
func (*PolicyFindingDetails) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_errors_proto_rawDescGZIP(), []int{6}
+ return file_google_ads_googleads_v17_errors_errors_proto_rawDescGZIP(), []int{6}
}
func (x *PolicyFindingDetails) GetPolicyTopicEntries() []*common.PolicyTopicEntry {
@@ -2850,7 +2880,7 @@ type QuotaErrorDetails struct {
unknownFields protoimpl.UnknownFields
// The rate scope of the quota limit.
- RateScope QuotaErrorDetails_QuotaRateScope `protobuf:"varint,1,opt,name=rate_scope,json=rateScope,proto3,enum=google.ads.googleads.v16.errors.QuotaErrorDetails_QuotaRateScope" json:"rate_scope,omitempty"`
+ RateScope QuotaErrorDetails_QuotaRateScope `protobuf:"varint,1,opt,name=rate_scope,json=rateScope,proto3,enum=google.ads.googleads.v17.errors.QuotaErrorDetails_QuotaRateScope" json:"rate_scope,omitempty"`
// The high level description of the quota bucket.
// Examples are "Get requests for standard access" or "Requests per account".
RateName string `protobuf:"bytes,2,opt,name=rate_name,json=rateName,proto3" json:"rate_name,omitempty"`
@@ -2861,7 +2891,7 @@ type QuotaErrorDetails struct {
func (x *QuotaErrorDetails) Reset() {
*x = QuotaErrorDetails{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2874,7 +2904,7 @@ func (x *QuotaErrorDetails) String() string {
func (*QuotaErrorDetails) ProtoMessage() {}
func (x *QuotaErrorDetails) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[7]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2887,7 +2917,7 @@ func (x *QuotaErrorDetails) ProtoReflect() protoreflect.Message {
// Deprecated: Use QuotaErrorDetails.ProtoReflect.Descriptor instead.
func (*QuotaErrorDetails) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_errors_proto_rawDescGZIP(), []int{7}
+ return file_google_ads_googleads_v17_errors_errors_proto_rawDescGZIP(), []int{7}
}
func (x *QuotaErrorDetails) GetRateScope() QuotaErrorDetails_QuotaRateScope {
@@ -2926,7 +2956,7 @@ type ResourceCountDetails struct {
// The limit which was exceeded.
Limit int32 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
// The resource limit type which was exceeded.
- LimitType enums.ResourceLimitTypeEnum_ResourceLimitType `protobuf:"varint,3,opt,name=limit_type,json=limitType,proto3,enum=google.ads.googleads.v16.enums.ResourceLimitTypeEnum_ResourceLimitType" json:"limit_type,omitempty"`
+ LimitType enums.ResourceLimitTypeEnum_ResourceLimitType `protobuf:"varint,3,opt,name=limit_type,json=limitType,proto3,enum=google.ads.googleads.v17.enums.ResourceLimitTypeEnum_ResourceLimitType" json:"limit_type,omitempty"`
// The count of existing entities.
ExistingCount int32 `protobuf:"varint,4,opt,name=existing_count,json=existingCount,proto3" json:"existing_count,omitempty"`
}
@@ -2934,7 +2964,7 @@ type ResourceCountDetails struct {
func (x *ResourceCountDetails) Reset() {
*x = ResourceCountDetails{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -2947,7 +2977,7 @@ func (x *ResourceCountDetails) String() string {
func (*ResourceCountDetails) ProtoMessage() {}
func (x *ResourceCountDetails) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[8]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -2960,7 +2990,7 @@ func (x *ResourceCountDetails) ProtoReflect() protoreflect.Message {
// Deprecated: Use ResourceCountDetails.ProtoReflect.Descriptor instead.
func (*ResourceCountDetails) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_errors_proto_rawDescGZIP(), []int{8}
+ return file_google_ads_googleads_v17_errors_errors_proto_rawDescGZIP(), []int{8}
}
func (x *ResourceCountDetails) GetEnclosingId() string {
@@ -3013,7 +3043,7 @@ type ErrorLocation_FieldPathElement struct {
func (x *ErrorLocation_FieldPathElement) Reset() {
*x = ErrorLocation_FieldPathElement{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -3026,7 +3056,7 @@ func (x *ErrorLocation_FieldPathElement) String() string {
func (*ErrorLocation_FieldPathElement) ProtoMessage() {}
func (x *ErrorLocation_FieldPathElement) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_errors_proto_msgTypes[9]
+ mi := &file_google_ads_googleads_v17_errors_errors_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -3039,7 +3069,7 @@ func (x *ErrorLocation_FieldPathElement) ProtoReflect() protoreflect.Message {
// Deprecated: Use ErrorLocation_FieldPathElement.ProtoReflect.Descriptor instead.
func (*ErrorLocation_FieldPathElement) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_errors_proto_rawDescGZIP(), []int{3, 0}
+ return file_google_ads_googleads_v17_errors_errors_proto_rawDescGZIP(), []int{3, 0}
}
func (x *ErrorLocation_FieldPathElement) GetFieldName() string {
@@ -3056,2517 +3086,2550 @@ func (x *ErrorLocation_FieldPathElement) GetIndex() int32 {
return 0
}
-var File_google_ads_googleads_v16_errors_errors_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_errors_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_errors_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_errors_proto_rawDesc = []byte{
0x0a, 0x2c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x1a,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x1a,
0x2c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2b, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x76,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x76,
0x61, 0x6c, 0x75, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x38, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
0x72, 0x63, 0x65, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x69, 0x6e, 0x76,
0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x62, 0x75, 0x64,
0x67, 0x65, 0x74, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65,
0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61,
0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x37, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61,
0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70,
0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72,
0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x75,
0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63,
0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63,
0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x39, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x64, 0x5f,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x64, 0x5f,
0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d,
0x65, 0x74, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x1a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x64, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x64, 0x78, 0x5f, 0x65, 0x72,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x64, 0x78, 0x5f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74,
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3d, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x73,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x73,
0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x37, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x73, 0x73,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x73, 0x73,
0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x4c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75,
0x70, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f,
0x66, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f,
0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3b, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65,
0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73,
+ 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73,
0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3a,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f,
0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x34, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x75, 0x64, 0x69,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x75, 0x64, 0x69,
0x65, 0x6e, 0x63, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x1a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67,
0x68, 0x74, 0x73, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x2f, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x39, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x75, 0x74,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x75, 0x74,
0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x62, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x6a, 0x6f,
0x62, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x33, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x62,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x62,
0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61,
0x74, 0x65, 0x67, 0x79, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x1a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x75, 0x70, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3b, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x61, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x61, 0x6d,
0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69,
0x67, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f,
0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f,
0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69,
0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f,
0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69,
0x7a, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x64, 0x72, 0x61, 0x66, 0x74, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x34, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x61, 0x6d,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x61, 0x6d,
0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x1a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x78, 0x70, 0x65,
0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x66, 0x65, 0x65,
0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x43, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63,
0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c,
0x65, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x68, 0x61,
0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e,
0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x39, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63,
0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3d, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76,
0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x48, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74,
0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x46, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f,
0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x4b, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e,
0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x63, 0x61, 0x6d,
0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72,
0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
+ 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x45, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76,
0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c,
0x65, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x1a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x2f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x35, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x72, 0x69,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x72, 0x69,
0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x2f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x6f, 0x64,
0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x34, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63,
0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x75, 0x64, 0x69,
0x65, 0x6e, 0x63, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x1a, 0x42, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74,
0x65, 0x72, 0x65, 0x73, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x1a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, 0x65,
0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x75,
0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x39, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74,
0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f,
0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x41, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74,
0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x6e,
0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x5a, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63,
0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65,
0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x5f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f,
0x6d, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x40, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x75, 0x73,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x75, 0x73,
0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74,
0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x34, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x64,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x64,
0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x2f, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67,
0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x34, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x64,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x64,
0x69, 0x73, 0x74, 0x69, 0x6e, 0x63, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e,
0x74, 0x5f, 0x61, 0x72, 0x6d, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x1a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e,
0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3d, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x65, 0x78, 0x74, 0x65,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x65, 0x78, 0x74, 0x65,
0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f,
0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65,
0x6e, 0x63, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x1a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69,
0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73,
0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74,
0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x1a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x76, 0x61, 0x6c,
0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e,
0x67, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x31, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66,
0x69, 0x65, 0x6c, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x1a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3c,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f,
0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x73, 0x69, 0x6e, 0x67,
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x4a, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x67, 0x65,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x67, 0x65,
0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e,
0x74, 0x5f, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72,
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x69, 0x64,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x69, 0x64,
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x41, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x69, 0x64,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x69, 0x64,
0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x2f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63,
0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x41, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6b,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6b,
0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x61, 0x64, 0x5f, 0x67,
0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x1a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x61,
0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x41, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6b, 0x65, 0x79,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6b, 0x65, 0x79,
0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69,
0x67, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x49,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f,
0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x61, 0x6d,
0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f,
0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61,
0x6e, 0x5f, 0x69, 0x64, 0x65, 0x61, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x5f,
0x63, 0x6f, 0x64, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x38, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6d, 0x61,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6d, 0x61,
0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x62, 0x75,
0x6e, 0x64, 0x6c, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x1a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f,
0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x2f, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x5f, 0x63, 0x65, 0x6e,
0x74, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x2f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x69, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x5f,
+ 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x41, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6e, 0x65, 0x77,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6e, 0x65, 0x77,
0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3b,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f,
0x6e, 0x6f, 0x74, 0x5f, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x64, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x35, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6e, 0x6f, 0x74,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6e, 0x6f, 0x74,
0x5f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x2f, 0x6e, 0x75, 0x6c, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x75, 0x73,
0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6a, 0x6f, 0x62, 0x5f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
+ 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x64, 0x65, 0x6e, 0x69, 0x65, 0x64,
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x34, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6f, 0x70,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6f, 0x70,
0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c,
0x75, 0x72, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x2f, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3a, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x70,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x70,
0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x66, 0x69, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x47, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63,
0x79, 0x5f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72,
0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x76, 0x69, 0x6f, 0x6c, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x1a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x43, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64,
0x75, 0x63, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x2f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x2f, 0x71, 0x75, 0x6f, 0x74, 0x61, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f,
0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x47, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x72, 0x65,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x72, 0x65,
0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x75, 0x62,
0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f,
0x64, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x33,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f,
0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x42, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x61, 0x63,
0x63, 0x65, 0x73, 0x73, 0x5f, 0x64, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63,
+ 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63,
0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x65, 0x78,
0x63, 0x65, 0x65, 0x64, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x2f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f,
0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x2f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64,
0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73,
- 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x36,
+ 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3c,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f,
- 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
- 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61,
- 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x1a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x73, 0x2f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61,
- 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x39, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x73,
- 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x5f, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x4a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f,
- 0x70, 0x61, 0x72, 0x74, 0x79, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x61, 0x6e, 0x61, 0x6c, 0x79, 0x74,
- 0x69, 0x63, 0x73, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x7a, 0x6f, 0x6e, 0x65, 0x5f,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x35, 0x67, 0x6f, 0x6f,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f,
+ 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
+ 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x36, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x73, 0x69,
+ 0x7a, 0x65, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70,
+ 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70,
+ 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x1a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x73, 0x2f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x5f,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x39, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x75, 0x72, 0x6c,
- 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x73, 0x74, 0x72,
+ 0x69, 0x6e, 0x67, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x4a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
+ 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, 0x70, 0x61,
+ 0x72, 0x74, 0x79, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x61, 0x6e, 0x61, 0x6c, 0x79, 0x74, 0x69, 0x63,
+ 0x73, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x1a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x73, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x7a, 0x6f, 0x6e, 0x65, 0x5f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f,
- 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x73, 0x2f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e,
- 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x46, 0x67, 0x6f,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x75, 0x72, 0x6c, 0x5f, 0x66,
+ 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x1a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
+ 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
+ 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69,
+ 0x73, 0x74, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65,
+ 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x35, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x79, 0x6f,
- 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x72, 0x65, 0x67, 0x69,
- 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x7a, 0x0a, 0x10, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x12, 0x47, 0x0a, 0x06, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x06, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x69, 0x64, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x49, 0x64,
- 0x22, 0xcc, 0x02, 0x0a, 0x0e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x12, 0x49, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64,
- 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x43,
- 0x6f, 0x64, 0x65, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x18,
- 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x40, 0x0a, 0x07, 0x74, 0x72, 0x69, 0x67,
- 0x67, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x56, 0x61, 0x6c, 0x75,
- 0x65, 0x52, 0x07, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x12, 0x4a, 0x0a, 0x08, 0x6c, 0x6f,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x75, 0x73,
+ 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
+ 0x6f, 0x74, 0x6f, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61,
+ 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
+ 0x46, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x2f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x72,
+ 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
+ 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x7a, 0x0a, 0x10, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x41, 0x64, 0x73, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x12, 0x47, 0x0a, 0x06, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x47, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x06, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f,
+ 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73,
+ 0x74, 0x49, 0x64, 0x22, 0xcc, 0x02, 0x0a, 0x0e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
+ 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x49, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f,
+ 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
+ 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x40, 0x0a, 0x07, 0x74,
+ 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x08, 0x6c, 0x6f,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x47, 0x0a, 0x07, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c,
- 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x44,
- 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x07, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x22,
- 0xef, 0x9b, 0x01, 0x0a, 0x09, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x65,
- 0x0a, 0x0d, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
- 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0c, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x86, 0x01, 0x0a, 0x16, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e,
- 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67,
- 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
- 0x6d, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67,
- 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x14, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e,
- 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6a,
- 0x0a, 0x0f, 0x75, 0x72, 0x6c, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x55, 0x72, 0x6c, 0x46, 0x69, 0x65,
- 0x6c, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x55, 0x72, 0x6c, 0x46,
- 0x69, 0x65, 0x6c, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x75, 0x72, 0x6c,
- 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7e, 0x0a, 0x14, 0x6c, 0x69,
- 0x73, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x56,
+ 0x61, 0x6c, 0x75, 0x65, 0x52, 0x07, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x12, 0x4a, 0x0a,
+ 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32,
+ 0x2e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x73, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52,
+ 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x47, 0x0a, 0x07, 0x64, 0x65, 0x74,
+ 0x61, 0x69, 0x6c, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x07, 0x64, 0x65, 0x74, 0x61, 0x69,
+ 0x6c, 0x73, 0x22, 0x99, 0x9e, 0x01, 0x0a, 0x09, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
+ 0x65, 0x12, 0x65, 0x0a, 0x0d, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4f,
- 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
- 0x6d, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x12, 0x6c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5d, 0x0a, 0x0b, 0x71, 0x75,
- 0x65, 0x72, 0x79, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x3a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x73, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
- 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0a, 0x71,
- 0x75, 0x65, 0x72, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x61, 0x0a, 0x0c, 0x6d, 0x75, 0x74,
- 0x61, 0x74, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x3c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
- 0x6d, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
- 0x0b, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6e, 0x0a, 0x10,
- 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x42, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61,
- 0x73, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x69, 0x65, 0x6c,
- 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0e, 0x66, 0x69,
- 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7d, 0x0a, 0x13,
- 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x52, 0x65, 0x71, 0x75, 0x65,
+ 0x73, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x71, 0x75,
+ 0x65, 0x73, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0c, 0x72, 0x65, 0x71, 0x75,
+ 0x65, 0x73, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x86, 0x01, 0x0a, 0x16, 0x62, 0x69, 0x64,
+ 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x5f, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4e, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x75, 0x74, 0x68,
- 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
- 0x75, 0x6d, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x12, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69,
- 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x69, 0x0a, 0x0e, 0x69,
- 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x0a, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61,
- 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5d, 0x0a, 0x0b, 0x71, 0x75, 0x6f, 0x74, 0x61, 0x5f,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3a, 0x2e, 0x67, 0x6f,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64,
+ 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61,
+ 0x74, 0x65, 0x67, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x14, 0x62, 0x69, 0x64,
+ 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x12, 0x6a, 0x0a, 0x0f, 0x75, 0x72, 0x6c, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x55, 0x72, 0x6c,
+ 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x55,
+ 0x72, 0x6c, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d,
+ 0x75, 0x72, 0x6c, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7e, 0x0a,
+ 0x14, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4a, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x51, 0x75,
- 0x6f, 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x51, 0x75, 0x6f,
- 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0a, 0x71, 0x75, 0x6f, 0x74, 0x61,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x51, 0x0a, 0x08, 0x61, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4c, 0x69,
+ 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x12, 0x6c, 0x69, 0x73, 0x74, 0x4f,
+ 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5d, 0x0a,
+ 0x0b, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x05, 0x20, 0x01,
+ 0x28, 0x0e, 0x32, 0x3a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
+ 0x6e, 0x75, 0x6d, 0x2e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
+ 0x52, 0x0a, 0x71, 0x75, 0x65, 0x72, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x61, 0x0a, 0x0c,
+ 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x07, 0x20, 0x01,
+ 0x28, 0x0e, 0x32, 0x3c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x48, 0x00, 0x52, 0x0b, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
+ 0x6e, 0x0a, 0x10, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x5f, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x42, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x46, 0x69, 0x65, 0x6c,
+ 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46,
+ 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
+ 0x0e, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
+ 0x7d, 0x0a, 0x13, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4a, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41,
+ 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x12, 0x61, 0x75, 0x74, 0x68,
+ 0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x69,
+ 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
+ 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61,
+ 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72,
+ 0x6e, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x69, 0x6e, 0x74, 0x65,
+ 0x72, 0x6e, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5d, 0x0a, 0x0b, 0x71, 0x75, 0x6f,
+ 0x74, 0x61, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3a,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x2e, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
+ 0x51, 0x75, 0x6f, 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0a, 0x71, 0x75,
+ 0x6f, 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x51, 0x0a, 0x08, 0x61, 0x64, 0x5f, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x64, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x48, 0x00, 0x52, 0x07, 0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x66, 0x0a, 0x0e, 0x61,
+ 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x0d, 0x20,
+ 0x01, 0x28, 0x0e, 0x32, 0x3e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0c, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x12, 0x82, 0x01, 0x0a, 0x15, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e,
+ 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x0e, 0x20,
+ 0x01, 0x28, 0x0e, 0x32, 0x4c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75,
+ 0x64, 0x67, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61,
+ 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x48, 0x00, 0x52, 0x13, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64,
+ 0x67, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x69, 0x0a, 0x0e, 0x63, 0x61, 0x6d, 0x70,
+ 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0e,
+ 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x12, 0x7f, 0x0a, 0x14, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x63, 0x61, 0x6d,
+ 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xb6, 0x01, 0x20, 0x01,
+ 0x28, 0x0e, 0x32, 0x4a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69,
+ 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x56, 0x69, 0x64, 0x65,
+ 0x6f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
+ 0x52, 0x12, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x12, 0x81, 0x01, 0x0a, 0x14, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74,
+ 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x11, 0x20,
+ 0x01, 0x28, 0x0e, 0x32, 0x4c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61,
+ 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x75,
+ 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x48, 0x00, 0x52, 0x13, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xb5, 0x01, 0x0a, 0x23, 0x61, 0x64, 0x5f,
+ 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f,
+ 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x18, 0xa1, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x64, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x64, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
- 0x07, 0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x66, 0x0a, 0x0e, 0x61, 0x64, 0x5f, 0x67,
- 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x3e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
- 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x48, 0x00, 0x52, 0x0c, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x12, 0x82, 0x01, 0x0a, 0x15, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x62, 0x75,
- 0x64, 0x67, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x4c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65,
- 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61,
- 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
- 0x52, 0x13, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x69, 0x0a, 0x0e, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67,
- 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e,
- 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
- 0x6d, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
- 0x00, 0x52, 0x0d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x12, 0x7f, 0x0a, 0x14, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69,
- 0x67, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xb6, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x4a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x73, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x43, 0x61,
- 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x12, 0x76,
- 0x69, 0x64, 0x65, 0x6f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x12, 0x81, 0x01, 0x0a, 0x14, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x4c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x73, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x75, 0x74, 0x68, 0x65,
- 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
- 0x52, 0x13, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xb5, 0x01, 0x0a, 0x23, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f,
- 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x75, 0x73,
- 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xa1, 0x01,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x64, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72,
- 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65,
- 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f,
- 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f,
- 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1f, 0x61, 0x64,
- 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x43, 0x75,
- 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x8b, 0x01,
- 0x0a, 0x18, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65,
- 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x50, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72,
- 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x47,
- 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x48, 0x00, 0x52, 0x15, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69,
- 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x90, 0x01, 0x0a, 0x19,
- 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69,
- 0x7a, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x9f, 0x01, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x52, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75,
+ 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64,
- 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x16, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43,
- 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7a,
- 0x0a, 0x13, 0x61, 0x64, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x48, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x64,
- 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
- 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x11, 0x61, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f,
- 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6f, 0x0a, 0x11, 0x61, 0x64,
- 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
- 0x15, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x42, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
- 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41,
- 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f,
- 0x75, 0x70, 0x41, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0e, 0x61, 0x64, 0x47,
- 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6e, 0x0a, 0x10, 0x61,
- 0x64, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
- 0x18, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x42, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
- 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x64, 0x53, 0x68, 0x61, 0x72, 0x69, 0x6e,
- 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x53, 0x68, 0x61,
- 0x72, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0e, 0x61, 0x64, 0x53,
- 0x68, 0x61, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x55, 0x0a, 0x09, 0x61,
- 0x64, 0x78, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x19, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x36,
+ 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x43, 0x75,
+ 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
+ 0x1f, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f,
+ 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x12, 0x8b, 0x01, 0x0a, 0x18, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x72,
+ 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x12, 0x20,
+ 0x01, 0x28, 0x0e, 0x32, 0x50, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69,
+ 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
+ 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x15, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70,
+ 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x90,
+ 0x01, 0x0a, 0x19, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x75, 0x73, 0x74,
+ 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x9f, 0x01, 0x20,
+ 0x01, 0x28, 0x0e, 0x32, 0x52, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73,
+ 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
+ 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a,
+ 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x16, 0x61, 0x64, 0x47, 0x72, 0x6f,
+ 0x75, 0x70, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x12, 0x7a, 0x0a, 0x13, 0x61, 0x64, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a,
+ 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x48,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
- 0x2e, 0x41, 0x64, 0x78, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64,
- 0x78, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x08, 0x61, 0x64, 0x78, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x12, 0x5d, 0x0a, 0x0b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x18, 0x6b, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x2e, 0x41, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69,
+ 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x11, 0x61, 0x64, 0x43, 0x75,
+ 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6f, 0x0a,
+ 0x11, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x18, 0x15, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x42, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f,
+ 0x75, 0x70, 0x41, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64,
+ 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0e,
+ 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6e,
+ 0x0a, 0x10, 0x61, 0x64, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x42, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x64, 0x53, 0x68, 0x61,
+ 0x72, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64,
+ 0x53, 0x68, 0x61, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0e,
+ 0x61, 0x64, 0x53, 0x68, 0x61, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x55,
+ 0x0a, 0x09, 0x61, 0x64, 0x78, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x19, 0x20, 0x01, 0x28,
+ 0x0e, 0x32, 0x36, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x64, 0x78, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
+ 0x2e, 0x41, 0x64, 0x78, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x08, 0x61, 0x64, 0x78,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5d, 0x0a, 0x0b, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x18, 0x6b, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3a, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x73, 0x73,
+ 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65,
+ 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0a, 0x61, 0x73, 0x73, 0x65, 0x74, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x12, 0x88, 0x01, 0x0a, 0x17, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67,
+ 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x18, 0x95, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0a, 0x61, 0x73, 0x73, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x12, 0x88, 0x01, 0x0a, 0x17, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75,
- 0x70, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x95, 0x01,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75,
- 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
- 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x14, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f,
- 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xbe, 0x01, 0x0a,
- 0x26, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x6c, 0x69, 0x73,
- 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x69, 0x6c, 0x74, 0x65,
- 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x9b, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x68,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
- 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x69,
- 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75,
- 0x70, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c,
- 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x21, 0x61, 0x73, 0x73, 0x65,
- 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f,
- 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x73, 0x0a,
- 0x11, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x18, 0x94, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x44, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65,
- 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
- 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
- 0x00, 0x52, 0x0f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x12, 0x80, 0x01, 0x0a, 0x15, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74,
- 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x99, 0x01, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x4a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73,
- 0x73, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73,
- 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
- 0x00, 0x52, 0x12, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7c, 0x0a, 0x14, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73,
- 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x9a, 0x01,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x48, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4c,
- 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73,
- 0x65, 0x74, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
- 0x52, 0x11, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x12, 0x6b, 0x0a, 0x0f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74,
- 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x98, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e,
- 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
- 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
- 0x00, 0x52, 0x0d, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x12, 0x65, 0x0a, 0x0d, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47,
+ 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
+ 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73,
+ 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x14, 0x61, 0x73, 0x73, 0x65, 0x74,
+ 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
+ 0xbe, 0x01, 0x0a, 0x26, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f,
+ 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x69,
+ 0x6c, 0x74, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x9b, 0x01, 0x20, 0x01, 0x28,
+ 0x0e, 0x32, 0x68, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x69,
+ 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47,
+ 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x72, 0x6f, 0x75, 0x70,
+ 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x21, 0x61,
+ 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67,
+ 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x6c, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x12, 0x73, 0x0a, 0x11, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x94, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x44, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41,
+ 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
+ 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x80, 0x01, 0x0a, 0x15, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f,
+ 0x73, 0x65, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
+ 0x99, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
+ 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65,
+ 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
+ 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x48, 0x00, 0x52, 0x12, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x41, 0x73,
+ 0x73, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7c, 0x0a, 0x14, 0x61, 0x73, 0x73, 0x65,
+ 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x18, 0x9a, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x48, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e,
- 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69,
- 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0c, 0x62, 0x69, 0x64, 0x64, 0x69,
- 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x8e, 0x01, 0x0a, 0x18, 0x63, 0x61, 0x6d, 0x70,
- 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x52, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53,
+ 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
+ 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x48, 0x00, 0x52, 0x11, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e,
+ 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6b, 0x0a, 0x0f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f,
+ 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x98, 0x01, 0x20, 0x01, 0x28, 0x0e,
+ 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x61, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x12, 0x65, 0x0a, 0x0d, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3e, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x61, 0x6d,
- 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x42, 0x69, 0x64,
+ 0x64, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x69,
+ 0x64, 0x64, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0c, 0x62, 0x69,
+ 0x64, 0x64, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x8e, 0x01, 0x0a, 0x18, 0x63,
+ 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f,
+ 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x52, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e,
+ 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f,
+ 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61,
+ 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x48, 0x00, 0x52, 0x16, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69,
+ 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xa4, 0x01, 0x0a, 0x1e,
+ 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xa6,
+ 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
+ 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e,
+ 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e,
- 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
- 0x52, 0x16, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72,
- 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xa4, 0x01, 0x0a, 0x1e, 0x63, 0x61, 0x6d,
- 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
- 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xa6, 0x01, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x5c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x48, 0x00, 0x52, 0x1b, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x76,
- 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
- 0x93, 0x01, 0x0a, 0x19, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x75, 0x73,
- 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xa0, 0x01,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x54, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43,
- 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
- 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f,
- 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x17, 0x63, 0x61,
- 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x82, 0x01, 0x0a, 0x15, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
- 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
- 0x1f, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
- 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69,
- 0x6f, 0x6e, 0x53, 0x69, 0x7a, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
- 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x69, 0x7a, 0x65, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x13, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f,
- 0x6e, 0x53, 0x69, 0x7a, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xbd, 0x01, 0x0a, 0x25, 0x63,
- 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x63,
- 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x18, 0xa5, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x68, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x6f,
- 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x61, 0x6d, 0x70,
- 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
- 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f,
- 0x61, 0x6c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x21, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43,
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x76, 0x0a, 0x12, 0x63, 0x6f,
- 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x18, 0x6d, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79,
- 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f,
- 0x75, 0x6e, 0x74, 0x72, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
- 0x52, 0x10, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x12, 0x6d, 0x0a, 0x0f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x20, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x42, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x72,
- 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
- 0x2e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
- 0x00, 0x52, 0x0e, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x12, 0x9c, 0x01, 0x0a, 0x1c, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x63, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x18, 0x96, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x58, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74,
- 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x19, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x12, 0x93, 0x01, 0x0a, 0x19, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x63, 0x75,
- 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x9e,
- 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x54, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
- 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72,
- 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
- 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74,
- 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x17, 0x63,
- 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65,
- 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x69, 0x0a, 0x0e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d,
- 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x5a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
- 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
- 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x48, 0x00, 0x52, 0x0d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x12, 0x97, 0x01, 0x0a, 0x1a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72,
- 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x18, 0x97, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x56, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1b, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43,
+ 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x12, 0x93, 0x01, 0x0a, 0x19, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f,
+ 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x18, 0xa0, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x54, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
- 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65,
- 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
- 0x00, 0x52, 0x18, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74,
- 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x59, 0x0a, 0x0a, 0x64,
- 0x61, 0x74, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x21, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x38, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x73, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
- 0x44, 0x61, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x09, 0x64, 0x61, 0x74,
- 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6e, 0x0a, 0x10, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x72,
- 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x22, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x42, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0e, 0x64, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x67,
- 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x69, 0x0a, 0x0e, 0x64, 0x69, 0x73, 0x74, 0x69, 0x6e,
- 0x63, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x23, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69,
+ 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75,
+ 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
+ 0x17, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69,
+ 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x82, 0x01, 0x0a, 0x15, 0x63, 0x6f, 0x6c,
+ 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x6f, 0x6c, 0x6c, 0x65,
+ 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x69, 0x7a, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
+ 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x69, 0x7a,
+ 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x13, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
+ 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x69, 0x7a, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xbd, 0x01,
+ 0x0a, 0x25, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61,
+ 0x6c, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69,
+ 0x67, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xa5, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x68,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
- 0x2e, 0x44, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x63, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
- 0x75, 0x6d, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x63, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x48, 0x00, 0x52, 0x0d, 0x64, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x63, 0x74, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x12, 0xa3, 0x01, 0x0a, 0x1e, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69,
- 0x62, 0x75, 0x74, 0x65, 0x5f, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x18, 0x24, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5c, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43,
+ 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
+ 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x43, 0x6f, 0x6e,
+ 0x66, 0x69, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x21, 0x63, 0x6f, 0x6e, 0x76,
+ 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69,
+ 0x67, 0x6e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x76, 0x0a,
+ 0x12, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x18, 0x6d, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x6f, 0x75, 0x6e,
+ 0x74, 0x72, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
+ 0x2e, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x48, 0x00, 0x52, 0x10, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x43, 0x6f, 0x64, 0x65,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6d, 0x0a, 0x0f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69,
+ 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x20, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x42,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x2e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
+ 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0e, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x12, 0x9c, 0x01, 0x0a, 0x1c, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f,
+ 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x96, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x58, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43,
+ 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47,
+ 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73,
+ 0x74, 0x6f, 0x6d, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61,
+ 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x19, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d,
+ 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x12, 0x93, 0x01, 0x0a, 0x19, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72,
+ 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x18, 0x9e, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x54, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f,
+ 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43,
+ 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
+ 0x52, 0x17, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
+ 0x69, 0x7a, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x69, 0x0a, 0x0e, 0x63, 0x75, 0x73,
+ 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x5a, 0x20, 0x01, 0x28,
+ 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x12, 0x97, 0x01, 0x0a, 0x1a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69,
+ 0x7a, 0x65, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x18, 0x97, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x56, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x46, 0x65, 0x65,
- 0x64, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65,
- 0x6e, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65,
- 0x64, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65,
- 0x6e, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1b, 0x66, 0x65, 0x65, 0x64,
- 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e,
- 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x69, 0x0a, 0x0e, 0x66, 0x75, 0x6e, 0x63, 0x74,
- 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x25, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x73, 0x2e, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
- 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x48, 0x00, 0x52, 0x0d, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x12, 0x86, 0x01, 0x0a, 0x16, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
- 0x70, 0x61, 0x72, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x26, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x4e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61,
- 0x72, 0x73, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46,
- 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x73, 0x69, 0x6e, 0x67, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x14, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50,
- 0x61, 0x72, 0x73, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x51, 0x0a, 0x08, 0x69,
- 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x27, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x34, 0x2e,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x75, 0x73,
+ 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
+ 0x69, 0x7a, 0x65, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x48, 0x00, 0x52, 0x18, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x69, 0x7a, 0x65, 0x72,
+ 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x59,
+ 0x0a, 0x0a, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x21, 0x20, 0x01,
+ 0x28, 0x0e, 0x32, 0x38, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
+ 0x75, 0x6d, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x09,
+ 0x64, 0x61, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6e, 0x0a, 0x10, 0x64, 0x61, 0x74,
+ 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x22, 0x20,
+ 0x01, 0x28, 0x0e, 0x32, 0x42, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x52, 0x61, 0x6e,
+ 0x67, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0e, 0x64, 0x61, 0x74, 0x65, 0x52,
+ 0x61, 0x6e, 0x67, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x69, 0x0a, 0x0e, 0x64, 0x69, 0x73,
+ 0x74, 0x69, 0x6e, 0x63, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x23, 0x20, 0x01, 0x28,
+ 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x73, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x63, 0x74, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x63, 0x74, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x64, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x63, 0x74, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x12, 0xa3, 0x01, 0x0a, 0x1e, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x61, 0x74,
+ 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63,
+ 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x24, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5c, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e,
- 0x49, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x49, 0x64, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x07, 0x69, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5d,
- 0x0a, 0x0b, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x28, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x3a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
- 0x00, 0x52, 0x0a, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7a, 0x0a,
- 0x13, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x18, 0x6e, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x48, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4c, 0x61, 0x6e,
- 0x67, 0x75, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
- 0x75, 0x6d, 0x2e, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x11, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65,
- 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x76, 0x0a, 0x12, 0x6d, 0x65, 0x64,
- 0x69, 0x61, 0x5f, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
- 0x2a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
- 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x42, 0x75, 0x6e,
- 0x64, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x65, 0x64,
- 0x69, 0x61, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
- 0x10, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x12, 0x76, 0x0a, 0x12, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61,
- 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x74, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x46, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e,
+ 0x46, 0x65, 0x65, 0x64, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x65, 0x66,
+ 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
+ 0x46, 0x65, 0x65, 0x64, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x65, 0x66,
+ 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1b, 0x66,
+ 0x65, 0x65, 0x64, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x65, 0x66, 0x65,
+ 0x72, 0x65, 0x6e, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x69, 0x0a, 0x0e, 0x66, 0x75,
+ 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x25, 0x20, 0x01,
+ 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x86, 0x01, 0x0a, 0x16, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x18, 0x26, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
+ 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f,
+ 0x6e, 0x50, 0x61, 0x72, 0x73, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
+ 0x6d, 0x2e, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x73, 0x69, 0x6e,
+ 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x14, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x73, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x51,
+ 0x0a, 0x08, 0x69, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x27, 0x20, 0x01, 0x28, 0x0e,
+ 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x73, 0x2e, 0x49, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x49,
+ 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x07, 0x69, 0x64, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x12, 0x5d, 0x0a, 0x0b, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x18, 0x28, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
+ 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0a, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x12, 0x7a, 0x0a, 0x13, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x64,
+ 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x6e, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x48, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e,
- 0x4d, 0x65, 0x64, 0x69, 0x61, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x10, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x55, 0x70,
- 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6e, 0x0a, 0x10, 0x6d, 0x65, 0x64,
- 0x69, 0x61, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x56, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x42, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x46, 0x69, 0x6c, 0x65, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x46, 0x69,
- 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0e, 0x6d, 0x65, 0x64, 0x69, 0x61,
- 0x46, 0x69, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x83, 0x01, 0x0a, 0x15, 0x6d, 0x65,
- 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x5f, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x5f, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x18, 0xa2, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4c, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4d, 0x65, 0x72,
- 0x63, 0x68, 0x61, 0x6e, 0x74, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x43, 0x65, 0x6e,
- 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x13, 0x6d, 0x65, 0x72, 0x63,
- 0x68, 0x61, 0x6e, 0x74, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
- 0x71, 0x0a, 0x10, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x69, 0x65, 0x72, 0x5f, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x18, 0x2c, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x44, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4d, 0x75, 0x6c, 0x74,
- 0x69, 0x70, 0x6c, 0x69, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
- 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x69, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
- 0x00, 0x52, 0x0f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x69, 0x65, 0x72, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x12, 0x97, 0x01, 0x0a, 0x1b, 0x6e, 0x65, 0x77, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75,
- 0x72, 0x63, 0x65, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x18, 0x2d, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x56, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e,
+ 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x43, 0x6f,
+ 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x11, 0x6c, 0x61, 0x6e, 0x67, 0x75,
+ 0x61, 0x67, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x76, 0x0a, 0x12,
+ 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x5f, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x18, 0x2a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4e, 0x65, 0x77, 0x52, 0x65,
- 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4e, 0x65, 0x77, 0x52, 0x65, 0x73, 0x6f, 0x75,
- 0x72, 0x63, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x48, 0x00, 0x52, 0x18, 0x6e, 0x65, 0x77, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43,
- 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6a, 0x0a, 0x0f,
- 0x6e, 0x6f, 0x74, 0x5f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
- 0x2e, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
- 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4e, 0x6f, 0x74, 0x45, 0x6d, 0x70, 0x74, 0x79,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4e, 0x6f, 0x74, 0x45, 0x6d, 0x70,
- 0x74, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x6e, 0x6f, 0x74, 0x45, 0x6d,
- 0x70, 0x74, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x59, 0x0a, 0x0a, 0x6e, 0x75, 0x6c, 0x6c,
- 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x2f, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x38, 0x2e, 0x67,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61,
+ 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
+ 0x4d, 0x65, 0x64, 0x69, 0x61, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x48, 0x00, 0x52, 0x10, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x12, 0x76, 0x0a, 0x12, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x75, 0x70,
+ 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x74, 0x20, 0x01, 0x28, 0x0e,
+ 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x73, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x55, 0x70, 0x6c,
+ 0x6f, 0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x10, 0x6d, 0x65, 0x64, 0x69,
+ 0x61, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6e, 0x0a, 0x10,
+ 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x18, 0x56, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x42, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
+ 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x46, 0x69,
+ 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x65, 0x64, 0x69,
+ 0x61, 0x46, 0x69, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0e, 0x6d, 0x65,
+ 0x64, 0x69, 0x61, 0x46, 0x69, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x83, 0x01, 0x0a,
+ 0x15, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x5f, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72,
+ 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xa2, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4c, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e,
+ 0x4d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74,
+ 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x13, 0x6d,
+ 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x12, 0x71, 0x0a, 0x10, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x69, 0x65, 0x72,
+ 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x2c, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x44, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4e,
- 0x75, 0x6c, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4e, 0x75, 0x6c,
- 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x09, 0x6e, 0x75, 0x6c, 0x6c, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x12, 0x69, 0x0a, 0x0e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x5f,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x30, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4d,
+ 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x69, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
+ 0x75, 0x6d, 0x2e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x69, 0x65, 0x72, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x69, 0x65, 0x72,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x97, 0x01, 0x0a, 0x1b, 0x6e, 0x65, 0x77, 0x5f, 0x72, 0x65,
+ 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x2d, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x56, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4f, 0x70,
- 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
- 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
- 0x0d, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5d,
- 0x0a, 0x0b, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x31, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x3a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
- 0x00, 0x52, 0x0a, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x81, 0x01,
- 0x0a, 0x14, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x3a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4c, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x52,
- 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x13, 0x72, 0x65,
- 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x12, 0xb3, 0x01, 0x0a, 0x21, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xb4, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x64,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4e, 0x65,
+ 0x77, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4e, 0x65, 0x77, 0x52, 0x65,
+ 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x18, 0x6e, 0x65, 0x77, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72,
+ 0x63, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
+ 0x6a, 0x0a, 0x0f, 0x6e, 0x6f, 0x74, 0x5f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x5f, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x18, 0x2e, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4e, 0x6f, 0x74, 0x45, 0x6d,
+ 0x70, 0x74, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4e, 0x6f, 0x74,
+ 0x45, 0x6d, 0x70, 0x74, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x6e, 0x6f,
+ 0x74, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x59, 0x0a, 0x0a, 0x6e,
+ 0x75, 0x6c, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x2f, 0x20, 0x01, 0x28, 0x0e, 0x32,
+ 0x38, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x73, 0x2e, 0x4e, 0x75, 0x6c, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
+ 0x4e, 0x75, 0x6c, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x09, 0x6e, 0x75, 0x6c,
+ 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x69, 0x0a, 0x0e, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74,
+ 0x6f, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x30, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
- 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53,
- 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
+ 0x75, 0x6d, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x48, 0x00, 0x52, 0x0d, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x12, 0x5d, 0x0a, 0x0b, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x18, 0x31, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
+ 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0a, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x12, 0x81, 0x01, 0x0a, 0x14, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x3a, 0x20, 0x01, 0x28, 0x0e, 0x32,
+ 0x4c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
+ 0x13, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x12, 0xb3, 0x01, 0x0a, 0x21, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
+ 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70,
+ 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xb4, 0x01, 0x20, 0x01, 0x28,
+ 0x0e, 0x32, 0x64, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69,
+ 0x6f, 0x6e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69,
- 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x72, 0x0a, 0x11, 0x72, 0x65, 0x67, 0x69, 0x6f,
- 0x6e, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x33, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x44, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x43,
- 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0f, 0x72, 0x65, 0x67, 0x69,
- 0x6f, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x65, 0x0a, 0x0d, 0x73,
- 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x34, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x3e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0c, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x12, 0x7a, 0x0a, 0x13, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x66, 0x6f, 0x72,
- 0x6d, 0x61, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x35, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x48, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x73, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x46, 0x6f,
- 0x72, 0x6d, 0x61, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x11, 0x73, 0x74, 0x72,
- 0x69, 0x6e, 0x67, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7a,
- 0x0a, 0x13, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x5f,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x36, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x48, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1f, 0x72, 0x65, 0x63, 0x6f, 0x6d,
+ 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
+ 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x72, 0x0a, 0x11, 0x72, 0x65,
+ 0x67, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
+ 0x33, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x44, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
+ 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x43, 0x6f,
+ 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x67, 0x69,
+ 0x6f, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0f, 0x72,
+ 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x65,
+ 0x0a, 0x0d, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
+ 0x34, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
+ 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0c, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7a, 0x0a, 0x13, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f,
+ 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x35, 0x20, 0x01,
+ 0x28, 0x0e, 0x32, 0x48, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x46, 0x6f, 0x72, 0x6d, 0x61,
+ 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e,
+ 0x67, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x11,
+ 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x12, 0x7a, 0x0a, 0x13, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x6c, 0x65, 0x6e, 0x67,
+ 0x74, 0x68, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x36, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x48,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4c, 0x65, 0x6e,
+ 0x67, 0x74, 0x68, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x11, 0x73, 0x74, 0x72, 0x69,
+ 0x6e, 0x67, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x9f, 0x01,
+ 0x0a, 0x1d, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x65,
+ 0x73, 0x73, 0x5f, 0x64, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
+ 0x37, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
+ 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x44, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x44, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x48, 0x00, 0x52, 0x1a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63,
+ 0x63, 0x65, 0x73, 0x73, 0x44, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
+ 0x9b, 0x01, 0x0a, 0x1c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x61, 0x63, 0x63,
+ 0x65, 0x73, 0x73, 0x5f, 0x64, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x18, 0x38, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x58, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
+ 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63,
+ 0x65, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x44, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x41,
+ 0x63, 0x63, 0x65, 0x73, 0x73, 0x44, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x48, 0x00, 0x52, 0x19, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x41, 0x63, 0x63, 0x65,
+ 0x73, 0x73, 0x44, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xb4, 0x01,
+ 0x0a, 0x23, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74,
+ 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x65, 0x78, 0x63, 0x65, 0x65, 0x64, 0x65, 0x64, 0x5f,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x39, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x64, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x53, 0x74,
- 0x72, 0x69, 0x6e, 0x67, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
- 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x11, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4c,
- 0x65, 0x6e, 0x67, 0x74, 0x68, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x9f, 0x01, 0x0a, 0x1d, 0x6f,
- 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f,
- 0x64, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x37, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x5a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63,
- 0x63, 0x65, 0x73, 0x73, 0x44, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
- 0x6e, 0x75, 0x6d, 0x2e, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63,
- 0x65, 0x73, 0x73, 0x44, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
- 0x52, 0x1a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x65, 0x73,
- 0x73, 0x44, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x9b, 0x01, 0x0a,
- 0x1c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73,
- 0x5f, 0x64, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x38, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x58, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x41, 0x63,
- 0x63, 0x65, 0x73, 0x73, 0x44, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
- 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x41, 0x63, 0x63, 0x65,
- 0x73, 0x73, 0x44, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
- 0x19, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x44,
- 0x65, 0x6e, 0x69, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xb4, 0x01, 0x0a, 0x23, 0x72,
- 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x69,
- 0x6d, 0x69, 0x74, 0x5f, 0x65, 0x78, 0x63, 0x65, 0x65, 0x64, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x18, 0x39, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x64, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75,
- 0x72, 0x63, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x45, 0x78, 0x63,
- 0x65, 0x65, 0x64, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52,
- 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6d, 0x69,
- 0x74, 0x45, 0x78, 0x63, 0x65, 0x65, 0x64, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
- 0x52, 0x1f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x4c,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x52, 0x65,
+ 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6d, 0x69, 0x74,
+ 0x45, 0x78, 0x63, 0x65, 0x65, 0x64, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
+ 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x4c,
0x69, 0x6d, 0x69, 0x74, 0x45, 0x78, 0x63, 0x65, 0x65, 0x64, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x12, 0xab, 0x01, 0x0a, 0x20, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x76, 0x69,
- 0x64, 0x65, 0x6f, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x75, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x60, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x59,
- 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x52, 0x65, 0x67, 0x69, 0x73,
- 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
- 0x2e, 0x59, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x52, 0x65, 0x67,
- 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
- 0x52, 0x1d, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x52, 0x65,
- 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
- 0x94, 0x01, 0x0a, 0x1b, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x62, 0x69, 0x64,
- 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
- 0x3b, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x54, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
- 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42,
- 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
- 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f,
- 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x17, 0x61,
- 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65,
- 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x65, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78,
- 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x3c, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3e, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e,
- 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
- 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
- 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5d, 0x0a,
- 0x0b, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x3d, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x3a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
- 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
- 0x52, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6e, 0x0a, 0x10,
- 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x18, 0x3e, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x42, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53,
- 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x68, 0x61, 0x72,
- 0x65, 0x64, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0e, 0x73, 0x68,
- 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x86, 0x01, 0x0a,
- 0x16, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f,
- 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x3f, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4e, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e,
- 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43,
- 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
- 0x14, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x8f, 0x01, 0x0a, 0x19, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69,
- 0x67, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x18, 0x40, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x52, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
+ 0x72, 0x48, 0x00, 0x52, 0x1f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6f, 0x75,
+ 0x6e, 0x74, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x45, 0x78, 0x63, 0x65, 0x65, 0x64, 0x65, 0x64, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x12, 0xab, 0x01, 0x0a, 0x20, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65,
+ 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x75, 0x20, 0x01, 0x28, 0x0e, 0x32,
+ 0x60, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x73, 0x2e, 0x59, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x52, 0x65,
+ 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
+ 0x6e, 0x75, 0x6d, 0x2e, 0x59, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f,
+ 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x48, 0x00, 0x52, 0x1d, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65,
+ 0x6f, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x12, 0x94, 0x01, 0x0a, 0x1b, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f,
+ 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x18, 0x3b, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x54, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f,
+ 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69,
+ 0x64, 0x4d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
+ 0x52, 0x17, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x42, 0x69, 0x64, 0x4d, 0x6f, 0x64, 0x69,
+ 0x66, 0x69, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x65, 0x0a, 0x0d, 0x63, 0x6f, 0x6e,
+ 0x74, 0x65, 0x78, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x3c, 0x20, 0x01, 0x28, 0x0e,
+ 0x32, 0x3e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
+ 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x48, 0x00, 0x52, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x12, 0x5d, 0x0a, 0x0b, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
+ 0x3d, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
+ 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x48, 0x00, 0x52, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
+ 0x6e, 0x0a, 0x10, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x18, 0x3e, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x42, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70,
- 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72,
+ 0x65, 0x64, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53,
0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
- 0x16, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53,
- 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x8a, 0x01, 0x0a, 0x17, 0x63, 0x6f, 0x6e, 0x76,
- 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x18, 0x41, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x50, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76,
- 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
- 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x15, 0x63,
+ 0x0e, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
+ 0x86, 0x01, 0x0a, 0x16, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65,
+ 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x3f, 0x20, 0x01, 0x28, 0x0e,
+ 0x32, 0x4e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69,
+ 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x68, 0x61, 0x72,
+ 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x48, 0x00, 0x52, 0x14, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72,
+ 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x8f, 0x01, 0x0a, 0x19, 0x63, 0x61, 0x6d,
+ 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74,
+ 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x40, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x52, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43,
+ 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69,
+ 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x48, 0x00, 0x52, 0x16, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x68, 0x61, 0x72,
+ 0x65, 0x64, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x8a, 0x01, 0x0a, 0x17, 0x63,
+ 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e,
+ 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x41, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x50, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43,
0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x12, 0xb3, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x75,
- 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x73, 0x20, 0x01, 0x28,
- 0x0e, 0x32, 0x64, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x64,
- 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
- 0x6f, 0x6e, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x55, 0x70, 0x6c, 0x6f,
- 0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1f, 0x63, 0x6f, 0x6e, 0x76, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
+ 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
+ 0x52, 0x15, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69,
+ 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xb3, 0x01, 0x0a, 0x22, 0x63, 0x6f, 0x6e, 0x76,
+ 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e,
+ 0x74, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x73,
+ 0x20, 0x01, 0x28, 0x0e, 0x32, 0x64, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
+ 0x6e, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x55, 0x70, 0x6c, 0x6f, 0x61,
+ 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65,
0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x55,
- 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xac, 0x01, 0x0a, 0x20, 0x63,
- 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d,
- 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
- 0x8f, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x60, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c,
- 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69, 0x61,
- 0x62, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1d, 0x63, 0x6f, 0x6e, 0x76,
+ 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1f, 0x63, 0x6f,
+ 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65,
+ 0x6e, 0x74, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xac, 0x01,
+ 0x0a, 0x20, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x75, 0x73,
+ 0x74, 0x6f, 0x6d, 0x5f, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x18, 0x8f, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x60, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76,
0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61, 0x72, 0x69,
- 0x61, 0x62, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x8a, 0x01, 0x0a, 0x17, 0x63, 0x6f,
- 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x6f, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x50, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x6f,
- 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
- 0x6f, 0x6e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
- 0x15, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x6c, 0x6f, 0x61,
- 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x98, 0x01, 0x0a, 0x1b, 0x63, 0x6f, 0x6e, 0x76, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65,
- 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x91, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x56, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e,
- 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
- 0x75, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e,
- 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x18, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x12, 0xa5, 0x01, 0x0a, 0x1f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
- 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x5f,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x92, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5c, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43,
- 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75,
- 0x6c, 0x65, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43,
- 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75,
- 0x6c, 0x65, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1b, 0x63, 0x6f,
- 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c,
- 0x65, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x61, 0x0a, 0x0c, 0x68, 0x65, 0x61,
- 0x64, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x42, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x3c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x73, 0x2e, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
- 0x6d, 0x2e, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
- 0x0b, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x69, 0x0a, 0x0e,
- 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x43,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73,
- 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61,
- 0x73, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7e, 0x0a, 0x14, 0x70, 0x6f, 0x6c, 0x69, 0x63,
- 0x79, 0x5f, 0x66, 0x69, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
- 0x44, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
- 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x46, 0x69,
- 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50,
- 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x46, 0x69, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x48, 0x00, 0x52, 0x12, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x46, 0x69, 0x6e, 0x64, 0x69,
- 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x59, 0x0a, 0x0a, 0x65, 0x6e, 0x75, 0x6d, 0x5f,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x46, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x38, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x45, 0x6e,
- 0x75, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x45, 0x6e, 0x75, 0x6d,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x09, 0x65, 0x6e, 0x75, 0x6d, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x12, 0x76, 0x0a, 0x12, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c,
- 0x61, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x47, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x46,
+ 0x61, 0x62, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f,
+ 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56, 0x61,
+ 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1d, 0x63,
+ 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x56,
+ 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x8a, 0x01, 0x0a,
+ 0x17, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x75, 0x70, 0x6c, 0x6f,
+ 0x61, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x6f, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x50,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
- 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61,
- 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x10, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72,
- 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x97, 0x01, 0x0a, 0x1b, 0x6b,
- 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x61, 0x6d, 0x70,
- 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x48, 0x20, 0x01, 0x28, 0x0e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x6c, 0x6f, 0x61,
+ 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65,
+ 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x48, 0x00, 0x52, 0x15, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x55, 0x70,
+ 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x98, 0x01, 0x0a, 0x1b, 0x63, 0x6f,
+ 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72,
+ 0x75, 0x6c, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x91, 0x01, 0x20, 0x01, 0x28, 0x0e,
0x32, 0x56, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61,
- 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
- 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61,
- 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x18, 0x6b, 0x65, 0x79, 0x77,
- 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x12, 0xb5, 0x01, 0x0a, 0x23, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64,
- 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6b,
- 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x84, 0x01, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x64, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c,
+ 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
+ 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52,
+ 0x75, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x18, 0x63, 0x6f, 0x6e, 0x76,
+ 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x12, 0xa5, 0x01, 0x0a, 0x1f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, 0x6c, 0x65, 0x5f, 0x73,
+ 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x92, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
+ 0x5c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75,
+ 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
+ 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75,
+ 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
+ 0x1b, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65,
+ 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x61, 0x0a, 0x0c,
+ 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x42, 0x20, 0x01,
+ 0x28, 0x0e, 0x32, 0x3c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x48, 0x00, 0x52, 0x0b, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
+ 0x69, 0x0a, 0x0e, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x18, 0x43, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61,
+ 0x73, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x61, 0x74, 0x61,
+ 0x62, 0x61, 0x73, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x64, 0x61, 0x74,
+ 0x61, 0x62, 0x61, 0x73, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7e, 0x0a, 0x14, 0x70, 0x6f,
+ 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x66, 0x69, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x18, 0x44, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63,
+ 0x79, 0x46, 0x69, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
+ 0x6d, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x46, 0x69, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x12, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x46, 0x69,
+ 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x59, 0x0a, 0x0a, 0x65, 0x6e,
+ 0x75, 0x6d, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x46, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x38,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x45,
+ 0x6e, 0x75, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x09, 0x65, 0x6e, 0x75, 0x6d,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x76, 0x0a, 0x12, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64,
+ 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x47, 0x20, 0x01, 0x28,
+ 0x0e, 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64,
+ 0x50, 0x6c, 0x61, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x10, 0x6b, 0x65, 0x79,
+ 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x97, 0x01,
+ 0x0a, 0x1b, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63,
+ 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x48, 0x20,
+ 0x01, 0x28, 0x0e, 0x32, 0x56, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61,
- 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72,
- 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4b, 0x65, 0x79,
- 0x77, 0x6f, 0x72, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1f, 0x6b, 0x65, 0x79,
+ 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
+ 0x75, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61,
+ 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x18, 0x6b,
+ 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69,
+ 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xb5, 0x01, 0x0a, 0x23, 0x6b, 0x65, 0x79, 0x77,
+ 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67,
+ 0x6e, 0x5f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
+ 0x84, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x64, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
+ 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64,
+ 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4b, 0x65, 0x79, 0x77,
+ 0x6f, 0x72, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4b, 0x65, 0x79,
0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e,
- 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x94, 0x01, 0x0a,
- 0x1b, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x61, 0x64,
- 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x4a, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x54, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e,
- 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
- 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72,
- 0x6f, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x17, 0x6b, 0x65, 0x79, 0x77,
- 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x12, 0xb2, 0x01, 0x0a, 0x23, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f,
- 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x6b, 0x65,
- 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x85, 0x01, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x62, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e,
- 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50,
+ 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1f,
+ 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61,
+ 0x69, 0x67, 0x6e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
+ 0x94, 0x01, 0x0a, 0x1b, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e,
+ 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
+ 0x4a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x54, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
+ 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50,
+ 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
+ 0x6e, 0x75, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41,
+ 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x17, 0x6b,
+ 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75,
+ 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xb2, 0x01, 0x0a, 0x23, 0x6b, 0x65, 0x79, 0x77, 0x6f,
+ 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70,
+ 0x5f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x85,
+ 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x62, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
+ 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50,
0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72,
- 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1e, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72,
- 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4b, 0x65, 0x79, 0x77,
- 0x6f, 0x72, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x87, 0x01, 0x0a, 0x17, 0x6b, 0x65, 0x79,
- 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x69, 0x64, 0x65, 0x61, 0x5f, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x18, 0x4c, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4e, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4b, 0x65, 0x79,
- 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x64, 0x65, 0x61, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61,
- 0x6e, 0x49, 0x64, 0x65, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x14, 0x6b, 0x65,
- 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x64, 0x65, 0x61, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x12, 0x9f, 0x01, 0x0a, 0x1d, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x62,
- 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x5f, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x18, 0x4d, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5a, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x63, 0x63,
- 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73,
- 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x63, 0x63, 0x6f,
- 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61,
- 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1a, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
- 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6a, 0x0a, 0x0f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73,
- 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x4e, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e,
+ 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f,
+ 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4b, 0x65, 0x79,
+ 0x77, 0x6f, 0x72, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1e, 0x6b, 0x65, 0x79,
+ 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4b,
+ 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x87, 0x01, 0x0a, 0x17,
+ 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x69, 0x64, 0x65,
+ 0x61, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x4c, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4e, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e,
- 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
- 0x6d, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
- 0x00, 0x52, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x12, 0x77, 0x0a, 0x12, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74,
- 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x88, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x46, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e,
+ 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x64, 0x65, 0x61, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64,
+ 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x64, 0x65, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
+ 0x14, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x64, 0x65, 0x61,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x9f, 0x01, 0x0a, 0x1d, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e,
+ 0x74, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61,
+ 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x4d, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5a, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e,
- 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x10, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45,
- 0x76, 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7a, 0x0a, 0x13, 0x63, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x18, 0x4f, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x48, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x53,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x48, 0x00, 0x52, 0x11, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x59, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x18, 0x50, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x38, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x09, 0x66, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x12, 0xb8, 0x01, 0x0a, 0x24, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f,
- 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x5f, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74,
- 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x51, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x66, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x73, 0x2e, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74,
- 0x61, 0x6e, 0x74, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74,
- 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69,
- 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x20, 0x67, 0x65, 0x6f, 0x54, 0x61,
- 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x53, 0x75, 0x67, 0x67,
- 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7e, 0x0a, 0x14, 0x63,
- 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x64, 0x72, 0x61, 0x66, 0x74, 0x5f, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x18, 0x52, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e,
+ 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f,
+ 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41,
+ 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70,
+ 0x6f, 0x73, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1a, 0x61, 0x63, 0x63,
+ 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73,
+ 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6a, 0x0a, 0x0f, 0x75, 0x73, 0x65, 0x72, 0x5f,
+ 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x4e, 0x20, 0x01, 0x28, 0x0e,
+ 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x12, 0x77, 0x0a, 0x12, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x65, 0x76,
+ 0x65, 0x6e, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x88, 0x01, 0x20, 0x01, 0x28, 0x0e,
+ 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x73, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x76,
+ 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x10, 0x63, 0x68, 0x61, 0x6e,
+ 0x67, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7a, 0x0a, 0x13,
+ 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x18, 0x4f, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x48, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70,
- 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
- 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x12, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67,
- 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6a, 0x0a, 0x0f, 0x66,
- 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x53,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65,
- 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74,
- 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5d, 0x0a, 0x0b, 0x6c, 0x61, 0x62, 0x65, 0x6c,
- 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x54, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3a, 0x2e, 0x67,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x68, 0x61, 0x6e,
+ 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
+ 0x6d, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x11, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61,
+ 0x74, 0x75, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x59, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64,
+ 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x50, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x38, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4c,
- 0x61, 0x62, 0x65, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x61,
- 0x62, 0x65, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0a, 0x6c, 0x61, 0x62, 0x65,
- 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7a, 0x0a, 0x13, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e,
- 0x67, 0x5f, 0x73, 0x65, 0x74, 0x75, 0x70, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x57, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x48, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74,
- 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x69, 0x6c, 0x6c,
- 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
- 0x11, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x12, 0x93, 0x01, 0x0a, 0x1a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f,
- 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x18, 0x58, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x54, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x46,
+ 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65,
+ 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x09, 0x66, 0x65, 0x65, 0x64, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x12, 0xb8, 0x01, 0x0a, 0x24, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67,
+ 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x5f, 0x73, 0x75, 0x67, 0x67,
+ 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x51, 0x20, 0x01,
+ 0x28, 0x0e, 0x32, 0x66, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f,
+ 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72,
+ 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x53, 0x75, 0x67, 0x67, 0x65,
+ 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x20, 0x67, 0x65,
+ 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x53,
+ 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7e,
+ 0x0a, 0x14, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x64, 0x72, 0x61, 0x66, 0x74,
+ 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x52, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4a, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43,
+ 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72,
+ 0x61, 0x66, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x12, 0x63, 0x61, 0x6d, 0x70,
+ 0x61, 0x69, 0x67, 0x6e, 0x44, 0x72, 0x61, 0x66, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6a,
+ 0x0a, 0x0f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x18, 0x53, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
- 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c,
- 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
- 0x17, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c,
- 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x97, 0x01, 0x0a, 0x1b, 0x63, 0x75, 0x73,
- 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x6c, 0x69,
- 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x5b, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x56,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74,
+ 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64,
+ 0x49, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x66, 0x65, 0x65,
+ 0x64, 0x49, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x5d, 0x0a, 0x0b, 0x6c, 0x61,
+ 0x62, 0x65, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x54, 0x20, 0x01, 0x28, 0x0e, 0x32,
+ 0x3a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x73, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
+ 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0a, 0x6c,
+ 0x61, 0x62, 0x65, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7a, 0x0a, 0x13, 0x62, 0x69, 0x6c,
+ 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x75, 0x70, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x18, 0x57, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x48, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
+ 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x42, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67,
+ 0x53, 0x65, 0x74, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42,
+ 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x48, 0x00, 0x52, 0x11, 0x62, 0x69, 0x6c, 0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x93, 0x01, 0x0a, 0x1a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d,
+ 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x18, 0x58, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x54, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x75, 0x73,
+ 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
+ 0x72, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x48, 0x00, 0x52, 0x17, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x65,
+ 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x97, 0x01, 0x0a, 0x1b,
+ 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
+ 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x5b, 0x20, 0x01, 0x28,
+ 0x0e, 0x32, 0x56, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x61,
+ 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
- 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75,
- 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e,
- 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x18, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d,
- 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x12, 0x76, 0x0a, 0x12, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69,
- 0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x5c, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x46,
+ 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x18, 0x63, 0x75, 0x73,
+ 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x76, 0x0a, 0x12, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6d, 0x61,
+ 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x5c, 0x20, 0x01, 0x28,
+ 0x0e, 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70,
+ 0x70, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x10, 0x66, 0x65, 0x65,
+ 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7a, 0x0a,
+ 0x13, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x18, 0x5d, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x48, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x75, 0x73,
+ 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
+ 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x11, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72,
+ 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x77, 0x0a, 0x13, 0x61, 0x64, 0x5f,
+ 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x18, 0x5e, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
+ 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70,
+ 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64,
+ 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
+ 0x52, 0x10, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x12, 0x7a, 0x0a, 0x13, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x66,
+ 0x65, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x60, 0x20, 0x01, 0x28, 0x0e, 0x32,
+ 0x48, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e,
+ 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x11, 0x63, 0x61, 0x6d,
+ 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x82,
+ 0x01, 0x0a, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65,
+ 0x73, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x61, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4c,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
- 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e,
- 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x10, 0x66, 0x65, 0x65, 0x64, 0x4d, 0x61,
- 0x70, 0x70, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7a, 0x0a, 0x13, 0x63, 0x75,
- 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x18, 0x5d, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x48, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49,
+ 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x13,
+ 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x12, 0x92, 0x01, 0x0a, 0x19, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e,
+ 0x5f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x18, 0x62, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x54, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d,
- 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
- 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x48, 0x00, 0x52, 0x11, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x46, 0x65, 0x65,
- 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x77, 0x0a, 0x13, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f,
- 0x75, 0x70, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x5e, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65,
- 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f,
- 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x10, 0x61,
- 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
- 0x7a, 0x0a, 0x13, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64,
- 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x60, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x48, 0x2e, 0x67,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69,
+ 0x67, 0x6e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78,
+ 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
+ 0x17, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d,
+ 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x8f, 0x01, 0x0a, 0x19, 0x65, 0x78, 0x74,
+ 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d,
+ 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x64, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x52, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43,
- 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x46, 0x65, 0x65,
- 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x11, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69,
- 0x67, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x82, 0x01, 0x0a, 0x15,
- 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x5f,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x61, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4c, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x75,
- 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65,
- 0x72, 0x65, 0x73, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x13, 0x63, 0x75, 0x73,
- 0x74, 0x6f, 0x6d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x12, 0x92, 0x01, 0x0a, 0x19, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x78,
- 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x62,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x54, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45,
- 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
- 0x75, 0x6d, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x70, 0x65, 0x72,
- 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x17, 0x63, 0x61,
- 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x8f, 0x01, 0x0a, 0x19, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
- 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x18, 0x64, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x52, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x45, 0x78, 0x74, 0x65,
- 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
- 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
- 0x16, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74,
- 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x76, 0x0a, 0x12, 0x61, 0x64, 0x5f, 0x70, 0x61,
- 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x65, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65,
- 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x50, 0x61, 0x72,
- 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x10, 0x61,
- 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
- 0x93, 0x01, 0x0a, 0x1a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x76, 0x61,
- 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x66,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x54, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x56,
- 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
- 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x56, 0x61, 0x6c, 0x69, 0x64,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x17, 0x66, 0x65,
- 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x8a, 0x01, 0x0a, 0x17, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
- 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x18, 0x67, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x50, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x45,
+ 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
+ 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x48, 0x00, 0x52, 0x16, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65, 0x65,
+ 0x64, 0x49, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x76, 0x0a, 0x12, 0x61, 0x64,
+ 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x18, 0x65, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
+ 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d,
+ 0x65, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64,
+ 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
+ 0x52, 0x10, 0x61, 0x64, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x12, 0x93, 0x01, 0x0a, 0x1a, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d,
+ 0x5f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x18, 0x66, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x54, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
- 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
- 0x6e, 0x75, 0x6d, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74,
- 0x74, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x15, 0x65, 0x78, 0x74,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74,
+ 0x65, 0x6d, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x56, 0x61,
+ 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
+ 0x17, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x8a, 0x01, 0x0a, 0x17, 0x65, 0x78, 0x74,
+ 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x18, 0x67, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x50, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x45, 0x78, 0x74,
0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x12, 0x78, 0x0a, 0x13, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f,
- 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x8c, 0x01, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d,
- 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x10, 0x66, 0x65, 0x65, 0x64,
- 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x89, 0x01, 0x0a,
- 0x18, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x6c,
- 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x8d, 0x01, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x4e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69,
- 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64,
- 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x48, 0x00, 0x52, 0x14, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c,
- 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x83, 0x01, 0x0a, 0x16, 0x66, 0x65, 0x65,
- 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x18, 0x68, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4c, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64,
- 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
- 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67,
- 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x13, 0x66, 0x65, 0x65, 0x64, 0x49,
- 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x86,
- 0x01, 0x0a, 0x16, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x76, 0x69, 0x6f, 0x6c, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x69, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x4e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63,
- 0x79, 0x56, 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
- 0x00, 0x52, 0x14, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x82, 0x01, 0x0a, 0x15, 0x70, 0x61, 0x72, 0x74,
- 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x18, 0x70, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x61,
- 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
- 0x6d, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x13, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c,
- 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xaf, 0x01, 0x0a,
- 0x21, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x18, 0x72, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x62, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63,
- 0x79, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d,
- 0x65, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x6f,
+ 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
+ 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x15,
+ 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x78, 0x0a, 0x13, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74,
+ 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x8c, 0x01, 0x20,
+ 0x01, 0x28, 0x0e, 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65,
+ 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49,
+ 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x10, 0x66,
+ 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
+ 0x89, 0x01, 0x0a, 0x18, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65,
+ 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x8d, 0x01, 0x20,
+ 0x01, 0x28, 0x0e, 0x32, 0x4e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65,
+ 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46,
+ 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x14, 0x66, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53,
+ 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x83, 0x01, 0x0a, 0x16,
+ 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74,
+ 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x68, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4c, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x46,
+ 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54,
+ 0x61, 0x72, 0x67, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x13, 0x66, 0x65,
+ 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x12, 0x86, 0x01, 0x0a, 0x16, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x76, 0x69, 0x6f,
+ 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x69, 0x20, 0x01,
+ 0x28, 0x0e, 0x32, 0x4e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x6f, 0x6c, 0x61,
+ 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x6f,
+ 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x48, 0x00, 0x52, 0x14, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x6f, 0x6c,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x82, 0x01, 0x0a, 0x15, 0x70,
+ 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x5f, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x18, 0x70, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4c, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x50, 0x61, 0x72,
+ 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c,
+ 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x13, 0x70, 0x61, 0x72, 0x74,
+ 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
+ 0xaf, 0x01, 0x0a, 0x21, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x76, 0x61, 0x6c, 0x69, 0x64,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x5f,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x72, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x62, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x50, 0x6f,
0x6c, 0x69, 0x63, 0x79, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61,
- 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1e,
- 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6e,
- 0x0a, 0x10, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x18, 0x76, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x42, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x53, 0x69, 0x7a, 0x65, 0x4c,
- 0x69, 0x6d, 0x69, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x69,
- 0x7a, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0e,
- 0x73, 0x69, 0x7a, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x94,
- 0x01, 0x0a, 0x1b, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f,
- 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6a, 0x6f, 0x62, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x77,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x54, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73,
- 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
- 0x75, 0x6d, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61,
- 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x17, 0x6f, 0x66,
- 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x83, 0x01, 0x0a, 0x15, 0x6e, 0x6f, 0x74, 0x5f, 0x61, 0x6c,
- 0x6c, 0x6f, 0x77, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
- 0x89, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4e, 0x6f, 0x74, 0x41, 0x6c, 0x6c, 0x6f,
- 0x77, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
- 0x2e, 0x4e, 0x6f, 0x74, 0x41, 0x6c, 0x6c, 0x6f, 0x77, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x64, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x13, 0x6e, 0x6f, 0x74, 0x41, 0x6c, 0x6c, 0x6f, 0x77,
- 0x6c, 0x69, 0x73, 0x74, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x76, 0x0a, 0x12, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x18, 0x79, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
+ 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
+ 0x00, 0x52, 0x1e, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x12, 0x6e, 0x0a, 0x10, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x76, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x42, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x53, 0x69,
+ 0x7a, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
+ 0x2e, 0x53, 0x69, 0x7a, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
+ 0x00, 0x52, 0x0e, 0x73, 0x69, 0x7a, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x12, 0x94, 0x01, 0x0a, 0x1b, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x75, 0x73,
+ 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6a, 0x6f, 0x62, 0x5f, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x18, 0x77, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x54, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
- 0x00, 0x52, 0x10, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x12, 0x7a, 0x0a, 0x13, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f,
- 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x7a, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x48, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x73, 0x2e, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63,
- 0x79, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x11, 0x63, 0x75,
- 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
- 0x71, 0x0a, 0x10, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x18, 0x7b, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x44, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x45, 0x78, 0x70, 0x65,
- 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
- 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
- 0x00, 0x52, 0x0f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x12, 0x8a, 0x01, 0x0a, 0x17, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x69, 0x6e,
- 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x7c,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x50, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76,
- 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
- 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x15, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73,
- 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
- 0x6e, 0x0a, 0x10, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x18, 0x7d, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x42, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e,
+ 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65,
+ 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
+ 0x17, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61,
+ 0x4a, 0x6f, 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x83, 0x01, 0x0a, 0x15, 0x6e, 0x6f, 0x74,
+ 0x5f, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x18, 0x89, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4c, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x52, 0x65, 0x61, 0x63,
- 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52,
- 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
- 0x0e, 0x72, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
- 0x65, 0x0a, 0x0d, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x18, 0x7e, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63,
- 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0c, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63,
- 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x86, 0x01, 0x0a, 0x16, 0x70, 0x61, 0x79, 0x6d, 0x65,
- 0x6e, 0x74, 0x73, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x18, 0x7f, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4e, 0x6f, 0x74, 0x41,
+ 0x6c, 0x6c, 0x6f, 0x77, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
+ 0x6e, 0x75, 0x6d, 0x2e, 0x4e, 0x6f, 0x74, 0x41, 0x6c, 0x6c, 0x6f, 0x77, 0x6c, 0x69, 0x73, 0x74,
+ 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x13, 0x6e, 0x6f, 0x74, 0x41, 0x6c,
+ 0x6c, 0x6f, 0x77, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x76,
+ 0x0a, 0x12, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x18, 0x79, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4d, 0x61, 0x6e,
+ 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
+ 0x6d, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x48, 0x00, 0x52, 0x10, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e,
+ 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7a, 0x0a, 0x13, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e,
+ 0x63, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x7a, 0x20,
+ 0x01, 0x28, 0x0e, 0x32, 0x48, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x6f,
+ 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x72, 0x72,
+ 0x65, 0x6e, 0x63, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
+ 0x11, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x12, 0x71, 0x0a, 0x10, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74,
+ 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x7b, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x44, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x45,
+ 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
+ 0x75, 0x6d, 0x2e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x8a, 0x01, 0x0a, 0x17, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73,
+ 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x18, 0x7c, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x50, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e,
- 0x74, 0x73, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
- 0x75, 0x6d, 0x2e, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x41, 0x63, 0x63, 0x6f, 0x75,
- 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x14, 0x70, 0x61, 0x79, 0x6d, 0x65,
- 0x6e, 0x74, 0x73, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
- 0x6b, 0x0a, 0x0f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x7a, 0x6f, 0x6e, 0x65, 0x5f, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x18, 0x80, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73,
+ 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
+ 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61,
+ 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x15, 0x61, 0x63, 0x63,
+ 0x65, 0x73, 0x73, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x12, 0x6e, 0x0a, 0x10, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x70, 0x6c, 0x61, 0x6e,
+ 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x7d, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x42, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x52,
+ 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
+ 0x6d, 0x2e, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x48, 0x00, 0x52, 0x0e, 0x72, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x12, 0x65, 0x0a, 0x0d, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x5f, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x18, 0x7e, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3e, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x54, 0x69, 0x6d, 0x65,
- 0x5a, 0x6f, 0x6e, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x69,
- 0x6d, 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x74,
- 0x69, 0x6d, 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6f, 0x0a, 0x10,
- 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x18, 0x81, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x42, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x49, 0x6e, 0x76, 0x6f,
+ 0x69, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x49, 0x6e, 0x76,
+ 0x6f, 0x69, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0c, 0x69, 0x6e, 0x76,
+ 0x6f, 0x69, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x86, 0x01, 0x0a, 0x16, 0x70, 0x61,
+ 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x18, 0x7f, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4e, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x50, 0x61, 0x79,
+ 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x41, 0x63,
+ 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x14, 0x70, 0x61,
+ 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x12, 0x6b, 0x0a, 0x0f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x7a, 0x6f, 0x6e, 0x65, 0x5f,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x80, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x54,
+ 0x69, 0x6d, 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
+ 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
+ 0x52, 0x0d, 0x74, 0x69, 0x6d, 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
+ 0x6f, 0x0a, 0x10, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x18, 0x81, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x42, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x73, 0x73,
+ 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
+ 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
+ 0x52, 0x0e, 0x61, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x12, 0x6b, 0x0a, 0x0f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x18, 0x82, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x55, 0x73, 0x65,
+ 0x72, 0x44, 0x61, 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x55,
+ 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d,
+ 0x75, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6b, 0x0a,
+ 0x0f, 0x62, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x6a, 0x6f, 0x62, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x18, 0x83, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c,
- 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73,
- 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0e, 0x61,
- 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6b, 0x0a,
- 0x0f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x18, 0x82, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a,
+ 0x6f, 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x61, 0x74, 0x63,
+ 0x68, 0x4a, 0x6f, 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x62, 0x61, 0x74,
+ 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x77, 0x0a, 0x12, 0x61, 0x63,
+ 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x18, 0x86, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61,
- 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x55, 0x73, 0x65, 0x72,
- 0x44, 0x61, 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x75, 0x73, 0x65,
- 0x72, 0x44, 0x61, 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6b, 0x0a, 0x0f, 0x62, 0x61,
- 0x74, 0x63, 0x68, 0x5f, 0x6a, 0x6f, 0x62, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x83, 0x01,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f,
- 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x62, 0x61, 0x74, 0x63, 0x68, 0x4a,
- 0x6f, 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x77, 0x0a, 0x12, 0x61, 0x63, 0x63, 0x6f, 0x75,
- 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x86, 0x01,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69,
- 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x63, 0x63, 0x6f,
- 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x10,
- 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x12, 0xb6, 0x01, 0x0a, 0x24, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x79,
- 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x61, 0x6e, 0x61, 0x6c, 0x79, 0x74, 0x69, 0x63, 0x73, 0x5f, 0x6c,
- 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x87, 0x01, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x64, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
- 0x72, 0x73, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x41, 0x70, 0x70,
- 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x74, 0x69, 0x63, 0x73, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74,
- 0x79, 0x41, 0x70, 0x70, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x74, 0x69, 0x63, 0x73, 0x4c, 0x69, 0x6e,
- 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1f, 0x74, 0x68, 0x69, 0x72, 0x64, 0x50,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
+ 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41,
+ 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
+ 0x00, 0x52, 0x10, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x12, 0xb6, 0x01, 0x0a, 0x24, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, 0x70, 0x61,
+ 0x72, 0x74, 0x79, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x61, 0x6e, 0x61, 0x6c, 0x79, 0x74, 0x69, 0x63,
+ 0x73, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x87, 0x01, 0x20,
+ 0x01, 0x28, 0x0e, 0x32, 0x64, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79,
+ 0x41, 0x70, 0x70, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x74, 0x69, 0x63, 0x73, 0x4c, 0x69, 0x6e, 0x6b,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50,
0x61, 0x72, 0x74, 0x79, 0x41, 0x70, 0x70, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x74, 0x69, 0x63, 0x73,
- 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x94, 0x01, 0x0a, 0x1a, 0x63, 0x75,
- 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65,
- 0x73, 0x73, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x8a, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x54, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63,
- 0x63, 0x65, 0x73, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75,
- 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x17, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
- 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x12, 0x83, 0x01, 0x0a, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61, 0x75, 0x64, 0x69,
- 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x8b, 0x01, 0x20, 0x01, 0x28,
- 0x0e, 0x32, 0x4c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e,
- 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74,
- 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
- 0x00, 0x52, 0x13, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63,
- 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6a, 0x0a, 0x0e, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e,
- 0x63, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xa4, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
- 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x48, 0x00, 0x52, 0x0d, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x12, 0x90, 0x01, 0x0a, 0x19, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65,
- 0x72, 0x6d, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x18, 0xae, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x52, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x54, 0x65, 0x72, 0x6d, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x49,
- 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x16, 0x73,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7f, 0x0a, 0x14, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63,
- 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x93, 0x01,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70,
- 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x6d,
- 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x48, 0x00, 0x52, 0x12, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67,
- 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7f, 0x0a, 0x14, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69,
- 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x72, 0x6d, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x9c,
- 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
- 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65,
- 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x45,
- 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x48, 0x00, 0x52, 0x12, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41,
- 0x72, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x8b, 0x01, 0x0a, 0x17, 0x61, 0x75, 0x64, 0x69,
- 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x18, 0xa7, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x50, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1f, 0x74, 0x68, 0x69,
+ 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x41, 0x70, 0x70, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x74,
+ 0x69, 0x63, 0x73, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x94, 0x01, 0x0a,
+ 0x1a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x61,
+ 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x8a, 0x01, 0x20, 0x01,
+ 0x28, 0x0e, 0x32, 0x54, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65,
+ 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
+ 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63,
+ 0x65, 0x73, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x17, 0x63, 0x75, 0x73, 0x74,
+ 0x6f, 0x6d, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x12, 0x83, 0x01, 0x0a, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x61,
+ 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x8b, 0x01,
+ 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64,
+ 0x69, 0x65, 0x6e, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43,
+ 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x48, 0x00, 0x52, 0x13, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, 0x75, 0x64, 0x69,
+ 0x65, 0x6e, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6a, 0x0a, 0x0e, 0x61, 0x75, 0x64,
+ 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xa4, 0x01, 0x20, 0x01,
+ 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x90, 0x01, 0x0a, 0x19, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68,
+ 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x18, 0xae, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x52, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x75, 0x64,
- 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49,
- 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x15,
- 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x77, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
- 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xa9, 0x01, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63,
- 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x10, 0x70, 0x72,
- 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xf1,
- 0x01, 0x0a, 0x34, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x73, 0x6b, 0x5f, 0x61,
- 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72,
- 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x73, 0x63, 0x68, 0x65, 0x6d,
- 0x61, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xaa, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x80,
- 0x01, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
- 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65,
- 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56,
- 0x61, 0x6c, 0x75, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
- 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x6b, 0x41, 0x64,
- 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f,
- 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x48, 0x00, 0x52, 0x2d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x6b, 0x41,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x53, 0x65, 0x61,
+ 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65,
+ 0x72, 0x6d, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00,
+ 0x52, 0x16, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x49, 0x6e, 0x73, 0x69,
+ 0x67, 0x68, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7f, 0x0a, 0x14, 0x73, 0x6d, 0x61, 0x72,
+ 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x18, 0x93, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43,
+ 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
+ 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x12, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70,
+ 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x7f, 0x0a, 0x14, 0x65, 0x78, 0x70,
+ 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x72, 0x6d, 0x5f, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x18, 0x9c, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x45, 0x78, 0x70, 0x65, 0x72,
+ 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
+ 0x6d, 0x2e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x12, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65,
+ 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x8b, 0x01, 0x0a, 0x17, 0x61,
+ 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73,
+ 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xa7, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x50, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e,
+ 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e,
+ 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48,
+ 0x00, 0x52, 0x15, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67,
+ 0x68, 0x74, 0x73, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x77, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x64,
+ 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xa9,
+ 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x46, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
+ 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c,
+ 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f,
+ 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
+ 0x10, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x12, 0xf1, 0x01, 0x0a, 0x34, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x73,
+ 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x63, 0x6f, 0x6e,
+ 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x73, 0x63,
+ 0x68, 0x65, 0x6d, 0x61, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xaa, 0x01, 0x20, 0x01, 0x28,
+ 0x0e, 0x32, 0x80, 0x01, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53, 0x6b, 0x41,
0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69,
0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x12, 0x6a, 0x0a, 0x0e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x65,
- 0x72, 0x72, 0x6f, 0x72, 0x18, 0xab, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x75,
- 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
- 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52,
- 0x0d, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x8c,
- 0x01, 0x0a, 0x18, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73,
- 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xb0, 0x01, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x50, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53,
- 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41,
- 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x15, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f,
- 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xa0, 0x01,
- 0x0a, 0x1d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x69,
- 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18,
- 0xb1, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
- 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c,
- 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1a, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e,
- 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x12, 0xa0, 0x01, 0x0a, 0x1d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x69,
- 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x18, 0xb2, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
+ 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x53,
+ 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72,
+ 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x2d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72,
+ 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x43, 0x6f, 0x6e, 0x76, 0x65,
+ 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x53, 0x63, 0x68, 0x65, 0x6d, 0x61,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x6a, 0x0a, 0x0e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63,
+ 0x79, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xab, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x40,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x2e, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e,
+ 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x48, 0x00, 0x52, 0x0d, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x12, 0x8c, 0x01, 0x0a, 0x18, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75,
+ 0x70, 0x5f, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xb0,
+ 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x50, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
+ 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f,
+ 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
+ 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e,
+ 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x15, 0x61, 0x73, 0x73, 0x65, 0x74,
+ 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x12, 0xa0, 0x01, 0x0a, 0x1d, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x69, 0x6e,
+ 0x6b, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x18, 0xb1, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5a, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74,
- 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61,
- 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f,
- 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
- 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x12, 0xa0, 0x01, 0x0a, 0x1d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64,
+ 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75,
+ 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1a, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
+ 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x12, 0xa0, 0x01, 0x0a, 0x1d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72,
0x5f, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xb3, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5a, 0x2e, 0x67,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xb2, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5a, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43,
+ 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65,
+ 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x75,
+ 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47,
+ 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1a, 0x63, 0x75, 0x73, 0x74,
+ 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61,
+ 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xa0, 0x01, 0x0a, 0x1d, 0x63, 0x61, 0x6d, 0x70, 0x61,
+ 0x69, 0x67, 0x6e, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x5f, 0x67, 0x6f,
+ 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xb3, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
+ 0x5a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79,
+ 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
+ 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63,
+ 0x6c, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1a, 0x63,
0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65,
- 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x61,
- 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47,
- 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1a, 0x63, 0x61, 0x6d, 0x70,
- 0x61, 0x69, 0x67, 0x6e, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x47, 0x6f, 0x61,
- 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x9b, 0x01, 0x0a, 0x1b, 0x69, 0x64, 0x65, 0x6e, 0x74,
- 0x69, 0x74, 0x79, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xb5, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x58, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e,
- 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x49, 0x64,
+ 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x9b, 0x01, 0x0a, 0x1b, 0x69, 0x64,
+ 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74,
+ 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xb5, 0x01, 0x20, 0x01, 0x28, 0x0e,
+ 0x32, 0x58, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x73, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66,
+ 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
+ 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x19, 0x69, 0x64,
0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x19, 0x69, 0x64, 0x65, 0x6e, 0x74,
- 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45,
- 0x72, 0x72, 0x6f, 0x72, 0x42, 0x0c, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f,
- 0x64, 0x65, 0x22, 0xd8, 0x01, 0x0a, 0x0d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x4c, 0x6f, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x6f, 0x0a, 0x13, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x70, 0x61,
- 0x74, 0x68, 0x5f, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28,
- 0x0b, 0x32, 0x3f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x73, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x61, 0x74, 0x68, 0x45, 0x6c, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x52, 0x11, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x61, 0x74, 0x68, 0x45, 0x6c, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x1a, 0x56, 0x0a, 0x10, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x61,
- 0x74, 0x68, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x65,
- 0x6c, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x66,
- 0x69, 0x65, 0x6c, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x05, 0x69, 0x6e, 0x64, 0x65,
- 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78,
- 0x88, 0x01, 0x01, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x22, 0xf5, 0x03,
- 0x0a, 0x0c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x34,
- 0x0a, 0x16, 0x75, 0x6e, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x64, 0x5f, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14,
- 0x75, 0x6e, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x43, 0x6f, 0x64, 0x65, 0x12, 0x71, 0x0a, 0x18, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x76,
- 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56,
- 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52,
- 0x16, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x6b, 0x0a, 0x16, 0x70, 0x6f, 0x6c, 0x69, 0x63,
- 0x79, 0x5f, 0x66, 0x69, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c,
- 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79,
- 0x46, 0x69, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x14,
- 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x46, 0x69, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x65, 0x74,
- 0x61, 0x69, 0x6c, 0x73, 0x12, 0x62, 0x0a, 0x13, 0x71, 0x75, 0x6f, 0x74, 0x61, 0x5f, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x0b, 0x32, 0x32, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
- 0x6f, 0x72, 0x73, 0x2e, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65,
- 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x11, 0x71, 0x75, 0x6f, 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f,
- 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x6b, 0x0a, 0x16, 0x72, 0x65, 0x73, 0x6f,
- 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69,
- 0x6c, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75,
- 0x72, 0x63, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52,
- 0x14, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x44, 0x65,
- 0x74, 0x61, 0x69, 0x6c, 0x73, 0x22, 0xf6, 0x01, 0x0a, 0x16, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79,
- 0x56, 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73,
- 0x12, 0x3e, 0x0a, 0x1b, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x70, 0x6f, 0x6c,
- 0x69, 0x63, 0x79, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x19, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x50,
- 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e,
- 0x12, 0x45, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
- 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4b,
- 0x65, 0x79, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x30, 0x0a, 0x14, 0x65, 0x78, 0x74, 0x65, 0x72,
- 0x6e, 0x61, 0x6c, 0x5f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
- 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x50,
- 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x69, 0x73, 0x5f,
- 0x65, 0x78, 0x65, 0x6d, 0x70, 0x74, 0x69, 0x62, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08,
- 0x52, 0x0c, 0x69, 0x73, 0x45, 0x78, 0x65, 0x6d, 0x70, 0x74, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x7b,
- 0x0a, 0x14, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x46, 0x69, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x44,
- 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x63, 0x0a, 0x14, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79,
- 0x5f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f, 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x18, 0x01,
- 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
- 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70,
- 0x69, 0x63, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x12, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54,
- 0x6f, 0x70, 0x69, 0x63, 0x45, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x22, 0x9a, 0x02, 0x0a, 0x11,
- 0x51, 0x75, 0x6f, 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c,
- 0x73, 0x12, 0x60, 0x0a, 0x0a, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x41, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
- 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x45, 0x72, 0x72,
- 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x2e, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x52,
- 0x61, 0x74, 0x65, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x52, 0x09, 0x72, 0x61, 0x74, 0x65, 0x53, 0x63,
- 0x6f, 0x70, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x61, 0x74, 0x65, 0x4e, 0x61, 0x6d, 0x65,
- 0x12, 0x3a, 0x0a, 0x0b, 0x72, 0x65, 0x74, 0x72, 0x79, 0x5f, 0x64, 0x65, 0x6c, 0x61, 0x79, 0x18,
- 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x52, 0x0a, 0x72, 0x65, 0x74, 0x72, 0x79, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x22, 0x4a, 0x0a, 0x0e,
- 0x51, 0x75, 0x6f, 0x74, 0x61, 0x52, 0x61, 0x74, 0x65, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x12, 0x0f,
- 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12,
- 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07,
- 0x41, 0x43, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x10, 0x02, 0x12, 0x0d, 0x0a, 0x09, 0x44, 0x45, 0x56,
- 0x45, 0x4c, 0x4f, 0x50, 0x45, 0x52, 0x10, 0x03, 0x22, 0x8d, 0x02, 0x0a, 0x14, 0x52, 0x65, 0x73,
- 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c,
- 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x65, 0x6e, 0x63, 0x6c, 0x6f, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x65, 0x6e, 0x63, 0x6c, 0x6f, 0x73, 0x69,
- 0x6e, 0x67, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x12, 0x65, 0x6e, 0x63, 0x6c, 0x6f, 0x73, 0x69, 0x6e,
- 0x67, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x11, 0x65, 0x6e, 0x63, 0x6c, 0x6f, 0x73, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x6f, 0x75,
- 0x72, 0x63, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x05, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x66, 0x0a, 0x0a, 0x6c, 0x69, 0x6d,
- 0x69, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x47, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52,
- 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x54, 0x79, 0x70, 0x65,
- 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4c, 0x69, 0x6d,
- 0x69, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x09, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x54, 0x79, 0x70,
- 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f,
- 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x65, 0x78, 0x69, 0x73, 0x74,
- 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0xeb, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x9d, 0x01, 0x0a, 0x1d, 0x75, 0x73, 0x65, 0x72,
+ 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x74,
+ 0x79, 0x70, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xb7, 0x01, 0x20, 0x01, 0x28, 0x0e,
+ 0x32, 0x58, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f,
+ 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
+ 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65,
+ 0x72, 0x54, 0x79, 0x70, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x19, 0x75, 0x73,
+ 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79,
+ 0x70, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x87, 0x01, 0x0a, 0x16, 0x73, 0x68, 0x6f, 0x70,
+ 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x18, 0xb8, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4e, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x53, 0x68, 0x6f, 0x70,
+ 0x70, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f,
+ 0x64, 0x75, 0x63, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x14, 0x73, 0x68, 0x6f,
+ 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x42, 0x0c, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x22,
+ 0xd8, 0x01, 0x0a, 0x0d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f,
+ 0x6e, 0x12, 0x6f, 0x0a, 0x13, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x5f,
+ 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3f,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x46,
+ 0x69, 0x65, 0x6c, 0x64, 0x50, 0x61, 0x74, 0x68, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x52,
+ 0x11, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x61, 0x74, 0x68, 0x45, 0x6c, 0x65, 0x6d, 0x65, 0x6e,
+ 0x74, 0x73, 0x1a, 0x56, 0x0a, 0x10, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x50, 0x61, 0x74, 0x68, 0x45,
+ 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f,
+ 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c,
+ 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x03,
+ 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x88, 0x01, 0x01,
+ 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x22, 0xf5, 0x03, 0x0a, 0x0c, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x34, 0x0a, 0x16, 0x75,
+ 0x6e, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x75, 0x6e, 0x70,
+ 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64,
+ 0x65, 0x12, 0x71, 0x0a, 0x18, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x76, 0x69, 0x6f, 0x6c,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x02, 0x20,
+ 0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x6f, 0x6c,
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x16, 0x70, 0x6f,
+ 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x74,
+ 0x61, 0x69, 0x6c, 0x73, 0x12, 0x6b, 0x0a, 0x16, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x66,
+ 0x69, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x03,
+ 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x46, 0x69, 0x6e,
+ 0x64, 0x69, 0x6e, 0x67, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x14, 0x70, 0x6f, 0x6c,
+ 0x69, 0x63, 0x79, 0x46, 0x69, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c,
+ 0x73, 0x12, 0x62, 0x0a, 0x13, 0x71, 0x75, 0x6f, 0x74, 0x61, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
- 0x42, 0x0b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
- 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
- 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b,
- 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02,
- 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
- 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
- 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x2e, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69,
+ 0x6c, 0x73, 0x52, 0x11, 0x71, 0x75, 0x6f, 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65,
+ 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x6b, 0x0a, 0x16, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63,
+ 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18,
+ 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
+ 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
+ 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x14, 0x72, 0x65,
+ 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69,
+ 0x6c, 0x73, 0x22, 0xf6, 0x01, 0x0a, 0x16, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x6f,
+ 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x3e, 0x0a,
+ 0x1b, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79,
+ 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x19, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x50, 0x6f, 0x6c, 0x69,
+ 0x63, 0x79, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x45, 0x0a,
+ 0x03, 0x6b, 0x65, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c,
+ 0x69, 0x63, 0x79, 0x56, 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4b, 0x65, 0x79, 0x52,
+ 0x03, 0x6b, 0x65, 0x79, 0x12, 0x30, 0x0a, 0x14, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c,
+ 0x5f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01,
+ 0x28, 0x09, 0x52, 0x12, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x50, 0x6f, 0x6c, 0x69,
+ 0x63, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x69, 0x73, 0x5f, 0x65, 0x78, 0x65,
+ 0x6d, 0x70, 0x74, 0x69, 0x62, 0x6c, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x69,
+ 0x73, 0x45, 0x78, 0x65, 0x6d, 0x70, 0x74, 0x69, 0x62, 0x6c, 0x65, 0x22, 0x7b, 0x0a, 0x14, 0x50,
+ 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x46, 0x69, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x65, 0x74, 0x61,
+ 0x69, 0x6c, 0x73, 0x12, 0x63, 0x0a, 0x14, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x74, 0x6f,
+ 0x70, 0x69, 0x63, 0x5f, 0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
+ 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x45,
+ 0x6e, 0x74, 0x72, 0x79, 0x52, 0x12, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69,
+ 0x63, 0x45, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x22, 0x9a, 0x02, 0x0a, 0x11, 0x51, 0x75, 0x6f,
+ 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x60,
+ 0x0a, 0x0a, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01,
+ 0x28, 0x0e, 0x32, 0x41, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x44,
+ 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x2e, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x52, 0x61, 0x74, 0x65,
+ 0x53, 0x63, 0x6f, 0x70, 0x65, 0x52, 0x09, 0x72, 0x61, 0x74, 0x65, 0x53, 0x63, 0x6f, 0x70, 0x65,
+ 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
+ 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x61, 0x74, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3a, 0x0a,
+ 0x0b, 0x72, 0x65, 0x74, 0x72, 0x79, 0x5f, 0x64, 0x65, 0x6c, 0x61, 0x79, 0x18, 0x03, 0x20, 0x01,
+ 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
+ 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0a, 0x72,
+ 0x65, 0x74, 0x72, 0x79, 0x44, 0x65, 0x6c, 0x61, 0x79, 0x22, 0x4a, 0x0a, 0x0e, 0x51, 0x75, 0x6f,
+ 0x74, 0x61, 0x52, 0x61, 0x74, 0x65, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55,
+ 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07,
+ 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x41, 0x43, 0x43,
+ 0x4f, 0x55, 0x4e, 0x54, 0x10, 0x02, 0x12, 0x0d, 0x0a, 0x09, 0x44, 0x45, 0x56, 0x45, 0x4c, 0x4f,
+ 0x50, 0x45, 0x52, 0x10, 0x03, 0x22, 0x8d, 0x02, 0x0a, 0x14, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72,
+ 0x63, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x21,
+ 0x0a, 0x0c, 0x65, 0x6e, 0x63, 0x6c, 0x6f, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x01,
+ 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x65, 0x6e, 0x63, 0x6c, 0x6f, 0x73, 0x69, 0x6e, 0x67, 0x49,
+ 0x64, 0x12, 0x2d, 0x0a, 0x12, 0x65, 0x6e, 0x63, 0x6c, 0x6f, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x72,
+ 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x65,
+ 0x6e, 0x63, 0x6c, 0x6f, 0x73, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
+ 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
+ 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x66, 0x0a, 0x0a, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f,
+ 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x47, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x6f,
+ 0x75, 0x72, 0x63, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75,
+ 0x6d, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x54,
+ 0x79, 0x70, 0x65, 0x52, 0x09, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x25,
+ 0x0a, 0x0e, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74,
+ 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67,
+ 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0xeb, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0b, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x73, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
+ 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
+ 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_errors_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_errors_proto_rawDescData = file_google_ads_googleads_v16_errors_errors_proto_rawDesc
+ file_google_ads_googleads_v17_errors_errors_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_errors_proto_rawDescData = file_google_ads_googleads_v17_errors_errors_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_errors_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_errors_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_errors_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_errors_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_errors_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_errors_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_errors_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_errors_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_errors_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_errors_errors_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_errors_proto_msgTypes = make([]protoimpl.MessageInfo, 10)
-var file_google_ads_googleads_v16_errors_errors_proto_goTypes = []interface{}{
- (QuotaErrorDetails_QuotaRateScope)(0), // 0: google.ads.googleads.v16.errors.QuotaErrorDetails.QuotaRateScope
- (*GoogleAdsFailure)(nil), // 1: google.ads.googleads.v16.errors.GoogleAdsFailure
- (*GoogleAdsError)(nil), // 2: google.ads.googleads.v16.errors.GoogleAdsError
- (*ErrorCode)(nil), // 3: google.ads.googleads.v16.errors.ErrorCode
- (*ErrorLocation)(nil), // 4: google.ads.googleads.v16.errors.ErrorLocation
- (*ErrorDetails)(nil), // 5: google.ads.googleads.v16.errors.ErrorDetails
- (*PolicyViolationDetails)(nil), // 6: google.ads.googleads.v16.errors.PolicyViolationDetails
- (*PolicyFindingDetails)(nil), // 7: google.ads.googleads.v16.errors.PolicyFindingDetails
- (*QuotaErrorDetails)(nil), // 8: google.ads.googleads.v16.errors.QuotaErrorDetails
- (*ResourceCountDetails)(nil), // 9: google.ads.googleads.v16.errors.ResourceCountDetails
- (*ErrorLocation_FieldPathElement)(nil), // 10: google.ads.googleads.v16.errors.ErrorLocation.FieldPathElement
- (*common.Value)(nil), // 11: google.ads.googleads.v16.common.Value
- (RequestErrorEnum_RequestError)(0), // 12: google.ads.googleads.v16.errors.RequestErrorEnum.RequestError
- (BiddingStrategyErrorEnum_BiddingStrategyError)(0), // 13: google.ads.googleads.v16.errors.BiddingStrategyErrorEnum.BiddingStrategyError
- (UrlFieldErrorEnum_UrlFieldError)(0), // 14: google.ads.googleads.v16.errors.UrlFieldErrorEnum.UrlFieldError
- (ListOperationErrorEnum_ListOperationError)(0), // 15: google.ads.googleads.v16.errors.ListOperationErrorEnum.ListOperationError
- (QueryErrorEnum_QueryError)(0), // 16: google.ads.googleads.v16.errors.QueryErrorEnum.QueryError
- (MutateErrorEnum_MutateError)(0), // 17: google.ads.googleads.v16.errors.MutateErrorEnum.MutateError
- (FieldMaskErrorEnum_FieldMaskError)(0), // 18: google.ads.googleads.v16.errors.FieldMaskErrorEnum.FieldMaskError
- (AuthorizationErrorEnum_AuthorizationError)(0), // 19: google.ads.googleads.v16.errors.AuthorizationErrorEnum.AuthorizationError
- (InternalErrorEnum_InternalError)(0), // 20: google.ads.googleads.v16.errors.InternalErrorEnum.InternalError
- (QuotaErrorEnum_QuotaError)(0), // 21: google.ads.googleads.v16.errors.QuotaErrorEnum.QuotaError
- (AdErrorEnum_AdError)(0), // 22: google.ads.googleads.v16.errors.AdErrorEnum.AdError
- (AdGroupErrorEnum_AdGroupError)(0), // 23: google.ads.googleads.v16.errors.AdGroupErrorEnum.AdGroupError
- (CampaignBudgetErrorEnum_CampaignBudgetError)(0), // 24: google.ads.googleads.v16.errors.CampaignBudgetErrorEnum.CampaignBudgetError
- (CampaignErrorEnum_CampaignError)(0), // 25: google.ads.googleads.v16.errors.CampaignErrorEnum.CampaignError
- (VideoCampaignErrorEnum_VideoCampaignError)(0), // 26: google.ads.googleads.v16.errors.VideoCampaignErrorEnum.VideoCampaignError
- (AuthenticationErrorEnum_AuthenticationError)(0), // 27: google.ads.googleads.v16.errors.AuthenticationErrorEnum.AuthenticationError
- (AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError)(0), // 28: google.ads.googleads.v16.errors.AdGroupCriterionCustomizerErrorEnum.AdGroupCriterionCustomizerError
- (AdGroupCriterionErrorEnum_AdGroupCriterionError)(0), // 29: google.ads.googleads.v16.errors.AdGroupCriterionErrorEnum.AdGroupCriterionError
- (AdGroupCustomizerErrorEnum_AdGroupCustomizerError)(0), // 30: google.ads.googleads.v16.errors.AdGroupCustomizerErrorEnum.AdGroupCustomizerError
- (AdCustomizerErrorEnum_AdCustomizerError)(0), // 31: google.ads.googleads.v16.errors.AdCustomizerErrorEnum.AdCustomizerError
- (AdGroupAdErrorEnum_AdGroupAdError)(0), // 32: google.ads.googleads.v16.errors.AdGroupAdErrorEnum.AdGroupAdError
- (AdSharingErrorEnum_AdSharingError)(0), // 33: google.ads.googleads.v16.errors.AdSharingErrorEnum.AdSharingError
- (AdxErrorEnum_AdxError)(0), // 34: google.ads.googleads.v16.errors.AdxErrorEnum.AdxError
- (AssetErrorEnum_AssetError)(0), // 35: google.ads.googleads.v16.errors.AssetErrorEnum.AssetError
- (AssetGroupAssetErrorEnum_AssetGroupAssetError)(0), // 36: google.ads.googleads.v16.errors.AssetGroupAssetErrorEnum.AssetGroupAssetError
- (AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError)(0), // 37: google.ads.googleads.v16.errors.AssetGroupListingGroupFilterErrorEnum.AssetGroupListingGroupFilterError
- (AssetGroupErrorEnum_AssetGroupError)(0), // 38: google.ads.googleads.v16.errors.AssetGroupErrorEnum.AssetGroupError
- (AssetSetAssetErrorEnum_AssetSetAssetError)(0), // 39: google.ads.googleads.v16.errors.AssetSetAssetErrorEnum.AssetSetAssetError
- (AssetSetLinkErrorEnum_AssetSetLinkError)(0), // 40: google.ads.googleads.v16.errors.AssetSetLinkErrorEnum.AssetSetLinkError
- (AssetSetErrorEnum_AssetSetError)(0), // 41: google.ads.googleads.v16.errors.AssetSetErrorEnum.AssetSetError
- (BiddingErrorEnum_BiddingError)(0), // 42: google.ads.googleads.v16.errors.BiddingErrorEnum.BiddingError
- (CampaignCriterionErrorEnum_CampaignCriterionError)(0), // 43: google.ads.googleads.v16.errors.CampaignCriterionErrorEnum.CampaignCriterionError
- (CampaignConversionGoalErrorEnum_CampaignConversionGoalError)(0), // 44: google.ads.googleads.v16.errors.CampaignConversionGoalErrorEnum.CampaignConversionGoalError
- (CampaignCustomizerErrorEnum_CampaignCustomizerError)(0), // 45: google.ads.googleads.v16.errors.CampaignCustomizerErrorEnum.CampaignCustomizerError
- (CollectionSizeErrorEnum_CollectionSizeError)(0), // 46: google.ads.googleads.v16.errors.CollectionSizeErrorEnum.CollectionSizeError
- (ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError)(0), // 47: google.ads.googleads.v16.errors.ConversionGoalCampaignConfigErrorEnum.ConversionGoalCampaignConfigError
- (CountryCodeErrorEnum_CountryCodeError)(0), // 48: google.ads.googleads.v16.errors.CountryCodeErrorEnum.CountryCodeError
- (CriterionErrorEnum_CriterionError)(0), // 49: google.ads.googleads.v16.errors.CriterionErrorEnum.CriterionError
- (CustomConversionGoalErrorEnum_CustomConversionGoalError)(0), // 50: google.ads.googleads.v16.errors.CustomConversionGoalErrorEnum.CustomConversionGoalError
- (CustomerCustomizerErrorEnum_CustomerCustomizerError)(0), // 51: google.ads.googleads.v16.errors.CustomerCustomizerErrorEnum.CustomerCustomizerError
- (CustomerErrorEnum_CustomerError)(0), // 52: google.ads.googleads.v16.errors.CustomerErrorEnum.CustomerError
- (CustomizerAttributeErrorEnum_CustomizerAttributeError)(0), // 53: google.ads.googleads.v16.errors.CustomizerAttributeErrorEnum.CustomizerAttributeError
- (DateErrorEnum_DateError)(0), // 54: google.ads.googleads.v16.errors.DateErrorEnum.DateError
- (DateRangeErrorEnum_DateRangeError)(0), // 55: google.ads.googleads.v16.errors.DateRangeErrorEnum.DateRangeError
- (DistinctErrorEnum_DistinctError)(0), // 56: google.ads.googleads.v16.errors.DistinctErrorEnum.DistinctError
- (FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError)(0), // 57: google.ads.googleads.v16.errors.FeedAttributeReferenceErrorEnum.FeedAttributeReferenceError
- (FunctionErrorEnum_FunctionError)(0), // 58: google.ads.googleads.v16.errors.FunctionErrorEnum.FunctionError
- (FunctionParsingErrorEnum_FunctionParsingError)(0), // 59: google.ads.googleads.v16.errors.FunctionParsingErrorEnum.FunctionParsingError
- (IdErrorEnum_IdError)(0), // 60: google.ads.googleads.v16.errors.IdErrorEnum.IdError
- (ImageErrorEnum_ImageError)(0), // 61: google.ads.googleads.v16.errors.ImageErrorEnum.ImageError
- (LanguageCodeErrorEnum_LanguageCodeError)(0), // 62: google.ads.googleads.v16.errors.LanguageCodeErrorEnum.LanguageCodeError
- (MediaBundleErrorEnum_MediaBundleError)(0), // 63: google.ads.googleads.v16.errors.MediaBundleErrorEnum.MediaBundleError
- (MediaUploadErrorEnum_MediaUploadError)(0), // 64: google.ads.googleads.v16.errors.MediaUploadErrorEnum.MediaUploadError
- (MediaFileErrorEnum_MediaFileError)(0), // 65: google.ads.googleads.v16.errors.MediaFileErrorEnum.MediaFileError
- (MerchantCenterErrorEnum_MerchantCenterError)(0), // 66: google.ads.googleads.v16.errors.MerchantCenterErrorEnum.MerchantCenterError
- (MultiplierErrorEnum_MultiplierError)(0), // 67: google.ads.googleads.v16.errors.MultiplierErrorEnum.MultiplierError
- (NewResourceCreationErrorEnum_NewResourceCreationError)(0), // 68: google.ads.googleads.v16.errors.NewResourceCreationErrorEnum.NewResourceCreationError
- (NotEmptyErrorEnum_NotEmptyError)(0), // 69: google.ads.googleads.v16.errors.NotEmptyErrorEnum.NotEmptyError
- (NullErrorEnum_NullError)(0), // 70: google.ads.googleads.v16.errors.NullErrorEnum.NullError
- (OperatorErrorEnum_OperatorError)(0), // 71: google.ads.googleads.v16.errors.OperatorErrorEnum.OperatorError
- (RangeErrorEnum_RangeError)(0), // 72: google.ads.googleads.v16.errors.RangeErrorEnum.RangeError
- (RecommendationErrorEnum_RecommendationError)(0), // 73: google.ads.googleads.v16.errors.RecommendationErrorEnum.RecommendationError
- (RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError)(0), // 74: google.ads.googleads.v16.errors.RecommendationSubscriptionErrorEnum.RecommendationSubscriptionError
- (RegionCodeErrorEnum_RegionCodeError)(0), // 75: google.ads.googleads.v16.errors.RegionCodeErrorEnum.RegionCodeError
- (SettingErrorEnum_SettingError)(0), // 76: google.ads.googleads.v16.errors.SettingErrorEnum.SettingError
- (StringFormatErrorEnum_StringFormatError)(0), // 77: google.ads.googleads.v16.errors.StringFormatErrorEnum.StringFormatError
- (StringLengthErrorEnum_StringLengthError)(0), // 78: google.ads.googleads.v16.errors.StringLengthErrorEnum.StringLengthError
- (OperationAccessDeniedErrorEnum_OperationAccessDeniedError)(0), // 79: google.ads.googleads.v16.errors.OperationAccessDeniedErrorEnum.OperationAccessDeniedError
- (ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError)(0), // 80: google.ads.googleads.v16.errors.ResourceAccessDeniedErrorEnum.ResourceAccessDeniedError
- (ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError)(0), // 81: google.ads.googleads.v16.errors.ResourceCountLimitExceededErrorEnum.ResourceCountLimitExceededError
- (YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError)(0), // 82: google.ads.googleads.v16.errors.YoutubeVideoRegistrationErrorEnum.YoutubeVideoRegistrationError
- (AdGroupBidModifierErrorEnum_AdGroupBidModifierError)(0), // 83: google.ads.googleads.v16.errors.AdGroupBidModifierErrorEnum.AdGroupBidModifierError
- (ContextErrorEnum_ContextError)(0), // 84: google.ads.googleads.v16.errors.ContextErrorEnum.ContextError
- (FieldErrorEnum_FieldError)(0), // 85: google.ads.googleads.v16.errors.FieldErrorEnum.FieldError
- (SharedSetErrorEnum_SharedSetError)(0), // 86: google.ads.googleads.v16.errors.SharedSetErrorEnum.SharedSetError
- (SharedCriterionErrorEnum_SharedCriterionError)(0), // 87: google.ads.googleads.v16.errors.SharedCriterionErrorEnum.SharedCriterionError
- (CampaignSharedSetErrorEnum_CampaignSharedSetError)(0), // 88: google.ads.googleads.v16.errors.CampaignSharedSetErrorEnum.CampaignSharedSetError
- (ConversionActionErrorEnum_ConversionActionError)(0), // 89: google.ads.googleads.v16.errors.ConversionActionErrorEnum.ConversionActionError
- (ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError)(0), // 90: google.ads.googleads.v16.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError
- (ConversionCustomVariableErrorEnum_ConversionCustomVariableError)(0), // 91: google.ads.googleads.v16.errors.ConversionCustomVariableErrorEnum.ConversionCustomVariableError
- (ConversionUploadErrorEnum_ConversionUploadError)(0), // 92: google.ads.googleads.v16.errors.ConversionUploadErrorEnum.ConversionUploadError
- (ConversionValueRuleErrorEnum_ConversionValueRuleError)(0), // 93: google.ads.googleads.v16.errors.ConversionValueRuleErrorEnum.ConversionValueRuleError
- (ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError)(0), // 94: google.ads.googleads.v16.errors.ConversionValueRuleSetErrorEnum.ConversionValueRuleSetError
- (HeaderErrorEnum_HeaderError)(0), // 95: google.ads.googleads.v16.errors.HeaderErrorEnum.HeaderError
- (DatabaseErrorEnum_DatabaseError)(0), // 96: google.ads.googleads.v16.errors.DatabaseErrorEnum.DatabaseError
- (PolicyFindingErrorEnum_PolicyFindingError)(0), // 97: google.ads.googleads.v16.errors.PolicyFindingErrorEnum.PolicyFindingError
- (EnumErrorEnum_EnumError)(0), // 98: google.ads.googleads.v16.errors.EnumErrorEnum.EnumError
- (KeywordPlanErrorEnum_KeywordPlanError)(0), // 99: google.ads.googleads.v16.errors.KeywordPlanErrorEnum.KeywordPlanError
- (KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError)(0), // 100: google.ads.googleads.v16.errors.KeywordPlanCampaignErrorEnum.KeywordPlanCampaignError
- (KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError)(0), // 101: google.ads.googleads.v16.errors.KeywordPlanCampaignKeywordErrorEnum.KeywordPlanCampaignKeywordError
- (KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError)(0), // 102: google.ads.googleads.v16.errors.KeywordPlanAdGroupErrorEnum.KeywordPlanAdGroupError
- (KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError)(0), // 103: google.ads.googleads.v16.errors.KeywordPlanAdGroupKeywordErrorEnum.KeywordPlanAdGroupKeywordError
- (KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError)(0), // 104: google.ads.googleads.v16.errors.KeywordPlanIdeaErrorEnum.KeywordPlanIdeaError
- (AccountBudgetProposalErrorEnum_AccountBudgetProposalError)(0), // 105: google.ads.googleads.v16.errors.AccountBudgetProposalErrorEnum.AccountBudgetProposalError
- (UserListErrorEnum_UserListError)(0), // 106: google.ads.googleads.v16.errors.UserListErrorEnum.UserListError
- (ChangeEventErrorEnum_ChangeEventError)(0), // 107: google.ads.googleads.v16.errors.ChangeEventErrorEnum.ChangeEventError
- (ChangeStatusErrorEnum_ChangeStatusError)(0), // 108: google.ads.googleads.v16.errors.ChangeStatusErrorEnum.ChangeStatusError
- (FeedErrorEnum_FeedError)(0), // 109: google.ads.googleads.v16.errors.FeedErrorEnum.FeedError
- (GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError)(0), // 110: google.ads.googleads.v16.errors.GeoTargetConstantSuggestionErrorEnum.GeoTargetConstantSuggestionError
- (CampaignDraftErrorEnum_CampaignDraftError)(0), // 111: google.ads.googleads.v16.errors.CampaignDraftErrorEnum.CampaignDraftError
- (FeedItemErrorEnum_FeedItemError)(0), // 112: google.ads.googleads.v16.errors.FeedItemErrorEnum.FeedItemError
- (LabelErrorEnum_LabelError)(0), // 113: google.ads.googleads.v16.errors.LabelErrorEnum.LabelError
- (BillingSetupErrorEnum_BillingSetupError)(0), // 114: google.ads.googleads.v16.errors.BillingSetupErrorEnum.BillingSetupError
- (CustomerClientLinkErrorEnum_CustomerClientLinkError)(0), // 115: google.ads.googleads.v16.errors.CustomerClientLinkErrorEnum.CustomerClientLinkError
- (CustomerManagerLinkErrorEnum_CustomerManagerLinkError)(0), // 116: google.ads.googleads.v16.errors.CustomerManagerLinkErrorEnum.CustomerManagerLinkError
- (FeedMappingErrorEnum_FeedMappingError)(0), // 117: google.ads.googleads.v16.errors.FeedMappingErrorEnum.FeedMappingError
- (CustomerFeedErrorEnum_CustomerFeedError)(0), // 118: google.ads.googleads.v16.errors.CustomerFeedErrorEnum.CustomerFeedError
- (AdGroupFeedErrorEnum_AdGroupFeedError)(0), // 119: google.ads.googleads.v16.errors.AdGroupFeedErrorEnum.AdGroupFeedError
- (CampaignFeedErrorEnum_CampaignFeedError)(0), // 120: google.ads.googleads.v16.errors.CampaignFeedErrorEnum.CampaignFeedError
- (CustomInterestErrorEnum_CustomInterestError)(0), // 121: google.ads.googleads.v16.errors.CustomInterestErrorEnum.CustomInterestError
- (CampaignExperimentErrorEnum_CampaignExperimentError)(0), // 122: google.ads.googleads.v16.errors.CampaignExperimentErrorEnum.CampaignExperimentError
- (ExtensionFeedItemErrorEnum_ExtensionFeedItemError)(0), // 123: google.ads.googleads.v16.errors.ExtensionFeedItemErrorEnum.ExtensionFeedItemError
- (AdParameterErrorEnum_AdParameterError)(0), // 124: google.ads.googleads.v16.errors.AdParameterErrorEnum.AdParameterError
- (FeedItemValidationErrorEnum_FeedItemValidationError)(0), // 125: google.ads.googleads.v16.errors.FeedItemValidationErrorEnum.FeedItemValidationError
- (ExtensionSettingErrorEnum_ExtensionSettingError)(0), // 126: google.ads.googleads.v16.errors.ExtensionSettingErrorEnum.ExtensionSettingError
- (FeedItemSetErrorEnum_FeedItemSetError)(0), // 127: google.ads.googleads.v16.errors.FeedItemSetErrorEnum.FeedItemSetError
- (FeedItemSetLinkErrorEnum_FeedItemSetLinkError)(0), // 128: google.ads.googleads.v16.errors.FeedItemSetLinkErrorEnum.FeedItemSetLinkError
- (FeedItemTargetErrorEnum_FeedItemTargetError)(0), // 129: google.ads.googleads.v16.errors.FeedItemTargetErrorEnum.FeedItemTargetError
- (PolicyViolationErrorEnum_PolicyViolationError)(0), // 130: google.ads.googleads.v16.errors.PolicyViolationErrorEnum.PolicyViolationError
- (PartialFailureErrorEnum_PartialFailureError)(0), // 131: google.ads.googleads.v16.errors.PartialFailureErrorEnum.PartialFailureError
- (PolicyValidationParameterErrorEnum_PolicyValidationParameterError)(0), // 132: google.ads.googleads.v16.errors.PolicyValidationParameterErrorEnum.PolicyValidationParameterError
- (SizeLimitErrorEnum_SizeLimitError)(0), // 133: google.ads.googleads.v16.errors.SizeLimitErrorEnum.SizeLimitError
- (OfflineUserDataJobErrorEnum_OfflineUserDataJobError)(0), // 134: google.ads.googleads.v16.errors.OfflineUserDataJobErrorEnum.OfflineUserDataJobError
- (NotAllowlistedErrorEnum_NotAllowlistedError)(0), // 135: google.ads.googleads.v16.errors.NotAllowlistedErrorEnum.NotAllowlistedError
- (ManagerLinkErrorEnum_ManagerLinkError)(0), // 136: google.ads.googleads.v16.errors.ManagerLinkErrorEnum.ManagerLinkError
- (CurrencyCodeErrorEnum_CurrencyCodeError)(0), // 137: google.ads.googleads.v16.errors.CurrencyCodeErrorEnum.CurrencyCodeError
- (ExperimentErrorEnum_ExperimentError)(0), // 138: google.ads.googleads.v16.errors.ExperimentErrorEnum.ExperimentError
- (AccessInvitationErrorEnum_AccessInvitationError)(0), // 139: google.ads.googleads.v16.errors.AccessInvitationErrorEnum.AccessInvitationError
- (ReachPlanErrorEnum_ReachPlanError)(0), // 140: google.ads.googleads.v16.errors.ReachPlanErrorEnum.ReachPlanError
- (InvoiceErrorEnum_InvoiceError)(0), // 141: google.ads.googleads.v16.errors.InvoiceErrorEnum.InvoiceError
- (PaymentsAccountErrorEnum_PaymentsAccountError)(0), // 142: google.ads.googleads.v16.errors.PaymentsAccountErrorEnum.PaymentsAccountError
- (TimeZoneErrorEnum_TimeZoneError)(0), // 143: google.ads.googleads.v16.errors.TimeZoneErrorEnum.TimeZoneError
- (AssetLinkErrorEnum_AssetLinkError)(0), // 144: google.ads.googleads.v16.errors.AssetLinkErrorEnum.AssetLinkError
- (UserDataErrorEnum_UserDataError)(0), // 145: google.ads.googleads.v16.errors.UserDataErrorEnum.UserDataError
- (BatchJobErrorEnum_BatchJobError)(0), // 146: google.ads.googleads.v16.errors.BatchJobErrorEnum.BatchJobError
- (AccountLinkErrorEnum_AccountLinkError)(0), // 147: google.ads.googleads.v16.errors.AccountLinkErrorEnum.AccountLinkError
- (ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError)(0), // 148: google.ads.googleads.v16.errors.ThirdPartyAppAnalyticsLinkErrorEnum.ThirdPartyAppAnalyticsLinkError
- (CustomerUserAccessErrorEnum_CustomerUserAccessError)(0), // 149: google.ads.googleads.v16.errors.CustomerUserAccessErrorEnum.CustomerUserAccessError
- (CustomAudienceErrorEnum_CustomAudienceError)(0), // 150: google.ads.googleads.v16.errors.CustomAudienceErrorEnum.CustomAudienceError
- (AudienceErrorEnum_AudienceError)(0), // 151: google.ads.googleads.v16.errors.AudienceErrorEnum.AudienceError
- (SearchTermInsightErrorEnum_SearchTermInsightError)(0), // 152: google.ads.googleads.v16.errors.SearchTermInsightErrorEnum.SearchTermInsightError
- (SmartCampaignErrorEnum_SmartCampaignError)(0), // 153: google.ads.googleads.v16.errors.SmartCampaignErrorEnum.SmartCampaignError
- (ExperimentArmErrorEnum_ExperimentArmError)(0), // 154: google.ads.googleads.v16.errors.ExperimentArmErrorEnum.ExperimentArmError
- (AudienceInsightsErrorEnum_AudienceInsightsError)(0), // 155: google.ads.googleads.v16.errors.AudienceInsightsErrorEnum.AudienceInsightsError
- (ProductLinkErrorEnum_ProductLinkError)(0), // 156: google.ads.googleads.v16.errors.ProductLinkErrorEnum.ProductLinkError
- (CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError)(0), // 157: google.ads.googleads.v16.errors.CustomerSkAdNetworkConversionValueSchemaErrorEnum.CustomerSkAdNetworkConversionValueSchemaError
- (CurrencyErrorEnum_CurrencyError)(0), // 158: google.ads.googleads.v16.errors.CurrencyErrorEnum.CurrencyError
- (AssetGroupSignalErrorEnum_AssetGroupSignalError)(0), // 159: google.ads.googleads.v16.errors.AssetGroupSignalErrorEnum.AssetGroupSignalError
- (ProductLinkInvitationErrorEnum_ProductLinkInvitationError)(0), // 160: google.ads.googleads.v16.errors.ProductLinkInvitationErrorEnum.ProductLinkInvitationError
- (CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError)(0), // 161: google.ads.googleads.v16.errors.CustomerLifecycleGoalErrorEnum.CustomerLifecycleGoalError
- (CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError)(0), // 162: google.ads.googleads.v16.errors.CampaignLifecycleGoalErrorEnum.CampaignLifecycleGoalError
- (IdentityVerificationErrorEnum_IdentityVerificationError)(0), // 163: google.ads.googleads.v16.errors.IdentityVerificationErrorEnum.IdentityVerificationError
- (*common.PolicyViolationKey)(nil), // 164: google.ads.googleads.v16.common.PolicyViolationKey
- (*common.PolicyTopicEntry)(nil), // 165: google.ads.googleads.v16.common.PolicyTopicEntry
- (*durationpb.Duration)(nil), // 166: google.protobuf.Duration
- (enums.ResourceLimitTypeEnum_ResourceLimitType)(0), // 167: google.ads.googleads.v16.enums.ResourceLimitTypeEnum.ResourceLimitType
-}
-var file_google_ads_googleads_v16_errors_errors_proto_depIdxs = []int32{
- 2, // 0: google.ads.googleads.v16.errors.GoogleAdsFailure.errors:type_name -> google.ads.googleads.v16.errors.GoogleAdsError
- 3, // 1: google.ads.googleads.v16.errors.GoogleAdsError.error_code:type_name -> google.ads.googleads.v16.errors.ErrorCode
- 11, // 2: google.ads.googleads.v16.errors.GoogleAdsError.trigger:type_name -> google.ads.googleads.v16.common.Value
- 4, // 3: google.ads.googleads.v16.errors.GoogleAdsError.location:type_name -> google.ads.googleads.v16.errors.ErrorLocation
- 5, // 4: google.ads.googleads.v16.errors.GoogleAdsError.details:type_name -> google.ads.googleads.v16.errors.ErrorDetails
- 12, // 5: google.ads.googleads.v16.errors.ErrorCode.request_error:type_name -> google.ads.googleads.v16.errors.RequestErrorEnum.RequestError
- 13, // 6: google.ads.googleads.v16.errors.ErrorCode.bidding_strategy_error:type_name -> google.ads.googleads.v16.errors.BiddingStrategyErrorEnum.BiddingStrategyError
- 14, // 7: google.ads.googleads.v16.errors.ErrorCode.url_field_error:type_name -> google.ads.googleads.v16.errors.UrlFieldErrorEnum.UrlFieldError
- 15, // 8: google.ads.googleads.v16.errors.ErrorCode.list_operation_error:type_name -> google.ads.googleads.v16.errors.ListOperationErrorEnum.ListOperationError
- 16, // 9: google.ads.googleads.v16.errors.ErrorCode.query_error:type_name -> google.ads.googleads.v16.errors.QueryErrorEnum.QueryError
- 17, // 10: google.ads.googleads.v16.errors.ErrorCode.mutate_error:type_name -> google.ads.googleads.v16.errors.MutateErrorEnum.MutateError
- 18, // 11: google.ads.googleads.v16.errors.ErrorCode.field_mask_error:type_name -> google.ads.googleads.v16.errors.FieldMaskErrorEnum.FieldMaskError
- 19, // 12: google.ads.googleads.v16.errors.ErrorCode.authorization_error:type_name -> google.ads.googleads.v16.errors.AuthorizationErrorEnum.AuthorizationError
- 20, // 13: google.ads.googleads.v16.errors.ErrorCode.internal_error:type_name -> google.ads.googleads.v16.errors.InternalErrorEnum.InternalError
- 21, // 14: google.ads.googleads.v16.errors.ErrorCode.quota_error:type_name -> google.ads.googleads.v16.errors.QuotaErrorEnum.QuotaError
- 22, // 15: google.ads.googleads.v16.errors.ErrorCode.ad_error:type_name -> google.ads.googleads.v16.errors.AdErrorEnum.AdError
- 23, // 16: google.ads.googleads.v16.errors.ErrorCode.ad_group_error:type_name -> google.ads.googleads.v16.errors.AdGroupErrorEnum.AdGroupError
- 24, // 17: google.ads.googleads.v16.errors.ErrorCode.campaign_budget_error:type_name -> google.ads.googleads.v16.errors.CampaignBudgetErrorEnum.CampaignBudgetError
- 25, // 18: google.ads.googleads.v16.errors.ErrorCode.campaign_error:type_name -> google.ads.googleads.v16.errors.CampaignErrorEnum.CampaignError
- 26, // 19: google.ads.googleads.v16.errors.ErrorCode.video_campaign_error:type_name -> google.ads.googleads.v16.errors.VideoCampaignErrorEnum.VideoCampaignError
- 27, // 20: google.ads.googleads.v16.errors.ErrorCode.authentication_error:type_name -> google.ads.googleads.v16.errors.AuthenticationErrorEnum.AuthenticationError
- 28, // 21: google.ads.googleads.v16.errors.ErrorCode.ad_group_criterion_customizer_error:type_name -> google.ads.googleads.v16.errors.AdGroupCriterionCustomizerErrorEnum.AdGroupCriterionCustomizerError
- 29, // 22: google.ads.googleads.v16.errors.ErrorCode.ad_group_criterion_error:type_name -> google.ads.googleads.v16.errors.AdGroupCriterionErrorEnum.AdGroupCriterionError
- 30, // 23: google.ads.googleads.v16.errors.ErrorCode.ad_group_customizer_error:type_name -> google.ads.googleads.v16.errors.AdGroupCustomizerErrorEnum.AdGroupCustomizerError
- 31, // 24: google.ads.googleads.v16.errors.ErrorCode.ad_customizer_error:type_name -> google.ads.googleads.v16.errors.AdCustomizerErrorEnum.AdCustomizerError
- 32, // 25: google.ads.googleads.v16.errors.ErrorCode.ad_group_ad_error:type_name -> google.ads.googleads.v16.errors.AdGroupAdErrorEnum.AdGroupAdError
- 33, // 26: google.ads.googleads.v16.errors.ErrorCode.ad_sharing_error:type_name -> google.ads.googleads.v16.errors.AdSharingErrorEnum.AdSharingError
- 34, // 27: google.ads.googleads.v16.errors.ErrorCode.adx_error:type_name -> google.ads.googleads.v16.errors.AdxErrorEnum.AdxError
- 35, // 28: google.ads.googleads.v16.errors.ErrorCode.asset_error:type_name -> google.ads.googleads.v16.errors.AssetErrorEnum.AssetError
- 36, // 29: google.ads.googleads.v16.errors.ErrorCode.asset_group_asset_error:type_name -> google.ads.googleads.v16.errors.AssetGroupAssetErrorEnum.AssetGroupAssetError
- 37, // 30: google.ads.googleads.v16.errors.ErrorCode.asset_group_listing_group_filter_error:type_name -> google.ads.googleads.v16.errors.AssetGroupListingGroupFilterErrorEnum.AssetGroupListingGroupFilterError
- 38, // 31: google.ads.googleads.v16.errors.ErrorCode.asset_group_error:type_name -> google.ads.googleads.v16.errors.AssetGroupErrorEnum.AssetGroupError
- 39, // 32: google.ads.googleads.v16.errors.ErrorCode.asset_set_asset_error:type_name -> google.ads.googleads.v16.errors.AssetSetAssetErrorEnum.AssetSetAssetError
- 40, // 33: google.ads.googleads.v16.errors.ErrorCode.asset_set_link_error:type_name -> google.ads.googleads.v16.errors.AssetSetLinkErrorEnum.AssetSetLinkError
- 41, // 34: google.ads.googleads.v16.errors.ErrorCode.asset_set_error:type_name -> google.ads.googleads.v16.errors.AssetSetErrorEnum.AssetSetError
- 42, // 35: google.ads.googleads.v16.errors.ErrorCode.bidding_error:type_name -> google.ads.googleads.v16.errors.BiddingErrorEnum.BiddingError
- 43, // 36: google.ads.googleads.v16.errors.ErrorCode.campaign_criterion_error:type_name -> google.ads.googleads.v16.errors.CampaignCriterionErrorEnum.CampaignCriterionError
- 44, // 37: google.ads.googleads.v16.errors.ErrorCode.campaign_conversion_goal_error:type_name -> google.ads.googleads.v16.errors.CampaignConversionGoalErrorEnum.CampaignConversionGoalError
- 45, // 38: google.ads.googleads.v16.errors.ErrorCode.campaign_customizer_error:type_name -> google.ads.googleads.v16.errors.CampaignCustomizerErrorEnum.CampaignCustomizerError
- 46, // 39: google.ads.googleads.v16.errors.ErrorCode.collection_size_error:type_name -> google.ads.googleads.v16.errors.CollectionSizeErrorEnum.CollectionSizeError
- 47, // 40: google.ads.googleads.v16.errors.ErrorCode.conversion_goal_campaign_config_error:type_name -> google.ads.googleads.v16.errors.ConversionGoalCampaignConfigErrorEnum.ConversionGoalCampaignConfigError
- 48, // 41: google.ads.googleads.v16.errors.ErrorCode.country_code_error:type_name -> google.ads.googleads.v16.errors.CountryCodeErrorEnum.CountryCodeError
- 49, // 42: google.ads.googleads.v16.errors.ErrorCode.criterion_error:type_name -> google.ads.googleads.v16.errors.CriterionErrorEnum.CriterionError
- 50, // 43: google.ads.googleads.v16.errors.ErrorCode.custom_conversion_goal_error:type_name -> google.ads.googleads.v16.errors.CustomConversionGoalErrorEnum.CustomConversionGoalError
- 51, // 44: google.ads.googleads.v16.errors.ErrorCode.customer_customizer_error:type_name -> google.ads.googleads.v16.errors.CustomerCustomizerErrorEnum.CustomerCustomizerError
- 52, // 45: google.ads.googleads.v16.errors.ErrorCode.customer_error:type_name -> google.ads.googleads.v16.errors.CustomerErrorEnum.CustomerError
- 53, // 46: google.ads.googleads.v16.errors.ErrorCode.customizer_attribute_error:type_name -> google.ads.googleads.v16.errors.CustomizerAttributeErrorEnum.CustomizerAttributeError
- 54, // 47: google.ads.googleads.v16.errors.ErrorCode.date_error:type_name -> google.ads.googleads.v16.errors.DateErrorEnum.DateError
- 55, // 48: google.ads.googleads.v16.errors.ErrorCode.date_range_error:type_name -> google.ads.googleads.v16.errors.DateRangeErrorEnum.DateRangeError
- 56, // 49: google.ads.googleads.v16.errors.ErrorCode.distinct_error:type_name -> google.ads.googleads.v16.errors.DistinctErrorEnum.DistinctError
- 57, // 50: google.ads.googleads.v16.errors.ErrorCode.feed_attribute_reference_error:type_name -> google.ads.googleads.v16.errors.FeedAttributeReferenceErrorEnum.FeedAttributeReferenceError
- 58, // 51: google.ads.googleads.v16.errors.ErrorCode.function_error:type_name -> google.ads.googleads.v16.errors.FunctionErrorEnum.FunctionError
- 59, // 52: google.ads.googleads.v16.errors.ErrorCode.function_parsing_error:type_name -> google.ads.googleads.v16.errors.FunctionParsingErrorEnum.FunctionParsingError
- 60, // 53: google.ads.googleads.v16.errors.ErrorCode.id_error:type_name -> google.ads.googleads.v16.errors.IdErrorEnum.IdError
- 61, // 54: google.ads.googleads.v16.errors.ErrorCode.image_error:type_name -> google.ads.googleads.v16.errors.ImageErrorEnum.ImageError
- 62, // 55: google.ads.googleads.v16.errors.ErrorCode.language_code_error:type_name -> google.ads.googleads.v16.errors.LanguageCodeErrorEnum.LanguageCodeError
- 63, // 56: google.ads.googleads.v16.errors.ErrorCode.media_bundle_error:type_name -> google.ads.googleads.v16.errors.MediaBundleErrorEnum.MediaBundleError
- 64, // 57: google.ads.googleads.v16.errors.ErrorCode.media_upload_error:type_name -> google.ads.googleads.v16.errors.MediaUploadErrorEnum.MediaUploadError
- 65, // 58: google.ads.googleads.v16.errors.ErrorCode.media_file_error:type_name -> google.ads.googleads.v16.errors.MediaFileErrorEnum.MediaFileError
- 66, // 59: google.ads.googleads.v16.errors.ErrorCode.merchant_center_error:type_name -> google.ads.googleads.v16.errors.MerchantCenterErrorEnum.MerchantCenterError
- 67, // 60: google.ads.googleads.v16.errors.ErrorCode.multiplier_error:type_name -> google.ads.googleads.v16.errors.MultiplierErrorEnum.MultiplierError
- 68, // 61: google.ads.googleads.v16.errors.ErrorCode.new_resource_creation_error:type_name -> google.ads.googleads.v16.errors.NewResourceCreationErrorEnum.NewResourceCreationError
- 69, // 62: google.ads.googleads.v16.errors.ErrorCode.not_empty_error:type_name -> google.ads.googleads.v16.errors.NotEmptyErrorEnum.NotEmptyError
- 70, // 63: google.ads.googleads.v16.errors.ErrorCode.null_error:type_name -> google.ads.googleads.v16.errors.NullErrorEnum.NullError
- 71, // 64: google.ads.googleads.v16.errors.ErrorCode.operator_error:type_name -> google.ads.googleads.v16.errors.OperatorErrorEnum.OperatorError
- 72, // 65: google.ads.googleads.v16.errors.ErrorCode.range_error:type_name -> google.ads.googleads.v16.errors.RangeErrorEnum.RangeError
- 73, // 66: google.ads.googleads.v16.errors.ErrorCode.recommendation_error:type_name -> google.ads.googleads.v16.errors.RecommendationErrorEnum.RecommendationError
- 74, // 67: google.ads.googleads.v16.errors.ErrorCode.recommendation_subscription_error:type_name -> google.ads.googleads.v16.errors.RecommendationSubscriptionErrorEnum.RecommendationSubscriptionError
- 75, // 68: google.ads.googleads.v16.errors.ErrorCode.region_code_error:type_name -> google.ads.googleads.v16.errors.RegionCodeErrorEnum.RegionCodeError
- 76, // 69: google.ads.googleads.v16.errors.ErrorCode.setting_error:type_name -> google.ads.googleads.v16.errors.SettingErrorEnum.SettingError
- 77, // 70: google.ads.googleads.v16.errors.ErrorCode.string_format_error:type_name -> google.ads.googleads.v16.errors.StringFormatErrorEnum.StringFormatError
- 78, // 71: google.ads.googleads.v16.errors.ErrorCode.string_length_error:type_name -> google.ads.googleads.v16.errors.StringLengthErrorEnum.StringLengthError
- 79, // 72: google.ads.googleads.v16.errors.ErrorCode.operation_access_denied_error:type_name -> google.ads.googleads.v16.errors.OperationAccessDeniedErrorEnum.OperationAccessDeniedError
- 80, // 73: google.ads.googleads.v16.errors.ErrorCode.resource_access_denied_error:type_name -> google.ads.googleads.v16.errors.ResourceAccessDeniedErrorEnum.ResourceAccessDeniedError
- 81, // 74: google.ads.googleads.v16.errors.ErrorCode.resource_count_limit_exceeded_error:type_name -> google.ads.googleads.v16.errors.ResourceCountLimitExceededErrorEnum.ResourceCountLimitExceededError
- 82, // 75: google.ads.googleads.v16.errors.ErrorCode.youtube_video_registration_error:type_name -> google.ads.googleads.v16.errors.YoutubeVideoRegistrationErrorEnum.YoutubeVideoRegistrationError
- 83, // 76: google.ads.googleads.v16.errors.ErrorCode.ad_group_bid_modifier_error:type_name -> google.ads.googleads.v16.errors.AdGroupBidModifierErrorEnum.AdGroupBidModifierError
- 84, // 77: google.ads.googleads.v16.errors.ErrorCode.context_error:type_name -> google.ads.googleads.v16.errors.ContextErrorEnum.ContextError
- 85, // 78: google.ads.googleads.v16.errors.ErrorCode.field_error:type_name -> google.ads.googleads.v16.errors.FieldErrorEnum.FieldError
- 86, // 79: google.ads.googleads.v16.errors.ErrorCode.shared_set_error:type_name -> google.ads.googleads.v16.errors.SharedSetErrorEnum.SharedSetError
- 87, // 80: google.ads.googleads.v16.errors.ErrorCode.shared_criterion_error:type_name -> google.ads.googleads.v16.errors.SharedCriterionErrorEnum.SharedCriterionError
- 88, // 81: google.ads.googleads.v16.errors.ErrorCode.campaign_shared_set_error:type_name -> google.ads.googleads.v16.errors.CampaignSharedSetErrorEnum.CampaignSharedSetError
- 89, // 82: google.ads.googleads.v16.errors.ErrorCode.conversion_action_error:type_name -> google.ads.googleads.v16.errors.ConversionActionErrorEnum.ConversionActionError
- 90, // 83: google.ads.googleads.v16.errors.ErrorCode.conversion_adjustment_upload_error:type_name -> google.ads.googleads.v16.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError
- 91, // 84: google.ads.googleads.v16.errors.ErrorCode.conversion_custom_variable_error:type_name -> google.ads.googleads.v16.errors.ConversionCustomVariableErrorEnum.ConversionCustomVariableError
- 92, // 85: google.ads.googleads.v16.errors.ErrorCode.conversion_upload_error:type_name -> google.ads.googleads.v16.errors.ConversionUploadErrorEnum.ConversionUploadError
- 93, // 86: google.ads.googleads.v16.errors.ErrorCode.conversion_value_rule_error:type_name -> google.ads.googleads.v16.errors.ConversionValueRuleErrorEnum.ConversionValueRuleError
- 94, // 87: google.ads.googleads.v16.errors.ErrorCode.conversion_value_rule_set_error:type_name -> google.ads.googleads.v16.errors.ConversionValueRuleSetErrorEnum.ConversionValueRuleSetError
- 95, // 88: google.ads.googleads.v16.errors.ErrorCode.header_error:type_name -> google.ads.googleads.v16.errors.HeaderErrorEnum.HeaderError
- 96, // 89: google.ads.googleads.v16.errors.ErrorCode.database_error:type_name -> google.ads.googleads.v16.errors.DatabaseErrorEnum.DatabaseError
- 97, // 90: google.ads.googleads.v16.errors.ErrorCode.policy_finding_error:type_name -> google.ads.googleads.v16.errors.PolicyFindingErrorEnum.PolicyFindingError
- 98, // 91: google.ads.googleads.v16.errors.ErrorCode.enum_error:type_name -> google.ads.googleads.v16.errors.EnumErrorEnum.EnumError
- 99, // 92: google.ads.googleads.v16.errors.ErrorCode.keyword_plan_error:type_name -> google.ads.googleads.v16.errors.KeywordPlanErrorEnum.KeywordPlanError
- 100, // 93: google.ads.googleads.v16.errors.ErrorCode.keyword_plan_campaign_error:type_name -> google.ads.googleads.v16.errors.KeywordPlanCampaignErrorEnum.KeywordPlanCampaignError
- 101, // 94: google.ads.googleads.v16.errors.ErrorCode.keyword_plan_campaign_keyword_error:type_name -> google.ads.googleads.v16.errors.KeywordPlanCampaignKeywordErrorEnum.KeywordPlanCampaignKeywordError
- 102, // 95: google.ads.googleads.v16.errors.ErrorCode.keyword_plan_ad_group_error:type_name -> google.ads.googleads.v16.errors.KeywordPlanAdGroupErrorEnum.KeywordPlanAdGroupError
- 103, // 96: google.ads.googleads.v16.errors.ErrorCode.keyword_plan_ad_group_keyword_error:type_name -> google.ads.googleads.v16.errors.KeywordPlanAdGroupKeywordErrorEnum.KeywordPlanAdGroupKeywordError
- 104, // 97: google.ads.googleads.v16.errors.ErrorCode.keyword_plan_idea_error:type_name -> google.ads.googleads.v16.errors.KeywordPlanIdeaErrorEnum.KeywordPlanIdeaError
- 105, // 98: google.ads.googleads.v16.errors.ErrorCode.account_budget_proposal_error:type_name -> google.ads.googleads.v16.errors.AccountBudgetProposalErrorEnum.AccountBudgetProposalError
- 106, // 99: google.ads.googleads.v16.errors.ErrorCode.user_list_error:type_name -> google.ads.googleads.v16.errors.UserListErrorEnum.UserListError
- 107, // 100: google.ads.googleads.v16.errors.ErrorCode.change_event_error:type_name -> google.ads.googleads.v16.errors.ChangeEventErrorEnum.ChangeEventError
- 108, // 101: google.ads.googleads.v16.errors.ErrorCode.change_status_error:type_name -> google.ads.googleads.v16.errors.ChangeStatusErrorEnum.ChangeStatusError
- 109, // 102: google.ads.googleads.v16.errors.ErrorCode.feed_error:type_name -> google.ads.googleads.v16.errors.FeedErrorEnum.FeedError
- 110, // 103: google.ads.googleads.v16.errors.ErrorCode.geo_target_constant_suggestion_error:type_name -> google.ads.googleads.v16.errors.GeoTargetConstantSuggestionErrorEnum.GeoTargetConstantSuggestionError
- 111, // 104: google.ads.googleads.v16.errors.ErrorCode.campaign_draft_error:type_name -> google.ads.googleads.v16.errors.CampaignDraftErrorEnum.CampaignDraftError
- 112, // 105: google.ads.googleads.v16.errors.ErrorCode.feed_item_error:type_name -> google.ads.googleads.v16.errors.FeedItemErrorEnum.FeedItemError
- 113, // 106: google.ads.googleads.v16.errors.ErrorCode.label_error:type_name -> google.ads.googleads.v16.errors.LabelErrorEnum.LabelError
- 114, // 107: google.ads.googleads.v16.errors.ErrorCode.billing_setup_error:type_name -> google.ads.googleads.v16.errors.BillingSetupErrorEnum.BillingSetupError
- 115, // 108: google.ads.googleads.v16.errors.ErrorCode.customer_client_link_error:type_name -> google.ads.googleads.v16.errors.CustomerClientLinkErrorEnum.CustomerClientLinkError
- 116, // 109: google.ads.googleads.v16.errors.ErrorCode.customer_manager_link_error:type_name -> google.ads.googleads.v16.errors.CustomerManagerLinkErrorEnum.CustomerManagerLinkError
- 117, // 110: google.ads.googleads.v16.errors.ErrorCode.feed_mapping_error:type_name -> google.ads.googleads.v16.errors.FeedMappingErrorEnum.FeedMappingError
- 118, // 111: google.ads.googleads.v16.errors.ErrorCode.customer_feed_error:type_name -> google.ads.googleads.v16.errors.CustomerFeedErrorEnum.CustomerFeedError
- 119, // 112: google.ads.googleads.v16.errors.ErrorCode.ad_group_feed_error:type_name -> google.ads.googleads.v16.errors.AdGroupFeedErrorEnum.AdGroupFeedError
- 120, // 113: google.ads.googleads.v16.errors.ErrorCode.campaign_feed_error:type_name -> google.ads.googleads.v16.errors.CampaignFeedErrorEnum.CampaignFeedError
- 121, // 114: google.ads.googleads.v16.errors.ErrorCode.custom_interest_error:type_name -> google.ads.googleads.v16.errors.CustomInterestErrorEnum.CustomInterestError
- 122, // 115: google.ads.googleads.v16.errors.ErrorCode.campaign_experiment_error:type_name -> google.ads.googleads.v16.errors.CampaignExperimentErrorEnum.CampaignExperimentError
- 123, // 116: google.ads.googleads.v16.errors.ErrorCode.extension_feed_item_error:type_name -> google.ads.googleads.v16.errors.ExtensionFeedItemErrorEnum.ExtensionFeedItemError
- 124, // 117: google.ads.googleads.v16.errors.ErrorCode.ad_parameter_error:type_name -> google.ads.googleads.v16.errors.AdParameterErrorEnum.AdParameterError
- 125, // 118: google.ads.googleads.v16.errors.ErrorCode.feed_item_validation_error:type_name -> google.ads.googleads.v16.errors.FeedItemValidationErrorEnum.FeedItemValidationError
- 126, // 119: google.ads.googleads.v16.errors.ErrorCode.extension_setting_error:type_name -> google.ads.googleads.v16.errors.ExtensionSettingErrorEnum.ExtensionSettingError
- 127, // 120: google.ads.googleads.v16.errors.ErrorCode.feed_item_set_error:type_name -> google.ads.googleads.v16.errors.FeedItemSetErrorEnum.FeedItemSetError
- 128, // 121: google.ads.googleads.v16.errors.ErrorCode.feed_item_set_link_error:type_name -> google.ads.googleads.v16.errors.FeedItemSetLinkErrorEnum.FeedItemSetLinkError
- 129, // 122: google.ads.googleads.v16.errors.ErrorCode.feed_item_target_error:type_name -> google.ads.googleads.v16.errors.FeedItemTargetErrorEnum.FeedItemTargetError
- 130, // 123: google.ads.googleads.v16.errors.ErrorCode.policy_violation_error:type_name -> google.ads.googleads.v16.errors.PolicyViolationErrorEnum.PolicyViolationError
- 131, // 124: google.ads.googleads.v16.errors.ErrorCode.partial_failure_error:type_name -> google.ads.googleads.v16.errors.PartialFailureErrorEnum.PartialFailureError
- 132, // 125: google.ads.googleads.v16.errors.ErrorCode.policy_validation_parameter_error:type_name -> google.ads.googleads.v16.errors.PolicyValidationParameterErrorEnum.PolicyValidationParameterError
- 133, // 126: google.ads.googleads.v16.errors.ErrorCode.size_limit_error:type_name -> google.ads.googleads.v16.errors.SizeLimitErrorEnum.SizeLimitError
- 134, // 127: google.ads.googleads.v16.errors.ErrorCode.offline_user_data_job_error:type_name -> google.ads.googleads.v16.errors.OfflineUserDataJobErrorEnum.OfflineUserDataJobError
- 135, // 128: google.ads.googleads.v16.errors.ErrorCode.not_allowlisted_error:type_name -> google.ads.googleads.v16.errors.NotAllowlistedErrorEnum.NotAllowlistedError
- 136, // 129: google.ads.googleads.v16.errors.ErrorCode.manager_link_error:type_name -> google.ads.googleads.v16.errors.ManagerLinkErrorEnum.ManagerLinkError
- 137, // 130: google.ads.googleads.v16.errors.ErrorCode.currency_code_error:type_name -> google.ads.googleads.v16.errors.CurrencyCodeErrorEnum.CurrencyCodeError
- 138, // 131: google.ads.googleads.v16.errors.ErrorCode.experiment_error:type_name -> google.ads.googleads.v16.errors.ExperimentErrorEnum.ExperimentError
- 139, // 132: google.ads.googleads.v16.errors.ErrorCode.access_invitation_error:type_name -> google.ads.googleads.v16.errors.AccessInvitationErrorEnum.AccessInvitationError
- 140, // 133: google.ads.googleads.v16.errors.ErrorCode.reach_plan_error:type_name -> google.ads.googleads.v16.errors.ReachPlanErrorEnum.ReachPlanError
- 141, // 134: google.ads.googleads.v16.errors.ErrorCode.invoice_error:type_name -> google.ads.googleads.v16.errors.InvoiceErrorEnum.InvoiceError
- 142, // 135: google.ads.googleads.v16.errors.ErrorCode.payments_account_error:type_name -> google.ads.googleads.v16.errors.PaymentsAccountErrorEnum.PaymentsAccountError
- 143, // 136: google.ads.googleads.v16.errors.ErrorCode.time_zone_error:type_name -> google.ads.googleads.v16.errors.TimeZoneErrorEnum.TimeZoneError
- 144, // 137: google.ads.googleads.v16.errors.ErrorCode.asset_link_error:type_name -> google.ads.googleads.v16.errors.AssetLinkErrorEnum.AssetLinkError
- 145, // 138: google.ads.googleads.v16.errors.ErrorCode.user_data_error:type_name -> google.ads.googleads.v16.errors.UserDataErrorEnum.UserDataError
- 146, // 139: google.ads.googleads.v16.errors.ErrorCode.batch_job_error:type_name -> google.ads.googleads.v16.errors.BatchJobErrorEnum.BatchJobError
- 147, // 140: google.ads.googleads.v16.errors.ErrorCode.account_link_error:type_name -> google.ads.googleads.v16.errors.AccountLinkErrorEnum.AccountLinkError
- 148, // 141: google.ads.googleads.v16.errors.ErrorCode.third_party_app_analytics_link_error:type_name -> google.ads.googleads.v16.errors.ThirdPartyAppAnalyticsLinkErrorEnum.ThirdPartyAppAnalyticsLinkError
- 149, // 142: google.ads.googleads.v16.errors.ErrorCode.customer_user_access_error:type_name -> google.ads.googleads.v16.errors.CustomerUserAccessErrorEnum.CustomerUserAccessError
- 150, // 143: google.ads.googleads.v16.errors.ErrorCode.custom_audience_error:type_name -> google.ads.googleads.v16.errors.CustomAudienceErrorEnum.CustomAudienceError
- 151, // 144: google.ads.googleads.v16.errors.ErrorCode.audience_error:type_name -> google.ads.googleads.v16.errors.AudienceErrorEnum.AudienceError
- 152, // 145: google.ads.googleads.v16.errors.ErrorCode.search_term_insight_error:type_name -> google.ads.googleads.v16.errors.SearchTermInsightErrorEnum.SearchTermInsightError
- 153, // 146: google.ads.googleads.v16.errors.ErrorCode.smart_campaign_error:type_name -> google.ads.googleads.v16.errors.SmartCampaignErrorEnum.SmartCampaignError
- 154, // 147: google.ads.googleads.v16.errors.ErrorCode.experiment_arm_error:type_name -> google.ads.googleads.v16.errors.ExperimentArmErrorEnum.ExperimentArmError
- 155, // 148: google.ads.googleads.v16.errors.ErrorCode.audience_insights_error:type_name -> google.ads.googleads.v16.errors.AudienceInsightsErrorEnum.AudienceInsightsError
- 156, // 149: google.ads.googleads.v16.errors.ErrorCode.product_link_error:type_name -> google.ads.googleads.v16.errors.ProductLinkErrorEnum.ProductLinkError
- 157, // 150: google.ads.googleads.v16.errors.ErrorCode.customer_sk_ad_network_conversion_value_schema_error:type_name -> google.ads.googleads.v16.errors.CustomerSkAdNetworkConversionValueSchemaErrorEnum.CustomerSkAdNetworkConversionValueSchemaError
- 158, // 151: google.ads.googleads.v16.errors.ErrorCode.currency_error:type_name -> google.ads.googleads.v16.errors.CurrencyErrorEnum.CurrencyError
- 159, // 152: google.ads.googleads.v16.errors.ErrorCode.asset_group_signal_error:type_name -> google.ads.googleads.v16.errors.AssetGroupSignalErrorEnum.AssetGroupSignalError
- 160, // 153: google.ads.googleads.v16.errors.ErrorCode.product_link_invitation_error:type_name -> google.ads.googleads.v16.errors.ProductLinkInvitationErrorEnum.ProductLinkInvitationError
- 161, // 154: google.ads.googleads.v16.errors.ErrorCode.customer_lifecycle_goal_error:type_name -> google.ads.googleads.v16.errors.CustomerLifecycleGoalErrorEnum.CustomerLifecycleGoalError
- 162, // 155: google.ads.googleads.v16.errors.ErrorCode.campaign_lifecycle_goal_error:type_name -> google.ads.googleads.v16.errors.CampaignLifecycleGoalErrorEnum.CampaignLifecycleGoalError
- 163, // 156: google.ads.googleads.v16.errors.ErrorCode.identity_verification_error:type_name -> google.ads.googleads.v16.errors.IdentityVerificationErrorEnum.IdentityVerificationError
- 10, // 157: google.ads.googleads.v16.errors.ErrorLocation.field_path_elements:type_name -> google.ads.googleads.v16.errors.ErrorLocation.FieldPathElement
- 6, // 158: google.ads.googleads.v16.errors.ErrorDetails.policy_violation_details:type_name -> google.ads.googleads.v16.errors.PolicyViolationDetails
- 7, // 159: google.ads.googleads.v16.errors.ErrorDetails.policy_finding_details:type_name -> google.ads.googleads.v16.errors.PolicyFindingDetails
- 8, // 160: google.ads.googleads.v16.errors.ErrorDetails.quota_error_details:type_name -> google.ads.googleads.v16.errors.QuotaErrorDetails
- 9, // 161: google.ads.googleads.v16.errors.ErrorDetails.resource_count_details:type_name -> google.ads.googleads.v16.errors.ResourceCountDetails
- 164, // 162: google.ads.googleads.v16.errors.PolicyViolationDetails.key:type_name -> google.ads.googleads.v16.common.PolicyViolationKey
- 165, // 163: google.ads.googleads.v16.errors.PolicyFindingDetails.policy_topic_entries:type_name -> google.ads.googleads.v16.common.PolicyTopicEntry
- 0, // 164: google.ads.googleads.v16.errors.QuotaErrorDetails.rate_scope:type_name -> google.ads.googleads.v16.errors.QuotaErrorDetails.QuotaRateScope
- 166, // 165: google.ads.googleads.v16.errors.QuotaErrorDetails.retry_delay:type_name -> google.protobuf.Duration
- 167, // 166: google.ads.googleads.v16.errors.ResourceCountDetails.limit_type:type_name -> google.ads.googleads.v16.enums.ResourceLimitTypeEnum.ResourceLimitType
- 167, // [167:167] is the sub-list for method output_type
- 167, // [167:167] is the sub-list for method input_type
- 167, // [167:167] is the sub-list for extension type_name
- 167, // [167:167] is the sub-list for extension extendee
- 0, // [0:167] is the sub-list for field type_name
-}
-
-func init() { file_google_ads_googleads_v16_errors_errors_proto_init() }
-func file_google_ads_googleads_v16_errors_errors_proto_init() {
- if File_google_ads_googleads_v16_errors_errors_proto != nil {
+ return file_google_ads_googleads_v17_errors_errors_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_errors_errors_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_errors_proto_msgTypes = make([]protoimpl.MessageInfo, 10)
+var file_google_ads_googleads_v17_errors_errors_proto_goTypes = []interface{}{
+ (QuotaErrorDetails_QuotaRateScope)(0), // 0: google.ads.googleads.v17.errors.QuotaErrorDetails.QuotaRateScope
+ (*GoogleAdsFailure)(nil), // 1: google.ads.googleads.v17.errors.GoogleAdsFailure
+ (*GoogleAdsError)(nil), // 2: google.ads.googleads.v17.errors.GoogleAdsError
+ (*ErrorCode)(nil), // 3: google.ads.googleads.v17.errors.ErrorCode
+ (*ErrorLocation)(nil), // 4: google.ads.googleads.v17.errors.ErrorLocation
+ (*ErrorDetails)(nil), // 5: google.ads.googleads.v17.errors.ErrorDetails
+ (*PolicyViolationDetails)(nil), // 6: google.ads.googleads.v17.errors.PolicyViolationDetails
+ (*PolicyFindingDetails)(nil), // 7: google.ads.googleads.v17.errors.PolicyFindingDetails
+ (*QuotaErrorDetails)(nil), // 8: google.ads.googleads.v17.errors.QuotaErrorDetails
+ (*ResourceCountDetails)(nil), // 9: google.ads.googleads.v17.errors.ResourceCountDetails
+ (*ErrorLocation_FieldPathElement)(nil), // 10: google.ads.googleads.v17.errors.ErrorLocation.FieldPathElement
+ (*common.Value)(nil), // 11: google.ads.googleads.v17.common.Value
+ (RequestErrorEnum_RequestError)(0), // 12: google.ads.googleads.v17.errors.RequestErrorEnum.RequestError
+ (BiddingStrategyErrorEnum_BiddingStrategyError)(0), // 13: google.ads.googleads.v17.errors.BiddingStrategyErrorEnum.BiddingStrategyError
+ (UrlFieldErrorEnum_UrlFieldError)(0), // 14: google.ads.googleads.v17.errors.UrlFieldErrorEnum.UrlFieldError
+ (ListOperationErrorEnum_ListOperationError)(0), // 15: google.ads.googleads.v17.errors.ListOperationErrorEnum.ListOperationError
+ (QueryErrorEnum_QueryError)(0), // 16: google.ads.googleads.v17.errors.QueryErrorEnum.QueryError
+ (MutateErrorEnum_MutateError)(0), // 17: google.ads.googleads.v17.errors.MutateErrorEnum.MutateError
+ (FieldMaskErrorEnum_FieldMaskError)(0), // 18: google.ads.googleads.v17.errors.FieldMaskErrorEnum.FieldMaskError
+ (AuthorizationErrorEnum_AuthorizationError)(0), // 19: google.ads.googleads.v17.errors.AuthorizationErrorEnum.AuthorizationError
+ (InternalErrorEnum_InternalError)(0), // 20: google.ads.googleads.v17.errors.InternalErrorEnum.InternalError
+ (QuotaErrorEnum_QuotaError)(0), // 21: google.ads.googleads.v17.errors.QuotaErrorEnum.QuotaError
+ (AdErrorEnum_AdError)(0), // 22: google.ads.googleads.v17.errors.AdErrorEnum.AdError
+ (AdGroupErrorEnum_AdGroupError)(0), // 23: google.ads.googleads.v17.errors.AdGroupErrorEnum.AdGroupError
+ (CampaignBudgetErrorEnum_CampaignBudgetError)(0), // 24: google.ads.googleads.v17.errors.CampaignBudgetErrorEnum.CampaignBudgetError
+ (CampaignErrorEnum_CampaignError)(0), // 25: google.ads.googleads.v17.errors.CampaignErrorEnum.CampaignError
+ (VideoCampaignErrorEnum_VideoCampaignError)(0), // 26: google.ads.googleads.v17.errors.VideoCampaignErrorEnum.VideoCampaignError
+ (AuthenticationErrorEnum_AuthenticationError)(0), // 27: google.ads.googleads.v17.errors.AuthenticationErrorEnum.AuthenticationError
+ (AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError)(0), // 28: google.ads.googleads.v17.errors.AdGroupCriterionCustomizerErrorEnum.AdGroupCriterionCustomizerError
+ (AdGroupCriterionErrorEnum_AdGroupCriterionError)(0), // 29: google.ads.googleads.v17.errors.AdGroupCriterionErrorEnum.AdGroupCriterionError
+ (AdGroupCustomizerErrorEnum_AdGroupCustomizerError)(0), // 30: google.ads.googleads.v17.errors.AdGroupCustomizerErrorEnum.AdGroupCustomizerError
+ (AdCustomizerErrorEnum_AdCustomizerError)(0), // 31: google.ads.googleads.v17.errors.AdCustomizerErrorEnum.AdCustomizerError
+ (AdGroupAdErrorEnum_AdGroupAdError)(0), // 32: google.ads.googleads.v17.errors.AdGroupAdErrorEnum.AdGroupAdError
+ (AdSharingErrorEnum_AdSharingError)(0), // 33: google.ads.googleads.v17.errors.AdSharingErrorEnum.AdSharingError
+ (AdxErrorEnum_AdxError)(0), // 34: google.ads.googleads.v17.errors.AdxErrorEnum.AdxError
+ (AssetErrorEnum_AssetError)(0), // 35: google.ads.googleads.v17.errors.AssetErrorEnum.AssetError
+ (AssetGroupAssetErrorEnum_AssetGroupAssetError)(0), // 36: google.ads.googleads.v17.errors.AssetGroupAssetErrorEnum.AssetGroupAssetError
+ (AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError)(0), // 37: google.ads.googleads.v17.errors.AssetGroupListingGroupFilterErrorEnum.AssetGroupListingGroupFilterError
+ (AssetGroupErrorEnum_AssetGroupError)(0), // 38: google.ads.googleads.v17.errors.AssetGroupErrorEnum.AssetGroupError
+ (AssetSetAssetErrorEnum_AssetSetAssetError)(0), // 39: google.ads.googleads.v17.errors.AssetSetAssetErrorEnum.AssetSetAssetError
+ (AssetSetLinkErrorEnum_AssetSetLinkError)(0), // 40: google.ads.googleads.v17.errors.AssetSetLinkErrorEnum.AssetSetLinkError
+ (AssetSetErrorEnum_AssetSetError)(0), // 41: google.ads.googleads.v17.errors.AssetSetErrorEnum.AssetSetError
+ (BiddingErrorEnum_BiddingError)(0), // 42: google.ads.googleads.v17.errors.BiddingErrorEnum.BiddingError
+ (CampaignCriterionErrorEnum_CampaignCriterionError)(0), // 43: google.ads.googleads.v17.errors.CampaignCriterionErrorEnum.CampaignCriterionError
+ (CampaignConversionGoalErrorEnum_CampaignConversionGoalError)(0), // 44: google.ads.googleads.v17.errors.CampaignConversionGoalErrorEnum.CampaignConversionGoalError
+ (CampaignCustomizerErrorEnum_CampaignCustomizerError)(0), // 45: google.ads.googleads.v17.errors.CampaignCustomizerErrorEnum.CampaignCustomizerError
+ (CollectionSizeErrorEnum_CollectionSizeError)(0), // 46: google.ads.googleads.v17.errors.CollectionSizeErrorEnum.CollectionSizeError
+ (ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError)(0), // 47: google.ads.googleads.v17.errors.ConversionGoalCampaignConfigErrorEnum.ConversionGoalCampaignConfigError
+ (CountryCodeErrorEnum_CountryCodeError)(0), // 48: google.ads.googleads.v17.errors.CountryCodeErrorEnum.CountryCodeError
+ (CriterionErrorEnum_CriterionError)(0), // 49: google.ads.googleads.v17.errors.CriterionErrorEnum.CriterionError
+ (CustomConversionGoalErrorEnum_CustomConversionGoalError)(0), // 50: google.ads.googleads.v17.errors.CustomConversionGoalErrorEnum.CustomConversionGoalError
+ (CustomerCustomizerErrorEnum_CustomerCustomizerError)(0), // 51: google.ads.googleads.v17.errors.CustomerCustomizerErrorEnum.CustomerCustomizerError
+ (CustomerErrorEnum_CustomerError)(0), // 52: google.ads.googleads.v17.errors.CustomerErrorEnum.CustomerError
+ (CustomizerAttributeErrorEnum_CustomizerAttributeError)(0), // 53: google.ads.googleads.v17.errors.CustomizerAttributeErrorEnum.CustomizerAttributeError
+ (DateErrorEnum_DateError)(0), // 54: google.ads.googleads.v17.errors.DateErrorEnum.DateError
+ (DateRangeErrorEnum_DateRangeError)(0), // 55: google.ads.googleads.v17.errors.DateRangeErrorEnum.DateRangeError
+ (DistinctErrorEnum_DistinctError)(0), // 56: google.ads.googleads.v17.errors.DistinctErrorEnum.DistinctError
+ (FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError)(0), // 57: google.ads.googleads.v17.errors.FeedAttributeReferenceErrorEnum.FeedAttributeReferenceError
+ (FunctionErrorEnum_FunctionError)(0), // 58: google.ads.googleads.v17.errors.FunctionErrorEnum.FunctionError
+ (FunctionParsingErrorEnum_FunctionParsingError)(0), // 59: google.ads.googleads.v17.errors.FunctionParsingErrorEnum.FunctionParsingError
+ (IdErrorEnum_IdError)(0), // 60: google.ads.googleads.v17.errors.IdErrorEnum.IdError
+ (ImageErrorEnum_ImageError)(0), // 61: google.ads.googleads.v17.errors.ImageErrorEnum.ImageError
+ (LanguageCodeErrorEnum_LanguageCodeError)(0), // 62: google.ads.googleads.v17.errors.LanguageCodeErrorEnum.LanguageCodeError
+ (MediaBundleErrorEnum_MediaBundleError)(0), // 63: google.ads.googleads.v17.errors.MediaBundleErrorEnum.MediaBundleError
+ (MediaUploadErrorEnum_MediaUploadError)(0), // 64: google.ads.googleads.v17.errors.MediaUploadErrorEnum.MediaUploadError
+ (MediaFileErrorEnum_MediaFileError)(0), // 65: google.ads.googleads.v17.errors.MediaFileErrorEnum.MediaFileError
+ (MerchantCenterErrorEnum_MerchantCenterError)(0), // 66: google.ads.googleads.v17.errors.MerchantCenterErrorEnum.MerchantCenterError
+ (MultiplierErrorEnum_MultiplierError)(0), // 67: google.ads.googleads.v17.errors.MultiplierErrorEnum.MultiplierError
+ (NewResourceCreationErrorEnum_NewResourceCreationError)(0), // 68: google.ads.googleads.v17.errors.NewResourceCreationErrorEnum.NewResourceCreationError
+ (NotEmptyErrorEnum_NotEmptyError)(0), // 69: google.ads.googleads.v17.errors.NotEmptyErrorEnum.NotEmptyError
+ (NullErrorEnum_NullError)(0), // 70: google.ads.googleads.v17.errors.NullErrorEnum.NullError
+ (OperatorErrorEnum_OperatorError)(0), // 71: google.ads.googleads.v17.errors.OperatorErrorEnum.OperatorError
+ (RangeErrorEnum_RangeError)(0), // 72: google.ads.googleads.v17.errors.RangeErrorEnum.RangeError
+ (RecommendationErrorEnum_RecommendationError)(0), // 73: google.ads.googleads.v17.errors.RecommendationErrorEnum.RecommendationError
+ (RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError)(0), // 74: google.ads.googleads.v17.errors.RecommendationSubscriptionErrorEnum.RecommendationSubscriptionError
+ (RegionCodeErrorEnum_RegionCodeError)(0), // 75: google.ads.googleads.v17.errors.RegionCodeErrorEnum.RegionCodeError
+ (SettingErrorEnum_SettingError)(0), // 76: google.ads.googleads.v17.errors.SettingErrorEnum.SettingError
+ (StringFormatErrorEnum_StringFormatError)(0), // 77: google.ads.googleads.v17.errors.StringFormatErrorEnum.StringFormatError
+ (StringLengthErrorEnum_StringLengthError)(0), // 78: google.ads.googleads.v17.errors.StringLengthErrorEnum.StringLengthError
+ (OperationAccessDeniedErrorEnum_OperationAccessDeniedError)(0), // 79: google.ads.googleads.v17.errors.OperationAccessDeniedErrorEnum.OperationAccessDeniedError
+ (ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError)(0), // 80: google.ads.googleads.v17.errors.ResourceAccessDeniedErrorEnum.ResourceAccessDeniedError
+ (ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError)(0), // 81: google.ads.googleads.v17.errors.ResourceCountLimitExceededErrorEnum.ResourceCountLimitExceededError
+ (YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError)(0), // 82: google.ads.googleads.v17.errors.YoutubeVideoRegistrationErrorEnum.YoutubeVideoRegistrationError
+ (AdGroupBidModifierErrorEnum_AdGroupBidModifierError)(0), // 83: google.ads.googleads.v17.errors.AdGroupBidModifierErrorEnum.AdGroupBidModifierError
+ (ContextErrorEnum_ContextError)(0), // 84: google.ads.googleads.v17.errors.ContextErrorEnum.ContextError
+ (FieldErrorEnum_FieldError)(0), // 85: google.ads.googleads.v17.errors.FieldErrorEnum.FieldError
+ (SharedSetErrorEnum_SharedSetError)(0), // 86: google.ads.googleads.v17.errors.SharedSetErrorEnum.SharedSetError
+ (SharedCriterionErrorEnum_SharedCriterionError)(0), // 87: google.ads.googleads.v17.errors.SharedCriterionErrorEnum.SharedCriterionError
+ (CampaignSharedSetErrorEnum_CampaignSharedSetError)(0), // 88: google.ads.googleads.v17.errors.CampaignSharedSetErrorEnum.CampaignSharedSetError
+ (ConversionActionErrorEnum_ConversionActionError)(0), // 89: google.ads.googleads.v17.errors.ConversionActionErrorEnum.ConversionActionError
+ (ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError)(0), // 90: google.ads.googleads.v17.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError
+ (ConversionCustomVariableErrorEnum_ConversionCustomVariableError)(0), // 91: google.ads.googleads.v17.errors.ConversionCustomVariableErrorEnum.ConversionCustomVariableError
+ (ConversionUploadErrorEnum_ConversionUploadError)(0), // 92: google.ads.googleads.v17.errors.ConversionUploadErrorEnum.ConversionUploadError
+ (ConversionValueRuleErrorEnum_ConversionValueRuleError)(0), // 93: google.ads.googleads.v17.errors.ConversionValueRuleErrorEnum.ConversionValueRuleError
+ (ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError)(0), // 94: google.ads.googleads.v17.errors.ConversionValueRuleSetErrorEnum.ConversionValueRuleSetError
+ (HeaderErrorEnum_HeaderError)(0), // 95: google.ads.googleads.v17.errors.HeaderErrorEnum.HeaderError
+ (DatabaseErrorEnum_DatabaseError)(0), // 96: google.ads.googleads.v17.errors.DatabaseErrorEnum.DatabaseError
+ (PolicyFindingErrorEnum_PolicyFindingError)(0), // 97: google.ads.googleads.v17.errors.PolicyFindingErrorEnum.PolicyFindingError
+ (EnumErrorEnum_EnumError)(0), // 98: google.ads.googleads.v17.errors.EnumErrorEnum.EnumError
+ (KeywordPlanErrorEnum_KeywordPlanError)(0), // 99: google.ads.googleads.v17.errors.KeywordPlanErrorEnum.KeywordPlanError
+ (KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError)(0), // 100: google.ads.googleads.v17.errors.KeywordPlanCampaignErrorEnum.KeywordPlanCampaignError
+ (KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError)(0), // 101: google.ads.googleads.v17.errors.KeywordPlanCampaignKeywordErrorEnum.KeywordPlanCampaignKeywordError
+ (KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError)(0), // 102: google.ads.googleads.v17.errors.KeywordPlanAdGroupErrorEnum.KeywordPlanAdGroupError
+ (KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError)(0), // 103: google.ads.googleads.v17.errors.KeywordPlanAdGroupKeywordErrorEnum.KeywordPlanAdGroupKeywordError
+ (KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError)(0), // 104: google.ads.googleads.v17.errors.KeywordPlanIdeaErrorEnum.KeywordPlanIdeaError
+ (AccountBudgetProposalErrorEnum_AccountBudgetProposalError)(0), // 105: google.ads.googleads.v17.errors.AccountBudgetProposalErrorEnum.AccountBudgetProposalError
+ (UserListErrorEnum_UserListError)(0), // 106: google.ads.googleads.v17.errors.UserListErrorEnum.UserListError
+ (ChangeEventErrorEnum_ChangeEventError)(0), // 107: google.ads.googleads.v17.errors.ChangeEventErrorEnum.ChangeEventError
+ (ChangeStatusErrorEnum_ChangeStatusError)(0), // 108: google.ads.googleads.v17.errors.ChangeStatusErrorEnum.ChangeStatusError
+ (FeedErrorEnum_FeedError)(0), // 109: google.ads.googleads.v17.errors.FeedErrorEnum.FeedError
+ (GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError)(0), // 110: google.ads.googleads.v17.errors.GeoTargetConstantSuggestionErrorEnum.GeoTargetConstantSuggestionError
+ (CampaignDraftErrorEnum_CampaignDraftError)(0), // 111: google.ads.googleads.v17.errors.CampaignDraftErrorEnum.CampaignDraftError
+ (FeedItemErrorEnum_FeedItemError)(0), // 112: google.ads.googleads.v17.errors.FeedItemErrorEnum.FeedItemError
+ (LabelErrorEnum_LabelError)(0), // 113: google.ads.googleads.v17.errors.LabelErrorEnum.LabelError
+ (BillingSetupErrorEnum_BillingSetupError)(0), // 114: google.ads.googleads.v17.errors.BillingSetupErrorEnum.BillingSetupError
+ (CustomerClientLinkErrorEnum_CustomerClientLinkError)(0), // 115: google.ads.googleads.v17.errors.CustomerClientLinkErrorEnum.CustomerClientLinkError
+ (CustomerManagerLinkErrorEnum_CustomerManagerLinkError)(0), // 116: google.ads.googleads.v17.errors.CustomerManagerLinkErrorEnum.CustomerManagerLinkError
+ (FeedMappingErrorEnum_FeedMappingError)(0), // 117: google.ads.googleads.v17.errors.FeedMappingErrorEnum.FeedMappingError
+ (CustomerFeedErrorEnum_CustomerFeedError)(0), // 118: google.ads.googleads.v17.errors.CustomerFeedErrorEnum.CustomerFeedError
+ (AdGroupFeedErrorEnum_AdGroupFeedError)(0), // 119: google.ads.googleads.v17.errors.AdGroupFeedErrorEnum.AdGroupFeedError
+ (CampaignFeedErrorEnum_CampaignFeedError)(0), // 120: google.ads.googleads.v17.errors.CampaignFeedErrorEnum.CampaignFeedError
+ (CustomInterestErrorEnum_CustomInterestError)(0), // 121: google.ads.googleads.v17.errors.CustomInterestErrorEnum.CustomInterestError
+ (CampaignExperimentErrorEnum_CampaignExperimentError)(0), // 122: google.ads.googleads.v17.errors.CampaignExperimentErrorEnum.CampaignExperimentError
+ (ExtensionFeedItemErrorEnum_ExtensionFeedItemError)(0), // 123: google.ads.googleads.v17.errors.ExtensionFeedItemErrorEnum.ExtensionFeedItemError
+ (AdParameterErrorEnum_AdParameterError)(0), // 124: google.ads.googleads.v17.errors.AdParameterErrorEnum.AdParameterError
+ (FeedItemValidationErrorEnum_FeedItemValidationError)(0), // 125: google.ads.googleads.v17.errors.FeedItemValidationErrorEnum.FeedItemValidationError
+ (ExtensionSettingErrorEnum_ExtensionSettingError)(0), // 126: google.ads.googleads.v17.errors.ExtensionSettingErrorEnum.ExtensionSettingError
+ (FeedItemSetErrorEnum_FeedItemSetError)(0), // 127: google.ads.googleads.v17.errors.FeedItemSetErrorEnum.FeedItemSetError
+ (FeedItemSetLinkErrorEnum_FeedItemSetLinkError)(0), // 128: google.ads.googleads.v17.errors.FeedItemSetLinkErrorEnum.FeedItemSetLinkError
+ (FeedItemTargetErrorEnum_FeedItemTargetError)(0), // 129: google.ads.googleads.v17.errors.FeedItemTargetErrorEnum.FeedItemTargetError
+ (PolicyViolationErrorEnum_PolicyViolationError)(0), // 130: google.ads.googleads.v17.errors.PolicyViolationErrorEnum.PolicyViolationError
+ (PartialFailureErrorEnum_PartialFailureError)(0), // 131: google.ads.googleads.v17.errors.PartialFailureErrorEnum.PartialFailureError
+ (PolicyValidationParameterErrorEnum_PolicyValidationParameterError)(0), // 132: google.ads.googleads.v17.errors.PolicyValidationParameterErrorEnum.PolicyValidationParameterError
+ (SizeLimitErrorEnum_SizeLimitError)(0), // 133: google.ads.googleads.v17.errors.SizeLimitErrorEnum.SizeLimitError
+ (OfflineUserDataJobErrorEnum_OfflineUserDataJobError)(0), // 134: google.ads.googleads.v17.errors.OfflineUserDataJobErrorEnum.OfflineUserDataJobError
+ (NotAllowlistedErrorEnum_NotAllowlistedError)(0), // 135: google.ads.googleads.v17.errors.NotAllowlistedErrorEnum.NotAllowlistedError
+ (ManagerLinkErrorEnum_ManagerLinkError)(0), // 136: google.ads.googleads.v17.errors.ManagerLinkErrorEnum.ManagerLinkError
+ (CurrencyCodeErrorEnum_CurrencyCodeError)(0), // 137: google.ads.googleads.v17.errors.CurrencyCodeErrorEnum.CurrencyCodeError
+ (ExperimentErrorEnum_ExperimentError)(0), // 138: google.ads.googleads.v17.errors.ExperimentErrorEnum.ExperimentError
+ (AccessInvitationErrorEnum_AccessInvitationError)(0), // 139: google.ads.googleads.v17.errors.AccessInvitationErrorEnum.AccessInvitationError
+ (ReachPlanErrorEnum_ReachPlanError)(0), // 140: google.ads.googleads.v17.errors.ReachPlanErrorEnum.ReachPlanError
+ (InvoiceErrorEnum_InvoiceError)(0), // 141: google.ads.googleads.v17.errors.InvoiceErrorEnum.InvoiceError
+ (PaymentsAccountErrorEnum_PaymentsAccountError)(0), // 142: google.ads.googleads.v17.errors.PaymentsAccountErrorEnum.PaymentsAccountError
+ (TimeZoneErrorEnum_TimeZoneError)(0), // 143: google.ads.googleads.v17.errors.TimeZoneErrorEnum.TimeZoneError
+ (AssetLinkErrorEnum_AssetLinkError)(0), // 144: google.ads.googleads.v17.errors.AssetLinkErrorEnum.AssetLinkError
+ (UserDataErrorEnum_UserDataError)(0), // 145: google.ads.googleads.v17.errors.UserDataErrorEnum.UserDataError
+ (BatchJobErrorEnum_BatchJobError)(0), // 146: google.ads.googleads.v17.errors.BatchJobErrorEnum.BatchJobError
+ (AccountLinkErrorEnum_AccountLinkError)(0), // 147: google.ads.googleads.v17.errors.AccountLinkErrorEnum.AccountLinkError
+ (ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError)(0), // 148: google.ads.googleads.v17.errors.ThirdPartyAppAnalyticsLinkErrorEnum.ThirdPartyAppAnalyticsLinkError
+ (CustomerUserAccessErrorEnum_CustomerUserAccessError)(0), // 149: google.ads.googleads.v17.errors.CustomerUserAccessErrorEnum.CustomerUserAccessError
+ (CustomAudienceErrorEnum_CustomAudienceError)(0), // 150: google.ads.googleads.v17.errors.CustomAudienceErrorEnum.CustomAudienceError
+ (AudienceErrorEnum_AudienceError)(0), // 151: google.ads.googleads.v17.errors.AudienceErrorEnum.AudienceError
+ (SearchTermInsightErrorEnum_SearchTermInsightError)(0), // 152: google.ads.googleads.v17.errors.SearchTermInsightErrorEnum.SearchTermInsightError
+ (SmartCampaignErrorEnum_SmartCampaignError)(0), // 153: google.ads.googleads.v17.errors.SmartCampaignErrorEnum.SmartCampaignError
+ (ExperimentArmErrorEnum_ExperimentArmError)(0), // 154: google.ads.googleads.v17.errors.ExperimentArmErrorEnum.ExperimentArmError
+ (AudienceInsightsErrorEnum_AudienceInsightsError)(0), // 155: google.ads.googleads.v17.errors.AudienceInsightsErrorEnum.AudienceInsightsError
+ (ProductLinkErrorEnum_ProductLinkError)(0), // 156: google.ads.googleads.v17.errors.ProductLinkErrorEnum.ProductLinkError
+ (CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError)(0), // 157: google.ads.googleads.v17.errors.CustomerSkAdNetworkConversionValueSchemaErrorEnum.CustomerSkAdNetworkConversionValueSchemaError
+ (CurrencyErrorEnum_CurrencyError)(0), // 158: google.ads.googleads.v17.errors.CurrencyErrorEnum.CurrencyError
+ (AssetGroupSignalErrorEnum_AssetGroupSignalError)(0), // 159: google.ads.googleads.v17.errors.AssetGroupSignalErrorEnum.AssetGroupSignalError
+ (ProductLinkInvitationErrorEnum_ProductLinkInvitationError)(0), // 160: google.ads.googleads.v17.errors.ProductLinkInvitationErrorEnum.ProductLinkInvitationError
+ (CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError)(0), // 161: google.ads.googleads.v17.errors.CustomerLifecycleGoalErrorEnum.CustomerLifecycleGoalError
+ (CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError)(0), // 162: google.ads.googleads.v17.errors.CampaignLifecycleGoalErrorEnum.CampaignLifecycleGoalError
+ (IdentityVerificationErrorEnum_IdentityVerificationError)(0), // 163: google.ads.googleads.v17.errors.IdentityVerificationErrorEnum.IdentityVerificationError
+ (UserListCustomerTypeErrorEnum_UserListCustomerTypeError)(0), // 164: google.ads.googleads.v17.errors.UserListCustomerTypeErrorEnum.UserListCustomerTypeError
+ (ShoppingProductErrorEnum_ShoppingProductError)(0), // 165: google.ads.googleads.v17.errors.ShoppingProductErrorEnum.ShoppingProductError
+ (*common.PolicyViolationKey)(nil), // 166: google.ads.googleads.v17.common.PolicyViolationKey
+ (*common.PolicyTopicEntry)(nil), // 167: google.ads.googleads.v17.common.PolicyTopicEntry
+ (*durationpb.Duration)(nil), // 168: google.protobuf.Duration
+ (enums.ResourceLimitTypeEnum_ResourceLimitType)(0), // 169: google.ads.googleads.v17.enums.ResourceLimitTypeEnum.ResourceLimitType
+}
+var file_google_ads_googleads_v17_errors_errors_proto_depIdxs = []int32{
+ 2, // 0: google.ads.googleads.v17.errors.GoogleAdsFailure.errors:type_name -> google.ads.googleads.v17.errors.GoogleAdsError
+ 3, // 1: google.ads.googleads.v17.errors.GoogleAdsError.error_code:type_name -> google.ads.googleads.v17.errors.ErrorCode
+ 11, // 2: google.ads.googleads.v17.errors.GoogleAdsError.trigger:type_name -> google.ads.googleads.v17.common.Value
+ 4, // 3: google.ads.googleads.v17.errors.GoogleAdsError.location:type_name -> google.ads.googleads.v17.errors.ErrorLocation
+ 5, // 4: google.ads.googleads.v17.errors.GoogleAdsError.details:type_name -> google.ads.googleads.v17.errors.ErrorDetails
+ 12, // 5: google.ads.googleads.v17.errors.ErrorCode.request_error:type_name -> google.ads.googleads.v17.errors.RequestErrorEnum.RequestError
+ 13, // 6: google.ads.googleads.v17.errors.ErrorCode.bidding_strategy_error:type_name -> google.ads.googleads.v17.errors.BiddingStrategyErrorEnum.BiddingStrategyError
+ 14, // 7: google.ads.googleads.v17.errors.ErrorCode.url_field_error:type_name -> google.ads.googleads.v17.errors.UrlFieldErrorEnum.UrlFieldError
+ 15, // 8: google.ads.googleads.v17.errors.ErrorCode.list_operation_error:type_name -> google.ads.googleads.v17.errors.ListOperationErrorEnum.ListOperationError
+ 16, // 9: google.ads.googleads.v17.errors.ErrorCode.query_error:type_name -> google.ads.googleads.v17.errors.QueryErrorEnum.QueryError
+ 17, // 10: google.ads.googleads.v17.errors.ErrorCode.mutate_error:type_name -> google.ads.googleads.v17.errors.MutateErrorEnum.MutateError
+ 18, // 11: google.ads.googleads.v17.errors.ErrorCode.field_mask_error:type_name -> google.ads.googleads.v17.errors.FieldMaskErrorEnum.FieldMaskError
+ 19, // 12: google.ads.googleads.v17.errors.ErrorCode.authorization_error:type_name -> google.ads.googleads.v17.errors.AuthorizationErrorEnum.AuthorizationError
+ 20, // 13: google.ads.googleads.v17.errors.ErrorCode.internal_error:type_name -> google.ads.googleads.v17.errors.InternalErrorEnum.InternalError
+ 21, // 14: google.ads.googleads.v17.errors.ErrorCode.quota_error:type_name -> google.ads.googleads.v17.errors.QuotaErrorEnum.QuotaError
+ 22, // 15: google.ads.googleads.v17.errors.ErrorCode.ad_error:type_name -> google.ads.googleads.v17.errors.AdErrorEnum.AdError
+ 23, // 16: google.ads.googleads.v17.errors.ErrorCode.ad_group_error:type_name -> google.ads.googleads.v17.errors.AdGroupErrorEnum.AdGroupError
+ 24, // 17: google.ads.googleads.v17.errors.ErrorCode.campaign_budget_error:type_name -> google.ads.googleads.v17.errors.CampaignBudgetErrorEnum.CampaignBudgetError
+ 25, // 18: google.ads.googleads.v17.errors.ErrorCode.campaign_error:type_name -> google.ads.googleads.v17.errors.CampaignErrorEnum.CampaignError
+ 26, // 19: google.ads.googleads.v17.errors.ErrorCode.video_campaign_error:type_name -> google.ads.googleads.v17.errors.VideoCampaignErrorEnum.VideoCampaignError
+ 27, // 20: google.ads.googleads.v17.errors.ErrorCode.authentication_error:type_name -> google.ads.googleads.v17.errors.AuthenticationErrorEnum.AuthenticationError
+ 28, // 21: google.ads.googleads.v17.errors.ErrorCode.ad_group_criterion_customizer_error:type_name -> google.ads.googleads.v17.errors.AdGroupCriterionCustomizerErrorEnum.AdGroupCriterionCustomizerError
+ 29, // 22: google.ads.googleads.v17.errors.ErrorCode.ad_group_criterion_error:type_name -> google.ads.googleads.v17.errors.AdGroupCriterionErrorEnum.AdGroupCriterionError
+ 30, // 23: google.ads.googleads.v17.errors.ErrorCode.ad_group_customizer_error:type_name -> google.ads.googleads.v17.errors.AdGroupCustomizerErrorEnum.AdGroupCustomizerError
+ 31, // 24: google.ads.googleads.v17.errors.ErrorCode.ad_customizer_error:type_name -> google.ads.googleads.v17.errors.AdCustomizerErrorEnum.AdCustomizerError
+ 32, // 25: google.ads.googleads.v17.errors.ErrorCode.ad_group_ad_error:type_name -> google.ads.googleads.v17.errors.AdGroupAdErrorEnum.AdGroupAdError
+ 33, // 26: google.ads.googleads.v17.errors.ErrorCode.ad_sharing_error:type_name -> google.ads.googleads.v17.errors.AdSharingErrorEnum.AdSharingError
+ 34, // 27: google.ads.googleads.v17.errors.ErrorCode.adx_error:type_name -> google.ads.googleads.v17.errors.AdxErrorEnum.AdxError
+ 35, // 28: google.ads.googleads.v17.errors.ErrorCode.asset_error:type_name -> google.ads.googleads.v17.errors.AssetErrorEnum.AssetError
+ 36, // 29: google.ads.googleads.v17.errors.ErrorCode.asset_group_asset_error:type_name -> google.ads.googleads.v17.errors.AssetGroupAssetErrorEnum.AssetGroupAssetError
+ 37, // 30: google.ads.googleads.v17.errors.ErrorCode.asset_group_listing_group_filter_error:type_name -> google.ads.googleads.v17.errors.AssetGroupListingGroupFilterErrorEnum.AssetGroupListingGroupFilterError
+ 38, // 31: google.ads.googleads.v17.errors.ErrorCode.asset_group_error:type_name -> google.ads.googleads.v17.errors.AssetGroupErrorEnum.AssetGroupError
+ 39, // 32: google.ads.googleads.v17.errors.ErrorCode.asset_set_asset_error:type_name -> google.ads.googleads.v17.errors.AssetSetAssetErrorEnum.AssetSetAssetError
+ 40, // 33: google.ads.googleads.v17.errors.ErrorCode.asset_set_link_error:type_name -> google.ads.googleads.v17.errors.AssetSetLinkErrorEnum.AssetSetLinkError
+ 41, // 34: google.ads.googleads.v17.errors.ErrorCode.asset_set_error:type_name -> google.ads.googleads.v17.errors.AssetSetErrorEnum.AssetSetError
+ 42, // 35: google.ads.googleads.v17.errors.ErrorCode.bidding_error:type_name -> google.ads.googleads.v17.errors.BiddingErrorEnum.BiddingError
+ 43, // 36: google.ads.googleads.v17.errors.ErrorCode.campaign_criterion_error:type_name -> google.ads.googleads.v17.errors.CampaignCriterionErrorEnum.CampaignCriterionError
+ 44, // 37: google.ads.googleads.v17.errors.ErrorCode.campaign_conversion_goal_error:type_name -> google.ads.googleads.v17.errors.CampaignConversionGoalErrorEnum.CampaignConversionGoalError
+ 45, // 38: google.ads.googleads.v17.errors.ErrorCode.campaign_customizer_error:type_name -> google.ads.googleads.v17.errors.CampaignCustomizerErrorEnum.CampaignCustomizerError
+ 46, // 39: google.ads.googleads.v17.errors.ErrorCode.collection_size_error:type_name -> google.ads.googleads.v17.errors.CollectionSizeErrorEnum.CollectionSizeError
+ 47, // 40: google.ads.googleads.v17.errors.ErrorCode.conversion_goal_campaign_config_error:type_name -> google.ads.googleads.v17.errors.ConversionGoalCampaignConfigErrorEnum.ConversionGoalCampaignConfigError
+ 48, // 41: google.ads.googleads.v17.errors.ErrorCode.country_code_error:type_name -> google.ads.googleads.v17.errors.CountryCodeErrorEnum.CountryCodeError
+ 49, // 42: google.ads.googleads.v17.errors.ErrorCode.criterion_error:type_name -> google.ads.googleads.v17.errors.CriterionErrorEnum.CriterionError
+ 50, // 43: google.ads.googleads.v17.errors.ErrorCode.custom_conversion_goal_error:type_name -> google.ads.googleads.v17.errors.CustomConversionGoalErrorEnum.CustomConversionGoalError
+ 51, // 44: google.ads.googleads.v17.errors.ErrorCode.customer_customizer_error:type_name -> google.ads.googleads.v17.errors.CustomerCustomizerErrorEnum.CustomerCustomizerError
+ 52, // 45: google.ads.googleads.v17.errors.ErrorCode.customer_error:type_name -> google.ads.googleads.v17.errors.CustomerErrorEnum.CustomerError
+ 53, // 46: google.ads.googleads.v17.errors.ErrorCode.customizer_attribute_error:type_name -> google.ads.googleads.v17.errors.CustomizerAttributeErrorEnum.CustomizerAttributeError
+ 54, // 47: google.ads.googleads.v17.errors.ErrorCode.date_error:type_name -> google.ads.googleads.v17.errors.DateErrorEnum.DateError
+ 55, // 48: google.ads.googleads.v17.errors.ErrorCode.date_range_error:type_name -> google.ads.googleads.v17.errors.DateRangeErrorEnum.DateRangeError
+ 56, // 49: google.ads.googleads.v17.errors.ErrorCode.distinct_error:type_name -> google.ads.googleads.v17.errors.DistinctErrorEnum.DistinctError
+ 57, // 50: google.ads.googleads.v17.errors.ErrorCode.feed_attribute_reference_error:type_name -> google.ads.googleads.v17.errors.FeedAttributeReferenceErrorEnum.FeedAttributeReferenceError
+ 58, // 51: google.ads.googleads.v17.errors.ErrorCode.function_error:type_name -> google.ads.googleads.v17.errors.FunctionErrorEnum.FunctionError
+ 59, // 52: google.ads.googleads.v17.errors.ErrorCode.function_parsing_error:type_name -> google.ads.googleads.v17.errors.FunctionParsingErrorEnum.FunctionParsingError
+ 60, // 53: google.ads.googleads.v17.errors.ErrorCode.id_error:type_name -> google.ads.googleads.v17.errors.IdErrorEnum.IdError
+ 61, // 54: google.ads.googleads.v17.errors.ErrorCode.image_error:type_name -> google.ads.googleads.v17.errors.ImageErrorEnum.ImageError
+ 62, // 55: google.ads.googleads.v17.errors.ErrorCode.language_code_error:type_name -> google.ads.googleads.v17.errors.LanguageCodeErrorEnum.LanguageCodeError
+ 63, // 56: google.ads.googleads.v17.errors.ErrorCode.media_bundle_error:type_name -> google.ads.googleads.v17.errors.MediaBundleErrorEnum.MediaBundleError
+ 64, // 57: google.ads.googleads.v17.errors.ErrorCode.media_upload_error:type_name -> google.ads.googleads.v17.errors.MediaUploadErrorEnum.MediaUploadError
+ 65, // 58: google.ads.googleads.v17.errors.ErrorCode.media_file_error:type_name -> google.ads.googleads.v17.errors.MediaFileErrorEnum.MediaFileError
+ 66, // 59: google.ads.googleads.v17.errors.ErrorCode.merchant_center_error:type_name -> google.ads.googleads.v17.errors.MerchantCenterErrorEnum.MerchantCenterError
+ 67, // 60: google.ads.googleads.v17.errors.ErrorCode.multiplier_error:type_name -> google.ads.googleads.v17.errors.MultiplierErrorEnum.MultiplierError
+ 68, // 61: google.ads.googleads.v17.errors.ErrorCode.new_resource_creation_error:type_name -> google.ads.googleads.v17.errors.NewResourceCreationErrorEnum.NewResourceCreationError
+ 69, // 62: google.ads.googleads.v17.errors.ErrorCode.not_empty_error:type_name -> google.ads.googleads.v17.errors.NotEmptyErrorEnum.NotEmptyError
+ 70, // 63: google.ads.googleads.v17.errors.ErrorCode.null_error:type_name -> google.ads.googleads.v17.errors.NullErrorEnum.NullError
+ 71, // 64: google.ads.googleads.v17.errors.ErrorCode.operator_error:type_name -> google.ads.googleads.v17.errors.OperatorErrorEnum.OperatorError
+ 72, // 65: google.ads.googleads.v17.errors.ErrorCode.range_error:type_name -> google.ads.googleads.v17.errors.RangeErrorEnum.RangeError
+ 73, // 66: google.ads.googleads.v17.errors.ErrorCode.recommendation_error:type_name -> google.ads.googleads.v17.errors.RecommendationErrorEnum.RecommendationError
+ 74, // 67: google.ads.googleads.v17.errors.ErrorCode.recommendation_subscription_error:type_name -> google.ads.googleads.v17.errors.RecommendationSubscriptionErrorEnum.RecommendationSubscriptionError
+ 75, // 68: google.ads.googleads.v17.errors.ErrorCode.region_code_error:type_name -> google.ads.googleads.v17.errors.RegionCodeErrorEnum.RegionCodeError
+ 76, // 69: google.ads.googleads.v17.errors.ErrorCode.setting_error:type_name -> google.ads.googleads.v17.errors.SettingErrorEnum.SettingError
+ 77, // 70: google.ads.googleads.v17.errors.ErrorCode.string_format_error:type_name -> google.ads.googleads.v17.errors.StringFormatErrorEnum.StringFormatError
+ 78, // 71: google.ads.googleads.v17.errors.ErrorCode.string_length_error:type_name -> google.ads.googleads.v17.errors.StringLengthErrorEnum.StringLengthError
+ 79, // 72: google.ads.googleads.v17.errors.ErrorCode.operation_access_denied_error:type_name -> google.ads.googleads.v17.errors.OperationAccessDeniedErrorEnum.OperationAccessDeniedError
+ 80, // 73: google.ads.googleads.v17.errors.ErrorCode.resource_access_denied_error:type_name -> google.ads.googleads.v17.errors.ResourceAccessDeniedErrorEnum.ResourceAccessDeniedError
+ 81, // 74: google.ads.googleads.v17.errors.ErrorCode.resource_count_limit_exceeded_error:type_name -> google.ads.googleads.v17.errors.ResourceCountLimitExceededErrorEnum.ResourceCountLimitExceededError
+ 82, // 75: google.ads.googleads.v17.errors.ErrorCode.youtube_video_registration_error:type_name -> google.ads.googleads.v17.errors.YoutubeVideoRegistrationErrorEnum.YoutubeVideoRegistrationError
+ 83, // 76: google.ads.googleads.v17.errors.ErrorCode.ad_group_bid_modifier_error:type_name -> google.ads.googleads.v17.errors.AdGroupBidModifierErrorEnum.AdGroupBidModifierError
+ 84, // 77: google.ads.googleads.v17.errors.ErrorCode.context_error:type_name -> google.ads.googleads.v17.errors.ContextErrorEnum.ContextError
+ 85, // 78: google.ads.googleads.v17.errors.ErrorCode.field_error:type_name -> google.ads.googleads.v17.errors.FieldErrorEnum.FieldError
+ 86, // 79: google.ads.googleads.v17.errors.ErrorCode.shared_set_error:type_name -> google.ads.googleads.v17.errors.SharedSetErrorEnum.SharedSetError
+ 87, // 80: google.ads.googleads.v17.errors.ErrorCode.shared_criterion_error:type_name -> google.ads.googleads.v17.errors.SharedCriterionErrorEnum.SharedCriterionError
+ 88, // 81: google.ads.googleads.v17.errors.ErrorCode.campaign_shared_set_error:type_name -> google.ads.googleads.v17.errors.CampaignSharedSetErrorEnum.CampaignSharedSetError
+ 89, // 82: google.ads.googleads.v17.errors.ErrorCode.conversion_action_error:type_name -> google.ads.googleads.v17.errors.ConversionActionErrorEnum.ConversionActionError
+ 90, // 83: google.ads.googleads.v17.errors.ErrorCode.conversion_adjustment_upload_error:type_name -> google.ads.googleads.v17.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError
+ 91, // 84: google.ads.googleads.v17.errors.ErrorCode.conversion_custom_variable_error:type_name -> google.ads.googleads.v17.errors.ConversionCustomVariableErrorEnum.ConversionCustomVariableError
+ 92, // 85: google.ads.googleads.v17.errors.ErrorCode.conversion_upload_error:type_name -> google.ads.googleads.v17.errors.ConversionUploadErrorEnum.ConversionUploadError
+ 93, // 86: google.ads.googleads.v17.errors.ErrorCode.conversion_value_rule_error:type_name -> google.ads.googleads.v17.errors.ConversionValueRuleErrorEnum.ConversionValueRuleError
+ 94, // 87: google.ads.googleads.v17.errors.ErrorCode.conversion_value_rule_set_error:type_name -> google.ads.googleads.v17.errors.ConversionValueRuleSetErrorEnum.ConversionValueRuleSetError
+ 95, // 88: google.ads.googleads.v17.errors.ErrorCode.header_error:type_name -> google.ads.googleads.v17.errors.HeaderErrorEnum.HeaderError
+ 96, // 89: google.ads.googleads.v17.errors.ErrorCode.database_error:type_name -> google.ads.googleads.v17.errors.DatabaseErrorEnum.DatabaseError
+ 97, // 90: google.ads.googleads.v17.errors.ErrorCode.policy_finding_error:type_name -> google.ads.googleads.v17.errors.PolicyFindingErrorEnum.PolicyFindingError
+ 98, // 91: google.ads.googleads.v17.errors.ErrorCode.enum_error:type_name -> google.ads.googleads.v17.errors.EnumErrorEnum.EnumError
+ 99, // 92: google.ads.googleads.v17.errors.ErrorCode.keyword_plan_error:type_name -> google.ads.googleads.v17.errors.KeywordPlanErrorEnum.KeywordPlanError
+ 100, // 93: google.ads.googleads.v17.errors.ErrorCode.keyword_plan_campaign_error:type_name -> google.ads.googleads.v17.errors.KeywordPlanCampaignErrorEnum.KeywordPlanCampaignError
+ 101, // 94: google.ads.googleads.v17.errors.ErrorCode.keyword_plan_campaign_keyword_error:type_name -> google.ads.googleads.v17.errors.KeywordPlanCampaignKeywordErrorEnum.KeywordPlanCampaignKeywordError
+ 102, // 95: google.ads.googleads.v17.errors.ErrorCode.keyword_plan_ad_group_error:type_name -> google.ads.googleads.v17.errors.KeywordPlanAdGroupErrorEnum.KeywordPlanAdGroupError
+ 103, // 96: google.ads.googleads.v17.errors.ErrorCode.keyword_plan_ad_group_keyword_error:type_name -> google.ads.googleads.v17.errors.KeywordPlanAdGroupKeywordErrorEnum.KeywordPlanAdGroupKeywordError
+ 104, // 97: google.ads.googleads.v17.errors.ErrorCode.keyword_plan_idea_error:type_name -> google.ads.googleads.v17.errors.KeywordPlanIdeaErrorEnum.KeywordPlanIdeaError
+ 105, // 98: google.ads.googleads.v17.errors.ErrorCode.account_budget_proposal_error:type_name -> google.ads.googleads.v17.errors.AccountBudgetProposalErrorEnum.AccountBudgetProposalError
+ 106, // 99: google.ads.googleads.v17.errors.ErrorCode.user_list_error:type_name -> google.ads.googleads.v17.errors.UserListErrorEnum.UserListError
+ 107, // 100: google.ads.googleads.v17.errors.ErrorCode.change_event_error:type_name -> google.ads.googleads.v17.errors.ChangeEventErrorEnum.ChangeEventError
+ 108, // 101: google.ads.googleads.v17.errors.ErrorCode.change_status_error:type_name -> google.ads.googleads.v17.errors.ChangeStatusErrorEnum.ChangeStatusError
+ 109, // 102: google.ads.googleads.v17.errors.ErrorCode.feed_error:type_name -> google.ads.googleads.v17.errors.FeedErrorEnum.FeedError
+ 110, // 103: google.ads.googleads.v17.errors.ErrorCode.geo_target_constant_suggestion_error:type_name -> google.ads.googleads.v17.errors.GeoTargetConstantSuggestionErrorEnum.GeoTargetConstantSuggestionError
+ 111, // 104: google.ads.googleads.v17.errors.ErrorCode.campaign_draft_error:type_name -> google.ads.googleads.v17.errors.CampaignDraftErrorEnum.CampaignDraftError
+ 112, // 105: google.ads.googleads.v17.errors.ErrorCode.feed_item_error:type_name -> google.ads.googleads.v17.errors.FeedItemErrorEnum.FeedItemError
+ 113, // 106: google.ads.googleads.v17.errors.ErrorCode.label_error:type_name -> google.ads.googleads.v17.errors.LabelErrorEnum.LabelError
+ 114, // 107: google.ads.googleads.v17.errors.ErrorCode.billing_setup_error:type_name -> google.ads.googleads.v17.errors.BillingSetupErrorEnum.BillingSetupError
+ 115, // 108: google.ads.googleads.v17.errors.ErrorCode.customer_client_link_error:type_name -> google.ads.googleads.v17.errors.CustomerClientLinkErrorEnum.CustomerClientLinkError
+ 116, // 109: google.ads.googleads.v17.errors.ErrorCode.customer_manager_link_error:type_name -> google.ads.googleads.v17.errors.CustomerManagerLinkErrorEnum.CustomerManagerLinkError
+ 117, // 110: google.ads.googleads.v17.errors.ErrorCode.feed_mapping_error:type_name -> google.ads.googleads.v17.errors.FeedMappingErrorEnum.FeedMappingError
+ 118, // 111: google.ads.googleads.v17.errors.ErrorCode.customer_feed_error:type_name -> google.ads.googleads.v17.errors.CustomerFeedErrorEnum.CustomerFeedError
+ 119, // 112: google.ads.googleads.v17.errors.ErrorCode.ad_group_feed_error:type_name -> google.ads.googleads.v17.errors.AdGroupFeedErrorEnum.AdGroupFeedError
+ 120, // 113: google.ads.googleads.v17.errors.ErrorCode.campaign_feed_error:type_name -> google.ads.googleads.v17.errors.CampaignFeedErrorEnum.CampaignFeedError
+ 121, // 114: google.ads.googleads.v17.errors.ErrorCode.custom_interest_error:type_name -> google.ads.googleads.v17.errors.CustomInterestErrorEnum.CustomInterestError
+ 122, // 115: google.ads.googleads.v17.errors.ErrorCode.campaign_experiment_error:type_name -> google.ads.googleads.v17.errors.CampaignExperimentErrorEnum.CampaignExperimentError
+ 123, // 116: google.ads.googleads.v17.errors.ErrorCode.extension_feed_item_error:type_name -> google.ads.googleads.v17.errors.ExtensionFeedItemErrorEnum.ExtensionFeedItemError
+ 124, // 117: google.ads.googleads.v17.errors.ErrorCode.ad_parameter_error:type_name -> google.ads.googleads.v17.errors.AdParameterErrorEnum.AdParameterError
+ 125, // 118: google.ads.googleads.v17.errors.ErrorCode.feed_item_validation_error:type_name -> google.ads.googleads.v17.errors.FeedItemValidationErrorEnum.FeedItemValidationError
+ 126, // 119: google.ads.googleads.v17.errors.ErrorCode.extension_setting_error:type_name -> google.ads.googleads.v17.errors.ExtensionSettingErrorEnum.ExtensionSettingError
+ 127, // 120: google.ads.googleads.v17.errors.ErrorCode.feed_item_set_error:type_name -> google.ads.googleads.v17.errors.FeedItemSetErrorEnum.FeedItemSetError
+ 128, // 121: google.ads.googleads.v17.errors.ErrorCode.feed_item_set_link_error:type_name -> google.ads.googleads.v17.errors.FeedItemSetLinkErrorEnum.FeedItemSetLinkError
+ 129, // 122: google.ads.googleads.v17.errors.ErrorCode.feed_item_target_error:type_name -> google.ads.googleads.v17.errors.FeedItemTargetErrorEnum.FeedItemTargetError
+ 130, // 123: google.ads.googleads.v17.errors.ErrorCode.policy_violation_error:type_name -> google.ads.googleads.v17.errors.PolicyViolationErrorEnum.PolicyViolationError
+ 131, // 124: google.ads.googleads.v17.errors.ErrorCode.partial_failure_error:type_name -> google.ads.googleads.v17.errors.PartialFailureErrorEnum.PartialFailureError
+ 132, // 125: google.ads.googleads.v17.errors.ErrorCode.policy_validation_parameter_error:type_name -> google.ads.googleads.v17.errors.PolicyValidationParameterErrorEnum.PolicyValidationParameterError
+ 133, // 126: google.ads.googleads.v17.errors.ErrorCode.size_limit_error:type_name -> google.ads.googleads.v17.errors.SizeLimitErrorEnum.SizeLimitError
+ 134, // 127: google.ads.googleads.v17.errors.ErrorCode.offline_user_data_job_error:type_name -> google.ads.googleads.v17.errors.OfflineUserDataJobErrorEnum.OfflineUserDataJobError
+ 135, // 128: google.ads.googleads.v17.errors.ErrorCode.not_allowlisted_error:type_name -> google.ads.googleads.v17.errors.NotAllowlistedErrorEnum.NotAllowlistedError
+ 136, // 129: google.ads.googleads.v17.errors.ErrorCode.manager_link_error:type_name -> google.ads.googleads.v17.errors.ManagerLinkErrorEnum.ManagerLinkError
+ 137, // 130: google.ads.googleads.v17.errors.ErrorCode.currency_code_error:type_name -> google.ads.googleads.v17.errors.CurrencyCodeErrorEnum.CurrencyCodeError
+ 138, // 131: google.ads.googleads.v17.errors.ErrorCode.experiment_error:type_name -> google.ads.googleads.v17.errors.ExperimentErrorEnum.ExperimentError
+ 139, // 132: google.ads.googleads.v17.errors.ErrorCode.access_invitation_error:type_name -> google.ads.googleads.v17.errors.AccessInvitationErrorEnum.AccessInvitationError
+ 140, // 133: google.ads.googleads.v17.errors.ErrorCode.reach_plan_error:type_name -> google.ads.googleads.v17.errors.ReachPlanErrorEnum.ReachPlanError
+ 141, // 134: google.ads.googleads.v17.errors.ErrorCode.invoice_error:type_name -> google.ads.googleads.v17.errors.InvoiceErrorEnum.InvoiceError
+ 142, // 135: google.ads.googleads.v17.errors.ErrorCode.payments_account_error:type_name -> google.ads.googleads.v17.errors.PaymentsAccountErrorEnum.PaymentsAccountError
+ 143, // 136: google.ads.googleads.v17.errors.ErrorCode.time_zone_error:type_name -> google.ads.googleads.v17.errors.TimeZoneErrorEnum.TimeZoneError
+ 144, // 137: google.ads.googleads.v17.errors.ErrorCode.asset_link_error:type_name -> google.ads.googleads.v17.errors.AssetLinkErrorEnum.AssetLinkError
+ 145, // 138: google.ads.googleads.v17.errors.ErrorCode.user_data_error:type_name -> google.ads.googleads.v17.errors.UserDataErrorEnum.UserDataError
+ 146, // 139: google.ads.googleads.v17.errors.ErrorCode.batch_job_error:type_name -> google.ads.googleads.v17.errors.BatchJobErrorEnum.BatchJobError
+ 147, // 140: google.ads.googleads.v17.errors.ErrorCode.account_link_error:type_name -> google.ads.googleads.v17.errors.AccountLinkErrorEnum.AccountLinkError
+ 148, // 141: google.ads.googleads.v17.errors.ErrorCode.third_party_app_analytics_link_error:type_name -> google.ads.googleads.v17.errors.ThirdPartyAppAnalyticsLinkErrorEnum.ThirdPartyAppAnalyticsLinkError
+ 149, // 142: google.ads.googleads.v17.errors.ErrorCode.customer_user_access_error:type_name -> google.ads.googleads.v17.errors.CustomerUserAccessErrorEnum.CustomerUserAccessError
+ 150, // 143: google.ads.googleads.v17.errors.ErrorCode.custom_audience_error:type_name -> google.ads.googleads.v17.errors.CustomAudienceErrorEnum.CustomAudienceError
+ 151, // 144: google.ads.googleads.v17.errors.ErrorCode.audience_error:type_name -> google.ads.googleads.v17.errors.AudienceErrorEnum.AudienceError
+ 152, // 145: google.ads.googleads.v17.errors.ErrorCode.search_term_insight_error:type_name -> google.ads.googleads.v17.errors.SearchTermInsightErrorEnum.SearchTermInsightError
+ 153, // 146: google.ads.googleads.v17.errors.ErrorCode.smart_campaign_error:type_name -> google.ads.googleads.v17.errors.SmartCampaignErrorEnum.SmartCampaignError
+ 154, // 147: google.ads.googleads.v17.errors.ErrorCode.experiment_arm_error:type_name -> google.ads.googleads.v17.errors.ExperimentArmErrorEnum.ExperimentArmError
+ 155, // 148: google.ads.googleads.v17.errors.ErrorCode.audience_insights_error:type_name -> google.ads.googleads.v17.errors.AudienceInsightsErrorEnum.AudienceInsightsError
+ 156, // 149: google.ads.googleads.v17.errors.ErrorCode.product_link_error:type_name -> google.ads.googleads.v17.errors.ProductLinkErrorEnum.ProductLinkError
+ 157, // 150: google.ads.googleads.v17.errors.ErrorCode.customer_sk_ad_network_conversion_value_schema_error:type_name -> google.ads.googleads.v17.errors.CustomerSkAdNetworkConversionValueSchemaErrorEnum.CustomerSkAdNetworkConversionValueSchemaError
+ 158, // 151: google.ads.googleads.v17.errors.ErrorCode.currency_error:type_name -> google.ads.googleads.v17.errors.CurrencyErrorEnum.CurrencyError
+ 159, // 152: google.ads.googleads.v17.errors.ErrorCode.asset_group_signal_error:type_name -> google.ads.googleads.v17.errors.AssetGroupSignalErrorEnum.AssetGroupSignalError
+ 160, // 153: google.ads.googleads.v17.errors.ErrorCode.product_link_invitation_error:type_name -> google.ads.googleads.v17.errors.ProductLinkInvitationErrorEnum.ProductLinkInvitationError
+ 161, // 154: google.ads.googleads.v17.errors.ErrorCode.customer_lifecycle_goal_error:type_name -> google.ads.googleads.v17.errors.CustomerLifecycleGoalErrorEnum.CustomerLifecycleGoalError
+ 162, // 155: google.ads.googleads.v17.errors.ErrorCode.campaign_lifecycle_goal_error:type_name -> google.ads.googleads.v17.errors.CampaignLifecycleGoalErrorEnum.CampaignLifecycleGoalError
+ 163, // 156: google.ads.googleads.v17.errors.ErrorCode.identity_verification_error:type_name -> google.ads.googleads.v17.errors.IdentityVerificationErrorEnum.IdentityVerificationError
+ 164, // 157: google.ads.googleads.v17.errors.ErrorCode.user_list_customer_type_error:type_name -> google.ads.googleads.v17.errors.UserListCustomerTypeErrorEnum.UserListCustomerTypeError
+ 165, // 158: google.ads.googleads.v17.errors.ErrorCode.shopping_product_error:type_name -> google.ads.googleads.v17.errors.ShoppingProductErrorEnum.ShoppingProductError
+ 10, // 159: google.ads.googleads.v17.errors.ErrorLocation.field_path_elements:type_name -> google.ads.googleads.v17.errors.ErrorLocation.FieldPathElement
+ 6, // 160: google.ads.googleads.v17.errors.ErrorDetails.policy_violation_details:type_name -> google.ads.googleads.v17.errors.PolicyViolationDetails
+ 7, // 161: google.ads.googleads.v17.errors.ErrorDetails.policy_finding_details:type_name -> google.ads.googleads.v17.errors.PolicyFindingDetails
+ 8, // 162: google.ads.googleads.v17.errors.ErrorDetails.quota_error_details:type_name -> google.ads.googleads.v17.errors.QuotaErrorDetails
+ 9, // 163: google.ads.googleads.v17.errors.ErrorDetails.resource_count_details:type_name -> google.ads.googleads.v17.errors.ResourceCountDetails
+ 166, // 164: google.ads.googleads.v17.errors.PolicyViolationDetails.key:type_name -> google.ads.googleads.v17.common.PolicyViolationKey
+ 167, // 165: google.ads.googleads.v17.errors.PolicyFindingDetails.policy_topic_entries:type_name -> google.ads.googleads.v17.common.PolicyTopicEntry
+ 0, // 166: google.ads.googleads.v17.errors.QuotaErrorDetails.rate_scope:type_name -> google.ads.googleads.v17.errors.QuotaErrorDetails.QuotaRateScope
+ 168, // 167: google.ads.googleads.v17.errors.QuotaErrorDetails.retry_delay:type_name -> google.protobuf.Duration
+ 169, // 168: google.ads.googleads.v17.errors.ResourceCountDetails.limit_type:type_name -> google.ads.googleads.v17.enums.ResourceLimitTypeEnum.ResourceLimitType
+ 169, // [169:169] is the sub-list for method output_type
+ 169, // [169:169] is the sub-list for method input_type
+ 169, // [169:169] is the sub-list for extension type_name
+ 169, // [169:169] is the sub-list for extension extendee
+ 0, // [0:169] is the sub-list for field type_name
+}
+
+func init() { file_google_ads_googleads_v17_errors_errors_proto_init() }
+func file_google_ads_googleads_v17_errors_errors_proto_init() {
+ if File_google_ads_googleads_v17_errors_errors_proto != nil {
return
}
- file_google_ads_googleads_v16_errors_access_invitation_error_proto_init()
- file_google_ads_googleads_v16_errors_account_budget_proposal_error_proto_init()
- file_google_ads_googleads_v16_errors_account_link_error_proto_init()
- file_google_ads_googleads_v16_errors_ad_customizer_error_proto_init()
- file_google_ads_googleads_v16_errors_ad_error_proto_init()
- file_google_ads_googleads_v16_errors_ad_group_ad_error_proto_init()
- file_google_ads_googleads_v16_errors_ad_group_bid_modifier_error_proto_init()
- file_google_ads_googleads_v16_errors_ad_group_criterion_customizer_error_proto_init()
- file_google_ads_googleads_v16_errors_ad_group_criterion_error_proto_init()
- file_google_ads_googleads_v16_errors_ad_group_customizer_error_proto_init()
- file_google_ads_googleads_v16_errors_ad_group_error_proto_init()
- file_google_ads_googleads_v16_errors_ad_group_feed_error_proto_init()
- file_google_ads_googleads_v16_errors_ad_parameter_error_proto_init()
- file_google_ads_googleads_v16_errors_ad_sharing_error_proto_init()
- file_google_ads_googleads_v16_errors_adx_error_proto_init()
- file_google_ads_googleads_v16_errors_asset_error_proto_init()
- file_google_ads_googleads_v16_errors_asset_group_asset_error_proto_init()
- file_google_ads_googleads_v16_errors_asset_group_error_proto_init()
- file_google_ads_googleads_v16_errors_asset_group_listing_group_filter_error_proto_init()
- file_google_ads_googleads_v16_errors_asset_group_signal_error_proto_init()
- file_google_ads_googleads_v16_errors_asset_link_error_proto_init()
- file_google_ads_googleads_v16_errors_asset_set_asset_error_proto_init()
- file_google_ads_googleads_v16_errors_asset_set_error_proto_init()
- file_google_ads_googleads_v16_errors_asset_set_link_error_proto_init()
- file_google_ads_googleads_v16_errors_audience_error_proto_init()
- file_google_ads_googleads_v16_errors_audience_insights_error_proto_init()
- file_google_ads_googleads_v16_errors_authentication_error_proto_init()
- file_google_ads_googleads_v16_errors_authorization_error_proto_init()
- file_google_ads_googleads_v16_errors_batch_job_error_proto_init()
- file_google_ads_googleads_v16_errors_bidding_error_proto_init()
- file_google_ads_googleads_v16_errors_bidding_strategy_error_proto_init()
- file_google_ads_googleads_v16_errors_billing_setup_error_proto_init()
- file_google_ads_googleads_v16_errors_campaign_budget_error_proto_init()
- file_google_ads_googleads_v16_errors_campaign_conversion_goal_error_proto_init()
- file_google_ads_googleads_v16_errors_campaign_criterion_error_proto_init()
- file_google_ads_googleads_v16_errors_campaign_customizer_error_proto_init()
- file_google_ads_googleads_v16_errors_campaign_draft_error_proto_init()
- file_google_ads_googleads_v16_errors_campaign_error_proto_init()
- file_google_ads_googleads_v16_errors_campaign_experiment_error_proto_init()
- file_google_ads_googleads_v16_errors_campaign_feed_error_proto_init()
- file_google_ads_googleads_v16_errors_campaign_lifecycle_goal_error_proto_init()
- file_google_ads_googleads_v16_errors_campaign_shared_set_error_proto_init()
- file_google_ads_googleads_v16_errors_change_event_error_proto_init()
- file_google_ads_googleads_v16_errors_change_status_error_proto_init()
- file_google_ads_googleads_v16_errors_collection_size_error_proto_init()
- file_google_ads_googleads_v16_errors_context_error_proto_init()
- file_google_ads_googleads_v16_errors_conversion_action_error_proto_init()
- file_google_ads_googleads_v16_errors_conversion_adjustment_upload_error_proto_init()
- file_google_ads_googleads_v16_errors_conversion_custom_variable_error_proto_init()
- file_google_ads_googleads_v16_errors_conversion_goal_campaign_config_error_proto_init()
- file_google_ads_googleads_v16_errors_conversion_upload_error_proto_init()
- file_google_ads_googleads_v16_errors_conversion_value_rule_error_proto_init()
- file_google_ads_googleads_v16_errors_conversion_value_rule_set_error_proto_init()
- file_google_ads_googleads_v16_errors_country_code_error_proto_init()
- file_google_ads_googleads_v16_errors_criterion_error_proto_init()
- file_google_ads_googleads_v16_errors_currency_code_error_proto_init()
- file_google_ads_googleads_v16_errors_currency_error_proto_init()
- file_google_ads_googleads_v16_errors_custom_audience_error_proto_init()
- file_google_ads_googleads_v16_errors_custom_conversion_goal_error_proto_init()
- file_google_ads_googleads_v16_errors_custom_interest_error_proto_init()
- file_google_ads_googleads_v16_errors_customer_client_link_error_proto_init()
- file_google_ads_googleads_v16_errors_customer_customizer_error_proto_init()
- file_google_ads_googleads_v16_errors_customer_error_proto_init()
- file_google_ads_googleads_v16_errors_customer_feed_error_proto_init()
- file_google_ads_googleads_v16_errors_customer_lifecycle_goal_error_proto_init()
- file_google_ads_googleads_v16_errors_customer_manager_link_error_proto_init()
- file_google_ads_googleads_v16_errors_customer_sk_ad_network_conversion_value_schema_error_proto_init()
- file_google_ads_googleads_v16_errors_customer_user_access_error_proto_init()
- file_google_ads_googleads_v16_errors_customizer_attribute_error_proto_init()
- file_google_ads_googleads_v16_errors_database_error_proto_init()
- file_google_ads_googleads_v16_errors_date_error_proto_init()
- file_google_ads_googleads_v16_errors_date_range_error_proto_init()
- file_google_ads_googleads_v16_errors_distinct_error_proto_init()
- file_google_ads_googleads_v16_errors_enum_error_proto_init()
- file_google_ads_googleads_v16_errors_experiment_arm_error_proto_init()
- file_google_ads_googleads_v16_errors_experiment_error_proto_init()
- file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_init()
- file_google_ads_googleads_v16_errors_extension_setting_error_proto_init()
- file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_init()
- file_google_ads_googleads_v16_errors_feed_error_proto_init()
- file_google_ads_googleads_v16_errors_feed_item_error_proto_init()
- file_google_ads_googleads_v16_errors_feed_item_set_error_proto_init()
- file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_init()
- file_google_ads_googleads_v16_errors_feed_item_target_error_proto_init()
- file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_init()
- file_google_ads_googleads_v16_errors_feed_mapping_error_proto_init()
- file_google_ads_googleads_v16_errors_field_error_proto_init()
- file_google_ads_googleads_v16_errors_field_mask_error_proto_init()
- file_google_ads_googleads_v16_errors_function_error_proto_init()
- file_google_ads_googleads_v16_errors_function_parsing_error_proto_init()
- file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_init()
- file_google_ads_googleads_v16_errors_header_error_proto_init()
- file_google_ads_googleads_v16_errors_id_error_proto_init()
- file_google_ads_googleads_v16_errors_identity_verification_error_proto_init()
- file_google_ads_googleads_v16_errors_image_error_proto_init()
- file_google_ads_googleads_v16_errors_internal_error_proto_init()
- file_google_ads_googleads_v16_errors_invoice_error_proto_init()
- file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_init()
- file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_init()
- file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_init()
- file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_init()
- file_google_ads_googleads_v16_errors_keyword_plan_error_proto_init()
- file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_init()
- file_google_ads_googleads_v16_errors_label_error_proto_init()
- file_google_ads_googleads_v16_errors_language_code_error_proto_init()
- file_google_ads_googleads_v16_errors_list_operation_error_proto_init()
- file_google_ads_googleads_v16_errors_manager_link_error_proto_init()
- file_google_ads_googleads_v16_errors_media_bundle_error_proto_init()
- file_google_ads_googleads_v16_errors_media_file_error_proto_init()
- file_google_ads_googleads_v16_errors_media_upload_error_proto_init()
- file_google_ads_googleads_v16_errors_merchant_center_error_proto_init()
- file_google_ads_googleads_v16_errors_multiplier_error_proto_init()
- file_google_ads_googleads_v16_errors_mutate_error_proto_init()
- file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_init()
- file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_init()
- file_google_ads_googleads_v16_errors_not_empty_error_proto_init()
- file_google_ads_googleads_v16_errors_null_error_proto_init()
- file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_init()
- file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_init()
- file_google_ads_googleads_v16_errors_operator_error_proto_init()
- file_google_ads_googleads_v16_errors_partial_failure_error_proto_init()
- file_google_ads_googleads_v16_errors_payments_account_error_proto_init()
- file_google_ads_googleads_v16_errors_policy_finding_error_proto_init()
- file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_init()
- file_google_ads_googleads_v16_errors_policy_violation_error_proto_init()
- file_google_ads_googleads_v16_errors_product_link_error_proto_init()
- file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_init()
- file_google_ads_googleads_v16_errors_query_error_proto_init()
- file_google_ads_googleads_v16_errors_quota_error_proto_init()
- file_google_ads_googleads_v16_errors_range_error_proto_init()
- file_google_ads_googleads_v16_errors_reach_plan_error_proto_init()
- file_google_ads_googleads_v16_errors_recommendation_error_proto_init()
- file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_init()
- file_google_ads_googleads_v16_errors_region_code_error_proto_init()
- file_google_ads_googleads_v16_errors_request_error_proto_init()
- file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_init()
- file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_init()
- file_google_ads_googleads_v16_errors_search_term_insight_error_proto_init()
- file_google_ads_googleads_v16_errors_setting_error_proto_init()
- file_google_ads_googleads_v16_errors_shared_criterion_error_proto_init()
- file_google_ads_googleads_v16_errors_shared_set_error_proto_init()
- file_google_ads_googleads_v16_errors_size_limit_error_proto_init()
- file_google_ads_googleads_v16_errors_smart_campaign_error_proto_init()
- file_google_ads_googleads_v16_errors_string_format_error_proto_init()
- file_google_ads_googleads_v16_errors_string_length_error_proto_init()
- file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_init()
- file_google_ads_googleads_v16_errors_time_zone_error_proto_init()
- file_google_ads_googleads_v16_errors_url_field_error_proto_init()
- file_google_ads_googleads_v16_errors_user_data_error_proto_init()
- file_google_ads_googleads_v16_errors_user_list_error_proto_init()
- file_google_ads_googleads_v16_errors_video_campaign_error_proto_init()
- file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_init()
+ file_google_ads_googleads_v17_errors_access_invitation_error_proto_init()
+ file_google_ads_googleads_v17_errors_account_budget_proposal_error_proto_init()
+ file_google_ads_googleads_v17_errors_account_link_error_proto_init()
+ file_google_ads_googleads_v17_errors_ad_customizer_error_proto_init()
+ file_google_ads_googleads_v17_errors_ad_error_proto_init()
+ file_google_ads_googleads_v17_errors_ad_group_ad_error_proto_init()
+ file_google_ads_googleads_v17_errors_ad_group_bid_modifier_error_proto_init()
+ file_google_ads_googleads_v17_errors_ad_group_criterion_customizer_error_proto_init()
+ file_google_ads_googleads_v17_errors_ad_group_criterion_error_proto_init()
+ file_google_ads_googleads_v17_errors_ad_group_customizer_error_proto_init()
+ file_google_ads_googleads_v17_errors_ad_group_error_proto_init()
+ file_google_ads_googleads_v17_errors_ad_group_feed_error_proto_init()
+ file_google_ads_googleads_v17_errors_ad_parameter_error_proto_init()
+ file_google_ads_googleads_v17_errors_ad_sharing_error_proto_init()
+ file_google_ads_googleads_v17_errors_adx_error_proto_init()
+ file_google_ads_googleads_v17_errors_asset_error_proto_init()
+ file_google_ads_googleads_v17_errors_asset_group_asset_error_proto_init()
+ file_google_ads_googleads_v17_errors_asset_group_error_proto_init()
+ file_google_ads_googleads_v17_errors_asset_group_listing_group_filter_error_proto_init()
+ file_google_ads_googleads_v17_errors_asset_group_signal_error_proto_init()
+ file_google_ads_googleads_v17_errors_asset_link_error_proto_init()
+ file_google_ads_googleads_v17_errors_asset_set_asset_error_proto_init()
+ file_google_ads_googleads_v17_errors_asset_set_error_proto_init()
+ file_google_ads_googleads_v17_errors_asset_set_link_error_proto_init()
+ file_google_ads_googleads_v17_errors_audience_error_proto_init()
+ file_google_ads_googleads_v17_errors_audience_insights_error_proto_init()
+ file_google_ads_googleads_v17_errors_authentication_error_proto_init()
+ file_google_ads_googleads_v17_errors_authorization_error_proto_init()
+ file_google_ads_googleads_v17_errors_batch_job_error_proto_init()
+ file_google_ads_googleads_v17_errors_bidding_error_proto_init()
+ file_google_ads_googleads_v17_errors_bidding_strategy_error_proto_init()
+ file_google_ads_googleads_v17_errors_billing_setup_error_proto_init()
+ file_google_ads_googleads_v17_errors_campaign_budget_error_proto_init()
+ file_google_ads_googleads_v17_errors_campaign_conversion_goal_error_proto_init()
+ file_google_ads_googleads_v17_errors_campaign_criterion_error_proto_init()
+ file_google_ads_googleads_v17_errors_campaign_customizer_error_proto_init()
+ file_google_ads_googleads_v17_errors_campaign_draft_error_proto_init()
+ file_google_ads_googleads_v17_errors_campaign_error_proto_init()
+ file_google_ads_googleads_v17_errors_campaign_experiment_error_proto_init()
+ file_google_ads_googleads_v17_errors_campaign_feed_error_proto_init()
+ file_google_ads_googleads_v17_errors_campaign_lifecycle_goal_error_proto_init()
+ file_google_ads_googleads_v17_errors_campaign_shared_set_error_proto_init()
+ file_google_ads_googleads_v17_errors_change_event_error_proto_init()
+ file_google_ads_googleads_v17_errors_change_status_error_proto_init()
+ file_google_ads_googleads_v17_errors_collection_size_error_proto_init()
+ file_google_ads_googleads_v17_errors_context_error_proto_init()
+ file_google_ads_googleads_v17_errors_conversion_action_error_proto_init()
+ file_google_ads_googleads_v17_errors_conversion_adjustment_upload_error_proto_init()
+ file_google_ads_googleads_v17_errors_conversion_custom_variable_error_proto_init()
+ file_google_ads_googleads_v17_errors_conversion_goal_campaign_config_error_proto_init()
+ file_google_ads_googleads_v17_errors_conversion_upload_error_proto_init()
+ file_google_ads_googleads_v17_errors_conversion_value_rule_error_proto_init()
+ file_google_ads_googleads_v17_errors_conversion_value_rule_set_error_proto_init()
+ file_google_ads_googleads_v17_errors_country_code_error_proto_init()
+ file_google_ads_googleads_v17_errors_criterion_error_proto_init()
+ file_google_ads_googleads_v17_errors_currency_code_error_proto_init()
+ file_google_ads_googleads_v17_errors_currency_error_proto_init()
+ file_google_ads_googleads_v17_errors_custom_audience_error_proto_init()
+ file_google_ads_googleads_v17_errors_custom_conversion_goal_error_proto_init()
+ file_google_ads_googleads_v17_errors_custom_interest_error_proto_init()
+ file_google_ads_googleads_v17_errors_customer_client_link_error_proto_init()
+ file_google_ads_googleads_v17_errors_customer_customizer_error_proto_init()
+ file_google_ads_googleads_v17_errors_customer_error_proto_init()
+ file_google_ads_googleads_v17_errors_customer_feed_error_proto_init()
+ file_google_ads_googleads_v17_errors_customer_lifecycle_goal_error_proto_init()
+ file_google_ads_googleads_v17_errors_customer_manager_link_error_proto_init()
+ file_google_ads_googleads_v17_errors_customer_sk_ad_network_conversion_value_schema_error_proto_init()
+ file_google_ads_googleads_v17_errors_customer_user_access_error_proto_init()
+ file_google_ads_googleads_v17_errors_customizer_attribute_error_proto_init()
+ file_google_ads_googleads_v17_errors_database_error_proto_init()
+ file_google_ads_googleads_v17_errors_date_error_proto_init()
+ file_google_ads_googleads_v17_errors_date_range_error_proto_init()
+ file_google_ads_googleads_v17_errors_distinct_error_proto_init()
+ file_google_ads_googleads_v17_errors_enum_error_proto_init()
+ file_google_ads_googleads_v17_errors_experiment_arm_error_proto_init()
+ file_google_ads_googleads_v17_errors_experiment_error_proto_init()
+ file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_init()
+ file_google_ads_googleads_v17_errors_extension_setting_error_proto_init()
+ file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_init()
+ file_google_ads_googleads_v17_errors_feed_error_proto_init()
+ file_google_ads_googleads_v17_errors_feed_item_error_proto_init()
+ file_google_ads_googleads_v17_errors_feed_item_set_error_proto_init()
+ file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_init()
+ file_google_ads_googleads_v17_errors_feed_item_target_error_proto_init()
+ file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_init()
+ file_google_ads_googleads_v17_errors_feed_mapping_error_proto_init()
+ file_google_ads_googleads_v17_errors_field_error_proto_init()
+ file_google_ads_googleads_v17_errors_field_mask_error_proto_init()
+ file_google_ads_googleads_v17_errors_function_error_proto_init()
+ file_google_ads_googleads_v17_errors_function_parsing_error_proto_init()
+ file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_init()
+ file_google_ads_googleads_v17_errors_header_error_proto_init()
+ file_google_ads_googleads_v17_errors_id_error_proto_init()
+ file_google_ads_googleads_v17_errors_identity_verification_error_proto_init()
+ file_google_ads_googleads_v17_errors_image_error_proto_init()
+ file_google_ads_googleads_v17_errors_internal_error_proto_init()
+ file_google_ads_googleads_v17_errors_invoice_error_proto_init()
+ file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_init()
+ file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_init()
+ file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_init()
+ file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_init()
+ file_google_ads_googleads_v17_errors_keyword_plan_error_proto_init()
+ file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_init()
+ file_google_ads_googleads_v17_errors_label_error_proto_init()
+ file_google_ads_googleads_v17_errors_language_code_error_proto_init()
+ file_google_ads_googleads_v17_errors_list_operation_error_proto_init()
+ file_google_ads_googleads_v17_errors_manager_link_error_proto_init()
+ file_google_ads_googleads_v17_errors_media_bundle_error_proto_init()
+ file_google_ads_googleads_v17_errors_media_file_error_proto_init()
+ file_google_ads_googleads_v17_errors_media_upload_error_proto_init()
+ file_google_ads_googleads_v17_errors_merchant_center_error_proto_init()
+ file_google_ads_googleads_v17_errors_multiplier_error_proto_init()
+ file_google_ads_googleads_v17_errors_mutate_error_proto_init()
+ file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_init()
+ file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_init()
+ file_google_ads_googleads_v17_errors_not_empty_error_proto_init()
+ file_google_ads_googleads_v17_errors_null_error_proto_init()
+ file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_init()
+ file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_init()
+ file_google_ads_googleads_v17_errors_operator_error_proto_init()
+ file_google_ads_googleads_v17_errors_partial_failure_error_proto_init()
+ file_google_ads_googleads_v17_errors_payments_account_error_proto_init()
+ file_google_ads_googleads_v17_errors_policy_finding_error_proto_init()
+ file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_init()
+ file_google_ads_googleads_v17_errors_policy_violation_error_proto_init()
+ file_google_ads_googleads_v17_errors_product_link_error_proto_init()
+ file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_init()
+ file_google_ads_googleads_v17_errors_query_error_proto_init()
+ file_google_ads_googleads_v17_errors_quota_error_proto_init()
+ file_google_ads_googleads_v17_errors_range_error_proto_init()
+ file_google_ads_googleads_v17_errors_reach_plan_error_proto_init()
+ file_google_ads_googleads_v17_errors_recommendation_error_proto_init()
+ file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_init()
+ file_google_ads_googleads_v17_errors_region_code_error_proto_init()
+ file_google_ads_googleads_v17_errors_request_error_proto_init()
+ file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_init()
+ file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_init()
+ file_google_ads_googleads_v17_errors_search_term_insight_error_proto_init()
+ file_google_ads_googleads_v17_errors_setting_error_proto_init()
+ file_google_ads_googleads_v17_errors_shared_criterion_error_proto_init()
+ file_google_ads_googleads_v17_errors_shared_set_error_proto_init()
+ file_google_ads_googleads_v17_errors_shopping_product_error_proto_init()
+ file_google_ads_googleads_v17_errors_size_limit_error_proto_init()
+ file_google_ads_googleads_v17_errors_smart_campaign_error_proto_init()
+ file_google_ads_googleads_v17_errors_string_format_error_proto_init()
+ file_google_ads_googleads_v17_errors_string_length_error_proto_init()
+ file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_init()
+ file_google_ads_googleads_v17_errors_time_zone_error_proto_init()
+ file_google_ads_googleads_v17_errors_url_field_error_proto_init()
+ file_google_ads_googleads_v17_errors_user_data_error_proto_init()
+ file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_init()
+ file_google_ads_googleads_v17_errors_user_list_error_proto_init()
+ file_google_ads_googleads_v17_errors_video_campaign_error_proto_init()
+ file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_init()
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_errors_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_errors_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GoogleAdsFailure); i {
case 0:
return &v.state
@@ -5578,7 +5641,7 @@ func file_google_ads_googleads_v16_errors_errors_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_errors_errors_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_errors_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GoogleAdsError); i {
case 0:
return &v.state
@@ -5590,7 +5653,7 @@ func file_google_ads_googleads_v16_errors_errors_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_errors_errors_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_errors_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ErrorCode); i {
case 0:
return &v.state
@@ -5602,7 +5665,7 @@ func file_google_ads_googleads_v16_errors_errors_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_errors_errors_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_errors_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ErrorLocation); i {
case 0:
return &v.state
@@ -5614,7 +5677,7 @@ func file_google_ads_googleads_v16_errors_errors_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_errors_errors_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_errors_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ErrorDetails); i {
case 0:
return &v.state
@@ -5626,7 +5689,7 @@ func file_google_ads_googleads_v16_errors_errors_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_errors_errors_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_errors_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyViolationDetails); i {
case 0:
return &v.state
@@ -5638,7 +5701,7 @@ func file_google_ads_googleads_v16_errors_errors_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_errors_errors_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_errors_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyFindingDetails); i {
case 0:
return &v.state
@@ -5650,7 +5713,7 @@ func file_google_ads_googleads_v16_errors_errors_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_errors_errors_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_errors_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*QuotaErrorDetails); i {
case 0:
return &v.state
@@ -5662,7 +5725,7 @@ func file_google_ads_googleads_v16_errors_errors_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_errors_errors_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_errors_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ResourceCountDetails); i {
case 0:
return &v.state
@@ -5674,7 +5737,7 @@ func file_google_ads_googleads_v16_errors_errors_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_errors_errors_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_errors_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ErrorLocation_FieldPathElement); i {
case 0:
return &v.state
@@ -5687,7 +5750,7 @@ func file_google_ads_googleads_v16_errors_errors_proto_init() {
}
}
}
- file_google_ads_googleads_v16_errors_errors_proto_msgTypes[2].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_errors_errors_proto_msgTypes[2].OneofWrappers = []interface{}{
(*ErrorCode_RequestError)(nil),
(*ErrorCode_BiddingStrategyError)(nil),
(*ErrorCode_UrlFieldError)(nil),
@@ -5840,25 +5903,27 @@ func file_google_ads_googleads_v16_errors_errors_proto_init() {
(*ErrorCode_CustomerLifecycleGoalError)(nil),
(*ErrorCode_CampaignLifecycleGoalError)(nil),
(*ErrorCode_IdentityVerificationError)(nil),
+ (*ErrorCode_UserListCustomerTypeError)(nil),
+ (*ErrorCode_ShoppingProductError)(nil),
}
- file_google_ads_googleads_v16_errors_errors_proto_msgTypes[9].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_errors_errors_proto_msgTypes[9].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_errors_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_errors_proto_rawDesc,
NumEnums: 1,
NumMessages: 10,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_errors_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_errors_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_errors_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_errors_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_errors_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_errors_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_errors_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_errors_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_errors_proto = out.File
- file_google_ads_googleads_v16_errors_errors_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_errors_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_errors_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_errors_proto = out.File
+ file_google_ads_googleads_v17_errors_errors_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_errors_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_errors_proto_depIdxs = nil
}
diff --git a/errors/experiment_arm_error.pb.go b/errors/experiment_arm_error.pb.go
index 214a75f8..7a32fb23 100644
--- a/errors/experiment_arm_error.pb.go
+++ b/errors/experiment_arm_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/experiment_arm_error.proto
+// source: google/ads/googleads/v17/errors/experiment_arm_error.proto
package errors
@@ -125,11 +125,11 @@ func (x ExperimentArmErrorEnum_ExperimentArmError) String() string {
}
func (ExperimentArmErrorEnum_ExperimentArmError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_experiment_arm_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_experiment_arm_error_proto_enumTypes[0].Descriptor()
}
func (ExperimentArmErrorEnum_ExperimentArmError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_experiment_arm_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_experiment_arm_error_proto_enumTypes[0]
}
func (x ExperimentArmErrorEnum_ExperimentArmError) Number() protoreflect.EnumNumber {
@@ -138,7 +138,7 @@ func (x ExperimentArmErrorEnum_ExperimentArmError) Number() protoreflect.EnumNum
// Deprecated: Use ExperimentArmErrorEnum_ExperimentArmError.Descriptor instead.
func (ExperimentArmErrorEnum_ExperimentArmError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_experiment_arm_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_experiment_arm_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible experiment arm error.
@@ -151,7 +151,7 @@ type ExperimentArmErrorEnum struct {
func (x *ExperimentArmErrorEnum) Reset() {
*x = ExperimentArmErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_experiment_arm_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_experiment_arm_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -164,7 +164,7 @@ func (x *ExperimentArmErrorEnum) String() string {
func (*ExperimentArmErrorEnum) ProtoMessage() {}
func (x *ExperimentArmErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_experiment_arm_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_experiment_arm_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -177,18 +177,18 @@ func (x *ExperimentArmErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ExperimentArmErrorEnum.ProtoReflect.Descriptor instead.
func (*ExperimentArmErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_experiment_arm_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_experiment_arm_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_experiment_arm_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_experiment_arm_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_experiment_arm_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_experiment_arm_error_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x72, 0x6d,
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xb1, 0x05,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xb1, 0x05,
0x0a, 0x16, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x96, 0x05, 0x0a, 0x12, 0x45, 0x78, 0x70,
0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
@@ -234,42 +234,42 @@ var file_google_ads_googleads_v16_errors_experiment_arm_error_proto_rawDesc = []
0x4f, 0x52, 0x5f, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10,
0x0f, 0x42, 0xf7, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x17, 0x45, 0x78, 0x70, 0x65, 0x72,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x17, 0x45, 0x78, 0x70, 0x65, 0x72,
0x69, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x72, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_experiment_arm_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_experiment_arm_error_proto_rawDescData = file_google_ads_googleads_v16_errors_experiment_arm_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_experiment_arm_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_experiment_arm_error_proto_rawDescData = file_google_ads_googleads_v17_errors_experiment_arm_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_experiment_arm_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_experiment_arm_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_experiment_arm_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_experiment_arm_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_experiment_arm_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_experiment_arm_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_experiment_arm_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_experiment_arm_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_experiment_arm_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_experiment_arm_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_experiment_arm_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_experiment_arm_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_experiment_arm_error_proto_goTypes = []interface{}{
- (ExperimentArmErrorEnum_ExperimentArmError)(0), // 0: google.ads.googleads.v16.errors.ExperimentArmErrorEnum.ExperimentArmError
- (*ExperimentArmErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ExperimentArmErrorEnum
+var file_google_ads_googleads_v17_errors_experiment_arm_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_experiment_arm_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_experiment_arm_error_proto_goTypes = []interface{}{
+ (ExperimentArmErrorEnum_ExperimentArmError)(0), // 0: google.ads.googleads.v17.errors.ExperimentArmErrorEnum.ExperimentArmError
+ (*ExperimentArmErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ExperimentArmErrorEnum
}
-var file_google_ads_googleads_v16_errors_experiment_arm_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_experiment_arm_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -277,13 +277,13 @@ var file_google_ads_googleads_v16_errors_experiment_arm_error_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_experiment_arm_error_proto_init() }
-func file_google_ads_googleads_v16_errors_experiment_arm_error_proto_init() {
- if File_google_ads_googleads_v16_errors_experiment_arm_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_experiment_arm_error_proto_init() }
+func file_google_ads_googleads_v17_errors_experiment_arm_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_experiment_arm_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_experiment_arm_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_experiment_arm_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExperimentArmErrorEnum); i {
case 0:
return &v.state
@@ -300,19 +300,19 @@ func file_google_ads_googleads_v16_errors_experiment_arm_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_experiment_arm_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_experiment_arm_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_experiment_arm_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_experiment_arm_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_experiment_arm_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_experiment_arm_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_experiment_arm_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_experiment_arm_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_experiment_arm_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_experiment_arm_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_experiment_arm_error_proto = out.File
- file_google_ads_googleads_v16_errors_experiment_arm_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_experiment_arm_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_experiment_arm_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_experiment_arm_error_proto = out.File
+ file_google_ads_googleads_v17_errors_experiment_arm_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_experiment_arm_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_experiment_arm_error_proto_depIdxs = nil
}
diff --git a/errors/experiment_error.pb.go b/errors/experiment_error.pb.go
index 637810d9..2b7e0243 100644
--- a/errors/experiment_error.pb.go
+++ b/errors/experiment_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/experiment_error.proto
+// source: google/ads/googleads/v17/errors/experiment_error.proto
package errors
@@ -192,11 +192,11 @@ func (x ExperimentErrorEnum_ExperimentError) String() string {
}
func (ExperimentErrorEnum_ExperimentError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_experiment_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_experiment_error_proto_enumTypes[0].Descriptor()
}
func (ExperimentErrorEnum_ExperimentError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_experiment_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_experiment_error_proto_enumTypes[0]
}
func (x ExperimentErrorEnum_ExperimentError) Number() protoreflect.EnumNumber {
@@ -205,7 +205,7 @@ func (x ExperimentErrorEnum_ExperimentError) Number() protoreflect.EnumNumber {
// Deprecated: Use ExperimentErrorEnum_ExperimentError.Descriptor instead.
func (ExperimentErrorEnum_ExperimentError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_experiment_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_experiment_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible experiment error.
@@ -218,7 +218,7 @@ type ExperimentErrorEnum struct {
func (x *ExperimentErrorEnum) Reset() {
*x = ExperimentErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_experiment_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_experiment_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -231,7 +231,7 @@ func (x *ExperimentErrorEnum) String() string {
func (*ExperimentErrorEnum) ProtoMessage() {}
func (x *ExperimentErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_experiment_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_experiment_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -244,18 +244,18 @@ func (x *ExperimentErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ExperimentErrorEnum.ProtoReflect.Descriptor instead.
func (*ExperimentErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_experiment_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_experiment_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_experiment_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_experiment_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_experiment_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_experiment_error_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa8, 0x09, 0x0a, 0x13, 0x45, 0x78,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa8, 0x09, 0x0a, 0x13, 0x45, 0x78,
0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x90, 0x09, 0x0a, 0x0f, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49,
@@ -332,42 +332,42 @@ var file_google_ads_googleads_v16_errors_experiment_error_proto_rawDesc = []byte
0x5f, 0x46, 0x4f, 0x52, 0x5f, 0x41, 0x4e, 0x5f, 0x45, 0x58, 0x50, 0x45, 0x52, 0x49, 0x4d, 0x45,
0x4e, 0x54, 0x10, 0x1e, 0x42, 0xf4, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x14, 0x45, 0x78,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x14, 0x45, 0x78,
0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_experiment_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_experiment_error_proto_rawDescData = file_google_ads_googleads_v16_errors_experiment_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_experiment_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_experiment_error_proto_rawDescData = file_google_ads_googleads_v17_errors_experiment_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_experiment_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_experiment_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_experiment_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_experiment_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_experiment_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_experiment_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_experiment_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_experiment_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_experiment_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_experiment_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_experiment_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_experiment_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_experiment_error_proto_goTypes = []interface{}{
- (ExperimentErrorEnum_ExperimentError)(0), // 0: google.ads.googleads.v16.errors.ExperimentErrorEnum.ExperimentError
- (*ExperimentErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ExperimentErrorEnum
+var file_google_ads_googleads_v17_errors_experiment_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_experiment_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_experiment_error_proto_goTypes = []interface{}{
+ (ExperimentErrorEnum_ExperimentError)(0), // 0: google.ads.googleads.v17.errors.ExperimentErrorEnum.ExperimentError
+ (*ExperimentErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ExperimentErrorEnum
}
-var file_google_ads_googleads_v16_errors_experiment_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_experiment_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -375,13 +375,13 @@ var file_google_ads_googleads_v16_errors_experiment_error_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_experiment_error_proto_init() }
-func file_google_ads_googleads_v16_errors_experiment_error_proto_init() {
- if File_google_ads_googleads_v16_errors_experiment_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_experiment_error_proto_init() }
+func file_google_ads_googleads_v17_errors_experiment_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_experiment_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_experiment_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_experiment_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExperimentErrorEnum); i {
case 0:
return &v.state
@@ -398,19 +398,19 @@ func file_google_ads_googleads_v16_errors_experiment_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_experiment_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_experiment_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_experiment_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_experiment_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_experiment_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_experiment_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_experiment_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_experiment_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_experiment_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_experiment_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_experiment_error_proto = out.File
- file_google_ads_googleads_v16_errors_experiment_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_experiment_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_experiment_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_experiment_error_proto = out.File
+ file_google_ads_googleads_v17_errors_experiment_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_experiment_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_experiment_error_proto_depIdxs = nil
}
diff --git a/errors/extension_feed_item_error.pb.go b/errors/extension_feed_item_error.pb.go
index 1aa99db3..dfdd0384 100644
--- a/errors/extension_feed_item_error.pb.go
+++ b/errors/extension_feed_item_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/extension_feed_item_error.proto
+// source: google/ads/googleads/v17/errors/extension_feed_item_error.proto
package errors
@@ -263,11 +263,11 @@ func (x ExtensionFeedItemErrorEnum_ExtensionFeedItemError) String() string {
}
func (ExtensionFeedItemErrorEnum_ExtensionFeedItemError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_enumTypes[0].Descriptor()
}
func (ExtensionFeedItemErrorEnum_ExtensionFeedItemError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_enumTypes[0]
}
func (x ExtensionFeedItemErrorEnum_ExtensionFeedItemError) Number() protoreflect.EnumNumber {
@@ -276,7 +276,7 @@ func (x ExtensionFeedItemErrorEnum_ExtensionFeedItemError) Number() protoreflect
// Deprecated: Use ExtensionFeedItemErrorEnum_ExtensionFeedItemError.Descriptor instead.
func (ExtensionFeedItemErrorEnum_ExtensionFeedItemError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible extension feed item error.
@@ -289,7 +289,7 @@ type ExtensionFeedItemErrorEnum struct {
func (x *ExtensionFeedItemErrorEnum) Reset() {
*x = ExtensionFeedItemErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -302,7 +302,7 @@ func (x *ExtensionFeedItemErrorEnum) String() string {
func (*ExtensionFeedItemErrorEnum) ProtoMessage() {}
func (x *ExtensionFeedItemErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -315,18 +315,18 @@ func (x *ExtensionFeedItemErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ExtensionFeedItemErrorEnum.ProtoReflect.Descriptor instead.
func (*ExtensionFeedItemErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_extension_feed_item_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_extension_feed_item_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64,
0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x22, 0xf6, 0x0d, 0x0a, 0x1a, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0xd7, 0x0d, 0x0a, 0x16, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46,
@@ -440,43 +440,43 @@ var file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_rawDesc
0x45, 0x44, 0x55, 0x4c, 0x45, 0x5f, 0x45, 0x4e, 0x44, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x41, 0x46,
0x54, 0x45, 0x52, 0x5f, 0x53, 0x54, 0x41, 0x52, 0x54, 0x10, 0x2e, 0x42, 0xfb, 0x01, 0x0a, 0x23,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x42, 0x1b, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x46, 0x65,
0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_rawDescData = file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_rawDescData = file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_goTypes = []interface{}{
- (ExtensionFeedItemErrorEnum_ExtensionFeedItemError)(0), // 0: google.ads.googleads.v16.errors.ExtensionFeedItemErrorEnum.ExtensionFeedItemError
- (*ExtensionFeedItemErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ExtensionFeedItemErrorEnum
+var file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_goTypes = []interface{}{
+ (ExtensionFeedItemErrorEnum_ExtensionFeedItemError)(0), // 0: google.ads.googleads.v17.errors.ExtensionFeedItemErrorEnum.ExtensionFeedItemError
+ (*ExtensionFeedItemErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ExtensionFeedItemErrorEnum
}
-var file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -484,13 +484,13 @@ var file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_init() }
-func file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_init() {
- if File_google_ads_googleads_v16_errors_extension_feed_item_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_init() }
+func file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_extension_feed_item_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExtensionFeedItemErrorEnum); i {
case 0:
return &v.state
@@ -507,19 +507,19 @@ func file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_extension_feed_item_error_proto = out.File
- file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_extension_feed_item_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_extension_feed_item_error_proto = out.File
+ file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_extension_feed_item_error_proto_depIdxs = nil
}
diff --git a/errors/extension_setting_error.pb.go b/errors/extension_setting_error.pb.go
index a5c1c48d..c55ae0a9 100644
--- a/errors/extension_setting_error.pb.go
+++ b/errors/extension_setting_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/extension_setting_error.proto
+// source: google/ads/googleads/v17/errors/extension_setting_error.proto
package errors
@@ -349,11 +349,11 @@ func (x ExtensionSettingErrorEnum_ExtensionSettingError) String() string {
}
func (ExtensionSettingErrorEnum_ExtensionSettingError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_extension_setting_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_extension_setting_error_proto_enumTypes[0].Descriptor()
}
func (ExtensionSettingErrorEnum_ExtensionSettingError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_extension_setting_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_extension_setting_error_proto_enumTypes[0]
}
func (x ExtensionSettingErrorEnum_ExtensionSettingError) Number() protoreflect.EnumNumber {
@@ -362,7 +362,7 @@ func (x ExtensionSettingErrorEnum_ExtensionSettingError) Number() protoreflect.E
// Deprecated: Use ExtensionSettingErrorEnum_ExtensionSettingError.Descriptor instead.
func (ExtensionSettingErrorEnum_ExtensionSettingError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_extension_setting_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_extension_setting_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing validation errors of extension settings.
@@ -375,7 +375,7 @@ type ExtensionSettingErrorEnum struct {
func (x *ExtensionSettingErrorEnum) Reset() {
*x = ExtensionSettingErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_extension_setting_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_extension_setting_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -388,7 +388,7 @@ func (x *ExtensionSettingErrorEnum) String() string {
func (*ExtensionSettingErrorEnum) ProtoMessage() {}
func (x *ExtensionSettingErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_extension_setting_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_extension_setting_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -401,18 +401,18 @@ func (x *ExtensionSettingErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ExtensionSettingErrorEnum.ProtoReflect.Descriptor instead.
func (*ExtensionSettingErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_extension_setting_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_extension_setting_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_extension_setting_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_extension_setting_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_extension_setting_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_extension_setting_error_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74,
0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x22, 0xae, 0x14, 0x0a, 0x19, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65,
0x74, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x90,
0x14, 0x0a, 0x15, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74,
@@ -578,42 +578,42 @@ var file_google_ads_googleads_v16_errors_extension_setting_error_proto_rawDesc =
0x44, 0x49, 0x53, 0x41, 0x4c, 0x4c, 0x4f, 0x57, 0x45, 0x44, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x10,
0x44, 0x42, 0xfa, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a, 0x45, 0x78, 0x74, 0x65, 0x6e,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a, 0x45, 0x78, 0x74, 0x65, 0x6e,
0x73, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_extension_setting_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_extension_setting_error_proto_rawDescData = file_google_ads_googleads_v16_errors_extension_setting_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_extension_setting_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_extension_setting_error_proto_rawDescData = file_google_ads_googleads_v17_errors_extension_setting_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_extension_setting_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_extension_setting_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_extension_setting_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_extension_setting_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_extension_setting_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_extension_setting_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_extension_setting_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_extension_setting_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_extension_setting_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_extension_setting_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_extension_setting_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_extension_setting_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_extension_setting_error_proto_goTypes = []interface{}{
- (ExtensionSettingErrorEnum_ExtensionSettingError)(0), // 0: google.ads.googleads.v16.errors.ExtensionSettingErrorEnum.ExtensionSettingError
- (*ExtensionSettingErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ExtensionSettingErrorEnum
+var file_google_ads_googleads_v17_errors_extension_setting_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_extension_setting_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_extension_setting_error_proto_goTypes = []interface{}{
+ (ExtensionSettingErrorEnum_ExtensionSettingError)(0), // 0: google.ads.googleads.v17.errors.ExtensionSettingErrorEnum.ExtensionSettingError
+ (*ExtensionSettingErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ExtensionSettingErrorEnum
}
-var file_google_ads_googleads_v16_errors_extension_setting_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_extension_setting_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -621,13 +621,13 @@ var file_google_ads_googleads_v16_errors_extension_setting_error_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_extension_setting_error_proto_init() }
-func file_google_ads_googleads_v16_errors_extension_setting_error_proto_init() {
- if File_google_ads_googleads_v16_errors_extension_setting_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_extension_setting_error_proto_init() }
+func file_google_ads_googleads_v17_errors_extension_setting_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_extension_setting_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_extension_setting_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_extension_setting_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExtensionSettingErrorEnum); i {
case 0:
return &v.state
@@ -644,19 +644,19 @@ func file_google_ads_googleads_v16_errors_extension_setting_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_extension_setting_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_extension_setting_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_extension_setting_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_extension_setting_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_extension_setting_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_extension_setting_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_extension_setting_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_extension_setting_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_extension_setting_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_extension_setting_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_extension_setting_error_proto = out.File
- file_google_ads_googleads_v16_errors_extension_setting_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_extension_setting_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_extension_setting_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_extension_setting_error_proto = out.File
+ file_google_ads_googleads_v17_errors_extension_setting_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_extension_setting_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_extension_setting_error_proto_depIdxs = nil
}
diff --git a/errors/feed_attribute_reference_error.pb.go b/errors/feed_attribute_reference_error.pb.go
index 60bfb9fe..4b9dde50 100644
--- a/errors/feed_attribute_reference_error.pb.go
+++ b/errors/feed_attribute_reference_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/feed_attribute_reference_error.proto
+// source: google/ads/googleads/v17/errors/feed_attribute_reference_error.proto
package errors
@@ -79,11 +79,11 @@ func (x FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError) String() st
}
func (FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_enumTypes[0].Descriptor()
}
func (FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_enumTypes[0]
}
func (x FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError) Number() pr
// Deprecated: Use FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError.Descriptor instead.
func (FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible feed attribute reference errors.
@@ -105,7 +105,7 @@ type FeedAttributeReferenceErrorEnum struct {
func (x *FeedAttributeReferenceErrorEnum) Reset() {
*x = FeedAttributeReferenceErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *FeedAttributeReferenceErrorEnum) String() string {
func (*FeedAttributeReferenceErrorEnum) ProtoMessage() {}
func (x *FeedAttributeReferenceErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *FeedAttributeReferenceErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedAttributeReferenceErrorEnum.ProtoReflect.Descriptor instead.
func (*FeedAttributeReferenceErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_rawDesc = []byte{
0x0a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65,
0x5f, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xba, 0x01, 0x0a, 0x1f, 0x46, 0x65, 0x65, 0x64,
0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e,
0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x96, 0x01, 0x0a, 0x1b,
@@ -157,42 +157,42 @@ var file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_ra
0x45, 0x45, 0x44, 0x5f, 0x41, 0x54, 0x54, 0x52, 0x49, 0x42, 0x55, 0x54, 0x45, 0x5f, 0x4e, 0x41,
0x4d, 0x45, 0x10, 0x04, 0x42, 0x80, 0x02, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x20, 0x46, 0x65,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x20, 0x46, 0x65,
0x65, 0x64, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x52, 0x65, 0x66, 0x65, 0x72,
0x65, 0x6e, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_rawDescData = file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_rawDescData = file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_goTypes = []interface{}{
- (FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError)(0), // 0: google.ads.googleads.v16.errors.FeedAttributeReferenceErrorEnum.FeedAttributeReferenceError
- (*FeedAttributeReferenceErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.FeedAttributeReferenceErrorEnum
+var file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_goTypes = []interface{}{
+ (FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError)(0), // 0: google.ads.googleads.v17.errors.FeedAttributeReferenceErrorEnum.FeedAttributeReferenceError
+ (*FeedAttributeReferenceErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.FeedAttributeReferenceErrorEnum
}
-var file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -200,13 +200,13 @@ var file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_de
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_init() }
-func file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_init() {
- if File_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_init() }
+func file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedAttributeReferenceErrorEnum); i {
case 0:
return &v.state
@@ -223,19 +223,19 @@ func file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_i
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto = out.File
- file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_feed_attribute_reference_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto = out.File
+ file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_feed_attribute_reference_error_proto_depIdxs = nil
}
diff --git a/errors/feed_error.pb.go b/errors/feed_error.pb.go
index 2eb68beb..640ac71f 100644
--- a/errors/feed_error.pb.go
+++ b/errors/feed_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/feed_error.proto
+// source: google/ads/googleads/v17/errors/feed_error.proto
package errors
@@ -160,11 +160,11 @@ func (x FeedErrorEnum_FeedError) String() string {
}
func (FeedErrorEnum_FeedError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_feed_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_feed_error_proto_enumTypes[0].Descriptor()
}
func (FeedErrorEnum_FeedError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_feed_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_feed_error_proto_enumTypes[0]
}
func (x FeedErrorEnum_FeedError) Number() protoreflect.EnumNumber {
@@ -173,7 +173,7 @@ func (x FeedErrorEnum_FeedError) Number() protoreflect.EnumNumber {
// Deprecated: Use FeedErrorEnum_FeedError.Descriptor instead.
func (FeedErrorEnum_FeedError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_feed_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_feed_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible feed errors.
@@ -186,7 +186,7 @@ type FeedErrorEnum struct {
func (x *FeedErrorEnum) Reset() {
*x = FeedErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_feed_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_feed_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -199,7 +199,7 @@ func (x *FeedErrorEnum) String() string {
func (*FeedErrorEnum) ProtoMessage() {}
func (x *FeedErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_feed_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_feed_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -212,17 +212,17 @@ func (x *FeedErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedErrorEnum.ProtoReflect.Descriptor instead.
func (*FeedErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_feed_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_feed_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_feed_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_feed_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_feed_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_feed_error_proto_rawDesc = []byte{
0x0a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x22, 0xeb, 0x06, 0x0a, 0x0d, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xd9, 0x06, 0x0a, 0x09, 0x46, 0x65, 0x65, 0x64, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
@@ -280,41 +280,41 @@ var file_google_ads_googleads_v16_errors_feed_error_proto_rawDesc = []byte{
0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x52, 0x45, 0x41, 0x44, 0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x10,
0x18, 0x42, 0xee, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0e, 0x46, 0x65, 0x65, 0x64, 0x45,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0e, 0x46, 0x65, 0x65, 0x64, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_feed_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_feed_error_proto_rawDescData = file_google_ads_googleads_v16_errors_feed_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_feed_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_feed_error_proto_rawDescData = file_google_ads_googleads_v17_errors_feed_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_feed_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_feed_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_feed_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_feed_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_feed_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_feed_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_feed_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_feed_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_feed_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_feed_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_feed_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_feed_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_feed_error_proto_goTypes = []interface{}{
- (FeedErrorEnum_FeedError)(0), // 0: google.ads.googleads.v16.errors.FeedErrorEnum.FeedError
- (*FeedErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.FeedErrorEnum
+var file_google_ads_googleads_v17_errors_feed_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_feed_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_feed_error_proto_goTypes = []interface{}{
+ (FeedErrorEnum_FeedError)(0), // 0: google.ads.googleads.v17.errors.FeedErrorEnum.FeedError
+ (*FeedErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.FeedErrorEnum
}
-var file_google_ads_googleads_v16_errors_feed_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_feed_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -322,13 +322,13 @@ var file_google_ads_googleads_v16_errors_feed_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_feed_error_proto_init() }
-func file_google_ads_googleads_v16_errors_feed_error_proto_init() {
- if File_google_ads_googleads_v16_errors_feed_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_feed_error_proto_init() }
+func file_google_ads_googleads_v17_errors_feed_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_feed_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_feed_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_feed_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedErrorEnum); i {
case 0:
return &v.state
@@ -345,19 +345,19 @@ func file_google_ads_googleads_v16_errors_feed_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_feed_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_feed_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_feed_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_feed_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_feed_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_feed_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_feed_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_feed_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_feed_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_feed_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_feed_error_proto = out.File
- file_google_ads_googleads_v16_errors_feed_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_feed_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_feed_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_feed_error_proto = out.File
+ file_google_ads_googleads_v17_errors_feed_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_feed_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_feed_error_proto_depIdxs = nil
}
diff --git a/errors/feed_item_error.pb.go b/errors/feed_item_error.pb.go
index 8ebb80fc..92e93612 100644
--- a/errors/feed_item_error.pb.go
+++ b/errors/feed_item_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/feed_item_error.proto
+// source: google/ads/googleads/v17/errors/feed_item_error.proto
package errors
@@ -107,11 +107,11 @@ func (x FeedItemErrorEnum_FeedItemError) String() string {
}
func (FeedItemErrorEnum_FeedItemError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_feed_item_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_feed_item_error_proto_enumTypes[0].Descriptor()
}
func (FeedItemErrorEnum_FeedItemError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_feed_item_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_feed_item_error_proto_enumTypes[0]
}
func (x FeedItemErrorEnum_FeedItemError) Number() protoreflect.EnumNumber {
@@ -120,7 +120,7 @@ func (x FeedItemErrorEnum_FeedItemError) Number() protoreflect.EnumNumber {
// Deprecated: Use FeedItemErrorEnum_FeedItemError.Descriptor instead.
func (FeedItemErrorEnum_FeedItemError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_feed_item_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_feed_item_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible feed item errors.
@@ -133,7 +133,7 @@ type FeedItemErrorEnum struct {
func (x *FeedItemErrorEnum) Reset() {
*x = FeedItemErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_feed_item_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_feed_item_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -146,7 +146,7 @@ func (x *FeedItemErrorEnum) String() string {
func (*FeedItemErrorEnum) ProtoMessage() {}
func (x *FeedItemErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_feed_item_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_feed_item_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -159,18 +159,18 @@ func (x *FeedItemErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedItemErrorEnum.ProtoReflect.Descriptor instead.
func (*FeedItemErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_feed_item_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_feed_item_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_feed_item_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_feed_item_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_feed_item_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_feed_item_error_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa7, 0x03, 0x0a, 0x11, 0x46, 0x65, 0x65,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa7, 0x03, 0x0a, 0x11, 0x46, 0x65, 0x65,
0x64, 0x49, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x91,
0x03, 0x0a, 0x0d, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
@@ -199,41 +199,41 @@ var file_google_ads_googleads_v16_errors_feed_item_error_proto_rawDesc = []byte{
0x44, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x52, 0x45, 0x41, 0x44, 0x5f, 0x4f, 0x4e, 0x4c, 0x59,
0x10, 0x0b, 0x42, 0xf2, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x46, 0x65, 0x65, 0x64,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x46, 0x65, 0x65, 0x64,
0x49, 0x74, 0x65, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_feed_item_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_feed_item_error_proto_rawDescData = file_google_ads_googleads_v16_errors_feed_item_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_feed_item_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_feed_item_error_proto_rawDescData = file_google_ads_googleads_v17_errors_feed_item_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_feed_item_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_feed_item_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_feed_item_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_feed_item_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_feed_item_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_feed_item_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_feed_item_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_feed_item_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_feed_item_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_feed_item_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_feed_item_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_feed_item_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_feed_item_error_proto_goTypes = []interface{}{
- (FeedItemErrorEnum_FeedItemError)(0), // 0: google.ads.googleads.v16.errors.FeedItemErrorEnum.FeedItemError
- (*FeedItemErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.FeedItemErrorEnum
+var file_google_ads_googleads_v17_errors_feed_item_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_feed_item_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_feed_item_error_proto_goTypes = []interface{}{
+ (FeedItemErrorEnum_FeedItemError)(0), // 0: google.ads.googleads.v17.errors.FeedItemErrorEnum.FeedItemError
+ (*FeedItemErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.FeedItemErrorEnum
}
-var file_google_ads_googleads_v16_errors_feed_item_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_feed_item_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -241,13 +241,13 @@ var file_google_ads_googleads_v16_errors_feed_item_error_proto_depIdxs = []int32
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_feed_item_error_proto_init() }
-func file_google_ads_googleads_v16_errors_feed_item_error_proto_init() {
- if File_google_ads_googleads_v16_errors_feed_item_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_feed_item_error_proto_init() }
+func file_google_ads_googleads_v17_errors_feed_item_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_feed_item_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_feed_item_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_feed_item_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedItemErrorEnum); i {
case 0:
return &v.state
@@ -264,19 +264,19 @@ func file_google_ads_googleads_v16_errors_feed_item_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_feed_item_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_feed_item_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_feed_item_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_feed_item_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_feed_item_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_feed_item_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_feed_item_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_feed_item_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_feed_item_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_feed_item_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_feed_item_error_proto = out.File
- file_google_ads_googleads_v16_errors_feed_item_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_feed_item_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_feed_item_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_feed_item_error_proto = out.File
+ file_google_ads_googleads_v17_errors_feed_item_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_feed_item_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_feed_item_error_proto_depIdxs = nil
}
diff --git a/errors/feed_item_set_error.pb.go b/errors/feed_item_set_error.pb.go
index 24cc85db..9a3c208b 100644
--- a/errors/feed_item_set_error.pb.go
+++ b/errors/feed_item_set_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/feed_item_set_error.proto
+// source: google/ads/googleads/v17/errors/feed_item_set_error.proto
package errors
@@ -101,11 +101,11 @@ func (x FeedItemSetErrorEnum_FeedItemSetError) String() string {
}
func (FeedItemSetErrorEnum_FeedItemSetError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_feed_item_set_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_feed_item_set_error_proto_enumTypes[0].Descriptor()
}
func (FeedItemSetErrorEnum_FeedItemSetError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_feed_item_set_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_feed_item_set_error_proto_enumTypes[0]
}
func (x FeedItemSetErrorEnum_FeedItemSetError) Number() protoreflect.EnumNumber {
@@ -114,7 +114,7 @@ func (x FeedItemSetErrorEnum_FeedItemSetError) Number() protoreflect.EnumNumber
// Deprecated: Use FeedItemSetErrorEnum_FeedItemSetError.Descriptor instead.
func (FeedItemSetErrorEnum_FeedItemSetError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_feed_item_set_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_feed_item_set_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible feed item set errors.
@@ -127,7 +127,7 @@ type FeedItemSetErrorEnum struct {
func (x *FeedItemSetErrorEnum) Reset() {
*x = FeedItemSetErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_feed_item_set_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_feed_item_set_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -140,7 +140,7 @@ func (x *FeedItemSetErrorEnum) String() string {
func (*FeedItemSetErrorEnum) ProtoMessage() {}
func (x *FeedItemSetErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_feed_item_set_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_feed_item_set_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -153,18 +153,18 @@ func (x *FeedItemSetErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedItemSetErrorEnum.ProtoReflect.Descriptor instead.
func (*FeedItemSetErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_feed_item_set_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_feed_item_set_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_feed_item_set_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_feed_item_set_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_feed_item_set_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_feed_item_set_error_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa0, 0x02, 0x0a,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa0, 0x02, 0x0a,
0x14, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x87, 0x02, 0x0a, 0x10, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74,
0x65, 0x6d, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e,
@@ -184,42 +184,42 @@ var file_google_ads_googleads_v16_errors_feed_item_set_error_proto_rawDesc = []b
0x41, 0x4d, 0x49, 0x43, 0x5f, 0x46, 0x49, 0x4c, 0x54, 0x45, 0x52, 0x5f, 0x49, 0x4e, 0x56, 0x41,
0x4c, 0x49, 0x44, 0x5f, 0x43, 0x48, 0x41, 0x49, 0x4e, 0x5f, 0x49, 0x44, 0x53, 0x10, 0x08, 0x42,
0xf5, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65,
0x6d, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_feed_item_set_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_feed_item_set_error_proto_rawDescData = file_google_ads_googleads_v16_errors_feed_item_set_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_feed_item_set_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_feed_item_set_error_proto_rawDescData = file_google_ads_googleads_v17_errors_feed_item_set_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_feed_item_set_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_feed_item_set_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_feed_item_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_feed_item_set_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_feed_item_set_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_feed_item_set_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_feed_item_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_feed_item_set_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_feed_item_set_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_feed_item_set_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_feed_item_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_feed_item_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_feed_item_set_error_proto_goTypes = []interface{}{
- (FeedItemSetErrorEnum_FeedItemSetError)(0), // 0: google.ads.googleads.v16.errors.FeedItemSetErrorEnum.FeedItemSetError
- (*FeedItemSetErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.FeedItemSetErrorEnum
+var file_google_ads_googleads_v17_errors_feed_item_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_feed_item_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_feed_item_set_error_proto_goTypes = []interface{}{
+ (FeedItemSetErrorEnum_FeedItemSetError)(0), // 0: google.ads.googleads.v17.errors.FeedItemSetErrorEnum.FeedItemSetError
+ (*FeedItemSetErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.FeedItemSetErrorEnum
}
-var file_google_ads_googleads_v16_errors_feed_item_set_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_feed_item_set_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -227,13 +227,13 @@ var file_google_ads_googleads_v16_errors_feed_item_set_error_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_feed_item_set_error_proto_init() }
-func file_google_ads_googleads_v16_errors_feed_item_set_error_proto_init() {
- if File_google_ads_googleads_v16_errors_feed_item_set_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_feed_item_set_error_proto_init() }
+func file_google_ads_googleads_v17_errors_feed_item_set_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_feed_item_set_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_feed_item_set_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_feed_item_set_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedItemSetErrorEnum); i {
case 0:
return &v.state
@@ -250,19 +250,19 @@ func file_google_ads_googleads_v16_errors_feed_item_set_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_feed_item_set_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_feed_item_set_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_feed_item_set_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_feed_item_set_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_feed_item_set_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_feed_item_set_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_feed_item_set_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_feed_item_set_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_feed_item_set_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_feed_item_set_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_feed_item_set_error_proto = out.File
- file_google_ads_googleads_v16_errors_feed_item_set_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_feed_item_set_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_feed_item_set_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_feed_item_set_error_proto = out.File
+ file_google_ads_googleads_v17_errors_feed_item_set_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_feed_item_set_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_feed_item_set_error_proto_depIdxs = nil
}
diff --git a/errors/feed_item_set_link_error.pb.go b/errors/feed_item_set_link_error.pb.go
index d49eb682..19752b0b 100644
--- a/errors/feed_item_set_link_error.pb.go
+++ b/errors/feed_item_set_link_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/feed_item_set_link_error.proto
+// source: google/ads/googleads/v17/errors/feed_item_set_link_error.proto
package errors
@@ -76,11 +76,11 @@ func (x FeedItemSetLinkErrorEnum_FeedItemSetLinkError) String() string {
}
func (FeedItemSetLinkErrorEnum_FeedItemSetLinkError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_enumTypes[0].Descriptor()
}
func (FeedItemSetLinkErrorEnum_FeedItemSetLinkError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_enumTypes[0]
}
func (x FeedItemSetLinkErrorEnum_FeedItemSetLinkError) Number() protoreflect.EnumNumber {
@@ -89,7 +89,7 @@ func (x FeedItemSetLinkErrorEnum_FeedItemSetLinkError) Number() protoreflect.Enu
// Deprecated: Use FeedItemSetLinkErrorEnum_FeedItemSetLinkError.Descriptor instead.
func (FeedItemSetLinkErrorEnum_FeedItemSetLinkError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible feed item set link errors.
@@ -102,7 +102,7 @@ type FeedItemSetLinkErrorEnum struct {
func (x *FeedItemSetLinkErrorEnum) Reset() {
*x = FeedItemSetLinkErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -115,7 +115,7 @@ func (x *FeedItemSetLinkErrorEnum) String() string {
func (*FeedItemSetLinkErrorEnum) ProtoMessage() {}
func (x *FeedItemSetLinkErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -128,18 +128,18 @@ func (x *FeedItemSetLinkErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedItemSetLinkErrorEnum.ProtoReflect.Descriptor instead.
func (*FeedItemSetLinkErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_feed_item_set_link_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_feed_item_set_link_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_rawDesc = []byte{
0x0a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x5f,
0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x22, 0x8d, 0x01, 0x0a, 0x18, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65,
0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x71,
0x0a, 0x14, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e,
@@ -151,42 +151,42 @@ var file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_rawDesc
0x46, 0x4f, 0x52, 0x5f, 0x44, 0x59, 0x4e, 0x41, 0x4d, 0x49, 0x43, 0x5f, 0x53, 0x45, 0x54, 0x10,
0x03, 0x42, 0xf9, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x19, 0x46, 0x65, 0x65, 0x64, 0x49,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x19, 0x46, 0x65, 0x65, 0x64, 0x49,
0x74, 0x65, 0x6d, 0x53, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50,
0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03,
0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73,
- 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45,
+ 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70,
+ 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_rawDescData = file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_rawDescData = file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_goTypes = []interface{}{
- (FeedItemSetLinkErrorEnum_FeedItemSetLinkError)(0), // 0: google.ads.googleads.v16.errors.FeedItemSetLinkErrorEnum.FeedItemSetLinkError
- (*FeedItemSetLinkErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.FeedItemSetLinkErrorEnum
+var file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_goTypes = []interface{}{
+ (FeedItemSetLinkErrorEnum_FeedItemSetLinkError)(0), // 0: google.ads.googleads.v17.errors.FeedItemSetLinkErrorEnum.FeedItemSetLinkError
+ (*FeedItemSetLinkErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.FeedItemSetLinkErrorEnum
}
-var file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -194,13 +194,13 @@ var file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_init() }
-func file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_init() {
- if File_google_ads_googleads_v16_errors_feed_item_set_link_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_init() }
+func file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_feed_item_set_link_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedItemSetLinkErrorEnum); i {
case 0:
return &v.state
@@ -217,19 +217,19 @@ func file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_feed_item_set_link_error_proto = out.File
- file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_feed_item_set_link_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_feed_item_set_link_error_proto = out.File
+ file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_feed_item_set_link_error_proto_depIdxs = nil
}
diff --git a/errors/feed_item_target_error.pb.go b/errors/feed_item_target_error.pb.go
index c663fa9c..5e537f9e 100644
--- a/errors/feed_item_target_error.pb.go
+++ b/errors/feed_item_target_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/feed_item_target_error.proto
+// source: google/ads/googleads/v17/errors/feed_item_target_error.proto
package errors
@@ -101,11 +101,11 @@ func (x FeedItemTargetErrorEnum_FeedItemTargetError) String() string {
}
func (FeedItemTargetErrorEnum_FeedItemTargetError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_feed_item_target_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_feed_item_target_error_proto_enumTypes[0].Descriptor()
}
func (FeedItemTargetErrorEnum_FeedItemTargetError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_feed_item_target_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_feed_item_target_error_proto_enumTypes[0]
}
func (x FeedItemTargetErrorEnum_FeedItemTargetError) Number() protoreflect.EnumNumber {
@@ -114,7 +114,7 @@ func (x FeedItemTargetErrorEnum_FeedItemTargetError) Number() protoreflect.EnumN
// Deprecated: Use FeedItemTargetErrorEnum_FeedItemTargetError.Descriptor instead.
func (FeedItemTargetErrorEnum_FeedItemTargetError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_feed_item_target_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_feed_item_target_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible feed item target errors.
@@ -127,7 +127,7 @@ type FeedItemTargetErrorEnum struct {
func (x *FeedItemTargetErrorEnum) Reset() {
*x = FeedItemTargetErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_feed_item_target_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_feed_item_target_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -140,7 +140,7 @@ func (x *FeedItemTargetErrorEnum) String() string {
func (*FeedItemTargetErrorEnum) ProtoMessage() {}
func (x *FeedItemTargetErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_feed_item_target_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_feed_item_target_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -153,18 +153,18 @@ func (x *FeedItemTargetErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedItemTargetErrorEnum.ProtoReflect.Descriptor instead.
func (*FeedItemTargetErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_feed_item_target_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_feed_item_target_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_feed_item_target_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_feed_item_target_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_feed_item_target_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_feed_item_target_error_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x61, 0x72, 0x67,
0x65, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22,
0xfc, 0x02, 0x0a, 0x17, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67,
0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xe0, 0x02, 0x0a, 0x13,
0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x45, 0x72,
@@ -190,43 +190,43 @@ var file_google_ads_googleads_v16_errors_feed_item_target_error_proto_rawDesc =
0x45, 0x44, 0x55, 0x4c, 0x45, 0x10, 0x08, 0x12, 0x15, 0x0a, 0x11, 0x44, 0x55, 0x50, 0x4c, 0x49,
0x43, 0x41, 0x54, 0x45, 0x5f, 0x4b, 0x45, 0x59, 0x57, 0x4f, 0x52, 0x44, 0x10, 0x09, 0x42, 0xf8,
0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x18, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d,
0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_errors_feed_item_target_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_feed_item_target_error_proto_rawDescData = file_google_ads_googleads_v16_errors_feed_item_target_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_feed_item_target_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_feed_item_target_error_proto_rawDescData = file_google_ads_googleads_v17_errors_feed_item_target_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_feed_item_target_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_feed_item_target_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_feed_item_target_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_feed_item_target_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_feed_item_target_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_feed_item_target_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_feed_item_target_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_feed_item_target_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_feed_item_target_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_feed_item_target_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_feed_item_target_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_feed_item_target_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_feed_item_target_error_proto_goTypes = []interface{}{
- (FeedItemTargetErrorEnum_FeedItemTargetError)(0), // 0: google.ads.googleads.v16.errors.FeedItemTargetErrorEnum.FeedItemTargetError
- (*FeedItemTargetErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.FeedItemTargetErrorEnum
+var file_google_ads_googleads_v17_errors_feed_item_target_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_feed_item_target_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_feed_item_target_error_proto_goTypes = []interface{}{
+ (FeedItemTargetErrorEnum_FeedItemTargetError)(0), // 0: google.ads.googleads.v17.errors.FeedItemTargetErrorEnum.FeedItemTargetError
+ (*FeedItemTargetErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.FeedItemTargetErrorEnum
}
-var file_google_ads_googleads_v16_errors_feed_item_target_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_feed_item_target_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -234,13 +234,13 @@ var file_google_ads_googleads_v16_errors_feed_item_target_error_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_feed_item_target_error_proto_init() }
-func file_google_ads_googleads_v16_errors_feed_item_target_error_proto_init() {
- if File_google_ads_googleads_v16_errors_feed_item_target_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_feed_item_target_error_proto_init() }
+func file_google_ads_googleads_v17_errors_feed_item_target_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_feed_item_target_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_feed_item_target_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_feed_item_target_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedItemTargetErrorEnum); i {
case 0:
return &v.state
@@ -257,19 +257,19 @@ func file_google_ads_googleads_v16_errors_feed_item_target_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_feed_item_target_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_feed_item_target_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_feed_item_target_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_feed_item_target_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_feed_item_target_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_feed_item_target_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_feed_item_target_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_feed_item_target_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_feed_item_target_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_feed_item_target_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_feed_item_target_error_proto = out.File
- file_google_ads_googleads_v16_errors_feed_item_target_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_feed_item_target_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_feed_item_target_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_feed_item_target_error_proto = out.File
+ file_google_ads_googleads_v17_errors_feed_item_target_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_feed_item_target_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_feed_item_target_error_proto_depIdxs = nil
}
diff --git a/errors/feed_item_validation_error.pb.go b/errors/feed_item_validation_error.pb.go
index 7d129d23..81904812 100644
--- a/errors/feed_item_validation_error.pb.go
+++ b/errors/feed_item_validation_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/feed_item_validation_error.proto
+// source: google/ads/googleads/v17/errors/feed_item_validation_error.proto
package errors
@@ -505,11 +505,11 @@ func (x FeedItemValidationErrorEnum_FeedItemValidationError) String() string {
}
func (FeedItemValidationErrorEnum_FeedItemValidationError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_enumTypes[0].Descriptor()
}
func (FeedItemValidationErrorEnum_FeedItemValidationError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_enumTypes[0]
}
func (x FeedItemValidationErrorEnum_FeedItemValidationError) Number() protoreflect.EnumNumber {
@@ -518,7 +518,7 @@ func (x FeedItemValidationErrorEnum_FeedItemValidationError) Number() protorefle
// Deprecated: Use FeedItemValidationErrorEnum_FeedItemValidationError.Descriptor instead.
func (FeedItemValidationErrorEnum_FeedItemValidationError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible validation errors of a feed item.
@@ -531,7 +531,7 @@ type FeedItemValidationErrorEnum struct {
func (x *FeedItemValidationErrorEnum) Reset() {
*x = FeedItemValidationErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -544,7 +544,7 @@ func (x *FeedItemValidationErrorEnum) String() string {
func (*FeedItemValidationErrorEnum) ProtoMessage() {}
func (x *FeedItemValidationErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -557,18 +557,18 @@ func (x *FeedItemValidationErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedItemValidationErrorEnum.ProtoReflect.Descriptor instead.
func (*FeedItemValidationErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_feed_item_validation_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_feed_item_validation_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x76, 0x61, 0x6c, 0x69,
0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x22, 0xee, 0x1b, 0x0a, 0x1b, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d,
0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0xce, 0x1b, 0x0a, 0x17, 0x46, 0x65, 0x65, 0x64, 0x49, 0x74, 0x65, 0x6d,
@@ -794,42 +794,42 @@ var file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_rawDes
0x45, 0x52, 0x52, 0x4f, 0x52, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x45, 0x52, 0x5f, 0x45, 0x52, 0x52,
0x4f, 0x52, 0x10, 0x6b, 0x42, 0xfc, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1c, 0x46, 0x65,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1c, 0x46, 0x65,
0x65, 0x64, 0x49, 0x74, 0x65, 0x6d, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_rawDescData = file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_rawDescData = file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_goTypes = []interface{}{
- (FeedItemValidationErrorEnum_FeedItemValidationError)(0), // 0: google.ads.googleads.v16.errors.FeedItemValidationErrorEnum.FeedItemValidationError
- (*FeedItemValidationErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.FeedItemValidationErrorEnum
+var file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_goTypes = []interface{}{
+ (FeedItemValidationErrorEnum_FeedItemValidationError)(0), // 0: google.ads.googleads.v17.errors.FeedItemValidationErrorEnum.FeedItemValidationError
+ (*FeedItemValidationErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.FeedItemValidationErrorEnum
}
-var file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -837,13 +837,13 @@ var file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_depIdx
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_init() }
-func file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_init() {
- if File_google_ads_googleads_v16_errors_feed_item_validation_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_init() }
+func file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_feed_item_validation_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedItemValidationErrorEnum); i {
case 0:
return &v.state
@@ -860,19 +860,19 @@ func file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_feed_item_validation_error_proto = out.File
- file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_feed_item_validation_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_feed_item_validation_error_proto = out.File
+ file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_feed_item_validation_error_proto_depIdxs = nil
}
diff --git a/errors/feed_mapping_error.pb.go b/errors/feed_mapping_error.pb.go
index e9718838..7d813876 100644
--- a/errors/feed_mapping_error.pb.go
+++ b/errors/feed_mapping_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/feed_mapping_error.proto
+// source: google/ads/googleads/v17/errors/feed_mapping_error.proto
package errors
@@ -144,11 +144,11 @@ func (x FeedMappingErrorEnum_FeedMappingError) String() string {
}
func (FeedMappingErrorEnum_FeedMappingError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_feed_mapping_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_feed_mapping_error_proto_enumTypes[0].Descriptor()
}
func (FeedMappingErrorEnum_FeedMappingError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_feed_mapping_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_feed_mapping_error_proto_enumTypes[0]
}
func (x FeedMappingErrorEnum_FeedMappingError) Number() protoreflect.EnumNumber {
@@ -157,7 +157,7 @@ func (x FeedMappingErrorEnum_FeedMappingError) Number() protoreflect.EnumNumber
// Deprecated: Use FeedMappingErrorEnum_FeedMappingError.Descriptor instead.
func (FeedMappingErrorEnum_FeedMappingError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_feed_mapping_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_feed_mapping_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible feed item errors.
@@ -170,7 +170,7 @@ type FeedMappingErrorEnum struct {
func (x *FeedMappingErrorEnum) Reset() {
*x = FeedMappingErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_feed_mapping_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_feed_mapping_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -183,7 +183,7 @@ func (x *FeedMappingErrorEnum) String() string {
func (*FeedMappingErrorEnum) ProtoMessage() {}
func (x *FeedMappingErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_feed_mapping_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_feed_mapping_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -196,18 +196,18 @@ func (x *FeedMappingErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FeedMappingErrorEnum.ProtoReflect.Descriptor instead.
func (*FeedMappingErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_feed_mapping_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_feed_mapping_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_feed_mapping_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_feed_mapping_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_feed_mapping_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_feed_mapping_error_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xb2, 0x06, 0x0a, 0x14,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xb2, 0x06, 0x0a, 0x14,
0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x99, 0x06, 0x0a, 0x10, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, 0x70,
0x70, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53,
@@ -261,41 +261,41 @@ var file_google_ads_googleads_v16_errors_feed_mapping_error_proto_rawDesc = []by
0x54, 0x59, 0x50, 0x45, 0x5f, 0x52, 0x45, 0x41, 0x44, 0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x10, 0x14,
0x42, 0xf5, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61,
0x70, 0x70, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_feed_mapping_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_feed_mapping_error_proto_rawDescData = file_google_ads_googleads_v16_errors_feed_mapping_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_feed_mapping_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_feed_mapping_error_proto_rawDescData = file_google_ads_googleads_v17_errors_feed_mapping_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_feed_mapping_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_feed_mapping_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_feed_mapping_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_feed_mapping_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_feed_mapping_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_feed_mapping_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_feed_mapping_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_feed_mapping_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_feed_mapping_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_feed_mapping_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_feed_mapping_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_feed_mapping_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_feed_mapping_error_proto_goTypes = []interface{}{
- (FeedMappingErrorEnum_FeedMappingError)(0), // 0: google.ads.googleads.v16.errors.FeedMappingErrorEnum.FeedMappingError
- (*FeedMappingErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.FeedMappingErrorEnum
+var file_google_ads_googleads_v17_errors_feed_mapping_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_feed_mapping_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_feed_mapping_error_proto_goTypes = []interface{}{
+ (FeedMappingErrorEnum_FeedMappingError)(0), // 0: google.ads.googleads.v17.errors.FeedMappingErrorEnum.FeedMappingError
+ (*FeedMappingErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.FeedMappingErrorEnum
}
-var file_google_ads_googleads_v16_errors_feed_mapping_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_feed_mapping_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -303,13 +303,13 @@ var file_google_ads_googleads_v16_errors_feed_mapping_error_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_feed_mapping_error_proto_init() }
-func file_google_ads_googleads_v16_errors_feed_mapping_error_proto_init() {
- if File_google_ads_googleads_v16_errors_feed_mapping_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_feed_mapping_error_proto_init() }
+func file_google_ads_googleads_v17_errors_feed_mapping_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_feed_mapping_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_feed_mapping_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_feed_mapping_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FeedMappingErrorEnum); i {
case 0:
return &v.state
@@ -326,19 +326,19 @@ func file_google_ads_googleads_v16_errors_feed_mapping_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_feed_mapping_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_feed_mapping_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_feed_mapping_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_feed_mapping_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_feed_mapping_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_feed_mapping_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_feed_mapping_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_feed_mapping_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_feed_mapping_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_feed_mapping_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_feed_mapping_error_proto = out.File
- file_google_ads_googleads_v16_errors_feed_mapping_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_feed_mapping_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_feed_mapping_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_feed_mapping_error_proto = out.File
+ file_google_ads_googleads_v17_errors_feed_mapping_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_feed_mapping_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_feed_mapping_error_proto_depIdxs = nil
}
diff --git a/errors/field_error.pb.go b/errors/field_error.pb.go
index 1f0f7a5f..b8722f64 100644
--- a/errors/field_error.pb.go
+++ b/errors/field_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/field_error.proto
+// source: google/ads/googleads/v17/errors/field_error.proto
package errors
@@ -99,11 +99,11 @@ func (x FieldErrorEnum_FieldError) String() string {
}
func (FieldErrorEnum_FieldError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_field_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_field_error_proto_enumTypes[0].Descriptor()
}
func (FieldErrorEnum_FieldError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_field_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_field_error_proto_enumTypes[0]
}
func (x FieldErrorEnum_FieldError) Number() protoreflect.EnumNumber {
@@ -112,7 +112,7 @@ func (x FieldErrorEnum_FieldError) Number() protoreflect.EnumNumber {
// Deprecated: Use FieldErrorEnum_FieldError.Descriptor instead.
func (FieldErrorEnum_FieldError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_field_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_field_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible field errors.
@@ -125,7 +125,7 @@ type FieldErrorEnum struct {
func (x *FieldErrorEnum) Reset() {
*x = FieldErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_field_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_field_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -138,7 +138,7 @@ func (x *FieldErrorEnum) String() string {
func (*FieldErrorEnum) ProtoMessage() {}
func (x *FieldErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_field_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_field_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -151,17 +151,17 @@ func (x *FieldErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FieldErrorEnum.ProtoReflect.Descriptor instead.
func (*FieldErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_field_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_field_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_field_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_field_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_field_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_field_error_proto_rawDesc = []byte{
0x0a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x22, 0xf7, 0x01, 0x0a, 0x0e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xe4, 0x01, 0x0a, 0x0a, 0x46, 0x69, 0x65, 0x6c,
0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
@@ -179,42 +179,42 @@ var file_google_ads_googleads_v16_errors_field_error_proto_rawDesc = []byte{
0x1d, 0x0a, 0x19, 0x46, 0x49, 0x45, 0x4c, 0x44, 0x5f, 0x43, 0x41, 0x4e, 0x5f, 0x4f, 0x4e, 0x4c,
0x59, 0x5f, 0x42, 0x45, 0x5f, 0x43, 0x4c, 0x45, 0x41, 0x52, 0x45, 0x44, 0x10, 0x0a, 0x42, 0xef,
0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0f, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_field_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_field_error_proto_rawDescData = file_google_ads_googleads_v16_errors_field_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_field_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_field_error_proto_rawDescData = file_google_ads_googleads_v17_errors_field_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_field_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_field_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_field_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_field_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_field_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_field_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_field_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_field_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_field_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_field_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_field_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_field_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_field_error_proto_goTypes = []interface{}{
- (FieldErrorEnum_FieldError)(0), // 0: google.ads.googleads.v16.errors.FieldErrorEnum.FieldError
- (*FieldErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.FieldErrorEnum
+var file_google_ads_googleads_v17_errors_field_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_field_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_field_error_proto_goTypes = []interface{}{
+ (FieldErrorEnum_FieldError)(0), // 0: google.ads.googleads.v17.errors.FieldErrorEnum.FieldError
+ (*FieldErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.FieldErrorEnum
}
-var file_google_ads_googleads_v16_errors_field_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_field_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -222,13 +222,13 @@ var file_google_ads_googleads_v16_errors_field_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_field_error_proto_init() }
-func file_google_ads_googleads_v16_errors_field_error_proto_init() {
- if File_google_ads_googleads_v16_errors_field_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_field_error_proto_init() }
+func file_google_ads_googleads_v17_errors_field_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_field_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_field_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_field_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FieldErrorEnum); i {
case 0:
return &v.state
@@ -245,19 +245,19 @@ func file_google_ads_googleads_v16_errors_field_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_field_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_field_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_field_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_field_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_field_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_field_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_field_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_field_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_field_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_field_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_field_error_proto = out.File
- file_google_ads_googleads_v16_errors_field_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_field_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_field_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_field_error_proto = out.File
+ file_google_ads_googleads_v17_errors_field_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_field_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_field_error_proto_depIdxs = nil
}
diff --git a/errors/field_mask_error.pb.go b/errors/field_mask_error.pb.go
index e9fec306..db6fcefa 100644
--- a/errors/field_mask_error.pb.go
+++ b/errors/field_mask_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/field_mask_error.proto
+// source: google/ads/googleads/v17/errors/field_mask_error.proto
package errors
@@ -85,11 +85,11 @@ func (x FieldMaskErrorEnum_FieldMaskError) String() string {
}
func (FieldMaskErrorEnum_FieldMaskError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_field_mask_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_field_mask_error_proto_enumTypes[0].Descriptor()
}
func (FieldMaskErrorEnum_FieldMaskError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_field_mask_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_field_mask_error_proto_enumTypes[0]
}
func (x FieldMaskErrorEnum_FieldMaskError) Number() protoreflect.EnumNumber {
@@ -98,7 +98,7 @@ func (x FieldMaskErrorEnum_FieldMaskError) Number() protoreflect.EnumNumber {
// Deprecated: Use FieldMaskErrorEnum_FieldMaskError.Descriptor instead.
func (FieldMaskErrorEnum_FieldMaskError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_field_mask_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_field_mask_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible field mask errors.
@@ -111,7 +111,7 @@ type FieldMaskErrorEnum struct {
func (x *FieldMaskErrorEnum) Reset() {
*x = FieldMaskErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_field_mask_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_field_mask_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -124,7 +124,7 @@ func (x *FieldMaskErrorEnum) String() string {
func (*FieldMaskErrorEnum) ProtoMessage() {}
func (x *FieldMaskErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_field_mask_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_field_mask_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -137,18 +137,18 @@ func (x *FieldMaskErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FieldMaskErrorEnum.ProtoReflect.Descriptor instead.
func (*FieldMaskErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_field_mask_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_field_mask_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_field_mask_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_field_mask_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_field_mask_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_field_mask_error_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x6d, 0x61, 0x73, 0x6b, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa7, 0x01, 0x0a, 0x12, 0x46, 0x69,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa7, 0x01, 0x0a, 0x12, 0x46, 0x69,
0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x90, 0x01, 0x0a, 0x0e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
@@ -161,42 +161,42 @@ var file_google_ads_googleads_v16_errors_field_mask_error_proto_rawDesc = []byte
0x45, 0x4c, 0x44, 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x53, 0x55, 0x42, 0x46, 0x49, 0x45, 0x4c, 0x44,
0x53, 0x10, 0x03, 0x42, 0xf3, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x13, 0x46, 0x69, 0x65,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x13, 0x46, 0x69, 0x65,
0x6c, 0x64, 0x4d, 0x61, 0x73, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_errors_field_mask_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_field_mask_error_proto_rawDescData = file_google_ads_googleads_v16_errors_field_mask_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_field_mask_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_field_mask_error_proto_rawDescData = file_google_ads_googleads_v17_errors_field_mask_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_field_mask_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_field_mask_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_field_mask_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_field_mask_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_field_mask_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_field_mask_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_field_mask_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_field_mask_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_field_mask_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_field_mask_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_field_mask_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_field_mask_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_field_mask_error_proto_goTypes = []interface{}{
- (FieldMaskErrorEnum_FieldMaskError)(0), // 0: google.ads.googleads.v16.errors.FieldMaskErrorEnum.FieldMaskError
- (*FieldMaskErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.FieldMaskErrorEnum
+var file_google_ads_googleads_v17_errors_field_mask_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_field_mask_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_field_mask_error_proto_goTypes = []interface{}{
+ (FieldMaskErrorEnum_FieldMaskError)(0), // 0: google.ads.googleads.v17.errors.FieldMaskErrorEnum.FieldMaskError
+ (*FieldMaskErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.FieldMaskErrorEnum
}
-var file_google_ads_googleads_v16_errors_field_mask_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_field_mask_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -204,13 +204,13 @@ var file_google_ads_googleads_v16_errors_field_mask_error_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_field_mask_error_proto_init() }
-func file_google_ads_googleads_v16_errors_field_mask_error_proto_init() {
- if File_google_ads_googleads_v16_errors_field_mask_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_field_mask_error_proto_init() }
+func file_google_ads_googleads_v17_errors_field_mask_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_field_mask_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_field_mask_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_field_mask_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FieldMaskErrorEnum); i {
case 0:
return &v.state
@@ -227,19 +227,19 @@ func file_google_ads_googleads_v16_errors_field_mask_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_field_mask_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_field_mask_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_field_mask_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_field_mask_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_field_mask_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_field_mask_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_field_mask_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_field_mask_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_field_mask_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_field_mask_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_field_mask_error_proto = out.File
- file_google_ads_googleads_v16_errors_field_mask_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_field_mask_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_field_mask_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_field_mask_error_proto = out.File
+ file_google_ads_googleads_v17_errors_field_mask_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_field_mask_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_field_mask_error_proto_depIdxs = nil
}
diff --git a/errors/function_error.pb.go b/errors/function_error.pb.go
index 3a3aed17..30777035 100644
--- a/errors/function_error.pb.go
+++ b/errors/function_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/function_error.proto
+// source: google/ads/googleads/v17/errors/function_error.proto
package errors
@@ -132,11 +132,11 @@ func (x FunctionErrorEnum_FunctionError) String() string {
}
func (FunctionErrorEnum_FunctionError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_function_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_function_error_proto_enumTypes[0].Descriptor()
}
func (FunctionErrorEnum_FunctionError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_function_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_function_error_proto_enumTypes[0]
}
func (x FunctionErrorEnum_FunctionError) Number() protoreflect.EnumNumber {
@@ -145,7 +145,7 @@ func (x FunctionErrorEnum_FunctionError) Number() protoreflect.EnumNumber {
// Deprecated: Use FunctionErrorEnum_FunctionError.Descriptor instead.
func (FunctionErrorEnum_FunctionError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_function_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_function_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible function errors.
@@ -158,7 +158,7 @@ type FunctionErrorEnum struct {
func (x *FunctionErrorEnum) Reset() {
*x = FunctionErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_function_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_function_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -171,7 +171,7 @@ func (x *FunctionErrorEnum) String() string {
func (*FunctionErrorEnum) ProtoMessage() {}
func (x *FunctionErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_function_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_function_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -184,17 +184,17 @@ func (x *FunctionErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FunctionErrorEnum.ProtoReflect.Descriptor instead.
func (*FunctionErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_function_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_function_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_function_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_function_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_function_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_function_error_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xc1, 0x04, 0x0a, 0x11, 0x46, 0x75, 0x6e, 0x63,
0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xab, 0x04,
0x0a, 0x0d, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
@@ -233,42 +233,42 @@ var file_google_ads_googleads_v16_errors_function_error_proto_rawDesc = []byte{
0x1a, 0x0a, 0x16, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x5f, 0x41, 0x54, 0x54, 0x52, 0x49,
0x42, 0x55, 0x54, 0x45, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x11, 0x42, 0xf2, 0x01, 0x0a, 0x23,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x42, 0x12, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_function_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_function_error_proto_rawDescData = file_google_ads_googleads_v16_errors_function_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_function_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_function_error_proto_rawDescData = file_google_ads_googleads_v17_errors_function_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_function_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_function_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_function_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_function_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_function_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_function_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_function_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_function_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_function_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_function_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_function_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_function_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_function_error_proto_goTypes = []interface{}{
- (FunctionErrorEnum_FunctionError)(0), // 0: google.ads.googleads.v16.errors.FunctionErrorEnum.FunctionError
- (*FunctionErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.FunctionErrorEnum
+var file_google_ads_googleads_v17_errors_function_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_function_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_function_error_proto_goTypes = []interface{}{
+ (FunctionErrorEnum_FunctionError)(0), // 0: google.ads.googleads.v17.errors.FunctionErrorEnum.FunctionError
+ (*FunctionErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.FunctionErrorEnum
}
-var file_google_ads_googleads_v16_errors_function_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_function_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -276,13 +276,13 @@ var file_google_ads_googleads_v16_errors_function_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_function_error_proto_init() }
-func file_google_ads_googleads_v16_errors_function_error_proto_init() {
- if File_google_ads_googleads_v16_errors_function_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_function_error_proto_init() }
+func file_google_ads_googleads_v17_errors_function_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_function_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_function_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_function_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FunctionErrorEnum); i {
case 0:
return &v.state
@@ -299,19 +299,19 @@ func file_google_ads_googleads_v16_errors_function_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_function_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_function_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_function_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_function_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_function_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_function_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_function_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_function_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_function_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_function_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_function_error_proto = out.File
- file_google_ads_googleads_v16_errors_function_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_function_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_function_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_function_error_proto = out.File
+ file_google_ads_googleads_v17_errors_function_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_function_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_function_error_proto_depIdxs = nil
}
diff --git a/errors/function_parsing_error.pb.go b/errors/function_parsing_error.pb.go
index 8cfc9966..ed8c9a01 100644
--- a/errors/function_parsing_error.pb.go
+++ b/errors/function_parsing_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/function_parsing_error.proto
+// source: google/ads/googleads/v17/errors/function_parsing_error.proto
package errors
@@ -111,11 +111,11 @@ func (x FunctionParsingErrorEnum_FunctionParsingError) String() string {
}
func (FunctionParsingErrorEnum_FunctionParsingError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_function_parsing_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_function_parsing_error_proto_enumTypes[0].Descriptor()
}
func (FunctionParsingErrorEnum_FunctionParsingError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_function_parsing_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_function_parsing_error_proto_enumTypes[0]
}
func (x FunctionParsingErrorEnum_FunctionParsingError) Number() protoreflect.EnumNumber {
@@ -124,7 +124,7 @@ func (x FunctionParsingErrorEnum_FunctionParsingError) Number() protoreflect.Enu
// Deprecated: Use FunctionParsingErrorEnum_FunctionParsingError.Descriptor instead.
func (FunctionParsingErrorEnum_FunctionParsingError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_function_parsing_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_function_parsing_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible function parsing errors.
@@ -137,7 +137,7 @@ type FunctionParsingErrorEnum struct {
func (x *FunctionParsingErrorEnum) Reset() {
*x = FunctionParsingErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_function_parsing_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_function_parsing_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -150,7 +150,7 @@ func (x *FunctionParsingErrorEnum) String() string {
func (*FunctionParsingErrorEnum) ProtoMessage() {}
func (x *FunctionParsingErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_function_parsing_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_function_parsing_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -163,18 +163,18 @@ func (x *FunctionParsingErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use FunctionParsingErrorEnum.ProtoReflect.Descriptor instead.
func (*FunctionParsingErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_function_parsing_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_function_parsing_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_function_parsing_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_function_parsing_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_function_parsing_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_function_parsing_error_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x73, 0x69,
0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22,
0x82, 0x03, 0x0a, 0x18, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x73,
0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xe5, 0x02, 0x0a,
0x14, 0x46, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x73, 0x69, 0x6e, 0x67,
@@ -201,42 +201,42 @@ var file_google_ads_googleads_v16_errors_function_parsing_error_proto_rawDesc =
0x11, 0x54, 0x4f, 0x4f, 0x5f, 0x4d, 0x41, 0x4e, 0x59, 0x5f, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x4e,
0x44, 0x53, 0x10, 0x0c, 0x42, 0xf9, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x19, 0x46, 0x75,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x19, 0x46, 0x75,
0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x73, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_function_parsing_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_function_parsing_error_proto_rawDescData = file_google_ads_googleads_v16_errors_function_parsing_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_function_parsing_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_function_parsing_error_proto_rawDescData = file_google_ads_googleads_v17_errors_function_parsing_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_function_parsing_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_function_parsing_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_function_parsing_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_function_parsing_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_function_parsing_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_function_parsing_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_function_parsing_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_function_parsing_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_function_parsing_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_function_parsing_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_function_parsing_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_function_parsing_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_function_parsing_error_proto_goTypes = []interface{}{
- (FunctionParsingErrorEnum_FunctionParsingError)(0), // 0: google.ads.googleads.v16.errors.FunctionParsingErrorEnum.FunctionParsingError
- (*FunctionParsingErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.FunctionParsingErrorEnum
+var file_google_ads_googleads_v17_errors_function_parsing_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_function_parsing_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_function_parsing_error_proto_goTypes = []interface{}{
+ (FunctionParsingErrorEnum_FunctionParsingError)(0), // 0: google.ads.googleads.v17.errors.FunctionParsingErrorEnum.FunctionParsingError
+ (*FunctionParsingErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.FunctionParsingErrorEnum
}
-var file_google_ads_googleads_v16_errors_function_parsing_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_function_parsing_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -244,13 +244,13 @@ var file_google_ads_googleads_v16_errors_function_parsing_error_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_function_parsing_error_proto_init() }
-func file_google_ads_googleads_v16_errors_function_parsing_error_proto_init() {
- if File_google_ads_googleads_v16_errors_function_parsing_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_function_parsing_error_proto_init() }
+func file_google_ads_googleads_v17_errors_function_parsing_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_function_parsing_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_function_parsing_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_function_parsing_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*FunctionParsingErrorEnum); i {
case 0:
return &v.state
@@ -267,19 +267,19 @@ func file_google_ads_googleads_v16_errors_function_parsing_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_function_parsing_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_function_parsing_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_function_parsing_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_function_parsing_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_function_parsing_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_function_parsing_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_function_parsing_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_function_parsing_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_function_parsing_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_function_parsing_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_function_parsing_error_proto = out.File
- file_google_ads_googleads_v16_errors_function_parsing_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_function_parsing_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_function_parsing_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_function_parsing_error_proto = out.File
+ file_google_ads_googleads_v17_errors_function_parsing_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_function_parsing_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_function_parsing_error_proto_depIdxs = nil
}
diff --git a/errors/geo_target_constant_suggestion_error.pb.go b/errors/geo_target_constant_suggestion_error.pb.go
index 353ec110..70bd31e1 100644
--- a/errors/geo_target_constant_suggestion_error.pb.go
+++ b/errors/geo_target_constant_suggestion_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/geo_target_constant_suggestion_error.proto
+// source: google/ads/googleads/v17/errors/geo_target_constant_suggestion_error.proto
package errors
@@ -85,11 +85,11 @@ func (x GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError) S
}
func (GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_enumTypes[0].Descriptor()
}
func (GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_enumTypes[0]
}
func (x GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError) Number() protoreflect.EnumNumber {
@@ -98,7 +98,7 @@ func (x GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError) N
// Deprecated: Use GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError.Descriptor instead.
func (GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible geo target constant suggestion errors.
@@ -111,7 +111,7 @@ type GeoTargetConstantSuggestionErrorEnum struct {
func (x *GeoTargetConstantSuggestionErrorEnum) Reset() {
*x = GeoTargetConstantSuggestionErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -124,7 +124,7 @@ func (x *GeoTargetConstantSuggestionErrorEnum) String() string {
func (*GeoTargetConstantSuggestionErrorEnum) ProtoMessage() {}
func (x *GeoTargetConstantSuggestionErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -137,19 +137,19 @@ func (x *GeoTargetConstantSuggestionErrorEnum) ProtoReflect() protoreflect.Messa
// Deprecated: Use GeoTargetConstantSuggestionErrorEnum.ProtoReflect.Descriptor instead.
func (*GeoTargetConstantSuggestionErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_rawDesc = []byte{
0x0a, 0x4a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x67, 0x65, 0x6f, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6e,
0x73, 0x74, 0x61, 0x6e, 0x74, 0x5f, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xd8, 0x01,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xd8, 0x01,
0x0a, 0x24, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74,
0x61, 0x6e, 0x74, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xaf, 0x01, 0x0a, 0x20, 0x47, 0x65, 0x6f, 0x54, 0x61,
@@ -165,43 +165,43 @@ var file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_pr
0x51, 0x55, 0x45, 0x53, 0x54, 0x5f, 0x50, 0x41, 0x52, 0x41, 0x4d, 0x45, 0x54, 0x45, 0x52, 0x53,
0x5f, 0x55, 0x4e, 0x53, 0x45, 0x54, 0x10, 0x05, 0x42, 0x85, 0x02, 0x0a, 0x23, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x42, 0x25, 0x47, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74,
0x61, 0x6e, 0x74, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_rawDescData = file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_rawDescData = file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_goTypes = []interface{}{
- (GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError)(0), // 0: google.ads.googleads.v16.errors.GeoTargetConstantSuggestionErrorEnum.GeoTargetConstantSuggestionError
- (*GeoTargetConstantSuggestionErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.GeoTargetConstantSuggestionErrorEnum
+var file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_goTypes = []interface{}{
+ (GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError)(0), // 0: google.ads.googleads.v17.errors.GeoTargetConstantSuggestionErrorEnum.GeoTargetConstantSuggestionError
+ (*GeoTargetConstantSuggestionErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.GeoTargetConstantSuggestionErrorEnum
}
-var file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -209,13 +209,13 @@ var file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_pr
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_init() }
-func file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_init() {
- if File_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_init() }
+func file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GeoTargetConstantSuggestionErrorEnum); i {
case 0:
return &v.state
@@ -232,19 +232,19 @@ func file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_p
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto = out.File
- file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_geo_target_constant_suggestion_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto = out.File
+ file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_geo_target_constant_suggestion_error_proto_depIdxs = nil
}
diff --git a/errors/header_error.pb.go b/errors/header_error.pb.go
index 8e2cb157..fcd5b34f 100644
--- a/errors/header_error.pb.go
+++ b/errors/header_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/header_error.proto
+// source: google/ads/googleads/v17/errors/header_error.proto
package errors
@@ -75,11 +75,11 @@ func (x HeaderErrorEnum_HeaderError) String() string {
}
func (HeaderErrorEnum_HeaderError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_header_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_header_error_proto_enumTypes[0].Descriptor()
}
func (HeaderErrorEnum_HeaderError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_header_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_header_error_proto_enumTypes[0]
}
func (x HeaderErrorEnum_HeaderError) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x HeaderErrorEnum_HeaderError) Number() protoreflect.EnumNumber {
// Deprecated: Use HeaderErrorEnum_HeaderError.Descriptor instead.
func (HeaderErrorEnum_HeaderError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_header_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_header_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible header errors.
@@ -101,7 +101,7 @@ type HeaderErrorEnum struct {
func (x *HeaderErrorEnum) Reset() {
*x = HeaderErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_header_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_header_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *HeaderErrorEnum) String() string {
func (*HeaderErrorEnum) ProtoMessage() {}
func (x *HeaderErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_header_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_header_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,17 +127,17 @@ func (x *HeaderErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use HeaderErrorEnum.ProtoReflect.Descriptor instead.
func (*HeaderErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_header_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_header_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_header_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_header_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_header_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_header_error_proto_rawDesc = []byte{
0x0a, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x7d, 0x0a, 0x0f, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x6a, 0x0a, 0x0b, 0x48, 0x65, 0x61, 0x64,
0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45,
@@ -148,41 +148,41 @@ var file_google_ads_googleads_v16_errors_header_error_proto_rawDesc = []byte{
0x4c, 0x49, 0x4e, 0x4b, 0x45, 0x44, 0x5f, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x45, 0x52, 0x5f,
0x49, 0x44, 0x10, 0x07, 0x42, 0xf0, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x10, 0x48, 0x65,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x10, 0x48, 0x65,
0x61, 0x64, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_header_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_header_error_proto_rawDescData = file_google_ads_googleads_v16_errors_header_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_header_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_header_error_proto_rawDescData = file_google_ads_googleads_v17_errors_header_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_header_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_header_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_header_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_header_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_header_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_header_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_header_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_header_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_header_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_header_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_header_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_header_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_header_error_proto_goTypes = []interface{}{
- (HeaderErrorEnum_HeaderError)(0), // 0: google.ads.googleads.v16.errors.HeaderErrorEnum.HeaderError
- (*HeaderErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.HeaderErrorEnum
+var file_google_ads_googleads_v17_errors_header_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_header_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_header_error_proto_goTypes = []interface{}{
+ (HeaderErrorEnum_HeaderError)(0), // 0: google.ads.googleads.v17.errors.HeaderErrorEnum.HeaderError
+ (*HeaderErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.HeaderErrorEnum
}
-var file_google_ads_googleads_v16_errors_header_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_header_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_errors_header_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_header_error_proto_init() }
-func file_google_ads_googleads_v16_errors_header_error_proto_init() {
- if File_google_ads_googleads_v16_errors_header_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_header_error_proto_init() }
+func file_google_ads_googleads_v17_errors_header_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_header_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_header_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_header_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*HeaderErrorEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_errors_header_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_header_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_header_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_header_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_header_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_header_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_header_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_header_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_header_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_header_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_header_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_header_error_proto = out.File
- file_google_ads_googleads_v16_errors_header_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_header_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_header_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_header_error_proto = out.File
+ file_google_ads_googleads_v17_errors_header_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_header_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_header_error_proto_depIdxs = nil
}
diff --git a/errors/id_error.pb.go b/errors/id_error.pb.go
index 39ca6170..8c410aef 100644
--- a/errors/id_error.pb.go
+++ b/errors/id_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/id_error.proto
+// source: google/ads/googleads/v17/errors/id_error.proto
package errors
@@ -71,11 +71,11 @@ func (x IdErrorEnum_IdError) String() string {
}
func (IdErrorEnum_IdError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_id_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_id_error_proto_enumTypes[0].Descriptor()
}
func (IdErrorEnum_IdError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_id_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_id_error_proto_enumTypes[0]
}
func (x IdErrorEnum_IdError) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x IdErrorEnum_IdError) Number() protoreflect.EnumNumber {
// Deprecated: Use IdErrorEnum_IdError.Descriptor instead.
func (IdErrorEnum_IdError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_id_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_id_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible ID errors.
@@ -97,7 +97,7 @@ type IdErrorEnum struct {
func (x *IdErrorEnum) Reset() {
*x = IdErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_id_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_id_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *IdErrorEnum) String() string {
func (*IdErrorEnum) ProtoMessage() {}
func (x *IdErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_id_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_id_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,58 +123,58 @@ func (x *IdErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use IdErrorEnum.ProtoReflect.Descriptor instead.
func (*IdErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_id_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_id_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_id_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_id_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_id_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_id_error_proto_rawDesc = []byte{
0x0a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x69, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x22, 0x45, 0x0a, 0x0b, 0x49, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x36, 0x0a, 0x07, 0x49, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55,
0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07,
0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x4e, 0x4f, 0x54,
0x5f, 0x46, 0x4f, 0x55, 0x4e, 0x44, 0x10, 0x02, 0x42, 0xec, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x42, 0x0c, 0x49, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_id_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_id_error_proto_rawDescData = file_google_ads_googleads_v16_errors_id_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_id_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_id_error_proto_rawDescData = file_google_ads_googleads_v17_errors_id_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_id_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_id_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_id_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_id_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_id_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_id_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_id_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_id_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_id_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_id_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_id_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_id_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_id_error_proto_goTypes = []interface{}{
- (IdErrorEnum_IdError)(0), // 0: google.ads.googleads.v16.errors.IdErrorEnum.IdError
- (*IdErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.IdErrorEnum
+var file_google_ads_googleads_v17_errors_id_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_id_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_id_error_proto_goTypes = []interface{}{
+ (IdErrorEnum_IdError)(0), // 0: google.ads.googleads.v17.errors.IdErrorEnum.IdError
+ (*IdErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.IdErrorEnum
}
-var file_google_ads_googleads_v16_errors_id_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_id_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -182,13 +182,13 @@ var file_google_ads_googleads_v16_errors_id_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_id_error_proto_init() }
-func file_google_ads_googleads_v16_errors_id_error_proto_init() {
- if File_google_ads_googleads_v16_errors_id_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_id_error_proto_init() }
+func file_google_ads_googleads_v17_errors_id_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_id_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_id_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_id_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*IdErrorEnum); i {
case 0:
return &v.state
@@ -205,19 +205,19 @@ func file_google_ads_googleads_v16_errors_id_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_id_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_id_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_id_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_id_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_id_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_id_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_id_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_id_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_id_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_id_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_id_error_proto = out.File
- file_google_ads_googleads_v16_errors_id_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_id_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_id_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_id_error_proto = out.File
+ file_google_ads_googleads_v17_errors_id_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_id_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_id_error_proto_depIdxs = nil
}
diff --git a/errors/identity_verification_error.pb.go b/errors/identity_verification_error.pb.go
index f7e510d6..cf6a0611 100644
--- a/errors/identity_verification_error.pb.go
+++ b/errors/identity_verification_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/identity_verification_error.proto
+// source: google/ads/googleads/v17/errors/identity_verification_error.proto
package errors
@@ -79,11 +79,11 @@ func (x IdentityVerificationErrorEnum_IdentityVerificationError) String() string
}
func (IdentityVerificationErrorEnum_IdentityVerificationError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_identity_verification_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_identity_verification_error_proto_enumTypes[0].Descriptor()
}
func (IdentityVerificationErrorEnum_IdentityVerificationError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_identity_verification_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_identity_verification_error_proto_enumTypes[0]
}
func (x IdentityVerificationErrorEnum_IdentityVerificationError) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x IdentityVerificationErrorEnum_IdentityVerificationError) Number() protor
// Deprecated: Use IdentityVerificationErrorEnum_IdentityVerificationError.Descriptor instead.
func (IdentityVerificationErrorEnum_IdentityVerificationError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_identity_verification_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_identity_verification_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible identity verification errors.
@@ -105,7 +105,7 @@ type IdentityVerificationErrorEnum struct {
func (x *IdentityVerificationErrorEnum) Reset() {
*x = IdentityVerificationErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_identity_verification_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_identity_verification_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *IdentityVerificationErrorEnum) String() string {
func (*IdentityVerificationErrorEnum) ProtoMessage() {}
func (x *IdentityVerificationErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_identity_verification_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_identity_verification_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,18 +131,18 @@ func (x *IdentityVerificationErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use IdentityVerificationErrorEnum.ProtoReflect.Descriptor instead.
func (*IdentityVerificationErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_identity_verification_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_identity_verification_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_identity_verification_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_identity_verification_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_identity_verification_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_identity_verification_error_proto_rawDesc = []byte{
0x0a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66,
0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x22, 0xbd, 0x01, 0x0a, 0x1d, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74,
0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x9b, 0x01, 0x0a, 0x19, 0x49, 0x64, 0x65, 0x6e, 0x74,
@@ -157,42 +157,42 @@ var file_google_ads_googleads_v16_errors_identity_verification_error_proto_rawDe
0x4f, 0x4e, 0x5f, 0x41, 0x4c, 0x52, 0x45, 0x41, 0x44, 0x59, 0x5f, 0x53, 0x54, 0x41, 0x52, 0x54,
0x45, 0x44, 0x10, 0x04, 0x42, 0xfe, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1e, 0x49, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1e, 0x49, 0x64,
0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_identity_verification_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_identity_verification_error_proto_rawDescData = file_google_ads_googleads_v16_errors_identity_verification_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_identity_verification_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_identity_verification_error_proto_rawDescData = file_google_ads_googleads_v17_errors_identity_verification_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_identity_verification_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_identity_verification_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_identity_verification_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_identity_verification_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_identity_verification_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_identity_verification_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_identity_verification_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_identity_verification_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_identity_verification_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_identity_verification_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_identity_verification_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_identity_verification_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_identity_verification_error_proto_goTypes = []interface{}{
- (IdentityVerificationErrorEnum_IdentityVerificationError)(0), // 0: google.ads.googleads.v16.errors.IdentityVerificationErrorEnum.IdentityVerificationError
- (*IdentityVerificationErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.IdentityVerificationErrorEnum
+var file_google_ads_googleads_v17_errors_identity_verification_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_identity_verification_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_identity_verification_error_proto_goTypes = []interface{}{
+ (IdentityVerificationErrorEnum_IdentityVerificationError)(0), // 0: google.ads.googleads.v17.errors.IdentityVerificationErrorEnum.IdentityVerificationError
+ (*IdentityVerificationErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.IdentityVerificationErrorEnum
}
-var file_google_ads_googleads_v16_errors_identity_verification_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_identity_verification_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -200,13 +200,13 @@ var file_google_ads_googleads_v16_errors_identity_verification_error_proto_depId
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_identity_verification_error_proto_init() }
-func file_google_ads_googleads_v16_errors_identity_verification_error_proto_init() {
- if File_google_ads_googleads_v16_errors_identity_verification_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_identity_verification_error_proto_init() }
+func file_google_ads_googleads_v17_errors_identity_verification_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_identity_verification_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_identity_verification_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_identity_verification_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*IdentityVerificationErrorEnum); i {
case 0:
return &v.state
@@ -223,19 +223,19 @@ func file_google_ads_googleads_v16_errors_identity_verification_error_proto_init
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_identity_verification_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_identity_verification_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_identity_verification_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_identity_verification_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_identity_verification_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_identity_verification_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_identity_verification_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_identity_verification_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_identity_verification_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_identity_verification_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_identity_verification_error_proto = out.File
- file_google_ads_googleads_v16_errors_identity_verification_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_identity_verification_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_identity_verification_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_identity_verification_error_proto = out.File
+ file_google_ads_googleads_v17_errors_identity_verification_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_identity_verification_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_identity_verification_error_proto_depIdxs = nil
}
diff --git a/errors/image_error.pb.go b/errors/image_error.pb.go
index 4efc6b1e..1d069b69 100644
--- a/errors/image_error.pb.go
+++ b/errors/image_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/image_error.proto
+// source: google/ads/googleads/v17/errors/image_error.proto
package errors
@@ -226,11 +226,11 @@ func (x ImageErrorEnum_ImageError) String() string {
}
func (ImageErrorEnum_ImageError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_image_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_image_error_proto_enumTypes[0].Descriptor()
}
func (ImageErrorEnum_ImageError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_image_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_image_error_proto_enumTypes[0]
}
func (x ImageErrorEnum_ImageError) Number() protoreflect.EnumNumber {
@@ -239,7 +239,7 @@ func (x ImageErrorEnum_ImageError) Number() protoreflect.EnumNumber {
// Deprecated: Use ImageErrorEnum_ImageError.Descriptor instead.
func (ImageErrorEnum_ImageError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_image_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_image_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible image errors.
@@ -252,7 +252,7 @@ type ImageErrorEnum struct {
func (x *ImageErrorEnum) Reset() {
*x = ImageErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_image_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_image_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -265,7 +265,7 @@ func (x *ImageErrorEnum) String() string {
func (*ImageErrorEnum) ProtoMessage() {}
func (x *ImageErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_image_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_image_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -278,17 +278,17 @@ func (x *ImageErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ImageErrorEnum.ProtoReflect.Descriptor instead.
func (*ImageErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_image_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_image_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_image_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_image_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_image_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_image_error_proto_rawDesc = []byte{
0x0a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x22, 0xc2, 0x08, 0x0a, 0x0e, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xaf, 0x08, 0x0a, 0x0a, 0x49, 0x6d, 0x61, 0x67,
0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
@@ -359,42 +359,42 @@ var file_google_ads_googleads_v16_errors_image_error_proto_rawDesc = []byte{
0x27, 0x12, 0x16, 0x0a, 0x12, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x5f, 0x4e, 0x4f, 0x54, 0x5f,
0x41, 0x4c, 0x4c, 0x4f, 0x57, 0x45, 0x44, 0x10, 0x28, 0x42, 0xef, 0x01, 0x0a, 0x23, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x42, 0x0f, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_image_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_image_error_proto_rawDescData = file_google_ads_googleads_v16_errors_image_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_image_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_image_error_proto_rawDescData = file_google_ads_googleads_v17_errors_image_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_image_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_image_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_image_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_image_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_image_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_image_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_image_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_image_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_image_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_image_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_image_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_image_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_image_error_proto_goTypes = []interface{}{
- (ImageErrorEnum_ImageError)(0), // 0: google.ads.googleads.v16.errors.ImageErrorEnum.ImageError
- (*ImageErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ImageErrorEnum
+var file_google_ads_googleads_v17_errors_image_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_image_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_image_error_proto_goTypes = []interface{}{
+ (ImageErrorEnum_ImageError)(0), // 0: google.ads.googleads.v17.errors.ImageErrorEnum.ImageError
+ (*ImageErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ImageErrorEnum
}
-var file_google_ads_googleads_v16_errors_image_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_image_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -402,13 +402,13 @@ var file_google_ads_googleads_v16_errors_image_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_image_error_proto_init() }
-func file_google_ads_googleads_v16_errors_image_error_proto_init() {
- if File_google_ads_googleads_v16_errors_image_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_image_error_proto_init() }
+func file_google_ads_googleads_v17_errors_image_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_image_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_image_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_image_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ImageErrorEnum); i {
case 0:
return &v.state
@@ -425,19 +425,19 @@ func file_google_ads_googleads_v16_errors_image_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_image_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_image_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_image_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_image_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_image_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_image_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_image_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_image_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_image_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_image_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_image_error_proto = out.File
- file_google_ads_googleads_v16_errors_image_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_image_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_image_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_image_error_proto = out.File
+ file_google_ads_googleads_v17_errors_image_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_image_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_image_error_proto_depIdxs = nil
}
diff --git a/errors/internal_error.pb.go b/errors/internal_error.pb.go
index 0a105516..ed06cf8d 100644
--- a/errors/internal_error.pb.go
+++ b/errors/internal_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/internal_error.proto
+// source: google/ads/googleads/v17/errors/internal_error.proto
package errors
@@ -85,11 +85,11 @@ func (x InternalErrorEnum_InternalError) String() string {
}
func (InternalErrorEnum_InternalError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_internal_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_internal_error_proto_enumTypes[0].Descriptor()
}
func (InternalErrorEnum_InternalError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_internal_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_internal_error_proto_enumTypes[0]
}
func (x InternalErrorEnum_InternalError) Number() protoreflect.EnumNumber {
@@ -98,7 +98,7 @@ func (x InternalErrorEnum_InternalError) Number() protoreflect.EnumNumber {
// Deprecated: Use InternalErrorEnum_InternalError.Descriptor instead.
func (InternalErrorEnum_InternalError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_internal_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_internal_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible internal errors.
@@ -111,7 +111,7 @@ type InternalErrorEnum struct {
func (x *InternalErrorEnum) Reset() {
*x = InternalErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_internal_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_internal_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -124,7 +124,7 @@ func (x *InternalErrorEnum) String() string {
func (*InternalErrorEnum) ProtoMessage() {}
func (x *InternalErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_internal_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_internal_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -137,17 +137,17 @@ func (x *InternalErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use InternalErrorEnum.ProtoReflect.Descriptor instead.
func (*InternalErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_internal_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_internal_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_internal_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_internal_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_internal_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_internal_error_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa1, 0x01, 0x0a, 0x11, 0x49, 0x6e, 0x74, 0x65,
0x72, 0x6e, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x8b, 0x01,
0x0a, 0x0d, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
@@ -160,42 +160,42 @@ var file_google_ads_googleads_v16_errors_internal_error_proto_rawDesc = []byte{
0x4f, 0x52, 0x10, 0x04, 0x12, 0x15, 0x0a, 0x11, 0x44, 0x45, 0x41, 0x44, 0x4c, 0x49, 0x4e, 0x45,
0x5f, 0x45, 0x58, 0x43, 0x45, 0x45, 0x44, 0x45, 0x44, 0x10, 0x05, 0x42, 0xf2, 0x01, 0x0a, 0x23,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x42, 0x12, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_internal_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_internal_error_proto_rawDescData = file_google_ads_googleads_v16_errors_internal_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_internal_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_internal_error_proto_rawDescData = file_google_ads_googleads_v17_errors_internal_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_internal_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_internal_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_internal_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_internal_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_internal_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_internal_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_internal_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_internal_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_internal_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_internal_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_internal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_internal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_internal_error_proto_goTypes = []interface{}{
- (InternalErrorEnum_InternalError)(0), // 0: google.ads.googleads.v16.errors.InternalErrorEnum.InternalError
- (*InternalErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.InternalErrorEnum
+var file_google_ads_googleads_v17_errors_internal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_internal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_internal_error_proto_goTypes = []interface{}{
+ (InternalErrorEnum_InternalError)(0), // 0: google.ads.googleads.v17.errors.InternalErrorEnum.InternalError
+ (*InternalErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.InternalErrorEnum
}
-var file_google_ads_googleads_v16_errors_internal_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_internal_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -203,13 +203,13 @@ var file_google_ads_googleads_v16_errors_internal_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_internal_error_proto_init() }
-func file_google_ads_googleads_v16_errors_internal_error_proto_init() {
- if File_google_ads_googleads_v16_errors_internal_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_internal_error_proto_init() }
+func file_google_ads_googleads_v17_errors_internal_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_internal_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_internal_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_internal_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*InternalErrorEnum); i {
case 0:
return &v.state
@@ -226,19 +226,19 @@ func file_google_ads_googleads_v16_errors_internal_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_internal_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_internal_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_internal_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_internal_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_internal_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_internal_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_internal_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_internal_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_internal_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_internal_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_internal_error_proto = out.File
- file_google_ads_googleads_v16_errors_internal_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_internal_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_internal_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_internal_error_proto = out.File
+ file_google_ads_googleads_v17_errors_internal_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_internal_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_internal_error_proto_depIdxs = nil
}
diff --git a/errors/invoice_error.pb.go b/errors/invoice_error.pb.go
index a2461911..7bd93ea9 100644
--- a/errors/invoice_error.pb.go
+++ b/errors/invoice_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/invoice_error.proto
+// source: google/ads/googleads/v17/errors/invoice_error.proto
package errors
@@ -88,11 +88,11 @@ func (x InvoiceErrorEnum_InvoiceError) String() string {
}
func (InvoiceErrorEnum_InvoiceError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_invoice_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_invoice_error_proto_enumTypes[0].Descriptor()
}
func (InvoiceErrorEnum_InvoiceError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_invoice_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_invoice_error_proto_enumTypes[0]
}
func (x InvoiceErrorEnum_InvoiceError) Number() protoreflect.EnumNumber {
@@ -101,7 +101,7 @@ func (x InvoiceErrorEnum_InvoiceError) Number() protoreflect.EnumNumber {
// Deprecated: Use InvoiceErrorEnum_InvoiceError.Descriptor instead.
func (InvoiceErrorEnum_InvoiceError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_invoice_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_invoice_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible invoice errors.
@@ -114,7 +114,7 @@ type InvoiceErrorEnum struct {
func (x *InvoiceErrorEnum) Reset() {
*x = InvoiceErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_invoice_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_invoice_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -127,7 +127,7 @@ func (x *InvoiceErrorEnum) String() string {
func (*InvoiceErrorEnum) ProtoMessage() {}
func (x *InvoiceErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_invoice_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_invoice_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -140,17 +140,17 @@ func (x *InvoiceErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use InvoiceErrorEnum.ProtoReflect.Descriptor instead.
func (*InvoiceErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_invoice_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_invoice_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_invoice_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_invoice_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_invoice_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_invoice_error_proto_rawDesc = []byte{
0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x69, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xda, 0x01, 0x0a, 0x10, 0x49, 0x6e, 0x76, 0x6f, 0x69,
0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xc5, 0x01, 0x0a, 0x0c,
0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b,
@@ -167,41 +167,41 @@ var file_google_ads_googleads_v16_errors_invoice_error_proto_rawDesc = []byte{
0x5f, 0x53, 0x45, 0x52, 0x56, 0x49, 0x4e, 0x47, 0x5f, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x45,
0x52, 0x10, 0x06, 0x42, 0xf1, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x11, 0x49, 0x6e, 0x76,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x11, 0x49, 0x6e, 0x76,
0x6f, 0x69, 0x63, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_invoice_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_invoice_error_proto_rawDescData = file_google_ads_googleads_v16_errors_invoice_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_invoice_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_invoice_error_proto_rawDescData = file_google_ads_googleads_v17_errors_invoice_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_invoice_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_invoice_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_invoice_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_invoice_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_invoice_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_invoice_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_invoice_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_invoice_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_invoice_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_invoice_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_invoice_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_invoice_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_invoice_error_proto_goTypes = []interface{}{
- (InvoiceErrorEnum_InvoiceError)(0), // 0: google.ads.googleads.v16.errors.InvoiceErrorEnum.InvoiceError
- (*InvoiceErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.InvoiceErrorEnum
+var file_google_ads_googleads_v17_errors_invoice_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_invoice_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_invoice_error_proto_goTypes = []interface{}{
+ (InvoiceErrorEnum_InvoiceError)(0), // 0: google.ads.googleads.v17.errors.InvoiceErrorEnum.InvoiceError
+ (*InvoiceErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.InvoiceErrorEnum
}
-var file_google_ads_googleads_v16_errors_invoice_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_invoice_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -209,13 +209,13 @@ var file_google_ads_googleads_v16_errors_invoice_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_invoice_error_proto_init() }
-func file_google_ads_googleads_v16_errors_invoice_error_proto_init() {
- if File_google_ads_googleads_v16_errors_invoice_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_invoice_error_proto_init() }
+func file_google_ads_googleads_v17_errors_invoice_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_invoice_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_invoice_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_invoice_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*InvoiceErrorEnum); i {
case 0:
return &v.state
@@ -232,19 +232,19 @@ func file_google_ads_googleads_v16_errors_invoice_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_invoice_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_invoice_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_invoice_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_invoice_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_invoice_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_invoice_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_invoice_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_invoice_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_invoice_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_invoice_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_invoice_error_proto = out.File
- file_google_ads_googleads_v16_errors_invoice_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_invoice_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_invoice_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_invoice_error_proto = out.File
+ file_google_ads_googleads_v17_errors_invoice_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_invoice_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_invoice_error_proto_depIdxs = nil
}
diff --git a/errors/keyword_plan_ad_group_error.pb.go b/errors/keyword_plan_ad_group_error.pb.go
index 93865340..b7a5be5c 100644
--- a/errors/keyword_plan_ad_group_error.pb.go
+++ b/errors/keyword_plan_ad_group_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/keyword_plan_ad_group_error.proto
+// source: google/ads/googleads/v17/errors/keyword_plan_ad_group_error.proto
package errors
@@ -77,11 +77,11 @@ func (x KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError) String() string {
}
func (KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_enumTypes[0].Descriptor()
}
func (KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_enumTypes[0]
}
func (x KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError) Number() protoreflect.EnumNumber {
@@ -90,7 +90,7 @@ func (x KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError) Number() protorefle
// Deprecated: Use KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError.Descriptor instead.
func (KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible errors from applying a keyword plan
@@ -104,7 +104,7 @@ type KeywordPlanAdGroupErrorEnum struct {
func (x *KeywordPlanAdGroupErrorEnum) Reset() {
*x = KeywordPlanAdGroupErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -117,7 +117,7 @@ func (x *KeywordPlanAdGroupErrorEnum) String() string {
func (*KeywordPlanAdGroupErrorEnum) ProtoMessage() {}
func (x *KeywordPlanAdGroupErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -130,18 +130,18 @@ func (x *KeywordPlanAdGroupErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use KeywordPlanAdGroupErrorEnum.ProtoReflect.Descriptor instead.
func (*KeywordPlanAdGroupErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_rawDesc = []byte{
0x0a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x61,
0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x22, 0x7c, 0x0a, 0x1b, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50,
0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0x5d, 0x0a, 0x17, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c,
@@ -152,42 +152,42 @@ var file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_rawDe
0x0a, 0x0e, 0x44, 0x55, 0x50, 0x4c, 0x49, 0x43, 0x41, 0x54, 0x45, 0x5f, 0x4e, 0x41, 0x4d, 0x45,
0x10, 0x03, 0x42, 0xfc, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1c, 0x4b, 0x65, 0x79, 0x77,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1c, 0x4b, 0x65, 0x79, 0x77,
0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_rawDescData = file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_rawDescData = file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_goTypes = []interface{}{
- (KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError)(0), // 0: google.ads.googleads.v16.errors.KeywordPlanAdGroupErrorEnum.KeywordPlanAdGroupError
- (*KeywordPlanAdGroupErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.KeywordPlanAdGroupErrorEnum
+var file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_goTypes = []interface{}{
+ (KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError)(0), // 0: google.ads.googleads.v17.errors.KeywordPlanAdGroupErrorEnum.KeywordPlanAdGroupError
+ (*KeywordPlanAdGroupErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.KeywordPlanAdGroupErrorEnum
}
-var file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -195,13 +195,13 @@ var file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_depId
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_init() }
-func file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_init() {
- if File_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_init() }
+func file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordPlanAdGroupErrorEnum); i {
case 0:
return &v.state
@@ -218,19 +218,19 @@ func file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_init
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto = out.File
- file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_keyword_plan_ad_group_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto = out.File
+ file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_keyword_plan_ad_group_error_proto_depIdxs = nil
}
diff --git a/errors/keyword_plan_ad_group_keyword_error.pb.go b/errors/keyword_plan_ad_group_keyword_error.pb.go
index 2d6b9402..d5da028f 100644
--- a/errors/keyword_plan_ad_group_keyword_error.pb.go
+++ b/errors/keyword_plan_ad_group_keyword_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/keyword_plan_ad_group_keyword_error.proto
+// source: google/ads/googleads/v17/errors/keyword_plan_ad_group_keyword_error.proto
package errors
@@ -101,11 +101,11 @@ func (x KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError) Strin
}
func (KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_enumTypes[0].Descriptor()
}
func (KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_enumTypes[0]
}
func (x KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError) Number() protoreflect.EnumNumber {
@@ -114,7 +114,7 @@ func (x KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError) Numbe
// Deprecated: Use KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError.Descriptor instead.
func (KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible errors from applying an ad group
@@ -128,7 +128,7 @@ type KeywordPlanAdGroupKeywordErrorEnum struct {
func (x *KeywordPlanAdGroupKeywordErrorEnum) Reset() {
*x = KeywordPlanAdGroupKeywordErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -141,7 +141,7 @@ func (x *KeywordPlanAdGroupKeywordErrorEnum) String() string {
func (*KeywordPlanAdGroupKeywordErrorEnum) ProtoMessage() {}
func (x *KeywordPlanAdGroupKeywordErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -154,19 +154,19 @@ func (x *KeywordPlanAdGroupKeywordErrorEnum) ProtoReflect() protoreflect.Message
// Deprecated: Use KeywordPlanAdGroupKeywordErrorEnum.ProtoReflect.Descriptor instead.
func (*KeywordPlanAdGroupKeywordErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_rawDesc = []byte{
0x0a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x61,
0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xd4, 0x02, 0x0a,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xd4, 0x02, 0x0a,
0x22, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72,
0x6f, 0x75, 0x70, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45,
0x6e, 0x75, 0x6d, 0x22, 0xad, 0x02, 0x0a, 0x1e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50,
@@ -190,43 +190,43 @@ var file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_pro
0x57, 0x4f, 0x52, 0x44, 0x53, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x41, 0x4c, 0x4c, 0x4f, 0x57, 0x45,
0x44, 0x10, 0x09, 0x42, 0x83, 0x02, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x23, 0x4b, 0x65, 0x79,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x23, 0x4b, 0x65, 0x79,
0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x4b,
0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_rawDescData = file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_rawDescData = file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_goTypes = []interface{}{
- (KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError)(0), // 0: google.ads.googleads.v16.errors.KeywordPlanAdGroupKeywordErrorEnum.KeywordPlanAdGroupKeywordError
- (*KeywordPlanAdGroupKeywordErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.KeywordPlanAdGroupKeywordErrorEnum
+var file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_goTypes = []interface{}{
+ (KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError)(0), // 0: google.ads.googleads.v17.errors.KeywordPlanAdGroupKeywordErrorEnum.KeywordPlanAdGroupKeywordError
+ (*KeywordPlanAdGroupKeywordErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.KeywordPlanAdGroupKeywordErrorEnum
}
-var file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -234,13 +234,13 @@ var file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_pro
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_init() }
-func file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_init() {
- if File_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_init() }
+func file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordPlanAdGroupKeywordErrorEnum); i {
case 0:
return &v.state
@@ -257,19 +257,19 @@ func file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_pr
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto = out.File
- file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_keyword_plan_ad_group_keyword_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto = out.File
+ file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_keyword_plan_ad_group_keyword_error_proto_depIdxs = nil
}
diff --git a/errors/keyword_plan_campaign_error.pb.go b/errors/keyword_plan_campaign_error.pb.go
index ca1d4f80..7e609664 100644
--- a/errors/keyword_plan_campaign_error.pb.go
+++ b/errors/keyword_plan_campaign_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/keyword_plan_campaign_error.proto
+// source: google/ads/googleads/v17/errors/keyword_plan_campaign_error.proto
package errors
@@ -93,11 +93,11 @@ func (x KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError) String() string {
}
func (KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_enumTypes[0].Descriptor()
}
func (KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_enumTypes[0]
}
func (x KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError) Number() protoreflect.EnumNumber {
@@ -106,7 +106,7 @@ func (x KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError) Number() protoref
// Deprecated: Use KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError.Descriptor instead.
func (KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible errors from applying a keyword plan
@@ -120,7 +120,7 @@ type KeywordPlanCampaignErrorEnum struct {
func (x *KeywordPlanCampaignErrorEnum) Reset() {
*x = KeywordPlanCampaignErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -133,7 +133,7 @@ func (x *KeywordPlanCampaignErrorEnum) String() string {
func (*KeywordPlanCampaignErrorEnum) ProtoMessage() {}
func (x *KeywordPlanCampaignErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -146,18 +146,18 @@ func (x *KeywordPlanCampaignErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use KeywordPlanCampaignErrorEnum.ProtoReflect.Descriptor instead.
func (*KeywordPlanCampaignErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_rawDesc = []byte{
0x0a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63,
0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x22, 0xdb, 0x01, 0x0a, 0x1c, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64,
0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xba, 0x01, 0x0a, 0x18, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72,
@@ -174,42 +174,42 @@ var file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_rawDe
0x4e, 0x47, 0x55, 0x41, 0x47, 0x45, 0x53, 0x5f, 0x45, 0x58, 0x43, 0x45, 0x45, 0x44, 0x45, 0x44,
0x10, 0x07, 0x42, 0xfd, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1d, 0x4b, 0x65, 0x79, 0x77,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1d, 0x4b, 0x65, 0x79, 0x77,
0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_rawDescData = file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_rawDescData = file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_goTypes = []interface{}{
- (KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError)(0), // 0: google.ads.googleads.v16.errors.KeywordPlanCampaignErrorEnum.KeywordPlanCampaignError
- (*KeywordPlanCampaignErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.KeywordPlanCampaignErrorEnum
+var file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_goTypes = []interface{}{
+ (KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError)(0), // 0: google.ads.googleads.v17.errors.KeywordPlanCampaignErrorEnum.KeywordPlanCampaignError
+ (*KeywordPlanCampaignErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.KeywordPlanCampaignErrorEnum
}
-var file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -217,13 +217,13 @@ var file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_depId
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_init() }
-func file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_init() {
- if File_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_init() }
+func file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordPlanCampaignErrorEnum); i {
case 0:
return &v.state
@@ -240,19 +240,19 @@ func file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_init
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto = out.File
- file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_keyword_plan_campaign_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto = out.File
+ file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_keyword_plan_campaign_error_proto_depIdxs = nil
}
diff --git a/errors/keyword_plan_campaign_keyword_error.pb.go b/errors/keyword_plan_campaign_keyword_error.pb.go
index 3274d887..7d2e5423 100644
--- a/errors/keyword_plan_campaign_keyword_error.pb.go
+++ b/errors/keyword_plan_campaign_keyword_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/keyword_plan_campaign_keyword_error.proto
+// source: google/ads/googleads/v17/errors/keyword_plan_campaign_keyword_error.proto
package errors
@@ -72,11 +72,11 @@ func (x KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError) Str
}
func (KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_enumTypes[0].Descriptor()
}
func (KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_enumTypes[0]
}
func (x KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError) Number() protoreflect.EnumNumber {
@@ -85,7 +85,7 @@ func (x KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError) Num
// Deprecated: Use KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError.Descriptor instead.
func (KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible errors from applying a keyword plan
@@ -99,7 +99,7 @@ type KeywordPlanCampaignKeywordErrorEnum struct {
func (x *KeywordPlanCampaignKeywordErrorEnum) Reset() {
*x = KeywordPlanCampaignKeywordErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -112,7 +112,7 @@ func (x *KeywordPlanCampaignKeywordErrorEnum) String() string {
func (*KeywordPlanCampaignKeywordErrorEnum) ProtoMessage() {}
func (x *KeywordPlanCampaignKeywordErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -125,19 +125,19 @@ func (x *KeywordPlanCampaignKeywordErrorEnum) ProtoReflect() protoreflect.Messag
// Deprecated: Use KeywordPlanCampaignKeywordErrorEnum.ProtoReflect.Descriptor instead.
func (*KeywordPlanCampaignKeywordErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_rawDesc = []byte{
0x0a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63,
0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x88, 0x01, 0x0a,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x88, 0x01, 0x0a,
0x23, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70,
0x61, 0x69, 0x67, 0x6e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x61, 0x0a, 0x1f, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50,
@@ -148,43 +148,43 @@ var file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_pro
0x4e, 0x5f, 0x4b, 0x45, 0x59, 0x57, 0x4f, 0x52, 0x44, 0x5f, 0x49, 0x53, 0x5f, 0x50, 0x4f, 0x53,
0x49, 0x54, 0x49, 0x56, 0x45, 0x10, 0x08, 0x42, 0x84, 0x02, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42,
0x24, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x61, 0x6d, 0x70,
0x61, 0x69, 0x67, 0x6e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_rawDescData = file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_rawDescData = file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_goTypes = []interface{}{
- (KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError)(0), // 0: google.ads.googleads.v16.errors.KeywordPlanCampaignKeywordErrorEnum.KeywordPlanCampaignKeywordError
- (*KeywordPlanCampaignKeywordErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.KeywordPlanCampaignKeywordErrorEnum
+var file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_goTypes = []interface{}{
+ (KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError)(0), // 0: google.ads.googleads.v17.errors.KeywordPlanCampaignKeywordErrorEnum.KeywordPlanCampaignKeywordError
+ (*KeywordPlanCampaignKeywordErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.KeywordPlanCampaignKeywordErrorEnum
}
-var file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -192,13 +192,13 @@ var file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_pro
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_init() }
-func file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_init() {
- if File_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_init() }
+func file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordPlanCampaignKeywordErrorEnum); i {
case 0:
return &v.state
@@ -215,19 +215,19 @@ func file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_pr
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto = out.File
- file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_keyword_plan_campaign_keyword_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto = out.File
+ file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_keyword_plan_campaign_keyword_error_proto_depIdxs = nil
}
diff --git a/errors/keyword_plan_error.pb.go b/errors/keyword_plan_error.pb.go
index 0eb2fc84..7092e69f 100644
--- a/errors/keyword_plan_error.pb.go
+++ b/errors/keyword_plan_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/keyword_plan_error.proto
+// source: google/ads/googleads/v17/errors/keyword_plan_error.proto
package errors
@@ -124,11 +124,11 @@ func (x KeywordPlanErrorEnum_KeywordPlanError) String() string {
}
func (KeywordPlanErrorEnum_KeywordPlanError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_keyword_plan_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_keyword_plan_error_proto_enumTypes[0].Descriptor()
}
func (KeywordPlanErrorEnum_KeywordPlanError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_keyword_plan_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_keyword_plan_error_proto_enumTypes[0]
}
func (x KeywordPlanErrorEnum_KeywordPlanError) Number() protoreflect.EnumNumber {
@@ -137,7 +137,7 @@ func (x KeywordPlanErrorEnum_KeywordPlanError) Number() protoreflect.EnumNumber
// Deprecated: Use KeywordPlanErrorEnum_KeywordPlanError.Descriptor instead.
func (KeywordPlanErrorEnum_KeywordPlanError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_keyword_plan_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_keyword_plan_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible errors from applying a keyword plan
@@ -152,7 +152,7 @@ type KeywordPlanErrorEnum struct {
func (x *KeywordPlanErrorEnum) Reset() {
*x = KeywordPlanErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_keyword_plan_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_keyword_plan_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -165,7 +165,7 @@ func (x *KeywordPlanErrorEnum) String() string {
func (*KeywordPlanErrorEnum) ProtoMessage() {}
func (x *KeywordPlanErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_keyword_plan_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_keyword_plan_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -178,18 +178,18 @@ func (x *KeywordPlanErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use KeywordPlanErrorEnum.ProtoReflect.Descriptor instead.
func (*KeywordPlanErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_keyword_plan_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_keyword_plan_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_keyword_plan_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_keyword_plan_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_keyword_plan_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_keyword_plan_error_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xc8, 0x03, 0x0a, 0x14,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xc8, 0x03, 0x0a, 0x14,
0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0xaf, 0x03, 0x0a, 0x10, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64,
0x50, 0x6c, 0x61, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53,
@@ -220,42 +220,42 @@ var file_google_ads_googleads_v16_errors_keyword_plan_error_proto_rawDesc = []by
0x47, 0x45, 0x10, 0x0f, 0x12, 0x10, 0x0a, 0x0c, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x5f,
0x4e, 0x41, 0x4d, 0x45, 0x10, 0x10, 0x42, 0xf5, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15,
0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_keyword_plan_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_keyword_plan_error_proto_rawDescData = file_google_ads_googleads_v16_errors_keyword_plan_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_keyword_plan_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_keyword_plan_error_proto_rawDescData = file_google_ads_googleads_v17_errors_keyword_plan_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_keyword_plan_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_keyword_plan_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_keyword_plan_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_keyword_plan_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_keyword_plan_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_keyword_plan_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_keyword_plan_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_keyword_plan_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_keyword_plan_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_keyword_plan_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_keyword_plan_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_keyword_plan_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_keyword_plan_error_proto_goTypes = []interface{}{
- (KeywordPlanErrorEnum_KeywordPlanError)(0), // 0: google.ads.googleads.v16.errors.KeywordPlanErrorEnum.KeywordPlanError
- (*KeywordPlanErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.KeywordPlanErrorEnum
+var file_google_ads_googleads_v17_errors_keyword_plan_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_keyword_plan_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_keyword_plan_error_proto_goTypes = []interface{}{
+ (KeywordPlanErrorEnum_KeywordPlanError)(0), // 0: google.ads.googleads.v17.errors.KeywordPlanErrorEnum.KeywordPlanError
+ (*KeywordPlanErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.KeywordPlanErrorEnum
}
-var file_google_ads_googleads_v16_errors_keyword_plan_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_keyword_plan_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -263,13 +263,13 @@ var file_google_ads_googleads_v16_errors_keyword_plan_error_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_keyword_plan_error_proto_init() }
-func file_google_ads_googleads_v16_errors_keyword_plan_error_proto_init() {
- if File_google_ads_googleads_v16_errors_keyword_plan_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_keyword_plan_error_proto_init() }
+func file_google_ads_googleads_v17_errors_keyword_plan_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_keyword_plan_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_keyword_plan_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_keyword_plan_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordPlanErrorEnum); i {
case 0:
return &v.state
@@ -286,19 +286,19 @@ func file_google_ads_googleads_v16_errors_keyword_plan_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_keyword_plan_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_keyword_plan_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_keyword_plan_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_keyword_plan_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_keyword_plan_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_keyword_plan_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_keyword_plan_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_keyword_plan_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_keyword_plan_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_keyword_plan_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_keyword_plan_error_proto = out.File
- file_google_ads_googleads_v16_errors_keyword_plan_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_keyword_plan_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_keyword_plan_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_keyword_plan_error_proto = out.File
+ file_google_ads_googleads_v17_errors_keyword_plan_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_keyword_plan_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_keyword_plan_error_proto_depIdxs = nil
}
diff --git a/errors/keyword_plan_idea_error.pb.go b/errors/keyword_plan_idea_error.pb.go
index 5e28a7dd..0e71f7c7 100644
--- a/errors/keyword_plan_idea_error.pb.go
+++ b/errors/keyword_plan_idea_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/keyword_plan_idea_error.proto
+// source: google/ads/googleads/v17/errors/keyword_plan_idea_error.proto
package errors
@@ -75,11 +75,11 @@ func (x KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError) String() string {
}
func (KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_enumTypes[0].Descriptor()
}
func (KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_enumTypes[0]
}
func (x KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError) Number() protoreflect.Enu
// Deprecated: Use KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError.Descriptor instead.
func (KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible errors from KeywordPlanIdeaService.
@@ -101,7 +101,7 @@ type KeywordPlanIdeaErrorEnum struct {
func (x *KeywordPlanIdeaErrorEnum) Reset() {
*x = KeywordPlanIdeaErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *KeywordPlanIdeaErrorEnum) String() string {
func (*KeywordPlanIdeaErrorEnum) ProtoMessage() {}
func (x *KeywordPlanIdeaErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *KeywordPlanIdeaErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use KeywordPlanIdeaErrorEnum.ProtoReflect.Descriptor instead.
func (*KeywordPlanIdeaErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_rawDesc = []byte{
0x0a, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x69,
0x64, 0x65, 0x61, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x22, 0x78, 0x0a, 0x18, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x49,
0x64, 0x65, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5c, 0x0a, 0x14,
0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x49, 0x64, 0x65, 0x61, 0x45,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_rawDesc =
0x45, 0x52, 0x52, 0x4f, 0x52, 0x10, 0x02, 0x12, 0x11, 0x0a, 0x0d, 0x49, 0x4e, 0x56, 0x41, 0x4c,
0x49, 0x44, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x10, 0x03, 0x42, 0xf9, 0x01, 0x0a, 0x23, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x42, 0x19, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x50, 0x6c, 0x61, 0x6e, 0x49,
0x64, 0x65, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_rawDescData = file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_rawDescData = file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_goTypes = []interface{}{
- (KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError)(0), // 0: google.ads.googleads.v16.errors.KeywordPlanIdeaErrorEnum.KeywordPlanIdeaError
- (*KeywordPlanIdeaErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.KeywordPlanIdeaErrorEnum
+var file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_goTypes = []interface{}{
+ (KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError)(0), // 0: google.ads.googleads.v17.errors.KeywordPlanIdeaErrorEnum.KeywordPlanIdeaError
+ (*KeywordPlanIdeaErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.KeywordPlanIdeaErrorEnum
}
-var file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_init() }
-func file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_init() {
- if File_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_init() }
+func file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeywordPlanIdeaErrorEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto = out.File
- file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_keyword_plan_idea_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto = out.File
+ file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_keyword_plan_idea_error_proto_depIdxs = nil
}
diff --git a/errors/label_error.pb.go b/errors/label_error.pb.go
index 3ea660ff..0b314da2 100644
--- a/errors/label_error.pb.go
+++ b/errors/label_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/label_error.proto
+// source: google/ads/googleads/v17/errors/label_error.proto
package errors
@@ -105,11 +105,11 @@ func (x LabelErrorEnum_LabelError) String() string {
}
func (LabelErrorEnum_LabelError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_label_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_label_error_proto_enumTypes[0].Descriptor()
}
func (LabelErrorEnum_LabelError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_label_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_label_error_proto_enumTypes[0]
}
func (x LabelErrorEnum_LabelError) Number() protoreflect.EnumNumber {
@@ -118,7 +118,7 @@ func (x LabelErrorEnum_LabelError) Number() protoreflect.EnumNumber {
// Deprecated: Use LabelErrorEnum_LabelError.Descriptor instead.
func (LabelErrorEnum_LabelError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_label_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_label_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible label errors.
@@ -131,7 +131,7 @@ type LabelErrorEnum struct {
func (x *LabelErrorEnum) Reset() {
*x = LabelErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_label_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_label_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -144,7 +144,7 @@ func (x *LabelErrorEnum) String() string {
func (*LabelErrorEnum) ProtoMessage() {}
func (x *LabelErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_label_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_label_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -157,17 +157,17 @@ func (x *LabelErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LabelErrorEnum.ProtoReflect.Descriptor instead.
func (*LabelErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_label_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_label_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_label_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_label_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_label_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_label_error_proto_rawDesc = []byte{
0x0a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x22, 0x96, 0x03, 0x0a, 0x0e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x83, 0x03, 0x0a, 0x0a, 0x4c, 0x61, 0x62, 0x65,
0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
@@ -195,42 +195,42 @@ var file_google_ads_googleads_v16_errors_label_error_proto_rawDesc = []byte{
0x4e, 0x5f, 0x4d, 0x41, 0x4e, 0x41, 0x47, 0x45, 0x52, 0x5f, 0x4c, 0x41, 0x42, 0x45, 0x4c, 0x5f,
0x54, 0x4f, 0x5f, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x45, 0x52, 0x10, 0x0a, 0x42, 0xef, 0x01,
0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0f, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2,
+ 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_label_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_label_error_proto_rawDescData = file_google_ads_googleads_v16_errors_label_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_label_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_label_error_proto_rawDescData = file_google_ads_googleads_v17_errors_label_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_label_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_label_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_label_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_label_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_label_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_label_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_label_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_label_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_label_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_label_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_label_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_label_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_label_error_proto_goTypes = []interface{}{
- (LabelErrorEnum_LabelError)(0), // 0: google.ads.googleads.v16.errors.LabelErrorEnum.LabelError
- (*LabelErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.LabelErrorEnum
+var file_google_ads_googleads_v17_errors_label_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_label_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_label_error_proto_goTypes = []interface{}{
+ (LabelErrorEnum_LabelError)(0), // 0: google.ads.googleads.v17.errors.LabelErrorEnum.LabelError
+ (*LabelErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.LabelErrorEnum
}
-var file_google_ads_googleads_v16_errors_label_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_label_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -238,13 +238,13 @@ var file_google_ads_googleads_v16_errors_label_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_label_error_proto_init() }
-func file_google_ads_googleads_v16_errors_label_error_proto_init() {
- if File_google_ads_googleads_v16_errors_label_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_label_error_proto_init() }
+func file_google_ads_googleads_v17_errors_label_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_label_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_label_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_label_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LabelErrorEnum); i {
case 0:
return &v.state
@@ -261,19 +261,19 @@ func file_google_ads_googleads_v16_errors_label_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_label_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_label_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_label_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_label_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_label_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_label_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_label_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_label_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_label_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_label_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_label_error_proto = out.File
- file_google_ads_googleads_v16_errors_label_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_label_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_label_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_label_error_proto = out.File
+ file_google_ads_googleads_v17_errors_label_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_label_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_label_error_proto_depIdxs = nil
}
diff --git a/errors/language_code_error.pb.go b/errors/language_code_error.pb.go
index 4e1ed250..f683a4c8 100644
--- a/errors/language_code_error.pb.go
+++ b/errors/language_code_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/language_code_error.proto
+// source: google/ads/googleads/v17/errors/language_code_error.proto
package errors
@@ -75,11 +75,11 @@ func (x LanguageCodeErrorEnum_LanguageCodeError) String() string {
}
func (LanguageCodeErrorEnum_LanguageCodeError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_language_code_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_language_code_error_proto_enumTypes[0].Descriptor()
}
func (LanguageCodeErrorEnum_LanguageCodeError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_language_code_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_language_code_error_proto_enumTypes[0]
}
func (x LanguageCodeErrorEnum_LanguageCodeError) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x LanguageCodeErrorEnum_LanguageCodeError) Number() protoreflect.EnumNumbe
// Deprecated: Use LanguageCodeErrorEnum_LanguageCodeError.Descriptor instead.
func (LanguageCodeErrorEnum_LanguageCodeError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_language_code_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_language_code_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing language code errors.
@@ -101,7 +101,7 @@ type LanguageCodeErrorEnum struct {
func (x *LanguageCodeErrorEnum) Reset() {
*x = LanguageCodeErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_language_code_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_language_code_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *LanguageCodeErrorEnum) String() string {
func (*LanguageCodeErrorEnum) ProtoMessage() {}
func (x *LanguageCodeErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_language_code_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_language_code_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *LanguageCodeErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use LanguageCodeErrorEnum.ProtoReflect.Descriptor instead.
func (*LanguageCodeErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_language_code_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_language_code_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_language_code_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_language_code_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_language_code_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_language_code_error_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x82, 0x01, 0x0a,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x82, 0x01, 0x0a,
0x15, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x69, 0x0a, 0x11, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61,
0x67, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55,
@@ -149,42 +149,42 @@ var file_google_ads_googleads_v16_errors_language_code_error_proto_rawDesc = []b
0x44, 0x5f, 0x4c, 0x41, 0x4e, 0x47, 0x55, 0x41, 0x47, 0x45, 0x5f, 0x43, 0x4f, 0x44, 0x45, 0x10,
0x03, 0x42, 0xf6, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x16, 0x4c, 0x61, 0x6e, 0x67, 0x75,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x16, 0x4c, 0x61, 0x6e, 0x67, 0x75,
0x61, 0x67, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_language_code_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_language_code_error_proto_rawDescData = file_google_ads_googleads_v16_errors_language_code_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_language_code_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_language_code_error_proto_rawDescData = file_google_ads_googleads_v17_errors_language_code_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_language_code_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_language_code_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_language_code_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_language_code_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_language_code_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_language_code_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_language_code_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_language_code_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_language_code_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_language_code_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_language_code_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_language_code_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_language_code_error_proto_goTypes = []interface{}{
- (LanguageCodeErrorEnum_LanguageCodeError)(0), // 0: google.ads.googleads.v16.errors.LanguageCodeErrorEnum.LanguageCodeError
- (*LanguageCodeErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.LanguageCodeErrorEnum
+var file_google_ads_googleads_v17_errors_language_code_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_language_code_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_language_code_error_proto_goTypes = []interface{}{
+ (LanguageCodeErrorEnum_LanguageCodeError)(0), // 0: google.ads.googleads.v17.errors.LanguageCodeErrorEnum.LanguageCodeError
+ (*LanguageCodeErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.LanguageCodeErrorEnum
}
-var file_google_ads_googleads_v16_errors_language_code_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_language_code_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -192,13 +192,13 @@ var file_google_ads_googleads_v16_errors_language_code_error_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_language_code_error_proto_init() }
-func file_google_ads_googleads_v16_errors_language_code_error_proto_init() {
- if File_google_ads_googleads_v16_errors_language_code_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_language_code_error_proto_init() }
+func file_google_ads_googleads_v17_errors_language_code_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_language_code_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_language_code_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_language_code_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*LanguageCodeErrorEnum); i {
case 0:
return &v.state
@@ -215,19 +215,19 @@ func file_google_ads_googleads_v16_errors_language_code_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_language_code_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_language_code_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_language_code_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_language_code_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_language_code_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_language_code_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_language_code_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_language_code_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_language_code_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_language_code_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_language_code_error_proto = out.File
- file_google_ads_googleads_v16_errors_language_code_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_language_code_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_language_code_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_language_code_error_proto = out.File
+ file_google_ads_googleads_v17_errors_language_code_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_language_code_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_language_code_error_proto_depIdxs = nil
}
diff --git a/errors/list_operation_error.pb.go b/errors/list_operation_error.pb.go
index 04b7b627..8c80ff92 100644
--- a/errors/list_operation_error.pb.go
+++ b/errors/list_operation_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/list_operation_error.proto
+// source: google/ads/googleads/v17/errors/list_operation_error.proto
package errors
@@ -75,11 +75,11 @@ func (x ListOperationErrorEnum_ListOperationError) String() string {
}
func (ListOperationErrorEnum_ListOperationError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_list_operation_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_list_operation_error_proto_enumTypes[0].Descriptor()
}
func (ListOperationErrorEnum_ListOperationError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_list_operation_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_list_operation_error_proto_enumTypes[0]
}
func (x ListOperationErrorEnum_ListOperationError) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x ListOperationErrorEnum_ListOperationError) Number() protoreflect.EnumNum
// Deprecated: Use ListOperationErrorEnum_ListOperationError.Descriptor instead.
func (ListOperationErrorEnum_ListOperationError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_list_operation_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_list_operation_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible list operation errors.
@@ -101,7 +101,7 @@ type ListOperationErrorEnum struct {
func (x *ListOperationErrorEnum) Reset() {
*x = ListOperationErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_list_operation_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_list_operation_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *ListOperationErrorEnum) String() string {
func (*ListOperationErrorEnum) ProtoMessage() {}
func (x *ListOperationErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_list_operation_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_list_operation_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *ListOperationErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ListOperationErrorEnum.ProtoReflect.Descriptor instead.
func (*ListOperationErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_list_operation_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_list_operation_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_list_operation_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_list_operation_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_list_operation_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_list_operation_error_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x7e, 0x0a,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x7e, 0x0a,
0x16, 0x4c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x64, 0x0a, 0x12, 0x4c, 0x69, 0x73, 0x74, 0x4f,
0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a,
@@ -148,42 +148,42 @@ var file_google_ads_googleads_v16_errors_list_operation_error_proto_rawDesc = []
0x53, 0x53, 0x49, 0x4e, 0x47, 0x10, 0x07, 0x12, 0x14, 0x0a, 0x10, 0x44, 0x55, 0x50, 0x4c, 0x49,
0x43, 0x41, 0x54, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x53, 0x10, 0x08, 0x42, 0xf7, 0x01,
0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x17, 0x4c, 0x69, 0x73, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_list_operation_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_list_operation_error_proto_rawDescData = file_google_ads_googleads_v16_errors_list_operation_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_list_operation_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_list_operation_error_proto_rawDescData = file_google_ads_googleads_v17_errors_list_operation_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_list_operation_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_list_operation_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_list_operation_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_list_operation_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_list_operation_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_list_operation_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_list_operation_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_list_operation_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_list_operation_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_list_operation_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_list_operation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_list_operation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_list_operation_error_proto_goTypes = []interface{}{
- (ListOperationErrorEnum_ListOperationError)(0), // 0: google.ads.googleads.v16.errors.ListOperationErrorEnum.ListOperationError
- (*ListOperationErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ListOperationErrorEnum
+var file_google_ads_googleads_v17_errors_list_operation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_list_operation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_list_operation_error_proto_goTypes = []interface{}{
+ (ListOperationErrorEnum_ListOperationError)(0), // 0: google.ads.googleads.v17.errors.ListOperationErrorEnum.ListOperationError
+ (*ListOperationErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ListOperationErrorEnum
}
-var file_google_ads_googleads_v16_errors_list_operation_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_list_operation_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -191,13 +191,13 @@ var file_google_ads_googleads_v16_errors_list_operation_error_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_list_operation_error_proto_init() }
-func file_google_ads_googleads_v16_errors_list_operation_error_proto_init() {
- if File_google_ads_googleads_v16_errors_list_operation_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_list_operation_error_proto_init() }
+func file_google_ads_googleads_v17_errors_list_operation_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_list_operation_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_list_operation_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_list_operation_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ListOperationErrorEnum); i {
case 0:
return &v.state
@@ -214,19 +214,19 @@ func file_google_ads_googleads_v16_errors_list_operation_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_list_operation_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_list_operation_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_list_operation_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_list_operation_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_list_operation_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_list_operation_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_list_operation_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_list_operation_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_list_operation_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_list_operation_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_list_operation_error_proto = out.File
- file_google_ads_googleads_v16_errors_list_operation_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_list_operation_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_list_operation_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_list_operation_error_proto = out.File
+ file_google_ads_googleads_v17_errors_list_operation_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_list_operation_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_list_operation_error_proto_depIdxs = nil
}
diff --git a/errors/manager_link_error.pb.go b/errors/manager_link_error.pb.go
index e532d16e..de662e9d 100644
--- a/errors/manager_link_error.pb.go
+++ b/errors/manager_link_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/manager_link_error.proto
+// source: google/ads/googleads/v17/errors/manager_link_error.proto
package errors
@@ -145,11 +145,11 @@ func (x ManagerLinkErrorEnum_ManagerLinkError) String() string {
}
func (ManagerLinkErrorEnum_ManagerLinkError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_manager_link_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_manager_link_error_proto_enumTypes[0].Descriptor()
}
func (ManagerLinkErrorEnum_ManagerLinkError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_manager_link_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_manager_link_error_proto_enumTypes[0]
}
func (x ManagerLinkErrorEnum_ManagerLinkError) Number() protoreflect.EnumNumber {
@@ -158,7 +158,7 @@ func (x ManagerLinkErrorEnum_ManagerLinkError) Number() protoreflect.EnumNumber
// Deprecated: Use ManagerLinkErrorEnum_ManagerLinkError.Descriptor instead.
func (ManagerLinkErrorEnum_ManagerLinkError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_manager_link_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_manager_link_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible ManagerLink errors.
@@ -171,7 +171,7 @@ type ManagerLinkErrorEnum struct {
func (x *ManagerLinkErrorEnum) Reset() {
*x = ManagerLinkErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_manager_link_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_manager_link_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -184,7 +184,7 @@ func (x *ManagerLinkErrorEnum) String() string {
func (*ManagerLinkErrorEnum) ProtoMessage() {}
func (x *ManagerLinkErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_manager_link_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_manager_link_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -197,18 +197,18 @@ func (x *ManagerLinkErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ManagerLinkErrorEnum.ProtoReflect.Descriptor instead.
func (*ManagerLinkErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_manager_link_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_manager_link_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_manager_link_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_manager_link_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_manager_link_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_manager_link_error_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x8d, 0x05, 0x0a, 0x14,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x8d, 0x05, 0x0a, 0x14,
0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0xf4, 0x04, 0x0a, 0x10, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53,
@@ -251,42 +251,42 @@ var file_google_ads_googleads_v16_errors_manager_link_error_proto_rawDesc = []by
0x5f, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x5f, 0x4c, 0x49, 0x4e, 0x4b, 0x5f, 0x4e, 0x4f,
0x54, 0x5f, 0x41, 0x4c, 0x4c, 0x4f, 0x57, 0x45, 0x44, 0x10, 0x14, 0x42, 0xf5, 0x01, 0x0a, 0x23,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x42, 0x15, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x69, 0x6e, 0x6b,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f,
0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23,
+ 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_manager_link_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_manager_link_error_proto_rawDescData = file_google_ads_googleads_v16_errors_manager_link_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_manager_link_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_manager_link_error_proto_rawDescData = file_google_ads_googleads_v17_errors_manager_link_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_manager_link_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_manager_link_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_manager_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_manager_link_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_manager_link_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_manager_link_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_manager_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_manager_link_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_manager_link_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_manager_link_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_manager_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_manager_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_manager_link_error_proto_goTypes = []interface{}{
- (ManagerLinkErrorEnum_ManagerLinkError)(0), // 0: google.ads.googleads.v16.errors.ManagerLinkErrorEnum.ManagerLinkError
- (*ManagerLinkErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ManagerLinkErrorEnum
+var file_google_ads_googleads_v17_errors_manager_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_manager_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_manager_link_error_proto_goTypes = []interface{}{
+ (ManagerLinkErrorEnum_ManagerLinkError)(0), // 0: google.ads.googleads.v17.errors.ManagerLinkErrorEnum.ManagerLinkError
+ (*ManagerLinkErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ManagerLinkErrorEnum
}
-var file_google_ads_googleads_v16_errors_manager_link_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_manager_link_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -294,13 +294,13 @@ var file_google_ads_googleads_v16_errors_manager_link_error_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_manager_link_error_proto_init() }
-func file_google_ads_googleads_v16_errors_manager_link_error_proto_init() {
- if File_google_ads_googleads_v16_errors_manager_link_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_manager_link_error_proto_init() }
+func file_google_ads_googleads_v17_errors_manager_link_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_manager_link_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_manager_link_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_manager_link_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ManagerLinkErrorEnum); i {
case 0:
return &v.state
@@ -317,19 +317,19 @@ func file_google_ads_googleads_v16_errors_manager_link_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_manager_link_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_manager_link_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_manager_link_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_manager_link_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_manager_link_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_manager_link_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_manager_link_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_manager_link_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_manager_link_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_manager_link_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_manager_link_error_proto = out.File
- file_google_ads_googleads_v16_errors_manager_link_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_manager_link_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_manager_link_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_manager_link_error_proto = out.File
+ file_google_ads_googleads_v17_errors_manager_link_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_manager_link_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_manager_link_error_proto_depIdxs = nil
}
diff --git a/errors/media_bundle_error.pb.go b/errors/media_bundle_error.pb.go
index 629a0122..c7155a65 100644
--- a/errors/media_bundle_error.pb.go
+++ b/errors/media_bundle_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/media_bundle_error.proto
+// source: google/ads/googleads/v17/errors/media_bundle_error.proto
package errors
@@ -155,11 +155,11 @@ func (x MediaBundleErrorEnum_MediaBundleError) String() string {
}
func (MediaBundleErrorEnum_MediaBundleError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_media_bundle_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_media_bundle_error_proto_enumTypes[0].Descriptor()
}
func (MediaBundleErrorEnum_MediaBundleError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_media_bundle_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_media_bundle_error_proto_enumTypes[0]
}
func (x MediaBundleErrorEnum_MediaBundleError) Number() protoreflect.EnumNumber {
@@ -168,7 +168,7 @@ func (x MediaBundleErrorEnum_MediaBundleError) Number() protoreflect.EnumNumber
// Deprecated: Use MediaBundleErrorEnum_MediaBundleError.Descriptor instead.
func (MediaBundleErrorEnum_MediaBundleError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_media_bundle_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_media_bundle_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible media bundle errors.
@@ -181,7 +181,7 @@ type MediaBundleErrorEnum struct {
func (x *MediaBundleErrorEnum) Reset() {
*x = MediaBundleErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_media_bundle_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_media_bundle_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -194,7 +194,7 @@ func (x *MediaBundleErrorEnum) String() string {
func (*MediaBundleErrorEnum) ProtoMessage() {}
func (x *MediaBundleErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_media_bundle_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_media_bundle_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -207,18 +207,18 @@ func (x *MediaBundleErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use MediaBundleErrorEnum.ProtoReflect.Descriptor instead.
func (*MediaBundleErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_media_bundle_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_media_bundle_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_media_bundle_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_media_bundle_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_media_bundle_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_media_bundle_error_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x5f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xb8, 0x05, 0x0a, 0x14,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xb8, 0x05, 0x0a, 0x14,
0x4d, 0x65, 0x64, 0x69, 0x61, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x9f, 0x05, 0x0a, 0x10, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x42, 0x75,
0x6e, 0x64, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53,
@@ -264,42 +264,42 @@ var file_google_ads_googleads_v16_errors_media_bundle_error_proto_rawDesc = []by
0x54, 0x4f, 0x4d, 0x5f, 0x45, 0x58, 0x49, 0x54, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x41, 0x4c, 0x4c,
0x4f, 0x57, 0x45, 0x44, 0x10, 0x18, 0x42, 0xf5, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15,
0x4d, 0x65, 0x64, 0x69, 0x61, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_media_bundle_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_media_bundle_error_proto_rawDescData = file_google_ads_googleads_v16_errors_media_bundle_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_media_bundle_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_media_bundle_error_proto_rawDescData = file_google_ads_googleads_v17_errors_media_bundle_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_media_bundle_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_media_bundle_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_media_bundle_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_media_bundle_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_media_bundle_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_media_bundle_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_media_bundle_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_media_bundle_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_media_bundle_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_media_bundle_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_media_bundle_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_media_bundle_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_media_bundle_error_proto_goTypes = []interface{}{
- (MediaBundleErrorEnum_MediaBundleError)(0), // 0: google.ads.googleads.v16.errors.MediaBundleErrorEnum.MediaBundleError
- (*MediaBundleErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.MediaBundleErrorEnum
+var file_google_ads_googleads_v17_errors_media_bundle_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_media_bundle_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_media_bundle_error_proto_goTypes = []interface{}{
+ (MediaBundleErrorEnum_MediaBundleError)(0), // 0: google.ads.googleads.v17.errors.MediaBundleErrorEnum.MediaBundleError
+ (*MediaBundleErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.MediaBundleErrorEnum
}
-var file_google_ads_googleads_v16_errors_media_bundle_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_media_bundle_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -307,13 +307,13 @@ var file_google_ads_googleads_v16_errors_media_bundle_error_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_media_bundle_error_proto_init() }
-func file_google_ads_googleads_v16_errors_media_bundle_error_proto_init() {
- if File_google_ads_googleads_v16_errors_media_bundle_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_media_bundle_error_proto_init() }
+func file_google_ads_googleads_v17_errors_media_bundle_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_media_bundle_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_media_bundle_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_media_bundle_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MediaBundleErrorEnum); i {
case 0:
return &v.state
@@ -330,19 +330,19 @@ func file_google_ads_googleads_v16_errors_media_bundle_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_media_bundle_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_media_bundle_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_media_bundle_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_media_bundle_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_media_bundle_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_media_bundle_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_media_bundle_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_media_bundle_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_media_bundle_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_media_bundle_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_media_bundle_error_proto = out.File
- file_google_ads_googleads_v16_errors_media_bundle_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_media_bundle_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_media_bundle_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_media_bundle_error_proto = out.File
+ file_google_ads_googleads_v17_errors_media_bundle_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_media_bundle_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_media_bundle_error_proto_depIdxs = nil
}
diff --git a/errors/media_file_error.pb.go b/errors/media_file_error.pb.go
index c6fa221c..27350cd4 100644
--- a/errors/media_file_error.pb.go
+++ b/errors/media_file_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/media_file_error.proto
+// source: google/ads/googleads/v17/errors/media_file_error.proto
package errors
@@ -159,11 +159,11 @@ func (x MediaFileErrorEnum_MediaFileError) String() string {
}
func (MediaFileErrorEnum_MediaFileError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_media_file_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_media_file_error_proto_enumTypes[0].Descriptor()
}
func (MediaFileErrorEnum_MediaFileError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_media_file_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_media_file_error_proto_enumTypes[0]
}
func (x MediaFileErrorEnum_MediaFileError) Number() protoreflect.EnumNumber {
@@ -172,7 +172,7 @@ func (x MediaFileErrorEnum_MediaFileError) Number() protoreflect.EnumNumber {
// Deprecated: Use MediaFileErrorEnum_MediaFileError.Descriptor instead.
func (MediaFileErrorEnum_MediaFileError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_media_file_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_media_file_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible media file errors.
@@ -185,7 +185,7 @@ type MediaFileErrorEnum struct {
func (x *MediaFileErrorEnum) Reset() {
*x = MediaFileErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_media_file_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_media_file_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -198,7 +198,7 @@ func (x *MediaFileErrorEnum) String() string {
func (*MediaFileErrorEnum) ProtoMessage() {}
func (x *MediaFileErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_media_file_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_media_file_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -211,18 +211,18 @@ func (x *MediaFileErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use MediaFileErrorEnum.ProtoReflect.Descriptor instead.
func (*MediaFileErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_media_file_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_media_file_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_media_file_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_media_file_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_media_file_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_media_file_error_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x97, 0x06, 0x0a, 0x12, 0x4d, 0x65,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x97, 0x06, 0x0a, 0x12, 0x4d, 0x65,
0x64, 0x69, 0x61, 0x46, 0x69, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x80, 0x06, 0x0a, 0x0e, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x46, 0x69, 0x6c, 0x65, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
@@ -274,42 +274,42 @@ var file_google_ads_googleads_v16_errors_media_file_error_proto_rawDesc = []byte
0x45, 0x5f, 0x56, 0x49, 0x44, 0x45, 0x4f, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x46, 0x4f, 0x55, 0x4e,
0x44, 0x10, 0x18, 0x42, 0xf3, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x13, 0x4d, 0x65, 0x64,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x13, 0x4d, 0x65, 0x64,
0x69, 0x61, 0x46, 0x69, 0x6c, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_errors_media_file_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_media_file_error_proto_rawDescData = file_google_ads_googleads_v16_errors_media_file_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_media_file_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_media_file_error_proto_rawDescData = file_google_ads_googleads_v17_errors_media_file_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_media_file_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_media_file_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_media_file_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_media_file_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_media_file_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_media_file_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_media_file_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_media_file_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_media_file_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_media_file_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_media_file_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_media_file_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_media_file_error_proto_goTypes = []interface{}{
- (MediaFileErrorEnum_MediaFileError)(0), // 0: google.ads.googleads.v16.errors.MediaFileErrorEnum.MediaFileError
- (*MediaFileErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.MediaFileErrorEnum
+var file_google_ads_googleads_v17_errors_media_file_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_media_file_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_media_file_error_proto_goTypes = []interface{}{
+ (MediaFileErrorEnum_MediaFileError)(0), // 0: google.ads.googleads.v17.errors.MediaFileErrorEnum.MediaFileError
+ (*MediaFileErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.MediaFileErrorEnum
}
-var file_google_ads_googleads_v16_errors_media_file_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_media_file_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -317,13 +317,13 @@ var file_google_ads_googleads_v16_errors_media_file_error_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_media_file_error_proto_init() }
-func file_google_ads_googleads_v16_errors_media_file_error_proto_init() {
- if File_google_ads_googleads_v16_errors_media_file_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_media_file_error_proto_init() }
+func file_google_ads_googleads_v17_errors_media_file_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_media_file_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_media_file_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_media_file_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MediaFileErrorEnum); i {
case 0:
return &v.state
@@ -340,19 +340,19 @@ func file_google_ads_googleads_v16_errors_media_file_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_media_file_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_media_file_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_media_file_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_media_file_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_media_file_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_media_file_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_media_file_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_media_file_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_media_file_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_media_file_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_media_file_error_proto = out.File
- file_google_ads_googleads_v16_errors_media_file_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_media_file_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_media_file_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_media_file_error_proto = out.File
+ file_google_ads_googleads_v17_errors_media_file_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_media_file_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_media_file_error_proto_depIdxs = nil
}
diff --git a/errors/media_upload_error.pb.go b/errors/media_upload_error.pb.go
index 48c8241d..e4b96575 100644
--- a/errors/media_upload_error.pb.go
+++ b/errors/media_upload_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/media_upload_error.proto
+// source: google/ads/googleads/v17/errors/media_upload_error.proto
package errors
@@ -209,11 +209,11 @@ func (x MediaUploadErrorEnum_MediaUploadError) String() string {
}
func (MediaUploadErrorEnum_MediaUploadError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_media_upload_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_media_upload_error_proto_enumTypes[0].Descriptor()
}
func (MediaUploadErrorEnum_MediaUploadError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_media_upload_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_media_upload_error_proto_enumTypes[0]
}
func (x MediaUploadErrorEnum_MediaUploadError) Number() protoreflect.EnumNumber {
@@ -222,7 +222,7 @@ func (x MediaUploadErrorEnum_MediaUploadError) Number() protoreflect.EnumNumber
// Deprecated: Use MediaUploadErrorEnum_MediaUploadError.Descriptor instead.
func (MediaUploadErrorEnum_MediaUploadError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_media_upload_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_media_upload_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible media uploading errors.
@@ -235,7 +235,7 @@ type MediaUploadErrorEnum struct {
func (x *MediaUploadErrorEnum) Reset() {
*x = MediaUploadErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_media_upload_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_media_upload_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -248,7 +248,7 @@ func (x *MediaUploadErrorEnum) String() string {
func (*MediaUploadErrorEnum) ProtoMessage() {}
func (x *MediaUploadErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_media_upload_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_media_upload_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -261,18 +261,18 @@ func (x *MediaUploadErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use MediaUploadErrorEnum.ProtoReflect.Descriptor instead.
func (*MediaUploadErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_media_upload_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_media_upload_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_media_upload_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_media_upload_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_media_upload_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_media_upload_error_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x75, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xfe, 0x08, 0x0a, 0x14,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xfe, 0x08, 0x0a, 0x14,
0x4d, 0x65, 0x64, 0x69, 0x61, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0xe5, 0x08, 0x0a, 0x10, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x55, 0x70,
0x6c, 0x6f, 0x61, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53,
@@ -346,42 +346,42 @@ var file_google_ads_googleads_v16_errors_media_upload_error_proto_rawDesc = []by
0x12, 0x1a, 0x0a, 0x16, 0x44, 0x49, 0x4d, 0x45, 0x4e, 0x53, 0x49, 0x4f, 0x4e, 0x53, 0x5f, 0x4e,
0x4f, 0x54, 0x5f, 0x41, 0x4c, 0x4c, 0x4f, 0x57, 0x45, 0x44, 0x10, 0x23, 0x42, 0xf5, 0x01, 0x0a,
0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, 0x4d, 0x65, 0x64, 0x69, 0x61, 0x55, 0x70, 0x6c, 0x6f, 0x61,
0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02,
0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_media_upload_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_media_upload_error_proto_rawDescData = file_google_ads_googleads_v16_errors_media_upload_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_media_upload_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_media_upload_error_proto_rawDescData = file_google_ads_googleads_v17_errors_media_upload_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_media_upload_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_media_upload_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_media_upload_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_media_upload_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_media_upload_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_media_upload_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_media_upload_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_media_upload_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_media_upload_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_media_upload_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_media_upload_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_media_upload_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_media_upload_error_proto_goTypes = []interface{}{
- (MediaUploadErrorEnum_MediaUploadError)(0), // 0: google.ads.googleads.v16.errors.MediaUploadErrorEnum.MediaUploadError
- (*MediaUploadErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.MediaUploadErrorEnum
+var file_google_ads_googleads_v17_errors_media_upload_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_media_upload_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_media_upload_error_proto_goTypes = []interface{}{
+ (MediaUploadErrorEnum_MediaUploadError)(0), // 0: google.ads.googleads.v17.errors.MediaUploadErrorEnum.MediaUploadError
+ (*MediaUploadErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.MediaUploadErrorEnum
}
-var file_google_ads_googleads_v16_errors_media_upload_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_media_upload_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -389,13 +389,13 @@ var file_google_ads_googleads_v16_errors_media_upload_error_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_media_upload_error_proto_init() }
-func file_google_ads_googleads_v16_errors_media_upload_error_proto_init() {
- if File_google_ads_googleads_v16_errors_media_upload_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_media_upload_error_proto_init() }
+func file_google_ads_googleads_v17_errors_media_upload_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_media_upload_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_media_upload_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_media_upload_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MediaUploadErrorEnum); i {
case 0:
return &v.state
@@ -412,19 +412,19 @@ func file_google_ads_googleads_v16_errors_media_upload_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_media_upload_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_media_upload_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_media_upload_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_media_upload_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_media_upload_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_media_upload_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_media_upload_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_media_upload_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_media_upload_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_media_upload_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_media_upload_error_proto = out.File
- file_google_ads_googleads_v16_errors_media_upload_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_media_upload_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_media_upload_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_media_upload_error_proto = out.File
+ file_google_ads_googleads_v17_errors_media_upload_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_media_upload_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_media_upload_error_proto_depIdxs = nil
}
diff --git a/errors/merchant_center_error.pb.go b/errors/merchant_center_error.pb.go
index 5c584136..d336c174 100644
--- a/errors/merchant_center_error.pb.go
+++ b/errors/merchant_center_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/merchant_center_error.proto
+// source: google/ads/googleads/v17/errors/merchant_center_error.proto
package errors
@@ -75,11 +75,11 @@ func (x MerchantCenterErrorEnum_MerchantCenterError) String() string {
}
func (MerchantCenterErrorEnum_MerchantCenterError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_merchant_center_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_merchant_center_error_proto_enumTypes[0].Descriptor()
}
func (MerchantCenterErrorEnum_MerchantCenterError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_merchant_center_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_merchant_center_error_proto_enumTypes[0]
}
func (x MerchantCenterErrorEnum_MerchantCenterError) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x MerchantCenterErrorEnum_MerchantCenterError) Number() protoreflect.EnumN
// Deprecated: Use MerchantCenterErrorEnum_MerchantCenterError.Descriptor instead.
func (MerchantCenterErrorEnum_MerchantCenterError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_merchant_center_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_merchant_center_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible merchant center errors.
@@ -101,7 +101,7 @@ type MerchantCenterErrorEnum struct {
func (x *MerchantCenterErrorEnum) Reset() {
*x = MerchantCenterErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_merchant_center_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_merchant_center_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *MerchantCenterErrorEnum) String() string {
func (*MerchantCenterErrorEnum) ProtoMessage() {}
func (x *MerchantCenterErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_merchant_center_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_merchant_center_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *MerchantCenterErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use MerchantCenterErrorEnum.ProtoReflect.Descriptor instead.
func (*MerchantCenterErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_merchant_center_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_merchant_center_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_merchant_center_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_merchant_center_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_merchant_center_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_merchant_center_error_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x5f, 0x63, 0x65, 0x6e, 0x74, 0x65,
0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xaa,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xaa,
0x01, 0x0a, 0x17, 0x4d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x43, 0x65, 0x6e, 0x74, 0x65,
0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x8e, 0x01, 0x0a, 0x13, 0x4d,
0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x43, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72,
@@ -151,42 +151,42 @@ var file_google_ads_googleads_v16_errors_merchant_center_error_proto_rawDesc = [
0x5f, 0x53, 0x48, 0x4f, 0x50, 0x50, 0x49, 0x4e, 0x47, 0x5f, 0x50, 0x45, 0x52, 0x46, 0x4f, 0x52,
0x4d, 0x41, 0x4e, 0x43, 0x45, 0x5f, 0x4d, 0x41, 0x58, 0x10, 0x03, 0x42, 0xf8, 0x01, 0x0a, 0x23,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x42, 0x18, 0x4d, 0x65, 0x72, 0x63, 0x68, 0x61, 0x6e, 0x74, 0x43, 0x65, 0x6e,
0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_merchant_center_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_merchant_center_error_proto_rawDescData = file_google_ads_googleads_v16_errors_merchant_center_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_merchant_center_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_merchant_center_error_proto_rawDescData = file_google_ads_googleads_v17_errors_merchant_center_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_merchant_center_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_merchant_center_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_merchant_center_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_merchant_center_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_merchant_center_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_merchant_center_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_merchant_center_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_merchant_center_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_merchant_center_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_merchant_center_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_merchant_center_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_merchant_center_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_merchant_center_error_proto_goTypes = []interface{}{
- (MerchantCenterErrorEnum_MerchantCenterError)(0), // 0: google.ads.googleads.v16.errors.MerchantCenterErrorEnum.MerchantCenterError
- (*MerchantCenterErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.MerchantCenterErrorEnum
+var file_google_ads_googleads_v17_errors_merchant_center_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_merchant_center_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_merchant_center_error_proto_goTypes = []interface{}{
+ (MerchantCenterErrorEnum_MerchantCenterError)(0), // 0: google.ads.googleads.v17.errors.MerchantCenterErrorEnum.MerchantCenterError
+ (*MerchantCenterErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.MerchantCenterErrorEnum
}
-var file_google_ads_googleads_v16_errors_merchant_center_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_merchant_center_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -194,13 +194,13 @@ var file_google_ads_googleads_v16_errors_merchant_center_error_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_merchant_center_error_proto_init() }
-func file_google_ads_googleads_v16_errors_merchant_center_error_proto_init() {
- if File_google_ads_googleads_v16_errors_merchant_center_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_merchant_center_error_proto_init() }
+func file_google_ads_googleads_v17_errors_merchant_center_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_merchant_center_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_merchant_center_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_merchant_center_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MerchantCenterErrorEnum); i {
case 0:
return &v.state
@@ -217,19 +217,19 @@ func file_google_ads_googleads_v16_errors_merchant_center_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_merchant_center_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_merchant_center_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_merchant_center_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_merchant_center_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_merchant_center_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_merchant_center_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_merchant_center_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_merchant_center_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_merchant_center_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_merchant_center_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_merchant_center_error_proto = out.File
- file_google_ads_googleads_v16_errors_merchant_center_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_merchant_center_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_merchant_center_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_merchant_center_error_proto = out.File
+ file_google_ads_googleads_v17_errors_merchant_center_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_merchant_center_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_merchant_center_error_proto_depIdxs = nil
}
diff --git a/errors/multiplier_error.pb.go b/errors/multiplier_error.pb.go
index be65a197..f498b954 100644
--- a/errors/multiplier_error.pb.go
+++ b/errors/multiplier_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/multiplier_error.proto
+// source: google/ads/googleads/v17/errors/multiplier_error.proto
package errors
@@ -117,11 +117,11 @@ func (x MultiplierErrorEnum_MultiplierError) String() string {
}
func (MultiplierErrorEnum_MultiplierError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_multiplier_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_multiplier_error_proto_enumTypes[0].Descriptor()
}
func (MultiplierErrorEnum_MultiplierError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_multiplier_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_multiplier_error_proto_enumTypes[0]
}
func (x MultiplierErrorEnum_MultiplierError) Number() protoreflect.EnumNumber {
@@ -130,7 +130,7 @@ func (x MultiplierErrorEnum_MultiplierError) Number() protoreflect.EnumNumber {
// Deprecated: Use MultiplierErrorEnum_MultiplierError.Descriptor instead.
func (MultiplierErrorEnum_MultiplierError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_multiplier_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_multiplier_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible multiplier errors.
@@ -143,7 +143,7 @@ type MultiplierErrorEnum struct {
func (x *MultiplierErrorEnum) Reset() {
*x = MultiplierErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_multiplier_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_multiplier_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -156,7 +156,7 @@ func (x *MultiplierErrorEnum) String() string {
func (*MultiplierErrorEnum) ProtoMessage() {}
func (x *MultiplierErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_multiplier_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_multiplier_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -169,18 +169,18 @@ func (x *MultiplierErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use MultiplierErrorEnum.ProtoReflect.Descriptor instead.
func (*MultiplierErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_multiplier_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_multiplier_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_multiplier_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_multiplier_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_multiplier_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_multiplier_error_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x69, 0x65, 0x72, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xcf, 0x04, 0x0a, 0x13, 0x4d, 0x75,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xcf, 0x04, 0x0a, 0x13, 0x4d, 0x75,
0x6c, 0x74, 0x69, 0x70, 0x6c, 0x69, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0xb7, 0x04, 0x0a, 0x0f, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x69, 0x65, 0x72,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49,
@@ -219,42 +219,42 @@ var file_google_ads_googleads_v16_errors_multiplier_error_proto_rawDesc = []byte
0x4e, 0x47, 0x5f, 0x53, 0x54, 0x52, 0x41, 0x54, 0x45, 0x47, 0x59, 0x5f, 0x54, 0x59, 0x50, 0x45,
0x5f, 0x4d, 0x49, 0x53, 0x4d, 0x41, 0x54, 0x43, 0x48, 0x10, 0x0d, 0x42, 0xf4, 0x01, 0x0a, 0x23,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x42, 0x14, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x69, 0x65, 0x72, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_multiplier_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_multiplier_error_proto_rawDescData = file_google_ads_googleads_v16_errors_multiplier_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_multiplier_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_multiplier_error_proto_rawDescData = file_google_ads_googleads_v17_errors_multiplier_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_multiplier_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_multiplier_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_multiplier_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_multiplier_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_multiplier_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_multiplier_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_multiplier_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_multiplier_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_multiplier_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_multiplier_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_multiplier_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_multiplier_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_multiplier_error_proto_goTypes = []interface{}{
- (MultiplierErrorEnum_MultiplierError)(0), // 0: google.ads.googleads.v16.errors.MultiplierErrorEnum.MultiplierError
- (*MultiplierErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.MultiplierErrorEnum
+var file_google_ads_googleads_v17_errors_multiplier_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_multiplier_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_multiplier_error_proto_goTypes = []interface{}{
+ (MultiplierErrorEnum_MultiplierError)(0), // 0: google.ads.googleads.v17.errors.MultiplierErrorEnum.MultiplierError
+ (*MultiplierErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.MultiplierErrorEnum
}
-var file_google_ads_googleads_v16_errors_multiplier_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_multiplier_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -262,13 +262,13 @@ var file_google_ads_googleads_v16_errors_multiplier_error_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_multiplier_error_proto_init() }
-func file_google_ads_googleads_v16_errors_multiplier_error_proto_init() {
- if File_google_ads_googleads_v16_errors_multiplier_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_multiplier_error_proto_init() }
+func file_google_ads_googleads_v17_errors_multiplier_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_multiplier_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_multiplier_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_multiplier_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MultiplierErrorEnum); i {
case 0:
return &v.state
@@ -285,19 +285,19 @@ func file_google_ads_googleads_v16_errors_multiplier_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_multiplier_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_multiplier_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_multiplier_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_multiplier_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_multiplier_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_multiplier_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_multiplier_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_multiplier_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_multiplier_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_multiplier_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_multiplier_error_proto = out.File
- file_google_ads_googleads_v16_errors_multiplier_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_multiplier_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_multiplier_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_multiplier_error_proto = out.File
+ file_google_ads_googleads_v17_errors_multiplier_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_multiplier_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_multiplier_error_proto_depIdxs = nil
}
diff --git a/errors/mutate_error.pb.go b/errors/mutate_error.pb.go
index 4710aa53..f8d49240 100644
--- a/errors/mutate_error.pb.go
+++ b/errors/mutate_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/mutate_error.proto
+// source: google/ads/googleads/v17/errors/mutate_error.proto
package errors
@@ -104,11 +104,11 @@ func (x MutateErrorEnum_MutateError) String() string {
}
func (MutateErrorEnum_MutateError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_mutate_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_mutate_error_proto_enumTypes[0].Descriptor()
}
func (MutateErrorEnum_MutateError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_mutate_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_mutate_error_proto_enumTypes[0]
}
func (x MutateErrorEnum_MutateError) Number() protoreflect.EnumNumber {
@@ -117,7 +117,7 @@ func (x MutateErrorEnum_MutateError) Number() protoreflect.EnumNumber {
// Deprecated: Use MutateErrorEnum_MutateError.Descriptor instead.
func (MutateErrorEnum_MutateError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_mutate_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_mutate_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible mutate errors.
@@ -130,7 +130,7 @@ type MutateErrorEnum struct {
func (x *MutateErrorEnum) Reset() {
*x = MutateErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_mutate_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_mutate_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -143,7 +143,7 @@ func (x *MutateErrorEnum) String() string {
func (*MutateErrorEnum) ProtoMessage() {}
func (x *MutateErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_mutate_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_mutate_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -156,17 +156,17 @@ func (x *MutateErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use MutateErrorEnum.ProtoReflect.Descriptor instead.
func (*MutateErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_mutate_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_mutate_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_mutate_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_mutate_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_mutate_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_mutate_error_proto_rawDesc = []byte{
0x0a, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xe3, 0x02, 0x0a, 0x0f, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xcf, 0x02, 0x0a, 0x0b, 0x4d, 0x75,
0x74, 0x61, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53,
@@ -191,42 +191,42 @@ var file_google_ads_googleads_v16_errors_mutate_error_proto_rawDesc = []byte{
0x45, 0x10, 0x10, 0x12, 0x16, 0x0a, 0x12, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f,
0x52, 0x45, 0x41, 0x44, 0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x10, 0x0d, 0x42, 0xf0, 0x01, 0x0a, 0x23,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x42, 0x10, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_mutate_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_mutate_error_proto_rawDescData = file_google_ads_googleads_v16_errors_mutate_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_mutate_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_mutate_error_proto_rawDescData = file_google_ads_googleads_v17_errors_mutate_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_mutate_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_mutate_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_mutate_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_mutate_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_mutate_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_mutate_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_mutate_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_mutate_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_mutate_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_mutate_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_mutate_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_mutate_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_mutate_error_proto_goTypes = []interface{}{
- (MutateErrorEnum_MutateError)(0), // 0: google.ads.googleads.v16.errors.MutateErrorEnum.MutateError
- (*MutateErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.MutateErrorEnum
+var file_google_ads_googleads_v17_errors_mutate_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_mutate_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_mutate_error_proto_goTypes = []interface{}{
+ (MutateErrorEnum_MutateError)(0), // 0: google.ads.googleads.v17.errors.MutateErrorEnum.MutateError
+ (*MutateErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.MutateErrorEnum
}
-var file_google_ads_googleads_v16_errors_mutate_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_mutate_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -234,13 +234,13 @@ var file_google_ads_googleads_v16_errors_mutate_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_mutate_error_proto_init() }
-func file_google_ads_googleads_v16_errors_mutate_error_proto_init() {
- if File_google_ads_googleads_v16_errors_mutate_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_mutate_error_proto_init() }
+func file_google_ads_googleads_v17_errors_mutate_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_mutate_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_mutate_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_mutate_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*MutateErrorEnum); i {
case 0:
return &v.state
@@ -257,19 +257,19 @@ func file_google_ads_googleads_v16_errors_mutate_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_mutate_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_mutate_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_mutate_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_mutate_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_mutate_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_mutate_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_mutate_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_mutate_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_mutate_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_mutate_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_mutate_error_proto = out.File
- file_google_ads_googleads_v16_errors_mutate_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_mutate_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_mutate_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_mutate_error_proto = out.File
+ file_google_ads_googleads_v17_errors_mutate_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_mutate_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_mutate_error_proto_depIdxs = nil
}
diff --git a/errors/new_resource_creation_error.pb.go b/errors/new_resource_creation_error.pb.go
index f0751e81..6d6123aa 100644
--- a/errors/new_resource_creation_error.pb.go
+++ b/errors/new_resource_creation_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/new_resource_creation_error.proto
+// source: google/ads/googleads/v17/errors/new_resource_creation_error.proto
package errors
@@ -80,11 +80,11 @@ func (x NewResourceCreationErrorEnum_NewResourceCreationError) String() string {
}
func (NewResourceCreationErrorEnum_NewResourceCreationError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_enumTypes[0].Descriptor()
}
func (NewResourceCreationErrorEnum_NewResourceCreationError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_enumTypes[0]
}
func (x NewResourceCreationErrorEnum_NewResourceCreationError) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x NewResourceCreationErrorEnum_NewResourceCreationError) Number() protoref
// Deprecated: Use NewResourceCreationErrorEnum_NewResourceCreationError.Descriptor instead.
func (NewResourceCreationErrorEnum_NewResourceCreationError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible new resource creation errors.
@@ -106,7 +106,7 @@ type NewResourceCreationErrorEnum struct {
func (x *NewResourceCreationErrorEnum) Reset() {
*x = NewResourceCreationErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *NewResourceCreationErrorEnum) String() string {
func (*NewResourceCreationErrorEnum) ProtoMessage() {}
func (x *NewResourceCreationErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,18 +132,18 @@ func (x *NewResourceCreationErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use NewResourceCreationErrorEnum.ProtoReflect.Descriptor instead.
func (*NewResourceCreationErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_new_resource_creation_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_new_resource_creation_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_rawDesc = []byte{
0x0a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6e, 0x65, 0x77, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63,
0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x22, 0xb0, 0x01, 0x0a, 0x1c, 0x4e, 0x65, 0x77, 0x52, 0x65, 0x73, 0x6f,
0x75, 0x72, 0x63, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x8f, 0x01, 0x0a, 0x18, 0x4e, 0x65, 0x77, 0x52, 0x65, 0x73,
@@ -157,42 +157,42 @@ var file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_rawDe
0x44, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x48, 0x41, 0x44, 0x5f, 0x45,
0x52, 0x52, 0x4f, 0x52, 0x53, 0x10, 0x04, 0x42, 0xfd, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42,
0x1d, 0x4e, 0x65, 0x77, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x72, 0x65, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01,
0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e,
0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
+ 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_rawDescData = file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_rawDescData = file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_goTypes = []interface{}{
- (NewResourceCreationErrorEnum_NewResourceCreationError)(0), // 0: google.ads.googleads.v16.errors.NewResourceCreationErrorEnum.NewResourceCreationError
- (*NewResourceCreationErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.NewResourceCreationErrorEnum
+var file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_goTypes = []interface{}{
+ (NewResourceCreationErrorEnum_NewResourceCreationError)(0), // 0: google.ads.googleads.v17.errors.NewResourceCreationErrorEnum.NewResourceCreationError
+ (*NewResourceCreationErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.NewResourceCreationErrorEnum
}
-var file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -200,13 +200,13 @@ var file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_depId
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_init() }
-func file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_init() {
- if File_google_ads_googleads_v16_errors_new_resource_creation_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_init() }
+func file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_new_resource_creation_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*NewResourceCreationErrorEnum); i {
case 0:
return &v.state
@@ -223,19 +223,19 @@ func file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_init
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_new_resource_creation_error_proto = out.File
- file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_new_resource_creation_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_new_resource_creation_error_proto = out.File
+ file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_new_resource_creation_error_proto_depIdxs = nil
}
diff --git a/errors/not_allowlisted_error.pb.go b/errors/not_allowlisted_error.pb.go
index 0614ec3f..73f098d0 100644
--- a/errors/not_allowlisted_error.pb.go
+++ b/errors/not_allowlisted_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/not_allowlisted_error.proto
+// source: google/ads/googleads/v17/errors/not_allowlisted_error.proto
package errors
@@ -71,11 +71,11 @@ func (x NotAllowlistedErrorEnum_NotAllowlistedError) String() string {
}
func (NotAllowlistedErrorEnum_NotAllowlistedError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_enumTypes[0].Descriptor()
}
func (NotAllowlistedErrorEnum_NotAllowlistedError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_enumTypes[0]
}
func (x NotAllowlistedErrorEnum_NotAllowlistedError) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x NotAllowlistedErrorEnum_NotAllowlistedError) Number() protoreflect.EnumN
// Deprecated: Use NotAllowlistedErrorEnum_NotAllowlistedError.Descriptor instead.
func (NotAllowlistedErrorEnum_NotAllowlistedError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible not allowlisted errors.
@@ -97,7 +97,7 @@ type NotAllowlistedErrorEnum struct {
func (x *NotAllowlistedErrorEnum) Reset() {
*x = NotAllowlistedErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *NotAllowlistedErrorEnum) String() string {
func (*NotAllowlistedErrorEnum) ProtoMessage() {}
func (x *NotAllowlistedErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,18 +123,18 @@ func (x *NotAllowlistedErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use NotAllowlistedErrorEnum.ProtoReflect.Descriptor instead.
func (*NotAllowlistedErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_not_allowlisted_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_not_allowlisted_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6e, 0x6f, 0x74, 0x5f, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x6c, 0x69, 0x73, 0x74, 0x65,
0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x7d,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x7d,
0x0a, 0x17, 0x4e, 0x6f, 0x74, 0x41, 0x6c, 0x6c, 0x6f, 0x77, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x64,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x62, 0x0a, 0x13, 0x4e, 0x6f, 0x74,
0x41, 0x6c, 0x6c, 0x6f, 0x77, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72,
@@ -144,42 +144,42 @@ var file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_rawDesc = [
0x4c, 0x4c, 0x4f, 0x57, 0x4c, 0x49, 0x53, 0x54, 0x45, 0x44, 0x5f, 0x46, 0x4f, 0x52, 0x5f, 0x54,
0x48, 0x49, 0x53, 0x5f, 0x46, 0x45, 0x41, 0x54, 0x55, 0x52, 0x45, 0x10, 0x02, 0x42, 0xf8, 0x01,
0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x18, 0x4e, 0x6f, 0x74, 0x41, 0x6c, 0x6c, 0x6f, 0x77, 0x6c,
0x69, 0x73, 0x74, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_rawDescData = file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_rawDescData = file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_goTypes = []interface{}{
- (NotAllowlistedErrorEnum_NotAllowlistedError)(0), // 0: google.ads.googleads.v16.errors.NotAllowlistedErrorEnum.NotAllowlistedError
- (*NotAllowlistedErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.NotAllowlistedErrorEnum
+var file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_goTypes = []interface{}{
+ (NotAllowlistedErrorEnum_NotAllowlistedError)(0), // 0: google.ads.googleads.v17.errors.NotAllowlistedErrorEnum.NotAllowlistedError
+ (*NotAllowlistedErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.NotAllowlistedErrorEnum
}
-var file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -187,13 +187,13 @@ var file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_init() }
-func file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_init() {
- if File_google_ads_googleads_v16_errors_not_allowlisted_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_init() }
+func file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_not_allowlisted_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*NotAllowlistedErrorEnum); i {
case 0:
return &v.state
@@ -210,19 +210,19 @@ func file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_not_allowlisted_error_proto = out.File
- file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_not_allowlisted_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_not_allowlisted_error_proto = out.File
+ file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_not_allowlisted_error_proto_depIdxs = nil
}
diff --git a/errors/not_empty_error.pb.go b/errors/not_empty_error.pb.go
index 17cb3b25..5e7e2fed 100644
--- a/errors/not_empty_error.pb.go
+++ b/errors/not_empty_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/not_empty_error.proto
+// source: google/ads/googleads/v17/errors/not_empty_error.proto
package errors
@@ -71,11 +71,11 @@ func (x NotEmptyErrorEnum_NotEmptyError) String() string {
}
func (NotEmptyErrorEnum_NotEmptyError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_not_empty_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_not_empty_error_proto_enumTypes[0].Descriptor()
}
func (NotEmptyErrorEnum_NotEmptyError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_not_empty_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_not_empty_error_proto_enumTypes[0]
}
func (x NotEmptyErrorEnum_NotEmptyError) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x NotEmptyErrorEnum_NotEmptyError) Number() protoreflect.EnumNumber {
// Deprecated: Use NotEmptyErrorEnum_NotEmptyError.Descriptor instead.
func (NotEmptyErrorEnum_NotEmptyError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_not_empty_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_not_empty_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible not empty errors.
@@ -97,7 +97,7 @@ type NotEmptyErrorEnum struct {
func (x *NotEmptyErrorEnum) Reset() {
*x = NotEmptyErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_not_empty_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_not_empty_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *NotEmptyErrorEnum) String() string {
func (*NotEmptyErrorEnum) ProtoMessage() {}
func (x *NotEmptyErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_not_empty_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_not_empty_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,60 +123,60 @@ func (x *NotEmptyErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use NotEmptyErrorEnum.ProtoReflect.Descriptor instead.
func (*NotEmptyErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_not_empty_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_not_empty_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_not_empty_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_not_empty_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_not_empty_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_not_empty_error_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6e, 0x6f, 0x74, 0x5f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x5f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x52, 0x0a, 0x11, 0x4e, 0x6f, 0x74, 0x45,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x52, 0x0a, 0x11, 0x4e, 0x6f, 0x74, 0x45,
0x6d, 0x70, 0x74, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x3d, 0x0a,
0x0d, 0x4e, 0x6f, 0x74, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f,
0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12,
0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x0e, 0x0a, 0x0a,
0x45, 0x4d, 0x50, 0x54, 0x59, 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x10, 0x02, 0x42, 0xf2, 0x01, 0x0a,
0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x4e, 0x6f, 0x74, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65,
0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69,
0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_not_empty_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_not_empty_error_proto_rawDescData = file_google_ads_googleads_v16_errors_not_empty_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_not_empty_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_not_empty_error_proto_rawDescData = file_google_ads_googleads_v17_errors_not_empty_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_not_empty_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_not_empty_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_not_empty_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_not_empty_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_not_empty_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_not_empty_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_not_empty_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_not_empty_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_not_empty_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_not_empty_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_not_empty_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_not_empty_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_not_empty_error_proto_goTypes = []interface{}{
- (NotEmptyErrorEnum_NotEmptyError)(0), // 0: google.ads.googleads.v16.errors.NotEmptyErrorEnum.NotEmptyError
- (*NotEmptyErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.NotEmptyErrorEnum
+var file_google_ads_googleads_v17_errors_not_empty_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_not_empty_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_not_empty_error_proto_goTypes = []interface{}{
+ (NotEmptyErrorEnum_NotEmptyError)(0), // 0: google.ads.googleads.v17.errors.NotEmptyErrorEnum.NotEmptyError
+ (*NotEmptyErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.NotEmptyErrorEnum
}
-var file_google_ads_googleads_v16_errors_not_empty_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_not_empty_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -184,13 +184,13 @@ var file_google_ads_googleads_v16_errors_not_empty_error_proto_depIdxs = []int32
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_not_empty_error_proto_init() }
-func file_google_ads_googleads_v16_errors_not_empty_error_proto_init() {
- if File_google_ads_googleads_v16_errors_not_empty_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_not_empty_error_proto_init() }
+func file_google_ads_googleads_v17_errors_not_empty_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_not_empty_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_not_empty_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_not_empty_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*NotEmptyErrorEnum); i {
case 0:
return &v.state
@@ -207,19 +207,19 @@ func file_google_ads_googleads_v16_errors_not_empty_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_not_empty_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_not_empty_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_not_empty_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_not_empty_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_not_empty_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_not_empty_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_not_empty_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_not_empty_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_not_empty_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_not_empty_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_not_empty_error_proto = out.File
- file_google_ads_googleads_v16_errors_not_empty_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_not_empty_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_not_empty_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_not_empty_error_proto = out.File
+ file_google_ads_googleads_v17_errors_not_empty_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_not_empty_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_not_empty_error_proto_depIdxs = nil
}
diff --git a/errors/null_error.pb.go b/errors/null_error.pb.go
index 856207d6..ca8fb628 100644
--- a/errors/null_error.pb.go
+++ b/errors/null_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/null_error.proto
+// source: google/ads/googleads/v17/errors/null_error.proto
package errors
@@ -71,11 +71,11 @@ func (x NullErrorEnum_NullError) String() string {
}
func (NullErrorEnum_NullError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_null_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_null_error_proto_enumTypes[0].Descriptor()
}
func (NullErrorEnum_NullError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_null_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_null_error_proto_enumTypes[0]
}
func (x NullErrorEnum_NullError) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x NullErrorEnum_NullError) Number() protoreflect.EnumNumber {
// Deprecated: Use NullErrorEnum_NullError.Descriptor instead.
func (NullErrorEnum_NullError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_null_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_null_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible null errors.
@@ -97,7 +97,7 @@ type NullErrorEnum struct {
func (x *NullErrorEnum) Reset() {
*x = NullErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_null_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_null_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *NullErrorEnum) String() string {
func (*NullErrorEnum) ProtoMessage() {}
func (x *NullErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_null_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_null_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,17 +123,17 @@ func (x *NullErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use NullErrorEnum.ProtoReflect.Descriptor instead.
func (*NullErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_null_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_null_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_null_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_null_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_null_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_null_error_proto_rawDesc = []byte{
0x0a, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6e, 0x75, 0x6c, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x22, 0x4c, 0x0a, 0x0d, 0x4e, 0x75, 0x6c, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x3b, 0x0a, 0x09, 0x4e, 0x75, 0x6c, 0x6c, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44,
@@ -141,41 +141,41 @@ var file_google_ads_googleads_v16_errors_null_error_proto_rawDesc = []byte{
0x10, 0x0a, 0x0c, 0x4e, 0x55, 0x4c, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x54, 0x45, 0x4e, 0x54, 0x10,
0x02, 0x42, 0xee, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0e, 0x4e, 0x75, 0x6c, 0x6c, 0x45,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0e, 0x4e, 0x75, 0x6c, 0x6c, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_null_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_null_error_proto_rawDescData = file_google_ads_googleads_v16_errors_null_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_null_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_null_error_proto_rawDescData = file_google_ads_googleads_v17_errors_null_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_null_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_null_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_null_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_null_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_null_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_null_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_null_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_null_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_null_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_null_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_null_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_null_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_null_error_proto_goTypes = []interface{}{
- (NullErrorEnum_NullError)(0), // 0: google.ads.googleads.v16.errors.NullErrorEnum.NullError
- (*NullErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.NullErrorEnum
+var file_google_ads_googleads_v17_errors_null_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_null_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_null_error_proto_goTypes = []interface{}{
+ (NullErrorEnum_NullError)(0), // 0: google.ads.googleads.v17.errors.NullErrorEnum.NullError
+ (*NullErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.NullErrorEnum
}
-var file_google_ads_googleads_v16_errors_null_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_null_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -183,13 +183,13 @@ var file_google_ads_googleads_v16_errors_null_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_null_error_proto_init() }
-func file_google_ads_googleads_v16_errors_null_error_proto_init() {
- if File_google_ads_googleads_v16_errors_null_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_null_error_proto_init() }
+func file_google_ads_googleads_v17_errors_null_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_null_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_null_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_null_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*NullErrorEnum); i {
case 0:
return &v.state
@@ -206,19 +206,19 @@ func file_google_ads_googleads_v16_errors_null_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_null_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_null_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_null_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_null_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_null_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_null_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_null_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_null_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_null_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_null_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_null_error_proto = out.File
- file_google_ads_googleads_v16_errors_null_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_null_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_null_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_null_error_proto = out.File
+ file_google_ads_googleads_v17_errors_null_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_null_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_null_error_proto_depIdxs = nil
}
diff --git a/errors/offline_user_data_job_error.pb.go b/errors/offline_user_data_job_error.pb.go
index b23f1dc0..008b61da 100644
--- a/errors/offline_user_data_job_error.pb.go
+++ b/errors/offline_user_data_job_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/offline_user_data_job_error.proto
+// source: google/ads/googleads/v17/errors/offline_user_data_job_error.proto
package errors
@@ -135,6 +135,10 @@ const (
// All the fields are not present in the EventAttribute of the Customer
// Match.
OfflineUserDataJobErrorEnum_EVENT_ATTRIBUTE_ALL_FIELDS_ARE_REQUIRED OfflineUserDataJobErrorEnum_OfflineUserDataJobError = 45
+ // Consent was provided at the operation level for an OfflineUserDataJobType
+ // that expects it at the job level. The provided operation-level consent
+ // will be ignored.
+ OfflineUserDataJobErrorEnum_OPERATION_LEVEL_CONSENT_PROVIDED OfflineUserDataJobErrorEnum_OfflineUserDataJobError = 48
)
// Enum value maps for OfflineUserDataJobErrorEnum_OfflineUserDataJobError.
@@ -180,6 +184,7 @@ var (
43: "INVALID_LIFECYCLE_STAGE",
44: "INVALID_EVENT_VALUE",
45: "EVENT_ATTRIBUTE_ALL_FIELDS_ARE_REQUIRED",
+ 48: "OPERATION_LEVEL_CONSENT_PROVIDED",
}
OfflineUserDataJobErrorEnum_OfflineUserDataJobError_value = map[string]int32{
"UNSPECIFIED": 0,
@@ -222,6 +227,7 @@ var (
"INVALID_LIFECYCLE_STAGE": 43,
"INVALID_EVENT_VALUE": 44,
"EVENT_ATTRIBUTE_ALL_FIELDS_ARE_REQUIRED": 45,
+ "OPERATION_LEVEL_CONSENT_PROVIDED": 48,
}
)
@@ -236,11 +242,11 @@ func (x OfflineUserDataJobErrorEnum_OfflineUserDataJobError) String() string {
}
func (OfflineUserDataJobErrorEnum_OfflineUserDataJobError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_enumTypes[0].Descriptor()
}
func (OfflineUserDataJobErrorEnum_OfflineUserDataJobError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_enumTypes[0]
}
func (x OfflineUserDataJobErrorEnum_OfflineUserDataJobError) Number() protoreflect.EnumNumber {
@@ -249,7 +255,7 @@ func (x OfflineUserDataJobErrorEnum_OfflineUserDataJobError) Number() protorefle
// Deprecated: Use OfflineUserDataJobErrorEnum_OfflineUserDataJobError.Descriptor instead.
func (OfflineUserDataJobErrorEnum_OfflineUserDataJobError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible offline user data job errors.
@@ -262,7 +268,7 @@ type OfflineUserDataJobErrorEnum struct {
func (x *OfflineUserDataJobErrorEnum) Reset() {
*x = OfflineUserDataJobErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -275,7 +281,7 @@ func (x *OfflineUserDataJobErrorEnum) String() string {
func (*OfflineUserDataJobErrorEnum) ProtoMessage() {}
func (x *OfflineUserDataJobErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -288,21 +294,21 @@ func (x *OfflineUserDataJobErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use OfflineUserDataJobErrorEnum.ProtoReflect.Descriptor instead.
func (*OfflineUserDataJobErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_offline_user_data_job_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_offline_user_data_job_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_rawDesc = []byte{
0x0a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x64,
0x61, 0x74, 0x61, 0x5f, 0x6a, 0x6f, 0x62, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x73, 0x22, 0xce, 0x0a, 0x0a, 0x1b, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0x22, 0xf4, 0x0a, 0x0a, 0x1b, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65,
0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72,
- 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xae, 0x0a, 0x0a, 0x17, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65,
+ 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xd4, 0x0a, 0x0a, 0x17, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65,
0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x18,
@@ -385,44 +391,47 @@ var file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_rawDe
0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x10, 0x2c, 0x12, 0x2b, 0x0a, 0x27, 0x45, 0x56, 0x45, 0x4e,
0x54, 0x5f, 0x41, 0x54, 0x54, 0x52, 0x49, 0x42, 0x55, 0x54, 0x45, 0x5f, 0x41, 0x4c, 0x4c, 0x5f,
0x46, 0x49, 0x45, 0x4c, 0x44, 0x53, 0x5f, 0x41, 0x52, 0x45, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x49,
- 0x52, 0x45, 0x44, 0x10, 0x2d, 0x42, 0xfc, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1c, 0x4f,
- 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f,
- 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
- 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72,
- 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02,
- 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72,
- 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+ 0x52, 0x45, 0x44, 0x10, 0x2d, 0x12, 0x24, 0x0a, 0x20, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49,
+ 0x4f, 0x4e, 0x5f, 0x4c, 0x45, 0x56, 0x45, 0x4c, 0x5f, 0x43, 0x4f, 0x4e, 0x53, 0x45, 0x4e, 0x54,
+ 0x5f, 0x50, 0x52, 0x4f, 0x56, 0x49, 0x44, 0x45, 0x44, 0x10, 0x30, 0x42, 0xfc, 0x01, 0x0a, 0x23,
+ 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x73, 0x42, 0x1c, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x55, 0x73, 0x65, 0x72,
+ 0x44, 0x61, 0x74, 0x61, 0x4a, 0x6f, 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74,
+ 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
+ 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
+ 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f,
+ 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
+ 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_rawDescData = file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_rawDescData = file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_goTypes = []interface{}{
- (OfflineUserDataJobErrorEnum_OfflineUserDataJobError)(0), // 0: google.ads.googleads.v16.errors.OfflineUserDataJobErrorEnum.OfflineUserDataJobError
- (*OfflineUserDataJobErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.OfflineUserDataJobErrorEnum
+var file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_goTypes = []interface{}{
+ (OfflineUserDataJobErrorEnum_OfflineUserDataJobError)(0), // 0: google.ads.googleads.v17.errors.OfflineUserDataJobErrorEnum.OfflineUserDataJobError
+ (*OfflineUserDataJobErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.OfflineUserDataJobErrorEnum
}
-var file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -430,13 +439,13 @@ var file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_depId
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_init() }
-func file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_init() {
- if File_google_ads_googleads_v16_errors_offline_user_data_job_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_init() }
+func file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_offline_user_data_job_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*OfflineUserDataJobErrorEnum); i {
case 0:
return &v.state
@@ -453,19 +462,19 @@ func file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_init
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_offline_user_data_job_error_proto = out.File
- file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_offline_user_data_job_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_offline_user_data_job_error_proto = out.File
+ file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_offline_user_data_job_error_proto_depIdxs = nil
}
diff --git a/errors/operation_access_denied_error.pb.go b/errors/operation_access_denied_error.pb.go
index 8b2b3bd4..6926a49c 100644
--- a/errors/operation_access_denied_error.pb.go
+++ b/errors/operation_access_denied_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/operation_access_denied_error.proto
+// source: google/ads/googleads/v17/errors/operation_access_denied_error.proto
package errors
@@ -107,11 +107,11 @@ func (x OperationAccessDeniedErrorEnum_OperationAccessDeniedError) String() stri
}
func (OperationAccessDeniedErrorEnum_OperationAccessDeniedError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_enumTypes[0].Descriptor()
}
func (OperationAccessDeniedErrorEnum_OperationAccessDeniedError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_enumTypes[0]
}
func (x OperationAccessDeniedErrorEnum_OperationAccessDeniedError) Number() protoreflect.EnumNumber {
@@ -120,7 +120,7 @@ func (x OperationAccessDeniedErrorEnum_OperationAccessDeniedError) Number() prot
// Deprecated: Use OperationAccessDeniedErrorEnum_OperationAccessDeniedError.Descriptor instead.
func (OperationAccessDeniedErrorEnum_OperationAccessDeniedError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible operation access denied errors.
@@ -133,7 +133,7 @@ type OperationAccessDeniedErrorEnum struct {
func (x *OperationAccessDeniedErrorEnum) Reset() {
*x = OperationAccessDeniedErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -146,7 +146,7 @@ func (x *OperationAccessDeniedErrorEnum) String() string {
func (*OperationAccessDeniedErrorEnum) ProtoMessage() {}
func (x *OperationAccessDeniedErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -159,18 +159,18 @@ func (x *OperationAccessDeniedErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use OperationAccessDeniedErrorEnum.ProtoReflect.Descriptor instead.
func (*OperationAccessDeniedErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_operation_access_denied_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_operation_access_denied_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x63, 0x65,
0x73, 0x73, 0x5f, 0x64, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xeb, 0x03, 0x0a, 0x1e, 0x4f, 0x70, 0x65, 0x72, 0x61,
0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x44, 0x65, 0x6e, 0x69, 0x65, 0x64,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xc8, 0x03, 0x0a, 0x1a, 0x4f, 0x70,
@@ -204,42 +204,42 @@ var file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_raw
0x49, 0x54, 0x54, 0x45, 0x44, 0x5f, 0x46, 0x4f, 0x52, 0x5f, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d,
0x45, 0x52, 0x10, 0x0b, 0x42, 0xff, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1f, 0x4f, 0x70,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1f, 0x4f, 0x70,
0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x44, 0x65, 0x6e,
0x69, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_rawDescData = file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_rawDescData = file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_goTypes = []interface{}{
- (OperationAccessDeniedErrorEnum_OperationAccessDeniedError)(0), // 0: google.ads.googleads.v16.errors.OperationAccessDeniedErrorEnum.OperationAccessDeniedError
- (*OperationAccessDeniedErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.OperationAccessDeniedErrorEnum
+var file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_goTypes = []interface{}{
+ (OperationAccessDeniedErrorEnum_OperationAccessDeniedError)(0), // 0: google.ads.googleads.v17.errors.OperationAccessDeniedErrorEnum.OperationAccessDeniedError
+ (*OperationAccessDeniedErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.OperationAccessDeniedErrorEnum
}
-var file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -247,13 +247,13 @@ var file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_init() }
-func file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_init() {
- if File_google_ads_googleads_v16_errors_operation_access_denied_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_init() }
+func file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_operation_access_denied_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*OperationAccessDeniedErrorEnum); i {
case 0:
return &v.state
@@ -270,19 +270,19 @@ func file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_operation_access_denied_error_proto = out.File
- file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_operation_access_denied_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_operation_access_denied_error_proto = out.File
+ file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_operation_access_denied_error_proto_depIdxs = nil
}
diff --git a/errors/operator_error.pb.go b/errors/operator_error.pb.go
index fc0a09c0..03987946 100644
--- a/errors/operator_error.pb.go
+++ b/errors/operator_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/operator_error.proto
+// source: google/ads/googleads/v17/errors/operator_error.proto
package errors
@@ -71,11 +71,11 @@ func (x OperatorErrorEnum_OperatorError) String() string {
}
func (OperatorErrorEnum_OperatorError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_operator_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_operator_error_proto_enumTypes[0].Descriptor()
}
func (OperatorErrorEnum_OperatorError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_operator_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_operator_error_proto_enumTypes[0]
}
func (x OperatorErrorEnum_OperatorError) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x OperatorErrorEnum_OperatorError) Number() protoreflect.EnumNumber {
// Deprecated: Use OperatorErrorEnum_OperatorError.Descriptor instead.
func (OperatorErrorEnum_OperatorError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_operator_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_operator_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible operator errors.
@@ -97,7 +97,7 @@ type OperatorErrorEnum struct {
func (x *OperatorErrorEnum) Reset() {
*x = OperatorErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_operator_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_operator_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *OperatorErrorEnum) String() string {
func (*OperatorErrorEnum) ProtoMessage() {}
func (x *OperatorErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_operator_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_operator_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,17 +123,17 @@ func (x *OperatorErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use OperatorErrorEnum.ProtoReflect.Descriptor instead.
func (*OperatorErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_operator_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_operator_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_operator_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_operator_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_operator_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_operator_error_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x5e, 0x0a, 0x11, 0x4f, 0x70, 0x65, 0x72, 0x61,
0x74, 0x6f, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x49, 0x0a, 0x0d,
0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a,
@@ -142,42 +142,42 @@ var file_google_ads_googleads_v16_errors_operator_error_proto_rawDesc = []byte{
0x50, 0x45, 0x52, 0x41, 0x54, 0x4f, 0x52, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x53, 0x55, 0x50, 0x50,
0x4f, 0x52, 0x54, 0x45, 0x44, 0x10, 0x02, 0x42, 0xf2, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42,
0x12, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
- 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_operator_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_operator_error_proto_rawDescData = file_google_ads_googleads_v16_errors_operator_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_operator_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_operator_error_proto_rawDescData = file_google_ads_googleads_v17_errors_operator_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_operator_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_operator_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_operator_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_operator_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_operator_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_operator_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_operator_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_operator_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_operator_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_operator_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_operator_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_operator_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_operator_error_proto_goTypes = []interface{}{
- (OperatorErrorEnum_OperatorError)(0), // 0: google.ads.googleads.v16.errors.OperatorErrorEnum.OperatorError
- (*OperatorErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.OperatorErrorEnum
+var file_google_ads_googleads_v17_errors_operator_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_operator_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_operator_error_proto_goTypes = []interface{}{
+ (OperatorErrorEnum_OperatorError)(0), // 0: google.ads.googleads.v17.errors.OperatorErrorEnum.OperatorError
+ (*OperatorErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.OperatorErrorEnum
}
-var file_google_ads_googleads_v16_errors_operator_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_operator_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -185,13 +185,13 @@ var file_google_ads_googleads_v16_errors_operator_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_operator_error_proto_init() }
-func file_google_ads_googleads_v16_errors_operator_error_proto_init() {
- if File_google_ads_googleads_v16_errors_operator_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_operator_error_proto_init() }
+func file_google_ads_googleads_v17_errors_operator_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_operator_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_operator_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_operator_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*OperatorErrorEnum); i {
case 0:
return &v.state
@@ -208,19 +208,19 @@ func file_google_ads_googleads_v16_errors_operator_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_operator_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_operator_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_operator_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_operator_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_operator_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_operator_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_operator_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_operator_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_operator_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_operator_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_operator_error_proto = out.File
- file_google_ads_googleads_v16_errors_operator_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_operator_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_operator_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_operator_error_proto = out.File
+ file_google_ads_googleads_v17_errors_operator_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_operator_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_operator_error_proto_depIdxs = nil
}
diff --git a/errors/partial_failure_error.pb.go b/errors/partial_failure_error.pb.go
index 868a6b54..bab4eb05 100644
--- a/errors/partial_failure_error.pb.go
+++ b/errors/partial_failure_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/partial_failure_error.proto
+// source: google/ads/googleads/v17/errors/partial_failure_error.proto
package errors
@@ -72,11 +72,11 @@ func (x PartialFailureErrorEnum_PartialFailureError) String() string {
}
func (PartialFailureErrorEnum_PartialFailureError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_partial_failure_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_partial_failure_error_proto_enumTypes[0].Descriptor()
}
func (PartialFailureErrorEnum_PartialFailureError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_partial_failure_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_partial_failure_error_proto_enumTypes[0]
}
func (x PartialFailureErrorEnum_PartialFailureError) Number() protoreflect.EnumNumber {
@@ -85,7 +85,7 @@ func (x PartialFailureErrorEnum_PartialFailureError) Number() protoreflect.EnumN
// Deprecated: Use PartialFailureErrorEnum_PartialFailureError.Descriptor instead.
func (PartialFailureErrorEnum_PartialFailureError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_partial_failure_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_partial_failure_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible partial failure errors.
@@ -98,7 +98,7 @@ type PartialFailureErrorEnum struct {
func (x *PartialFailureErrorEnum) Reset() {
*x = PartialFailureErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_partial_failure_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_partial_failure_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -111,7 +111,7 @@ func (x *PartialFailureErrorEnum) String() string {
func (*PartialFailureErrorEnum) ProtoMessage() {}
func (x *PartialFailureErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_partial_failure_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_partial_failure_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -124,18 +124,18 @@ func (x *PartialFailureErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use PartialFailureErrorEnum.ProtoReflect.Descriptor instead.
func (*PartialFailureErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_partial_failure_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_partial_failure_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_partial_failure_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_partial_failure_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_partial_failure_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_partial_failure_error_proto_rawDesc = []byte{
0x0a, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72,
0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x71,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x71,
0x0a, 0x17, 0x50, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x56, 0x0a, 0x13, 0x50, 0x61, 0x72,
0x74, 0x69, 0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72,
@@ -145,42 +145,42 @@ var file_google_ads_googleads_v16_errors_partial_failure_error_proto_rawDesc = [
0x45, 0x5f, 0x4d, 0x4f, 0x44, 0x45, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x49, 0x52, 0x45, 0x44, 0x10,
0x02, 0x42, 0xf8, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x18, 0x50, 0x61, 0x72, 0x74, 0x69,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x18, 0x50, 0x61, 0x72, 0x74, 0x69,
0x61, 0x6c, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
- 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_partial_failure_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_partial_failure_error_proto_rawDescData = file_google_ads_googleads_v16_errors_partial_failure_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_partial_failure_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_partial_failure_error_proto_rawDescData = file_google_ads_googleads_v17_errors_partial_failure_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_partial_failure_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_partial_failure_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_partial_failure_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_partial_failure_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_partial_failure_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_partial_failure_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_partial_failure_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_partial_failure_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_partial_failure_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_partial_failure_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_partial_failure_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_partial_failure_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_partial_failure_error_proto_goTypes = []interface{}{
- (PartialFailureErrorEnum_PartialFailureError)(0), // 0: google.ads.googleads.v16.errors.PartialFailureErrorEnum.PartialFailureError
- (*PartialFailureErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.PartialFailureErrorEnum
+var file_google_ads_googleads_v17_errors_partial_failure_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_partial_failure_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_partial_failure_error_proto_goTypes = []interface{}{
+ (PartialFailureErrorEnum_PartialFailureError)(0), // 0: google.ads.googleads.v17.errors.PartialFailureErrorEnum.PartialFailureError
+ (*PartialFailureErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.PartialFailureErrorEnum
}
-var file_google_ads_googleads_v16_errors_partial_failure_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_partial_failure_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -188,13 +188,13 @@ var file_google_ads_googleads_v16_errors_partial_failure_error_proto_depIdxs = [
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_partial_failure_error_proto_init() }
-func file_google_ads_googleads_v16_errors_partial_failure_error_proto_init() {
- if File_google_ads_googleads_v16_errors_partial_failure_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_partial_failure_error_proto_init() }
+func file_google_ads_googleads_v17_errors_partial_failure_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_partial_failure_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_partial_failure_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_partial_failure_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PartialFailureErrorEnum); i {
case 0:
return &v.state
@@ -211,19 +211,19 @@ func file_google_ads_googleads_v16_errors_partial_failure_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_partial_failure_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_partial_failure_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_partial_failure_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_partial_failure_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_partial_failure_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_partial_failure_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_partial_failure_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_partial_failure_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_partial_failure_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_partial_failure_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_partial_failure_error_proto = out.File
- file_google_ads_googleads_v16_errors_partial_failure_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_partial_failure_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_partial_failure_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_partial_failure_error_proto = out.File
+ file_google_ads_googleads_v17_errors_partial_failure_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_partial_failure_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_partial_failure_error_proto_depIdxs = nil
}
diff --git a/errors/payments_account_error.pb.go b/errors/payments_account_error.pb.go
index d1287bbd..96b605ed 100644
--- a/errors/payments_account_error.pb.go
+++ b/errors/payments_account_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/payments_account_error.proto
+// source: google/ads/googleads/v17/errors/payments_account_error.proto
package errors
@@ -71,11 +71,11 @@ func (x PaymentsAccountErrorEnum_PaymentsAccountError) String() string {
}
func (PaymentsAccountErrorEnum_PaymentsAccountError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_payments_account_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_payments_account_error_proto_enumTypes[0].Descriptor()
}
func (PaymentsAccountErrorEnum_PaymentsAccountError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_payments_account_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_payments_account_error_proto_enumTypes[0]
}
func (x PaymentsAccountErrorEnum_PaymentsAccountError) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x PaymentsAccountErrorEnum_PaymentsAccountError) Number() protoreflect.Enu
// Deprecated: Use PaymentsAccountErrorEnum_PaymentsAccountError.Descriptor instead.
func (PaymentsAccountErrorEnum_PaymentsAccountError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_payments_account_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_payments_account_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible errors in payments account service.
@@ -97,7 +97,7 @@ type PaymentsAccountErrorEnum struct {
func (x *PaymentsAccountErrorEnum) Reset() {
*x = PaymentsAccountErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_payments_account_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_payments_account_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *PaymentsAccountErrorEnum) String() string {
func (*PaymentsAccountErrorEnum) ProtoMessage() {}
func (x *PaymentsAccountErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_payments_account_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_payments_account_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,18 +123,18 @@ func (x *PaymentsAccountErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use PaymentsAccountErrorEnum.ProtoReflect.Descriptor instead.
func (*PaymentsAccountErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_payments_account_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_payments_account_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_payments_account_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_payments_account_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_payments_account_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_payments_account_error_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x70, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75,
0x6e, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22,
0x78, 0x0a, 0x18, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x41, 0x63, 0x63, 0x6f, 0x75,
0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x5c, 0x0a, 0x14, 0x50,
0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x45, 0x72,
@@ -144,42 +144,42 @@ var file_google_ads_googleads_v16_errors_payments_account_error_proto_rawDesc =
0x45, 0x44, 0x5f, 0x46, 0x4f, 0x52, 0x5f, 0x4d, 0x41, 0x4e, 0x41, 0x47, 0x45, 0x52, 0x5f, 0x43,
0x55, 0x53, 0x54, 0x4f, 0x4d, 0x45, 0x52, 0x10, 0x02, 0x42, 0xf9, 0x01, 0x0a, 0x23, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x42, 0x19, 0x50, 0x61, 0x79, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x41, 0x63, 0x63, 0x6f, 0x75,
0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_payments_account_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_payments_account_error_proto_rawDescData = file_google_ads_googleads_v16_errors_payments_account_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_payments_account_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_payments_account_error_proto_rawDescData = file_google_ads_googleads_v17_errors_payments_account_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_payments_account_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_payments_account_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_payments_account_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_payments_account_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_payments_account_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_payments_account_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_payments_account_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_payments_account_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_payments_account_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_payments_account_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_payments_account_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_payments_account_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_payments_account_error_proto_goTypes = []interface{}{
- (PaymentsAccountErrorEnum_PaymentsAccountError)(0), // 0: google.ads.googleads.v16.errors.PaymentsAccountErrorEnum.PaymentsAccountError
- (*PaymentsAccountErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.PaymentsAccountErrorEnum
+var file_google_ads_googleads_v17_errors_payments_account_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_payments_account_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_payments_account_error_proto_goTypes = []interface{}{
+ (PaymentsAccountErrorEnum_PaymentsAccountError)(0), // 0: google.ads.googleads.v17.errors.PaymentsAccountErrorEnum.PaymentsAccountError
+ (*PaymentsAccountErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.PaymentsAccountErrorEnum
}
-var file_google_ads_googleads_v16_errors_payments_account_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_payments_account_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -187,13 +187,13 @@ var file_google_ads_googleads_v16_errors_payments_account_error_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_payments_account_error_proto_init() }
-func file_google_ads_googleads_v16_errors_payments_account_error_proto_init() {
- if File_google_ads_googleads_v16_errors_payments_account_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_payments_account_error_proto_init() }
+func file_google_ads_googleads_v17_errors_payments_account_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_payments_account_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_payments_account_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_payments_account_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PaymentsAccountErrorEnum); i {
case 0:
return &v.state
@@ -210,19 +210,19 @@ func file_google_ads_googleads_v16_errors_payments_account_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_payments_account_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_payments_account_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_payments_account_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_payments_account_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_payments_account_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_payments_account_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_payments_account_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_payments_account_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_payments_account_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_payments_account_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_payments_account_error_proto = out.File
- file_google_ads_googleads_v16_errors_payments_account_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_payments_account_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_payments_account_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_payments_account_error_proto = out.File
+ file_google_ads_googleads_v17_errors_payments_account_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_payments_account_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_payments_account_error_proto_depIdxs = nil
}
diff --git a/errors/policy_finding_error.pb.go b/errors/policy_finding_error.pb.go
index 1130b5e3..841459b4 100644
--- a/errors/policy_finding_error.pb.go
+++ b/errors/policy_finding_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/policy_finding_error.proto
+// source: google/ads/googleads/v17/errors/policy_finding_error.proto
package errors
@@ -76,11 +76,11 @@ func (x PolicyFindingErrorEnum_PolicyFindingError) String() string {
}
func (PolicyFindingErrorEnum_PolicyFindingError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_policy_finding_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_policy_finding_error_proto_enumTypes[0].Descriptor()
}
func (PolicyFindingErrorEnum_PolicyFindingError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_policy_finding_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_policy_finding_error_proto_enumTypes[0]
}
func (x PolicyFindingErrorEnum_PolicyFindingError) Number() protoreflect.EnumNumber {
@@ -89,7 +89,7 @@ func (x PolicyFindingErrorEnum_PolicyFindingError) Number() protoreflect.EnumNum
// Deprecated: Use PolicyFindingErrorEnum_PolicyFindingError.Descriptor instead.
func (PolicyFindingErrorEnum_PolicyFindingError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_policy_finding_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_policy_finding_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible policy finding errors.
@@ -102,7 +102,7 @@ type PolicyFindingErrorEnum struct {
func (x *PolicyFindingErrorEnum) Reset() {
*x = PolicyFindingErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_policy_finding_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_policy_finding_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -115,7 +115,7 @@ func (x *PolicyFindingErrorEnum) String() string {
func (*PolicyFindingErrorEnum) ProtoMessage() {}
func (x *PolicyFindingErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_policy_finding_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_policy_finding_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -128,18 +128,18 @@ func (x *PolicyFindingErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use PolicyFindingErrorEnum.ProtoReflect.Descriptor instead.
func (*PolicyFindingErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_policy_finding_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_policy_finding_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_policy_finding_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_policy_finding_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_policy_finding_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_policy_finding_error_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x66, 0x69, 0x6e, 0x64, 0x69, 0x6e, 0x67,
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x7c, 0x0a,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x7c, 0x0a,
0x16, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x46, 0x69, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x62, 0x0a, 0x12, 0x50, 0x6f, 0x6c, 0x69, 0x63,
0x79, 0x46, 0x69, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a,
@@ -149,42 +149,42 @@ var file_google_ads_googleads_v16_errors_policy_finding_error_proto_rawDesc = []
0x1a, 0x0a, 0x16, 0x50, 0x4f, 0x4c, 0x49, 0x43, 0x59, 0x5f, 0x54, 0x4f, 0x50, 0x49, 0x43, 0x5f,
0x4e, 0x4f, 0x54, 0x5f, 0x46, 0x4f, 0x55, 0x4e, 0x44, 0x10, 0x03, 0x42, 0xf7, 0x01, 0x0a, 0x23,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x42, 0x17, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x46, 0x69, 0x6e, 0x64, 0x69,
0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_policy_finding_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_policy_finding_error_proto_rawDescData = file_google_ads_googleads_v16_errors_policy_finding_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_policy_finding_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_policy_finding_error_proto_rawDescData = file_google_ads_googleads_v17_errors_policy_finding_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_policy_finding_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_policy_finding_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_policy_finding_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_policy_finding_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_policy_finding_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_policy_finding_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_policy_finding_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_policy_finding_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_policy_finding_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_policy_finding_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_policy_finding_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_policy_finding_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_policy_finding_error_proto_goTypes = []interface{}{
- (PolicyFindingErrorEnum_PolicyFindingError)(0), // 0: google.ads.googleads.v16.errors.PolicyFindingErrorEnum.PolicyFindingError
- (*PolicyFindingErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.PolicyFindingErrorEnum
+var file_google_ads_googleads_v17_errors_policy_finding_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_policy_finding_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_policy_finding_error_proto_goTypes = []interface{}{
+ (PolicyFindingErrorEnum_PolicyFindingError)(0), // 0: google.ads.googleads.v17.errors.PolicyFindingErrorEnum.PolicyFindingError
+ (*PolicyFindingErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.PolicyFindingErrorEnum
}
-var file_google_ads_googleads_v16_errors_policy_finding_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_policy_finding_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -192,13 +192,13 @@ var file_google_ads_googleads_v16_errors_policy_finding_error_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_policy_finding_error_proto_init() }
-func file_google_ads_googleads_v16_errors_policy_finding_error_proto_init() {
- if File_google_ads_googleads_v16_errors_policy_finding_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_policy_finding_error_proto_init() }
+func file_google_ads_googleads_v17_errors_policy_finding_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_policy_finding_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_policy_finding_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_policy_finding_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyFindingErrorEnum); i {
case 0:
return &v.state
@@ -215,19 +215,19 @@ func file_google_ads_googleads_v16_errors_policy_finding_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_policy_finding_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_policy_finding_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_policy_finding_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_policy_finding_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_policy_finding_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_policy_finding_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_policy_finding_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_policy_finding_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_policy_finding_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_policy_finding_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_policy_finding_error_proto = out.File
- file_google_ads_googleads_v16_errors_policy_finding_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_policy_finding_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_policy_finding_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_policy_finding_error_proto = out.File
+ file_google_ads_googleads_v17_errors_policy_finding_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_policy_finding_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_policy_finding_error_proto_depIdxs = nil
}
diff --git a/errors/policy_validation_parameter_error.pb.go b/errors/policy_validation_parameter_error.pb.go
index 363bf457..8d6392be 100644
--- a/errors/policy_validation_parameter_error.pb.go
+++ b/errors/policy_validation_parameter_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/policy_validation_parameter_error.proto
+// source: google/ads/googleads/v17/errors/policy_validation_parameter_error.proto
package errors
@@ -80,11 +80,11 @@ func (x PolicyValidationParameterErrorEnum_PolicyValidationParameterError) Strin
}
func (PolicyValidationParameterErrorEnum_PolicyValidationParameterError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_enumTypes[0].Descriptor()
}
func (PolicyValidationParameterErrorEnum_PolicyValidationParameterError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_enumTypes[0]
}
func (x PolicyValidationParameterErrorEnum_PolicyValidationParameterError) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x PolicyValidationParameterErrorEnum_PolicyValidationParameterError) Numbe
// Deprecated: Use PolicyValidationParameterErrorEnum_PolicyValidationParameterError.Descriptor instead.
func (PolicyValidationParameterErrorEnum_PolicyValidationParameterError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible policy validation parameter errors.
@@ -106,7 +106,7 @@ type PolicyValidationParameterErrorEnum struct {
func (x *PolicyValidationParameterErrorEnum) Reset() {
*x = PolicyValidationParameterErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *PolicyValidationParameterErrorEnum) String() string {
func (*PolicyValidationParameterErrorEnum) ProtoMessage() {}
func (x *PolicyValidationParameterErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,19 +132,19 @@ func (x *PolicyValidationParameterErrorEnum) ProtoReflect() protoreflect.Message
// Deprecated: Use PolicyValidationParameterErrorEnum.ProtoReflect.Descriptor instead.
func (*PolicyValidationParameterErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_rawDesc = []byte{
0x0a, 0x47, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74,
0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x5f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa2, 0x02, 0x0a, 0x22, 0x50,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa2, 0x02, 0x0a, 0x22, 0x50,
0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50,
0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0xfb, 0x01, 0x0a, 0x1e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x61, 0x6c, 0x69,
@@ -164,43 +164,43 @@ var file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto
0x5f, 0x45, 0x58, 0x45, 0x4d, 0x50, 0x54, 0x5f, 0x50, 0x4f, 0x4c, 0x49, 0x43, 0x59, 0x5f, 0x56,
0x49, 0x4f, 0x4c, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x4b, 0x45, 0x59, 0x53, 0x10, 0x04, 0x42,
0x83, 0x02, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x23, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56,
0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74,
0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_rawDescData = file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_rawDescData = file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_goTypes = []interface{}{
- (PolicyValidationParameterErrorEnum_PolicyValidationParameterError)(0), // 0: google.ads.googleads.v16.errors.PolicyValidationParameterErrorEnum.PolicyValidationParameterError
- (*PolicyValidationParameterErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.PolicyValidationParameterErrorEnum
+var file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_goTypes = []interface{}{
+ (PolicyValidationParameterErrorEnum_PolicyValidationParameterError)(0), // 0: google.ads.googleads.v17.errors.PolicyValidationParameterErrorEnum.PolicyValidationParameterError
+ (*PolicyValidationParameterErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.PolicyValidationParameterErrorEnum
}
-var file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -208,13 +208,13 @@ var file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_init() }
-func file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_init() {
- if File_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_init() }
+func file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyValidationParameterErrorEnum); i {
case 0:
return &v.state
@@ -231,19 +231,19 @@ func file_google_ads_googleads_v16_errors_policy_validation_parameter_error_prot
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto = out.File
- file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_policy_validation_parameter_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto = out.File
+ file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_policy_validation_parameter_error_proto_depIdxs = nil
}
diff --git a/errors/policy_violation_error.pb.go b/errors/policy_violation_error.pb.go
index 8264fc06..53300c07 100644
--- a/errors/policy_violation_error.pb.go
+++ b/errors/policy_violation_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/policy_violation_error.proto
+// source: google/ads/googleads/v17/errors/policy_violation_error.proto
package errors
@@ -71,11 +71,11 @@ func (x PolicyViolationErrorEnum_PolicyViolationError) String() string {
}
func (PolicyViolationErrorEnum_PolicyViolationError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_policy_violation_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_policy_violation_error_proto_enumTypes[0].Descriptor()
}
func (PolicyViolationErrorEnum_PolicyViolationError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_policy_violation_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_policy_violation_error_proto_enumTypes[0]
}
func (x PolicyViolationErrorEnum_PolicyViolationError) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x PolicyViolationErrorEnum_PolicyViolationError) Number() protoreflect.Enu
// Deprecated: Use PolicyViolationErrorEnum_PolicyViolationError.Descriptor instead.
func (PolicyViolationErrorEnum_PolicyViolationError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_policy_violation_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_policy_violation_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible policy violation errors.
@@ -97,7 +97,7 @@ type PolicyViolationErrorEnum struct {
func (x *PolicyViolationErrorEnum) Reset() {
*x = PolicyViolationErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_policy_violation_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_policy_violation_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *PolicyViolationErrorEnum) String() string {
func (*PolicyViolationErrorEnum) ProtoMessage() {}
func (x *PolicyViolationErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_policy_violation_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_policy_violation_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,18 +123,18 @@ func (x *PolicyViolationErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use PolicyViolationErrorEnum.ProtoReflect.Descriptor instead.
func (*PolicyViolationErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_policy_violation_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_policy_violation_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_policy_violation_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_policy_violation_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_policy_violation_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_policy_violation_error_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x76, 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22,
0x62, 0x0a, 0x18, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x46, 0x0a, 0x14, 0x50,
0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72,
@@ -143,42 +143,42 @@ var file_google_ads_googleads_v16_errors_policy_violation_error_proto_rawDesc =
0x01, 0x12, 0x10, 0x0a, 0x0c, 0x50, 0x4f, 0x4c, 0x49, 0x43, 0x59, 0x5f, 0x45, 0x52, 0x52, 0x4f,
0x52, 0x10, 0x02, 0x42, 0xf9, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x19, 0x50, 0x6f, 0x6c,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x19, 0x50, 0x6f, 0x6c,
0x69, 0x63, 0x79, 0x56, 0x69, 0x6f, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2,
+ 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_policy_violation_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_policy_violation_error_proto_rawDescData = file_google_ads_googleads_v16_errors_policy_violation_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_policy_violation_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_policy_violation_error_proto_rawDescData = file_google_ads_googleads_v17_errors_policy_violation_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_policy_violation_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_policy_violation_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_policy_violation_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_policy_violation_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_policy_violation_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_policy_violation_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_policy_violation_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_policy_violation_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_policy_violation_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_policy_violation_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_policy_violation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_policy_violation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_policy_violation_error_proto_goTypes = []interface{}{
- (PolicyViolationErrorEnum_PolicyViolationError)(0), // 0: google.ads.googleads.v16.errors.PolicyViolationErrorEnum.PolicyViolationError
- (*PolicyViolationErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.PolicyViolationErrorEnum
+var file_google_ads_googleads_v17_errors_policy_violation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_policy_violation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_policy_violation_error_proto_goTypes = []interface{}{
+ (PolicyViolationErrorEnum_PolicyViolationError)(0), // 0: google.ads.googleads.v17.errors.PolicyViolationErrorEnum.PolicyViolationError
+ (*PolicyViolationErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.PolicyViolationErrorEnum
}
-var file_google_ads_googleads_v16_errors_policy_violation_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_policy_violation_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -186,13 +186,13 @@ var file_google_ads_googleads_v16_errors_policy_violation_error_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_policy_violation_error_proto_init() }
-func file_google_ads_googleads_v16_errors_policy_violation_error_proto_init() {
- if File_google_ads_googleads_v16_errors_policy_violation_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_policy_violation_error_proto_init() }
+func file_google_ads_googleads_v17_errors_policy_violation_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_policy_violation_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_policy_violation_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_policy_violation_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*PolicyViolationErrorEnum); i {
case 0:
return &v.state
@@ -209,19 +209,19 @@ func file_google_ads_googleads_v16_errors_policy_violation_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_policy_violation_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_policy_violation_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_policy_violation_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_policy_violation_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_policy_violation_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_policy_violation_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_policy_violation_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_policy_violation_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_policy_violation_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_policy_violation_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_policy_violation_error_proto = out.File
- file_google_ads_googleads_v16_errors_policy_violation_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_policy_violation_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_policy_violation_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_policy_violation_error_proto = out.File
+ file_google_ads_googleads_v17_errors_policy_violation_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_policy_violation_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_policy_violation_error_proto_depIdxs = nil
}
diff --git a/errors/product_link_error.pb.go b/errors/product_link_error.pb.go
index 3c935541..3bba1d63 100644
--- a/errors/product_link_error.pb.go
+++ b/errors/product_link_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/product_link_error.proto
+// source: google/ads/googleads/v17/errors/product_link_error.proto
package errors
@@ -84,11 +84,11 @@ func (x ProductLinkErrorEnum_ProductLinkError) String() string {
}
func (ProductLinkErrorEnum_ProductLinkError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_product_link_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_product_link_error_proto_enumTypes[0].Descriptor()
}
func (ProductLinkErrorEnum_ProductLinkError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_product_link_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_product_link_error_proto_enumTypes[0]
}
func (x ProductLinkErrorEnum_ProductLinkError) Number() protoreflect.EnumNumber {
@@ -97,7 +97,7 @@ func (x ProductLinkErrorEnum_ProductLinkError) Number() protoreflect.EnumNumber
// Deprecated: Use ProductLinkErrorEnum_ProductLinkError.Descriptor instead.
func (ProductLinkErrorEnum_ProductLinkError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_product_link_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_product_link_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible ProductLink errors.
@@ -110,7 +110,7 @@ type ProductLinkErrorEnum struct {
func (x *ProductLinkErrorEnum) Reset() {
*x = ProductLinkErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_product_link_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_product_link_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -123,7 +123,7 @@ func (x *ProductLinkErrorEnum) String() string {
func (*ProductLinkErrorEnum) ProtoMessage() {}
func (x *ProductLinkErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_product_link_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_product_link_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -136,18 +136,18 @@ func (x *ProductLinkErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductLinkErrorEnum.ProtoReflect.Descriptor instead.
func (*ProductLinkErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_product_link_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_product_link_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_product_link_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_product_link_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_product_link_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_product_link_error_proto_rawDesc = []byte{
0x0a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa4, 0x01, 0x0a, 0x14,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa4, 0x01, 0x0a, 0x14,
0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x8b, 0x01, 0x0a, 0x10, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53,
@@ -160,42 +160,42 @@ var file_google_ads_googleads_v16_errors_product_link_error_proto_rawDesc = []by
0x04, 0x12, 0x0f, 0x0a, 0x0b, 0x4c, 0x49, 0x4e, 0x4b, 0x5f, 0x45, 0x58, 0x49, 0x53, 0x54, 0x53,
0x10, 0x05, 0x42, 0xf5, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, 0x50, 0x72, 0x6f, 0x64,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, 0x50, 0x72, 0x6f, 0x64,
0x75, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74,
0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41,
0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56,
- 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+ 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_product_link_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_product_link_error_proto_rawDescData = file_google_ads_googleads_v16_errors_product_link_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_product_link_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_product_link_error_proto_rawDescData = file_google_ads_googleads_v17_errors_product_link_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_product_link_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_product_link_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_product_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_product_link_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_product_link_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_product_link_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_product_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_product_link_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_product_link_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_product_link_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_product_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_product_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_product_link_error_proto_goTypes = []interface{}{
- (ProductLinkErrorEnum_ProductLinkError)(0), // 0: google.ads.googleads.v16.errors.ProductLinkErrorEnum.ProductLinkError
- (*ProductLinkErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ProductLinkErrorEnum
+var file_google_ads_googleads_v17_errors_product_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_product_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_product_link_error_proto_goTypes = []interface{}{
+ (ProductLinkErrorEnum_ProductLinkError)(0), // 0: google.ads.googleads.v17.errors.ProductLinkErrorEnum.ProductLinkError
+ (*ProductLinkErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ProductLinkErrorEnum
}
-var file_google_ads_googleads_v16_errors_product_link_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_product_link_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -203,13 +203,13 @@ var file_google_ads_googleads_v16_errors_product_link_error_proto_depIdxs = []in
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_product_link_error_proto_init() }
-func file_google_ads_googleads_v16_errors_product_link_error_proto_init() {
- if File_google_ads_googleads_v16_errors_product_link_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_product_link_error_proto_init() }
+func file_google_ads_googleads_v17_errors_product_link_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_product_link_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_product_link_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_product_link_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductLinkErrorEnum); i {
case 0:
return &v.state
@@ -226,19 +226,19 @@ func file_google_ads_googleads_v16_errors_product_link_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_product_link_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_product_link_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_product_link_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_product_link_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_product_link_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_product_link_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_product_link_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_product_link_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_product_link_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_product_link_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_product_link_error_proto = out.File
- file_google_ads_googleads_v16_errors_product_link_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_product_link_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_product_link_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_product_link_error_proto = out.File
+ file_google_ads_googleads_v17_errors_product_link_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_product_link_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_product_link_error_proto_depIdxs = nil
}
diff --git a/errors/product_link_invitation_error.pb.go b/errors/product_link_invitation_error.pb.go
index c6cfd2cb..ef52fe80 100644
--- a/errors/product_link_invitation_error.pb.go
+++ b/errors/product_link_invitation_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/product_link_invitation_error.proto
+// source: google/ads/googleads/v17/errors/product_link_invitation_error.proto
package errors
@@ -85,11 +85,11 @@ func (x ProductLinkInvitationErrorEnum_ProductLinkInvitationError) String() stri
}
func (ProductLinkInvitationErrorEnum_ProductLinkInvitationError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_enumTypes[0].Descriptor()
}
func (ProductLinkInvitationErrorEnum_ProductLinkInvitationError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_enumTypes[0]
}
func (x ProductLinkInvitationErrorEnum_ProductLinkInvitationError) Number() protoreflect.EnumNumber {
@@ -98,7 +98,7 @@ func (x ProductLinkInvitationErrorEnum_ProductLinkInvitationError) Number() prot
// Deprecated: Use ProductLinkInvitationErrorEnum_ProductLinkInvitationError.Descriptor instead.
func (ProductLinkInvitationErrorEnum_ProductLinkInvitationError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible product link invitation errors.
@@ -111,7 +111,7 @@ type ProductLinkInvitationErrorEnum struct {
func (x *ProductLinkInvitationErrorEnum) Reset() {
*x = ProductLinkInvitationErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -124,7 +124,7 @@ func (x *ProductLinkInvitationErrorEnum) String() string {
func (*ProductLinkInvitationErrorEnum) ProtoMessage() {}
func (x *ProductLinkInvitationErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -137,18 +137,18 @@ func (x *ProductLinkInvitationErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ProductLinkInvitationErrorEnum.ProtoReflect.Descriptor instead.
func (*ProductLinkInvitationErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_product_link_invitation_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_product_link_invitation_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_rawDesc = []byte{
0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x69,
0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xd5, 0x01, 0x0a, 0x1e, 0x50, 0x72, 0x6f, 0x64, 0x75,
0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb2, 0x01, 0x0a, 0x1a, 0x50, 0x72,
@@ -164,43 +164,43 @@ var file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_raw
0x52, 0x4d, 0x49, 0x54, 0x54, 0x45, 0x44, 0x5f, 0x54, 0x4f, 0x5f, 0x43, 0x52, 0x45, 0x41, 0x54,
0x45, 0x5f, 0x49, 0x4e, 0x56, 0x49, 0x54, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x05, 0x42, 0xff,
0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1f, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4c,
0x69, 0x6e, 0x6b, 0x49, 0x6e, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c,
- 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_rawDescData = file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_rawDescData = file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_goTypes = []interface{}{
- (ProductLinkInvitationErrorEnum_ProductLinkInvitationError)(0), // 0: google.ads.googleads.v16.errors.ProductLinkInvitationErrorEnum.ProductLinkInvitationError
- (*ProductLinkInvitationErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ProductLinkInvitationErrorEnum
+var file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_goTypes = []interface{}{
+ (ProductLinkInvitationErrorEnum_ProductLinkInvitationError)(0), // 0: google.ads.googleads.v17.errors.ProductLinkInvitationErrorEnum.ProductLinkInvitationError
+ (*ProductLinkInvitationErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ProductLinkInvitationErrorEnum
}
-var file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -208,13 +208,13 @@ var file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_dep
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_init() }
-func file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_init() {
- if File_google_ads_googleads_v16_errors_product_link_invitation_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_init() }
+func file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_product_link_invitation_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ProductLinkInvitationErrorEnum); i {
case 0:
return &v.state
@@ -231,19 +231,19 @@ func file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_in
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_product_link_invitation_error_proto = out.File
- file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_product_link_invitation_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_product_link_invitation_error_proto = out.File
+ file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_product_link_invitation_error_proto_depIdxs = nil
}
diff --git a/errors/query_error.pb.go b/errors/query_error.pb.go
index 403c9df6..91228888 100644
--- a/errors/query_error.pb.go
+++ b/errors/query_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/query_error.proto
+// source: google/ads/googleads/v17/errors/query_error.proto
package errors
@@ -305,11 +305,11 @@ func (x QueryErrorEnum_QueryError) String() string {
}
func (QueryErrorEnum_QueryError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_query_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_query_error_proto_enumTypes[0].Descriptor()
}
func (QueryErrorEnum_QueryError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_query_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_query_error_proto_enumTypes[0]
}
func (x QueryErrorEnum_QueryError) Number() protoreflect.EnumNumber {
@@ -318,7 +318,7 @@ func (x QueryErrorEnum_QueryError) Number() protoreflect.EnumNumber {
// Deprecated: Use QueryErrorEnum_QueryError.Descriptor instead.
func (QueryErrorEnum_QueryError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_query_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_query_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible query errors.
@@ -331,7 +331,7 @@ type QueryErrorEnum struct {
func (x *QueryErrorEnum) Reset() {
*x = QueryErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_query_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_query_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -344,7 +344,7 @@ func (x *QueryErrorEnum) String() string {
func (*QueryErrorEnum) ProtoMessage() {}
func (x *QueryErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_query_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_query_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -357,17 +357,17 @@ func (x *QueryErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use QueryErrorEnum.ProtoReflect.Descriptor instead.
func (*QueryErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_query_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_query_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_query_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_query_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_query_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_query_error_proto_rawDesc = []byte{
0x0a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x22, 0x93, 0x0e, 0x0a, 0x0e, 0x51, 0x75, 0x65, 0x72, 0x79, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x80, 0x0e, 0x0a, 0x0a, 0x51, 0x75, 0x65, 0x72,
0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
@@ -483,42 +483,42 @@ var file_google_ads_googleads_v16_errors_query_error_proto_rawDesc = []byte{
0x4c, 0x54, 0x45, 0x52, 0x5f, 0x48, 0x41, 0x53, 0x5f, 0x54, 0x4f, 0x4f, 0x5f, 0x4d, 0x41, 0x4e,
0x59, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x53, 0x10, 0x3f, 0x42, 0xef, 0x01, 0x0a, 0x23, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x42, 0x0f, 0x51, 0x75, 0x65, 0x72, 0x79, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47,
0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
- 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_query_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_query_error_proto_rawDescData = file_google_ads_googleads_v16_errors_query_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_query_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_query_error_proto_rawDescData = file_google_ads_googleads_v17_errors_query_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_query_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_query_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_query_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_query_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_query_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_query_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_query_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_query_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_query_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_query_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_query_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_query_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_query_error_proto_goTypes = []interface{}{
- (QueryErrorEnum_QueryError)(0), // 0: google.ads.googleads.v16.errors.QueryErrorEnum.QueryError
- (*QueryErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.QueryErrorEnum
+var file_google_ads_googleads_v17_errors_query_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_query_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_query_error_proto_goTypes = []interface{}{
+ (QueryErrorEnum_QueryError)(0), // 0: google.ads.googleads.v17.errors.QueryErrorEnum.QueryError
+ (*QueryErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.QueryErrorEnum
}
-var file_google_ads_googleads_v16_errors_query_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_query_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -526,13 +526,13 @@ var file_google_ads_googleads_v16_errors_query_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_query_error_proto_init() }
-func file_google_ads_googleads_v16_errors_query_error_proto_init() {
- if File_google_ads_googleads_v16_errors_query_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_query_error_proto_init() }
+func file_google_ads_googleads_v17_errors_query_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_query_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_query_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_query_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*QueryErrorEnum); i {
case 0:
return &v.state
@@ -549,19 +549,19 @@ func file_google_ads_googleads_v16_errors_query_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_query_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_query_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_query_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_query_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_query_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_query_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_query_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_query_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_query_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_query_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_query_error_proto = out.File
- file_google_ads_googleads_v16_errors_query_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_query_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_query_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_query_error_proto = out.File
+ file_google_ads_googleads_v17_errors_query_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_query_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_query_error_proto_depIdxs = nil
}
diff --git a/errors/quota_error.pb.go b/errors/quota_error.pb.go
index 508c6334..032b991e 100644
--- a/errors/quota_error.pb.go
+++ b/errors/quota_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/quota_error.proto
+// source: google/ads/googleads/v17/errors/quota_error.proto
package errors
@@ -79,11 +79,11 @@ func (x QuotaErrorEnum_QuotaError) String() string {
}
func (QuotaErrorEnum_QuotaError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_quota_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_quota_error_proto_enumTypes[0].Descriptor()
}
func (QuotaErrorEnum_QuotaError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_quota_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_quota_error_proto_enumTypes[0]
}
func (x QuotaErrorEnum_QuotaError) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x QuotaErrorEnum_QuotaError) Number() protoreflect.EnumNumber {
// Deprecated: Use QuotaErrorEnum_QuotaError.Descriptor instead.
func (QuotaErrorEnum_QuotaError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_quota_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_quota_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible quota errors.
@@ -105,7 +105,7 @@ type QuotaErrorEnum struct {
func (x *QuotaErrorEnum) Reset() {
*x = QuotaErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_quota_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_quota_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *QuotaErrorEnum) String() string {
func (*QuotaErrorEnum) ProtoMessage() {}
func (x *QuotaErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_quota_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_quota_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,17 +131,17 @@ func (x *QuotaErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use QuotaErrorEnum.ProtoReflect.Descriptor instead.
func (*QuotaErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_quota_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_quota_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_quota_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_quota_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_quota_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_quota_error_proto_rawDesc = []byte{
0x0a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x71, 0x75, 0x6f, 0x74, 0x61, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x22, 0x8f, 0x01, 0x0a, 0x0e, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x7d, 0x0a, 0x0a, 0x51, 0x75, 0x6f, 0x74, 0x61,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49,
@@ -153,41 +153,41 @@ var file_google_ads_googleads_v16_errors_quota_error_proto_rawDesc = []byte{
0x45, 0x4d, 0x50, 0x4f, 0x52, 0x41, 0x52, 0x49, 0x4c, 0x59, 0x5f, 0x45, 0x58, 0x48, 0x41, 0x55,
0x53, 0x54, 0x45, 0x44, 0x10, 0x04, 0x42, 0xef, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0f,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0f,
0x51, 0x75, 0x6f, 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_quota_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_quota_error_proto_rawDescData = file_google_ads_googleads_v16_errors_quota_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_quota_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_quota_error_proto_rawDescData = file_google_ads_googleads_v17_errors_quota_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_quota_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_quota_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_quota_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_quota_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_quota_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_quota_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_quota_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_quota_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_quota_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_quota_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_quota_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_quota_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_quota_error_proto_goTypes = []interface{}{
- (QuotaErrorEnum_QuotaError)(0), // 0: google.ads.googleads.v16.errors.QuotaErrorEnum.QuotaError
- (*QuotaErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.QuotaErrorEnum
+var file_google_ads_googleads_v17_errors_quota_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_quota_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_quota_error_proto_goTypes = []interface{}{
+ (QuotaErrorEnum_QuotaError)(0), // 0: google.ads.googleads.v17.errors.QuotaErrorEnum.QuotaError
+ (*QuotaErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.QuotaErrorEnum
}
-var file_google_ads_googleads_v16_errors_quota_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_quota_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -195,13 +195,13 @@ var file_google_ads_googleads_v16_errors_quota_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_quota_error_proto_init() }
-func file_google_ads_googleads_v16_errors_quota_error_proto_init() {
- if File_google_ads_googleads_v16_errors_quota_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_quota_error_proto_init() }
+func file_google_ads_googleads_v17_errors_quota_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_quota_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_quota_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_quota_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*QuotaErrorEnum); i {
case 0:
return &v.state
@@ -218,19 +218,19 @@ func file_google_ads_googleads_v16_errors_quota_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_quota_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_quota_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_quota_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_quota_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_quota_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_quota_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_quota_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_quota_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_quota_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_quota_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_quota_error_proto = out.File
- file_google_ads_googleads_v16_errors_quota_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_quota_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_quota_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_quota_error_proto = out.File
+ file_google_ads_googleads_v17_errors_quota_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_quota_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_quota_error_proto_depIdxs = nil
}
diff --git a/errors/range_error.pb.go b/errors/range_error.pb.go
index c5b59bd0..b9b5b20b 100644
--- a/errors/range_error.pb.go
+++ b/errors/range_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/range_error.proto
+// source: google/ads/googleads/v17/errors/range_error.proto
package errors
@@ -75,11 +75,11 @@ func (x RangeErrorEnum_RangeError) String() string {
}
func (RangeErrorEnum_RangeError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_range_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_range_error_proto_enumTypes[0].Descriptor()
}
func (RangeErrorEnum_RangeError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_range_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_range_error_proto_enumTypes[0]
}
func (x RangeErrorEnum_RangeError) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x RangeErrorEnum_RangeError) Number() protoreflect.EnumNumber {
// Deprecated: Use RangeErrorEnum_RangeError.Descriptor instead.
func (RangeErrorEnum_RangeError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_range_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_range_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible range errors.
@@ -101,7 +101,7 @@ type RangeErrorEnum struct {
func (x *RangeErrorEnum) Reset() {
*x = RangeErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_range_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_range_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *RangeErrorEnum) String() string {
func (*RangeErrorEnum) ProtoMessage() {}
func (x *RangeErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_range_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_range_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,17 +127,17 @@ func (x *RangeErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use RangeErrorEnum.ProtoReflect.Descriptor instead.
func (*RangeErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_range_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_range_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_range_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_range_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_range_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_range_error_proto_rawDesc = []byte{
0x0a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x22, 0x57, 0x0a, 0x0e, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x45, 0x0a, 0x0a, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46,
@@ -145,42 +145,42 @@ var file_google_ads_googleads_v16_errors_range_error_proto_rawDesc = []byte{
0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x54, 0x4f, 0x4f, 0x5f, 0x4c, 0x4f, 0x57, 0x10, 0x02, 0x12,
0x0c, 0x0a, 0x08, 0x54, 0x4f, 0x4f, 0x5f, 0x48, 0x49, 0x47, 0x48, 0x10, 0x03, 0x42, 0xef, 0x01,
0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0f, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2,
+ 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_range_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_range_error_proto_rawDescData = file_google_ads_googleads_v16_errors_range_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_range_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_range_error_proto_rawDescData = file_google_ads_googleads_v17_errors_range_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_range_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_range_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_range_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_range_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_range_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_range_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_range_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_range_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_range_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_range_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_range_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_range_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_range_error_proto_goTypes = []interface{}{
- (RangeErrorEnum_RangeError)(0), // 0: google.ads.googleads.v16.errors.RangeErrorEnum.RangeError
- (*RangeErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.RangeErrorEnum
+var file_google_ads_googleads_v17_errors_range_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_range_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_range_error_proto_goTypes = []interface{}{
+ (RangeErrorEnum_RangeError)(0), // 0: google.ads.googleads.v17.errors.RangeErrorEnum.RangeError
+ (*RangeErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.RangeErrorEnum
}
-var file_google_ads_googleads_v16_errors_range_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_range_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -188,13 +188,13 @@ var file_google_ads_googleads_v16_errors_range_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_range_error_proto_init() }
-func file_google_ads_googleads_v16_errors_range_error_proto_init() {
- if File_google_ads_googleads_v16_errors_range_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_range_error_proto_init() }
+func file_google_ads_googleads_v17_errors_range_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_range_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_range_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_range_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RangeErrorEnum); i {
case 0:
return &v.state
@@ -211,19 +211,19 @@ func file_google_ads_googleads_v16_errors_range_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_range_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_range_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_range_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_range_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_range_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_range_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_range_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_range_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_range_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_range_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_range_error_proto = out.File
- file_google_ads_googleads_v16_errors_range_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_range_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_range_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_range_error_proto = out.File
+ file_google_ads_googleads_v17_errors_range_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_range_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_range_error_proto_depIdxs = nil
}
diff --git a/errors/reach_plan_error.pb.go b/errors/reach_plan_error.pb.go
index aa367845..09084394 100644
--- a/errors/reach_plan_error.pb.go
+++ b/errors/reach_plan_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/reach_plan_error.proto
+// source: google/ads/googleads/v17/errors/reach_plan_error.proto
package errors
@@ -79,11 +79,11 @@ func (x ReachPlanErrorEnum_ReachPlanError) String() string {
}
func (ReachPlanErrorEnum_ReachPlanError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_reach_plan_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_reach_plan_error_proto_enumTypes[0].Descriptor()
}
func (ReachPlanErrorEnum_ReachPlanError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_reach_plan_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_reach_plan_error_proto_enumTypes[0]
}
func (x ReachPlanErrorEnum_ReachPlanError) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x ReachPlanErrorEnum_ReachPlanError) Number() protoreflect.EnumNumber {
// Deprecated: Use ReachPlanErrorEnum_ReachPlanError.Descriptor instead.
func (ReachPlanErrorEnum_ReachPlanError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_reach_plan_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_reach_plan_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible errors returned from
@@ -106,7 +106,7 @@ type ReachPlanErrorEnum struct {
func (x *ReachPlanErrorEnum) Reset() {
*x = ReachPlanErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_reach_plan_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_reach_plan_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *ReachPlanErrorEnum) String() string {
func (*ReachPlanErrorEnum) ProtoMessage() {}
func (x *ReachPlanErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_reach_plan_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_reach_plan_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,18 +132,18 @@ func (x *ReachPlanErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ReachPlanErrorEnum.ProtoReflect.Descriptor instead.
func (*ReachPlanErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_reach_plan_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_reach_plan_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_reach_plan_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_reach_plan_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_reach_plan_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_reach_plan_error_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xbd, 0x01, 0x0a, 0x12, 0x52, 0x65,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xbd, 0x01, 0x0a, 0x12, 0x52, 0x65,
0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0xa6, 0x01, 0x0a, 0x0e, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
@@ -157,42 +157,42 @@ var file_google_ads_googleads_v16_errors_reach_plan_error_proto_rawDesc = []byte
0x42, 0x4c, 0x45, 0x5f, 0x41, 0x43, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x5f, 0x4e, 0x4f, 0x54, 0x5f,
0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 0x04, 0x42, 0xf3, 0x01, 0x0a, 0x23, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x42, 0x13, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2,
+ 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_reach_plan_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_reach_plan_error_proto_rawDescData = file_google_ads_googleads_v16_errors_reach_plan_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_reach_plan_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_reach_plan_error_proto_rawDescData = file_google_ads_googleads_v17_errors_reach_plan_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_reach_plan_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_reach_plan_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_reach_plan_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_reach_plan_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_reach_plan_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_reach_plan_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_reach_plan_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_reach_plan_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_reach_plan_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_reach_plan_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_reach_plan_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_reach_plan_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_reach_plan_error_proto_goTypes = []interface{}{
- (ReachPlanErrorEnum_ReachPlanError)(0), // 0: google.ads.googleads.v16.errors.ReachPlanErrorEnum.ReachPlanError
- (*ReachPlanErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ReachPlanErrorEnum
+var file_google_ads_googleads_v17_errors_reach_plan_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_reach_plan_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_reach_plan_error_proto_goTypes = []interface{}{
+ (ReachPlanErrorEnum_ReachPlanError)(0), // 0: google.ads.googleads.v17.errors.ReachPlanErrorEnum.ReachPlanError
+ (*ReachPlanErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ReachPlanErrorEnum
}
-var file_google_ads_googleads_v16_errors_reach_plan_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_reach_plan_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -200,13 +200,13 @@ var file_google_ads_googleads_v16_errors_reach_plan_error_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_reach_plan_error_proto_init() }
-func file_google_ads_googleads_v16_errors_reach_plan_error_proto_init() {
- if File_google_ads_googleads_v16_errors_reach_plan_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_reach_plan_error_proto_init() }
+func file_google_ads_googleads_v17_errors_reach_plan_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_reach_plan_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_reach_plan_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_reach_plan_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ReachPlanErrorEnum); i {
case 0:
return &v.state
@@ -223,19 +223,19 @@ func file_google_ads_googleads_v16_errors_reach_plan_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_reach_plan_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_reach_plan_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_reach_plan_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_reach_plan_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_reach_plan_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_reach_plan_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_reach_plan_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_reach_plan_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_reach_plan_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_reach_plan_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_reach_plan_error_proto = out.File
- file_google_ads_googleads_v16_errors_reach_plan_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_reach_plan_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_reach_plan_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_reach_plan_error_proto = out.File
+ file_google_ads_googleads_v17_errors_reach_plan_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_reach_plan_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_reach_plan_error_proto_depIdxs = nil
}
diff --git a/errors/recommendation_error.pb.go b/errors/recommendation_error.pb.go
index f5221d3f..7d3a6ac2 100644
--- a/errors/recommendation_error.pb.go
+++ b/errors/recommendation_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/recommendation_error.proto
+// source: google/ads/googleads/v17/errors/recommendation_error.proto
package errors
@@ -148,11 +148,11 @@ func (x RecommendationErrorEnum_RecommendationError) String() string {
}
func (RecommendationErrorEnum_RecommendationError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_recommendation_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_recommendation_error_proto_enumTypes[0].Descriptor()
}
func (RecommendationErrorEnum_RecommendationError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_recommendation_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_recommendation_error_proto_enumTypes[0]
}
func (x RecommendationErrorEnum_RecommendationError) Number() protoreflect.EnumNumber {
@@ -161,7 +161,7 @@ func (x RecommendationErrorEnum_RecommendationError) Number() protoreflect.EnumN
// Deprecated: Use RecommendationErrorEnum_RecommendationError.Descriptor instead.
func (RecommendationErrorEnum_RecommendationError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_recommendation_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_recommendation_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible errors from applying a recommendation.
@@ -174,7 +174,7 @@ type RecommendationErrorEnum struct {
func (x *RecommendationErrorEnum) Reset() {
*x = RecommendationErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_recommendation_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_recommendation_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -187,7 +187,7 @@ func (x *RecommendationErrorEnum) String() string {
func (*RecommendationErrorEnum) ProtoMessage() {}
func (x *RecommendationErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_recommendation_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_recommendation_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -200,18 +200,18 @@ func (x *RecommendationErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use RecommendationErrorEnum.ProtoReflect.Descriptor instead.
func (*RecommendationErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_recommendation_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_recommendation_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_recommendation_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_recommendation_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_recommendation_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_recommendation_error_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xae, 0x05,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xae, 0x05,
0x0a, 0x17, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x92, 0x05, 0x0a, 0x13, 0x52, 0x65,
0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f,
@@ -256,43 +256,43 @@ var file_google_ads_googleads_v16_errors_recommendation_error_proto_rawDesc = []
0x44, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x53, 0x5f, 0x43, 0x41, 0x4e,
0x4e, 0x4f, 0x54, 0x5f, 0x42, 0x45, 0x5f, 0x45, 0x4d, 0x50, 0x54, 0x59, 0x10, 0x15, 0x42, 0xf8,
0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x18, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e,
0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_errors_recommendation_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_recommendation_error_proto_rawDescData = file_google_ads_googleads_v16_errors_recommendation_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_recommendation_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_recommendation_error_proto_rawDescData = file_google_ads_googleads_v17_errors_recommendation_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_recommendation_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_recommendation_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_recommendation_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_recommendation_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_recommendation_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_recommendation_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_recommendation_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_recommendation_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_recommendation_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_recommendation_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_recommendation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_recommendation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_recommendation_error_proto_goTypes = []interface{}{
- (RecommendationErrorEnum_RecommendationError)(0), // 0: google.ads.googleads.v16.errors.RecommendationErrorEnum.RecommendationError
- (*RecommendationErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.RecommendationErrorEnum
+var file_google_ads_googleads_v17_errors_recommendation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_recommendation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_recommendation_error_proto_goTypes = []interface{}{
+ (RecommendationErrorEnum_RecommendationError)(0), // 0: google.ads.googleads.v17.errors.RecommendationErrorEnum.RecommendationError
+ (*RecommendationErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.RecommendationErrorEnum
}
-var file_google_ads_googleads_v16_errors_recommendation_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_recommendation_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -300,13 +300,13 @@ var file_google_ads_googleads_v16_errors_recommendation_error_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_recommendation_error_proto_init() }
-func file_google_ads_googleads_v16_errors_recommendation_error_proto_init() {
- if File_google_ads_googleads_v16_errors_recommendation_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_recommendation_error_proto_init() }
+func file_google_ads_googleads_v17_errors_recommendation_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_recommendation_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_recommendation_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_recommendation_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RecommendationErrorEnum); i {
case 0:
return &v.state
@@ -323,19 +323,19 @@ func file_google_ads_googleads_v16_errors_recommendation_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_recommendation_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_recommendation_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_recommendation_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_recommendation_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_recommendation_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_recommendation_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_recommendation_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_recommendation_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_recommendation_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_recommendation_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_recommendation_error_proto = out.File
- file_google_ads_googleads_v16_errors_recommendation_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_recommendation_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_recommendation_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_recommendation_error_proto = out.File
+ file_google_ads_googleads_v17_errors_recommendation_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_recommendation_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_recommendation_error_proto_depIdxs = nil
}
diff --git a/errors/recommendation_subscription_error.pb.go b/errors/recommendation_subscription_error.pb.go
index 379b2030..2b55c5bf 100644
--- a/errors/recommendation_subscription_error.pb.go
+++ b/errors/recommendation_subscription_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/recommendation_subscription_error.proto
+// source: google/ads/googleads/v17/errors/recommendation_subscription_error.proto
package errors
@@ -67,11 +67,11 @@ func (x RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError) Str
}
func (RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_enumTypes[0].Descriptor()
}
func (RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_enumTypes[0]
}
func (x RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError) Number() protoreflect.EnumNumber {
@@ -80,7 +80,7 @@ func (x RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError) Num
// Deprecated: Use RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError.Descriptor instead.
func (RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible recommendation subscription errors.
@@ -93,7 +93,7 @@ type RecommendationSubscriptionErrorEnum struct {
func (x *RecommendationSubscriptionErrorEnum) Reset() {
*x = RecommendationSubscriptionErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -106,7 +106,7 @@ func (x *RecommendationSubscriptionErrorEnum) String() string {
func (*RecommendationSubscriptionErrorEnum) ProtoMessage() {}
func (x *RecommendationSubscriptionErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -119,19 +119,19 @@ func (x *RecommendationSubscriptionErrorEnum) ProtoReflect() protoreflect.Messag
// Deprecated: Use RecommendationSubscriptionErrorEnum.ProtoReflect.Descriptor instead.
func (*RecommendationSubscriptionErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_recommendation_subscription_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_recommendation_subscription_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_rawDesc = []byte{
0x0a, 0x47, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e,
0x5f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x66, 0x0a, 0x23, 0x52, 0x65,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x66, 0x0a, 0x23, 0x52, 0x65,
0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x62, 0x73,
0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x3f, 0x0a, 0x1f, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74,
@@ -140,43 +140,43 @@ var file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto
0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e,
0x10, 0x01, 0x42, 0x84, 0x02, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x24, 0x52, 0x65, 0x63, 0x6f,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x24, 0x52, 0x65, 0x63, 0x6f,
0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_rawDescData = file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_rawDescData = file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_goTypes = []interface{}{
- (RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError)(0), // 0: google.ads.googleads.v16.errors.RecommendationSubscriptionErrorEnum.RecommendationSubscriptionError
- (*RecommendationSubscriptionErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.RecommendationSubscriptionErrorEnum
+var file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_goTypes = []interface{}{
+ (RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError)(0), // 0: google.ads.googleads.v17.errors.RecommendationSubscriptionErrorEnum.RecommendationSubscriptionError
+ (*RecommendationSubscriptionErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.RecommendationSubscriptionErrorEnum
}
-var file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -184,13 +184,13 @@ var file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_init() }
-func file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_init() {
- if File_google_ads_googleads_v16_errors_recommendation_subscription_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_init() }
+func file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_recommendation_subscription_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RecommendationSubscriptionErrorEnum); i {
case 0:
return &v.state
@@ -207,19 +207,19 @@ func file_google_ads_googleads_v16_errors_recommendation_subscription_error_prot
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_recommendation_subscription_error_proto = out.File
- file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_recommendation_subscription_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_recommendation_subscription_error_proto = out.File
+ file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_recommendation_subscription_error_proto_depIdxs = nil
}
diff --git a/errors/region_code_error.pb.go b/errors/region_code_error.pb.go
index 53c6a0ad..579f95b5 100644
--- a/errors/region_code_error.pb.go
+++ b/errors/region_code_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/region_code_error.proto
+// source: google/ads/googleads/v17/errors/region_code_error.proto
package errors
@@ -71,11 +71,11 @@ func (x RegionCodeErrorEnum_RegionCodeError) String() string {
}
func (RegionCodeErrorEnum_RegionCodeError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_region_code_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_region_code_error_proto_enumTypes[0].Descriptor()
}
func (RegionCodeErrorEnum_RegionCodeError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_region_code_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_region_code_error_proto_enumTypes[0]
}
func (x RegionCodeErrorEnum_RegionCodeError) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x RegionCodeErrorEnum_RegionCodeError) Number() protoreflect.EnumNumber {
// Deprecated: Use RegionCodeErrorEnum_RegionCodeError.Descriptor instead.
func (RegionCodeErrorEnum_RegionCodeError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_region_code_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_region_code_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible region code errors.
@@ -97,7 +97,7 @@ type RegionCodeErrorEnum struct {
func (x *RegionCodeErrorEnum) Reset() {
*x = RegionCodeErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_region_code_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_region_code_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *RegionCodeErrorEnum) String() string {
func (*RegionCodeErrorEnum) ProtoMessage() {}
func (x *RegionCodeErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_region_code_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_region_code_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,18 +123,18 @@ func (x *RegionCodeErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use RegionCodeErrorEnum.ProtoReflect.Descriptor instead.
func (*RegionCodeErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_region_code_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_region_code_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_region_code_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_region_code_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_region_code_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_region_code_error_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x5f, 0x0a, 0x13, 0x52, 0x65,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x5f, 0x0a, 0x13, 0x52, 0x65,
0x67, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0x48, 0x0a, 0x0f, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46,
@@ -142,42 +142,42 @@ var file_google_ads_googleads_v16_errors_region_code_error_proto_rawDesc = []byt
0x10, 0x01, 0x12, 0x17, 0x0a, 0x13, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x5f, 0x52, 0x45,
0x47, 0x49, 0x4f, 0x4e, 0x5f, 0x43, 0x4f, 0x44, 0x45, 0x10, 0x02, 0x42, 0xf4, 0x01, 0x0a, 0x23,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x73, 0x42, 0x14, 0x52, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x64, 0x65, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_region_code_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_region_code_error_proto_rawDescData = file_google_ads_googleads_v16_errors_region_code_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_region_code_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_region_code_error_proto_rawDescData = file_google_ads_googleads_v17_errors_region_code_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_region_code_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_region_code_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_region_code_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_region_code_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_region_code_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_region_code_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_region_code_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_region_code_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_region_code_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_region_code_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_region_code_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_region_code_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_region_code_error_proto_goTypes = []interface{}{
- (RegionCodeErrorEnum_RegionCodeError)(0), // 0: google.ads.googleads.v16.errors.RegionCodeErrorEnum.RegionCodeError
- (*RegionCodeErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.RegionCodeErrorEnum
+var file_google_ads_googleads_v17_errors_region_code_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_region_code_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_region_code_error_proto_goTypes = []interface{}{
+ (RegionCodeErrorEnum_RegionCodeError)(0), // 0: google.ads.googleads.v17.errors.RegionCodeErrorEnum.RegionCodeError
+ (*RegionCodeErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.RegionCodeErrorEnum
}
-var file_google_ads_googleads_v16_errors_region_code_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_region_code_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -185,13 +185,13 @@ var file_google_ads_googleads_v16_errors_region_code_error_proto_depIdxs = []int
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_region_code_error_proto_init() }
-func file_google_ads_googleads_v16_errors_region_code_error_proto_init() {
- if File_google_ads_googleads_v16_errors_region_code_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_region_code_error_proto_init() }
+func file_google_ads_googleads_v17_errors_region_code_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_region_code_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_region_code_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_region_code_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RegionCodeErrorEnum); i {
case 0:
return &v.state
@@ -208,19 +208,19 @@ func file_google_ads_googleads_v16_errors_region_code_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_region_code_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_region_code_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_region_code_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_region_code_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_region_code_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_region_code_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_region_code_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_region_code_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_region_code_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_region_code_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_region_code_error_proto = out.File
- file_google_ads_googleads_v16_errors_region_code_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_region_code_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_region_code_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_region_code_error_proto = out.File
+ file_google_ads_googleads_v17_errors_region_code_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_region_code_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_region_code_error_proto_depIdxs = nil
}
diff --git a/errors/request_error.pb.go b/errors/request_error.pb.go
index 92b972d3..18035f77 100644
--- a/errors/request_error.pb.go
+++ b/errors/request_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/request_error.proto
+// source: google/ads/googleads/v17/errors/request_error.proto
package errors
@@ -178,11 +178,11 @@ func (x RequestErrorEnum_RequestError) String() string {
}
func (RequestErrorEnum_RequestError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_request_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_request_error_proto_enumTypes[0].Descriptor()
}
func (RequestErrorEnum_RequestError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_request_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_request_error_proto_enumTypes[0]
}
func (x RequestErrorEnum_RequestError) Number() protoreflect.EnumNumber {
@@ -191,7 +191,7 @@ func (x RequestErrorEnum_RequestError) Number() protoreflect.EnumNumber {
// Deprecated: Use RequestErrorEnum_RequestError.Descriptor instead.
func (RequestErrorEnum_RequestError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_request_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_request_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible request errors.
@@ -204,7 +204,7 @@ type RequestErrorEnum struct {
func (x *RequestErrorEnum) Reset() {
*x = RequestErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_request_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_request_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -217,7 +217,7 @@ func (x *RequestErrorEnum) String() string {
func (*RequestErrorEnum) ProtoMessage() {}
func (x *RequestErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_request_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_request_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -230,17 +230,17 @@ func (x *RequestErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use RequestErrorEnum.ProtoReflect.Descriptor instead.
func (*RequestErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_request_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_request_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_request_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_request_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_request_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_request_error_proto_rawDesc = []byte{
0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x8e, 0x07, 0x0a, 0x10, 0x52, 0x65, 0x71, 0x75, 0x65,
0x73, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xf9, 0x06, 0x0a, 0x0c,
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b,
@@ -300,42 +300,42 @@ var file_google_ads_googleads_v16_errors_request_error_proto_rawDesc = []byte{
0x4f, 0x55, 0x44, 0x5f, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x5f, 0x4e, 0x4f, 0x54, 0x5f,
0x46, 0x4f, 0x55, 0x4e, 0x44, 0x10, 0x27, 0x42, 0xf1, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42,
0x11, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_request_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_request_error_proto_rawDescData = file_google_ads_googleads_v16_errors_request_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_request_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_request_error_proto_rawDescData = file_google_ads_googleads_v17_errors_request_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_request_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_request_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_request_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_request_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_request_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_request_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_request_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_request_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_request_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_request_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_request_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_request_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_request_error_proto_goTypes = []interface{}{
- (RequestErrorEnum_RequestError)(0), // 0: google.ads.googleads.v16.errors.RequestErrorEnum.RequestError
- (*RequestErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.RequestErrorEnum
+var file_google_ads_googleads_v17_errors_request_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_request_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_request_error_proto_goTypes = []interface{}{
+ (RequestErrorEnum_RequestError)(0), // 0: google.ads.googleads.v17.errors.RequestErrorEnum.RequestError
+ (*RequestErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.RequestErrorEnum
}
-var file_google_ads_googleads_v16_errors_request_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_request_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -343,13 +343,13 @@ var file_google_ads_googleads_v16_errors_request_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_request_error_proto_init() }
-func file_google_ads_googleads_v16_errors_request_error_proto_init() {
- if File_google_ads_googleads_v16_errors_request_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_request_error_proto_init() }
+func file_google_ads_googleads_v17_errors_request_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_request_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_request_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_request_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*RequestErrorEnum); i {
case 0:
return &v.state
@@ -366,19 +366,19 @@ func file_google_ads_googleads_v16_errors_request_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_request_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_request_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_request_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_request_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_request_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_request_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_request_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_request_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_request_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_request_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_request_error_proto = out.File
- file_google_ads_googleads_v16_errors_request_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_request_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_request_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_request_error_proto = out.File
+ file_google_ads_googleads_v17_errors_request_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_request_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_request_error_proto_depIdxs = nil
}
diff --git a/errors/resource_access_denied_error.pb.go b/errors/resource_access_denied_error.pb.go
index e602cd72..88097ef3 100644
--- a/errors/resource_access_denied_error.pb.go
+++ b/errors/resource_access_denied_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/resource_access_denied_error.proto
+// source: google/ads/googleads/v17/errors/resource_access_denied_error.proto
package errors
@@ -71,11 +71,11 @@ func (x ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError) String() string
}
func (ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_enumTypes[0].Descriptor()
}
func (ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_enumTypes[0]
}
func (x ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError) Number() protor
// Deprecated: Use ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError.Descriptor instead.
func (ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible resource access denied errors.
@@ -97,7 +97,7 @@ type ResourceAccessDeniedErrorEnum struct {
func (x *ResourceAccessDeniedErrorEnum) Reset() {
*x = ResourceAccessDeniedErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *ResourceAccessDeniedErrorEnum) String() string {
func (*ResourceAccessDeniedErrorEnum) ProtoMessage() {}
func (x *ResourceAccessDeniedErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,18 +123,18 @@ func (x *ResourceAccessDeniedErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use ResourceAccessDeniedErrorEnum.ProtoReflect.Descriptor instead.
func (*ResourceAccessDeniedErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_resource_access_denied_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_resource_access_denied_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_rawDesc = []byte{
0x0a, 0x42, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73,
0x73, 0x5f, 0x64, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x73, 0x0a, 0x1d, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63,
0x65, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x44, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x52, 0x0a, 0x19, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72,
@@ -144,43 +144,43 @@ var file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_rawD
0x01, 0x12, 0x17, 0x0a, 0x13, 0x57, 0x52, 0x49, 0x54, 0x45, 0x5f, 0x41, 0x43, 0x43, 0x45, 0x53,
0x53, 0x5f, 0x44, 0x45, 0x4e, 0x49, 0x45, 0x44, 0x10, 0x03, 0x42, 0xfe, 0x01, 0x0a, 0x23, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x42, 0x1e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x41, 0x63, 0x63, 0x65,
0x73, 0x73, 0x44, 0x65, 0x6e, 0x69, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_rawDescData = file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_rawDescData = file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_goTypes = []interface{}{
- (ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError)(0), // 0: google.ads.googleads.v16.errors.ResourceAccessDeniedErrorEnum.ResourceAccessDeniedError
- (*ResourceAccessDeniedErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ResourceAccessDeniedErrorEnum
+var file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_goTypes = []interface{}{
+ (ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError)(0), // 0: google.ads.googleads.v17.errors.ResourceAccessDeniedErrorEnum.ResourceAccessDeniedError
+ (*ResourceAccessDeniedErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ResourceAccessDeniedErrorEnum
}
-var file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -188,13 +188,13 @@ var file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_depI
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_init() }
-func file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_init() {
- if File_google_ads_googleads_v16_errors_resource_access_denied_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_init() }
+func file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_resource_access_denied_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ResourceAccessDeniedErrorEnum); i {
case 0:
return &v.state
@@ -211,19 +211,19 @@ func file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_ini
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_resource_access_denied_error_proto = out.File
- file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_resource_access_denied_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_resource_access_denied_error_proto = out.File
+ file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_resource_access_denied_error_proto_depIdxs = nil
}
diff --git a/errors/resource_count_limit_exceeded_error.pb.go b/errors/resource_count_limit_exceeded_error.pb.go
index 8039fbf7..1ff56006 100644
--- a/errors/resource_count_limit_exceeded_error.pb.go
+++ b/errors/resource_count_limit_exceeded_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/resource_count_limit_exceeded_error.proto
+// source: google/ads/googleads/v17/errors/resource_count_limit_exceeded_error.proto
package errors
@@ -125,11 +125,11 @@ func (x ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError) Str
}
func (ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_enumTypes[0].Descriptor()
}
func (ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_enumTypes[0]
}
func (x ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError) Number() protoreflect.EnumNumber {
@@ -138,7 +138,7 @@ func (x ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError) Num
// Deprecated: Use ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError.Descriptor instead.
func (ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible resource count limit exceeded errors.
@@ -151,7 +151,7 @@ type ResourceCountLimitExceededErrorEnum struct {
func (x *ResourceCountLimitExceededErrorEnum) Reset() {
*x = ResourceCountLimitExceededErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -164,7 +164,7 @@ func (x *ResourceCountLimitExceededErrorEnum) String() string {
func (*ResourceCountLimitExceededErrorEnum) ProtoMessage() {}
func (x *ResourceCountLimitExceededErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -177,19 +177,19 @@ func (x *ResourceCountLimitExceededErrorEnum) ProtoReflect() protoreflect.Messag
// Deprecated: Use ResourceCountLimitExceededErrorEnum.ProtoReflect.Descriptor instead.
func (*ResourceCountLimitExceededErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_rawDesc = []byte{
0x0a, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74,
0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x65, 0x78, 0x63, 0x65, 0x65, 0x64, 0x65, 0x64, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xbe, 0x02, 0x0a,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xbe, 0x02, 0x0a,
0x23, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69,
0x6d, 0x69, 0x74, 0x45, 0x78, 0x63, 0x65, 0x65, 0x64, 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x45, 0x6e, 0x75, 0x6d, 0x22, 0x96, 0x02, 0x0a, 0x1f, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63,
@@ -211,43 +211,43 @@ var file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_pro
0x58, 0x43, 0x45, 0x45, 0x44, 0x45, 0x44, 0x10, 0x09, 0x12, 0x12, 0x0a, 0x0e, 0x52, 0x45, 0x53,
0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x4c, 0x49, 0x4d, 0x49, 0x54, 0x10, 0x0a, 0x42, 0x84, 0x02,
0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x24, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43,
0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x45, 0x78, 0x63, 0x65, 0x65, 0x64, 0x65,
0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02,
0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_rawDescData = file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_rawDescData = file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_goTypes = []interface{}{
- (ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError)(0), // 0: google.ads.googleads.v16.errors.ResourceCountLimitExceededErrorEnum.ResourceCountLimitExceededError
- (*ResourceCountLimitExceededErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ResourceCountLimitExceededErrorEnum
+var file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_goTypes = []interface{}{
+ (ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError)(0), // 0: google.ads.googleads.v17.errors.ResourceCountLimitExceededErrorEnum.ResourceCountLimitExceededError
+ (*ResourceCountLimitExceededErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ResourceCountLimitExceededErrorEnum
}
-var file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -255,13 +255,13 @@ var file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_pro
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_init() }
-func file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_init() {
- if File_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_init() }
+func file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ResourceCountLimitExceededErrorEnum); i {
case 0:
return &v.state
@@ -278,19 +278,19 @@ func file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_pr
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto = out.File
- file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_resource_count_limit_exceeded_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto = out.File
+ file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_resource_count_limit_exceeded_error_proto_depIdxs = nil
}
diff --git a/errors/search_term_insight_error.pb.go b/errors/search_term_insight_error.pb.go
index e1653f95..89262bc6 100644
--- a/errors/search_term_insight_error.pb.go
+++ b/errors/search_term_insight_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/search_term_insight_error.proto
+// source: google/ads/googleads/v17/errors/search_term_insight_error.proto
package errors
@@ -91,11 +91,11 @@ func (x SearchTermInsightErrorEnum_SearchTermInsightError) String() string {
}
func (SearchTermInsightErrorEnum_SearchTermInsightError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_search_term_insight_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_search_term_insight_error_proto_enumTypes[0].Descriptor()
}
func (SearchTermInsightErrorEnum_SearchTermInsightError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_search_term_insight_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_search_term_insight_error_proto_enumTypes[0]
}
func (x SearchTermInsightErrorEnum_SearchTermInsightError) Number() protoreflect.EnumNumber {
@@ -104,7 +104,7 @@ func (x SearchTermInsightErrorEnum_SearchTermInsightError) Number() protoreflect
// Deprecated: Use SearchTermInsightErrorEnum_SearchTermInsightError.Descriptor instead.
func (SearchTermInsightErrorEnum_SearchTermInsightError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_search_term_insight_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_search_term_insight_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible search term insight errors.
@@ -117,7 +117,7 @@ type SearchTermInsightErrorEnum struct {
func (x *SearchTermInsightErrorEnum) Reset() {
*x = SearchTermInsightErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_search_term_insight_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_search_term_insight_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -130,7 +130,7 @@ func (x *SearchTermInsightErrorEnum) String() string {
func (*SearchTermInsightErrorEnum) ProtoMessage() {}
func (x *SearchTermInsightErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_search_term_insight_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_search_term_insight_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -143,18 +143,18 @@ func (x *SearchTermInsightErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SearchTermInsightErrorEnum.ProtoReflect.Descriptor instead.
func (*SearchTermInsightErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_search_term_insight_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_search_term_insight_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_search_term_insight_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_search_term_insight_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_search_term_insight_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_search_term_insight_error_proto_rawDesc = []byte{
0x0a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x69, 0x6e,
0x73, 0x69, 0x67, 0x68, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x22, 0xc1, 0x02, 0x0a, 0x1a, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72,
0x6d, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75,
0x6d, 0x22, 0xa2, 0x02, 0x0a, 0x16, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d,
@@ -177,42 +177,42 @@ var file_google_ads_googleads_v16_errors_search_term_insight_error_proto_rawDesc
0x4c, 0x4c, 0x4f, 0x57, 0x45, 0x44, 0x5f, 0x57, 0x49, 0x54, 0x48, 0x5f, 0x53, 0x45, 0x47, 0x4d,
0x45, 0x4e, 0x54, 0x53, 0x10, 0x07, 0x42, 0xfb, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1b,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1b,
0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68,
0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02,
0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_search_term_insight_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_search_term_insight_error_proto_rawDescData = file_google_ads_googleads_v16_errors_search_term_insight_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_search_term_insight_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_search_term_insight_error_proto_rawDescData = file_google_ads_googleads_v17_errors_search_term_insight_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_search_term_insight_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_search_term_insight_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_search_term_insight_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_search_term_insight_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_search_term_insight_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_search_term_insight_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_search_term_insight_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_search_term_insight_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_search_term_insight_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_search_term_insight_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_search_term_insight_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_search_term_insight_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_search_term_insight_error_proto_goTypes = []interface{}{
- (SearchTermInsightErrorEnum_SearchTermInsightError)(0), // 0: google.ads.googleads.v16.errors.SearchTermInsightErrorEnum.SearchTermInsightError
- (*SearchTermInsightErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.SearchTermInsightErrorEnum
+var file_google_ads_googleads_v17_errors_search_term_insight_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_search_term_insight_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_search_term_insight_error_proto_goTypes = []interface{}{
+ (SearchTermInsightErrorEnum_SearchTermInsightError)(0), // 0: google.ads.googleads.v17.errors.SearchTermInsightErrorEnum.SearchTermInsightError
+ (*SearchTermInsightErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.SearchTermInsightErrorEnum
}
-var file_google_ads_googleads_v16_errors_search_term_insight_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_search_term_insight_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -220,13 +220,13 @@ var file_google_ads_googleads_v16_errors_search_term_insight_error_proto_depIdxs
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_search_term_insight_error_proto_init() }
-func file_google_ads_googleads_v16_errors_search_term_insight_error_proto_init() {
- if File_google_ads_googleads_v16_errors_search_term_insight_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_search_term_insight_error_proto_init() }
+func file_google_ads_googleads_v17_errors_search_term_insight_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_search_term_insight_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_search_term_insight_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_search_term_insight_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SearchTermInsightErrorEnum); i {
case 0:
return &v.state
@@ -243,19 +243,19 @@ func file_google_ads_googleads_v16_errors_search_term_insight_error_proto_init()
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_search_term_insight_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_search_term_insight_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_search_term_insight_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_search_term_insight_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_search_term_insight_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_search_term_insight_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_search_term_insight_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_search_term_insight_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_search_term_insight_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_search_term_insight_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_search_term_insight_error_proto = out.File
- file_google_ads_googleads_v16_errors_search_term_insight_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_search_term_insight_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_search_term_insight_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_search_term_insight_error_proto = out.File
+ file_google_ads_googleads_v17_errors_search_term_insight_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_search_term_insight_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_search_term_insight_error_proto_depIdxs = nil
}
diff --git a/errors/setting_error.pb.go b/errors/setting_error.pb.go
index 6fdb6452..5b2a11fd 100644
--- a/errors/setting_error.pb.go
+++ b/errors/setting_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/setting_error.proto
+// source: google/ads/googleads/v17/errors/setting_error.proto
package errors
@@ -125,11 +125,11 @@ func (x SettingErrorEnum_SettingError) String() string {
}
func (SettingErrorEnum_SettingError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_setting_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_setting_error_proto_enumTypes[0].Descriptor()
}
func (SettingErrorEnum_SettingError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_setting_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_setting_error_proto_enumTypes[0]
}
func (x SettingErrorEnum_SettingError) Number() protoreflect.EnumNumber {
@@ -138,7 +138,7 @@ func (x SettingErrorEnum_SettingError) Number() protoreflect.EnumNumber {
// Deprecated: Use SettingErrorEnum_SettingError.Descriptor instead.
func (SettingErrorEnum_SettingError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_setting_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_setting_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible setting errors.
@@ -151,7 +151,7 @@ type SettingErrorEnum struct {
func (x *SettingErrorEnum) Reset() {
*x = SettingErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_setting_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_setting_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -164,7 +164,7 @@ func (x *SettingErrorEnum) String() string {
func (*SettingErrorEnum) ProtoMessage() {}
func (x *SettingErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_setting_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_setting_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -177,17 +177,17 @@ func (x *SettingErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SettingErrorEnum.ProtoReflect.Descriptor instead.
func (*SettingErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_setting_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_setting_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_setting_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_setting_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_setting_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_setting_error_proto_rawDesc = []byte{
0x0a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xb7, 0x06, 0x0a, 0x10, 0x53, 0x65, 0x74, 0x74, 0x69,
0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xa2, 0x06, 0x0a, 0x0c,
0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b,
@@ -242,41 +242,41 @@ var file_google_ads_googleads_v16_errors_setting_error_proto_rawDesc = []byte{
0x41, 0x54, 0x43, 0x48, 0x5f, 0x54, 0x41, 0x52, 0x47, 0x45, 0x54, 0x49, 0x4e, 0x47, 0x10, 0x15,
0x42, 0xf1, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x11, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x11, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47,
+ 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02,
0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_setting_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_setting_error_proto_rawDescData = file_google_ads_googleads_v16_errors_setting_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_setting_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_setting_error_proto_rawDescData = file_google_ads_googleads_v17_errors_setting_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_setting_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_setting_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_setting_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_setting_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_setting_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_setting_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_setting_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_setting_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_setting_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_setting_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_setting_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_setting_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_setting_error_proto_goTypes = []interface{}{
- (SettingErrorEnum_SettingError)(0), // 0: google.ads.googleads.v16.errors.SettingErrorEnum.SettingError
- (*SettingErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.SettingErrorEnum
+var file_google_ads_googleads_v17_errors_setting_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_setting_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_setting_error_proto_goTypes = []interface{}{
+ (SettingErrorEnum_SettingError)(0), // 0: google.ads.googleads.v17.errors.SettingErrorEnum.SettingError
+ (*SettingErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.SettingErrorEnum
}
-var file_google_ads_googleads_v16_errors_setting_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_setting_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -284,13 +284,13 @@ var file_google_ads_googleads_v16_errors_setting_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_setting_error_proto_init() }
-func file_google_ads_googleads_v16_errors_setting_error_proto_init() {
- if File_google_ads_googleads_v16_errors_setting_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_setting_error_proto_init() }
+func file_google_ads_googleads_v17_errors_setting_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_setting_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_setting_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_setting_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SettingErrorEnum); i {
case 0:
return &v.state
@@ -307,19 +307,19 @@ func file_google_ads_googleads_v16_errors_setting_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_setting_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_setting_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_setting_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_setting_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_setting_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_setting_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_setting_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_setting_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_setting_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_setting_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_setting_error_proto = out.File
- file_google_ads_googleads_v16_errors_setting_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_setting_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_setting_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_setting_error_proto = out.File
+ file_google_ads_googleads_v17_errors_setting_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_setting_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_setting_error_proto_depIdxs = nil
}
diff --git a/errors/shared_criterion_error.pb.go b/errors/shared_criterion_error.pb.go
index 789b709a..e047628e 100644
--- a/errors/shared_criterion_error.pb.go
+++ b/errors/shared_criterion_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/shared_criterion_error.proto
+// source: google/ads/googleads/v17/errors/shared_criterion_error.proto
package errors
@@ -71,11 +71,11 @@ func (x SharedCriterionErrorEnum_SharedCriterionError) String() string {
}
func (SharedCriterionErrorEnum_SharedCriterionError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_shared_criterion_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_shared_criterion_error_proto_enumTypes[0].Descriptor()
}
func (SharedCriterionErrorEnum_SharedCriterionError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_shared_criterion_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_shared_criterion_error_proto_enumTypes[0]
}
func (x SharedCriterionErrorEnum_SharedCriterionError) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x SharedCriterionErrorEnum_SharedCriterionError) Number() protoreflect.Enu
// Deprecated: Use SharedCriterionErrorEnum_SharedCriterionError.Descriptor instead.
func (SharedCriterionErrorEnum_SharedCriterionError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_shared_criterion_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_shared_criterion_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible shared criterion errors.
@@ -97,7 +97,7 @@ type SharedCriterionErrorEnum struct {
func (x *SharedCriterionErrorEnum) Reset() {
*x = SharedCriterionErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_shared_criterion_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_shared_criterion_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *SharedCriterionErrorEnum) String() string {
func (*SharedCriterionErrorEnum) ProtoMessage() {}
func (x *SharedCriterionErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_shared_criterion_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_shared_criterion_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,18 +123,18 @@ func (x *SharedCriterionErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SharedCriterionErrorEnum.ProtoReflect.Descriptor instead.
func (*SharedCriterionErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_shared_criterion_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_shared_criterion_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_shared_criterion_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_shared_criterion_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_shared_criterion_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_shared_criterion_error_proto_rawDesc = []byte{
0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69,
0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22,
0x84, 0x01, 0x0a, 0x18, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72,
0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x68, 0x0a, 0x14,
0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45,
@@ -145,42 +145,42 @@ var file_google_ads_googleads_v16_errors_shared_criterion_error_proto_rawDesc =
0x5f, 0x46, 0x4f, 0x52, 0x5f, 0x53, 0x48, 0x41, 0x52, 0x45, 0x44, 0x5f, 0x53, 0x45, 0x54, 0x5f,
0x54, 0x59, 0x50, 0x45, 0x10, 0x02, 0x42, 0xf9, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x19,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x19,
0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67,
0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
+ 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47,
+ 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_shared_criterion_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_shared_criterion_error_proto_rawDescData = file_google_ads_googleads_v16_errors_shared_criterion_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_shared_criterion_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_shared_criterion_error_proto_rawDescData = file_google_ads_googleads_v17_errors_shared_criterion_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_shared_criterion_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_shared_criterion_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_shared_criterion_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_shared_criterion_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_shared_criterion_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_shared_criterion_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_shared_criterion_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_shared_criterion_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_shared_criterion_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_shared_criterion_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_shared_criterion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_shared_criterion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_shared_criterion_error_proto_goTypes = []interface{}{
- (SharedCriterionErrorEnum_SharedCriterionError)(0), // 0: google.ads.googleads.v16.errors.SharedCriterionErrorEnum.SharedCriterionError
- (*SharedCriterionErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.SharedCriterionErrorEnum
+var file_google_ads_googleads_v17_errors_shared_criterion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_shared_criterion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_shared_criterion_error_proto_goTypes = []interface{}{
+ (SharedCriterionErrorEnum_SharedCriterionError)(0), // 0: google.ads.googleads.v17.errors.SharedCriterionErrorEnum.SharedCriterionError
+ (*SharedCriterionErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.SharedCriterionErrorEnum
}
-var file_google_ads_googleads_v16_errors_shared_criterion_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_shared_criterion_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -188,13 +188,13 @@ var file_google_ads_googleads_v16_errors_shared_criterion_error_proto_depIdxs =
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_shared_criterion_error_proto_init() }
-func file_google_ads_googleads_v16_errors_shared_criterion_error_proto_init() {
- if File_google_ads_googleads_v16_errors_shared_criterion_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_shared_criterion_error_proto_init() }
+func file_google_ads_googleads_v17_errors_shared_criterion_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_shared_criterion_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_shared_criterion_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_shared_criterion_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SharedCriterionErrorEnum); i {
case 0:
return &v.state
@@ -211,19 +211,19 @@ func file_google_ads_googleads_v16_errors_shared_criterion_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_shared_criterion_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_shared_criterion_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_shared_criterion_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_shared_criterion_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_shared_criterion_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_shared_criterion_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_shared_criterion_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_shared_criterion_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_shared_criterion_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_shared_criterion_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_shared_criterion_error_proto = out.File
- file_google_ads_googleads_v16_errors_shared_criterion_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_shared_criterion_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_shared_criterion_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_shared_criterion_error_proto = out.File
+ file_google_ads_googleads_v17_errors_shared_criterion_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_shared_criterion_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_shared_criterion_error_proto_depIdxs = nil
}
diff --git a/errors/shared_set_error.pb.go b/errors/shared_set_error.pb.go
index 500c7fea..7191ccba 100644
--- a/errors/shared_set_error.pb.go
+++ b/errors/shared_set_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/shared_set_error.proto
+// source: google/ads/googleads/v17/errors/shared_set_error.proto
package errors
@@ -83,11 +83,11 @@ func (x SharedSetErrorEnum_SharedSetError) String() string {
}
func (SharedSetErrorEnum_SharedSetError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_shared_set_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_shared_set_error_proto_enumTypes[0].Descriptor()
}
func (SharedSetErrorEnum_SharedSetError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_shared_set_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_shared_set_error_proto_enumTypes[0]
}
func (x SharedSetErrorEnum_SharedSetError) Number() protoreflect.EnumNumber {
@@ -96,7 +96,7 @@ func (x SharedSetErrorEnum_SharedSetError) Number() protoreflect.EnumNumber {
// Deprecated: Use SharedSetErrorEnum_SharedSetError.Descriptor instead.
func (SharedSetErrorEnum_SharedSetError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_shared_set_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_shared_set_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible shared set errors.
@@ -109,7 +109,7 @@ type SharedSetErrorEnum struct {
func (x *SharedSetErrorEnum) Reset() {
*x = SharedSetErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_shared_set_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_shared_set_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -122,7 +122,7 @@ func (x *SharedSetErrorEnum) String() string {
func (*SharedSetErrorEnum) ProtoMessage() {}
func (x *SharedSetErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_shared_set_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_shared_set_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -135,18 +135,18 @@ func (x *SharedSetErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SharedSetErrorEnum.ProtoReflect.Descriptor instead.
func (*SharedSetErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_shared_set_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_shared_set_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_shared_set_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_shared_set_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_shared_set_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_shared_set_error_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xbc, 0x01, 0x0a, 0x12, 0x53, 0x68,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xbc, 0x01, 0x0a, 0x12, 0x53, 0x68,
0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0xa5, 0x01, 0x0a, 0x0e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
@@ -160,42 +160,42 @@ var file_google_ads_googleads_v16_errors_shared_set_error_proto_rawDesc = []byte
0x04, 0x12, 0x15, 0x0a, 0x11, 0x53, 0x48, 0x41, 0x52, 0x45, 0x44, 0x5f, 0x53, 0x45, 0x54, 0x5f,
0x49, 0x4e, 0x5f, 0x55, 0x53, 0x45, 0x10, 0x05, 0x42, 0xf3, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73,
0x42, 0x13, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c,
0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31,
- 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64,
- 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
+ 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_shared_set_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_shared_set_error_proto_rawDescData = file_google_ads_googleads_v16_errors_shared_set_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_shared_set_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_shared_set_error_proto_rawDescData = file_google_ads_googleads_v17_errors_shared_set_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_shared_set_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_shared_set_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_shared_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_shared_set_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_shared_set_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_shared_set_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_shared_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_shared_set_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_shared_set_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_shared_set_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_shared_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_shared_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_shared_set_error_proto_goTypes = []interface{}{
- (SharedSetErrorEnum_SharedSetError)(0), // 0: google.ads.googleads.v16.errors.SharedSetErrorEnum.SharedSetError
- (*SharedSetErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.SharedSetErrorEnum
+var file_google_ads_googleads_v17_errors_shared_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_shared_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_shared_set_error_proto_goTypes = []interface{}{
+ (SharedSetErrorEnum_SharedSetError)(0), // 0: google.ads.googleads.v17.errors.SharedSetErrorEnum.SharedSetError
+ (*SharedSetErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.SharedSetErrorEnum
}
-var file_google_ads_googleads_v16_errors_shared_set_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_shared_set_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -203,13 +203,13 @@ var file_google_ads_googleads_v16_errors_shared_set_error_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_shared_set_error_proto_init() }
-func file_google_ads_googleads_v16_errors_shared_set_error_proto_init() {
- if File_google_ads_googleads_v16_errors_shared_set_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_shared_set_error_proto_init() }
+func file_google_ads_googleads_v17_errors_shared_set_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_shared_set_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_shared_set_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_shared_set_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SharedSetErrorEnum); i {
case 0:
return &v.state
@@ -226,19 +226,19 @@ func file_google_ads_googleads_v16_errors_shared_set_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_shared_set_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_shared_set_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_shared_set_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_shared_set_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_shared_set_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_shared_set_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_shared_set_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_shared_set_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_shared_set_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_shared_set_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_shared_set_error_proto = out.File
- file_google_ads_googleads_v16_errors_shared_set_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_shared_set_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_shared_set_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_shared_set_error_proto = out.File
+ file_google_ads_googleads_v17_errors_shared_set_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_shared_set_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_shared_set_error_proto_depIdxs = nil
}
diff --git a/errors/shopping_product_error.pb.go b/errors/shopping_product_error.pb.go
new file mode 100644
index 00000000..09eb0989
--- /dev/null
+++ b/errors/shopping_product_error.pb.go
@@ -0,0 +1,240 @@
+// Copyright 2024 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+// Code generated by protoc-gen-go. DO NOT EDIT.
+// versions:
+// protoc-gen-go v1.34.1
+// protoc v4.24.4
+// source: google/ads/googleads/v17/errors/shopping_product_error.proto
+
+package errors
+
+import (
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
+ reflect "reflect"
+ sync "sync"
+)
+
+const (
+ // Verify that this generated code is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
+ // Verify that runtime/protoimpl is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
+)
+
+// Enum describing possible errors querying shopping product.
+type ShoppingProductErrorEnum_ShoppingProductError int32
+
+const (
+ // Enum unspecified.
+ ShoppingProductErrorEnum_UNSPECIFIED ShoppingProductErrorEnum_ShoppingProductError = 0
+ // The received error code is not known in this version.
+ ShoppingProductErrorEnum_UNKNOWN ShoppingProductErrorEnum_ShoppingProductError = 1
+ // A filter on the `campaign` resource name is missing.
+ ShoppingProductErrorEnum_MISSING_CAMPAIGN_FILTER ShoppingProductErrorEnum_ShoppingProductError = 2
+ // A filter on the `ad_group` resource name is missing.
+ ShoppingProductErrorEnum_MISSING_AD_GROUP_FILTER ShoppingProductErrorEnum_ShoppingProductError = 3
+ // Date segmentation is not supported.
+ ShoppingProductErrorEnum_UNSUPPORTED_DATE_SEGMENTATION ShoppingProductErrorEnum_ShoppingProductError = 4
+)
+
+// Enum value maps for ShoppingProductErrorEnum_ShoppingProductError.
+var (
+ ShoppingProductErrorEnum_ShoppingProductError_name = map[int32]string{
+ 0: "UNSPECIFIED",
+ 1: "UNKNOWN",
+ 2: "MISSING_CAMPAIGN_FILTER",
+ 3: "MISSING_AD_GROUP_FILTER",
+ 4: "UNSUPPORTED_DATE_SEGMENTATION",
+ }
+ ShoppingProductErrorEnum_ShoppingProductError_value = map[string]int32{
+ "UNSPECIFIED": 0,
+ "UNKNOWN": 1,
+ "MISSING_CAMPAIGN_FILTER": 2,
+ "MISSING_AD_GROUP_FILTER": 3,
+ "UNSUPPORTED_DATE_SEGMENTATION": 4,
+ }
+)
+
+func (x ShoppingProductErrorEnum_ShoppingProductError) Enum() *ShoppingProductErrorEnum_ShoppingProductError {
+ p := new(ShoppingProductErrorEnum_ShoppingProductError)
+ *p = x
+ return p
+}
+
+func (x ShoppingProductErrorEnum_ShoppingProductError) String() string {
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+}
+
+func (ShoppingProductErrorEnum_ShoppingProductError) Descriptor() protoreflect.EnumDescriptor {
+ return file_google_ads_googleads_v17_errors_shopping_product_error_proto_enumTypes[0].Descriptor()
+}
+
+func (ShoppingProductErrorEnum_ShoppingProductError) Type() protoreflect.EnumType {
+ return &file_google_ads_googleads_v17_errors_shopping_product_error_proto_enumTypes[0]
+}
+
+func (x ShoppingProductErrorEnum_ShoppingProductError) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
+// Deprecated: Use ShoppingProductErrorEnum_ShoppingProductError.Descriptor instead.
+func (ShoppingProductErrorEnum_ShoppingProductError) EnumDescriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_errors_shopping_product_error_proto_rawDescGZIP(), []int{0, 0}
+}
+
+// Container for enum describing possible errors querying shopping product.
+type ShoppingProductErrorEnum struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+}
+
+func (x *ShoppingProductErrorEnum) Reset() {
+ *x = ShoppingProductErrorEnum{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_google_ads_googleads_v17_errors_shopping_product_error_proto_msgTypes[0]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *ShoppingProductErrorEnum) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ShoppingProductErrorEnum) ProtoMessage() {}
+
+func (x *ShoppingProductErrorEnum) ProtoReflect() protoreflect.Message {
+ mi := &file_google_ads_googleads_v17_errors_shopping_product_error_proto_msgTypes[0]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use ShoppingProductErrorEnum.ProtoReflect.Descriptor instead.
+func (*ShoppingProductErrorEnum) Descriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_errors_shopping_product_error_proto_rawDescGZIP(), []int{0}
+}
+
+var File_google_ads_googleads_v17_errors_shopping_product_error_proto protoreflect.FileDescriptor
+
+var file_google_ads_googleads_v17_errors_shopping_product_error_proto_rawDesc = []byte{
+ 0x0a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x73, 0x2f, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75,
+ 0x63, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22,
+ 0xae, 0x01, 0x0a, 0x18, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x64,
+ 0x75, 0x63, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x91, 0x01, 0x0a,
+ 0x14, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49,
+ 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57,
+ 0x4e, 0x10, 0x01, 0x12, 0x1b, 0x0a, 0x17, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4e, 0x47, 0x5f, 0x43,
+ 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x5f, 0x46, 0x49, 0x4c, 0x54, 0x45, 0x52, 0x10, 0x02,
+ 0x12, 0x1b, 0x0a, 0x17, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4e, 0x47, 0x5f, 0x41, 0x44, 0x5f, 0x47,
+ 0x52, 0x4f, 0x55, 0x50, 0x5f, 0x46, 0x49, 0x4c, 0x54, 0x45, 0x52, 0x10, 0x03, 0x12, 0x21, 0x0a,
+ 0x1d, 0x55, 0x4e, 0x53, 0x55, 0x50, 0x50, 0x4f, 0x52, 0x54, 0x45, 0x44, 0x5f, 0x44, 0x41, 0x54,
+ 0x45, 0x5f, 0x53, 0x45, 0x47, 0x4d, 0x45, 0x4e, 0x54, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x04,
+ 0x42, 0xf9, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
+ 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x19, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69,
+ 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72,
+ 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
+ 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
+ 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
+ 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47,
+ 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64,
+ 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c,
+ 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a,
+ 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a,
+ 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x6f, 0x74, 0x6f, 0x33,
+}
+
+var (
+ file_google_ads_googleads_v17_errors_shopping_product_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_shopping_product_error_proto_rawDescData = file_google_ads_googleads_v17_errors_shopping_product_error_proto_rawDesc
+)
+
+func file_google_ads_googleads_v17_errors_shopping_product_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_shopping_product_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_shopping_product_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_shopping_product_error_proto_rawDescData)
+ })
+ return file_google_ads_googleads_v17_errors_shopping_product_error_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_errors_shopping_product_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_shopping_product_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_shopping_product_error_proto_goTypes = []interface{}{
+ (ShoppingProductErrorEnum_ShoppingProductError)(0), // 0: google.ads.googleads.v17.errors.ShoppingProductErrorEnum.ShoppingProductError
+ (*ShoppingProductErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ShoppingProductErrorEnum
+}
+var file_google_ads_googleads_v17_errors_shopping_product_error_proto_depIdxs = []int32{
+ 0, // [0:0] is the sub-list for method output_type
+ 0, // [0:0] is the sub-list for method input_type
+ 0, // [0:0] is the sub-list for extension type_name
+ 0, // [0:0] is the sub-list for extension extendee
+ 0, // [0:0] is the sub-list for field type_name
+}
+
+func init() { file_google_ads_googleads_v17_errors_shopping_product_error_proto_init() }
+func file_google_ads_googleads_v17_errors_shopping_product_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_shopping_product_error_proto != nil {
+ return
+ }
+ if !protoimpl.UnsafeEnabled {
+ file_google_ads_googleads_v17_errors_shopping_product_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*ShoppingProductErrorEnum); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ }
+ type x struct{}
+ out := protoimpl.TypeBuilder{
+ File: protoimpl.DescBuilder{
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
+ RawDescriptor: file_google_ads_googleads_v17_errors_shopping_product_error_proto_rawDesc,
+ NumEnums: 1,
+ NumMessages: 1,
+ NumExtensions: 0,
+ NumServices: 0,
+ },
+ GoTypes: file_google_ads_googleads_v17_errors_shopping_product_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_shopping_product_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_shopping_product_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_shopping_product_error_proto_msgTypes,
+ }.Build()
+ File_google_ads_googleads_v17_errors_shopping_product_error_proto = out.File
+ file_google_ads_googleads_v17_errors_shopping_product_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_shopping_product_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_shopping_product_error_proto_depIdxs = nil
+}
diff --git a/errors/size_limit_error.pb.go b/errors/size_limit_error.pb.go
index 87c3f214..b992185f 100644
--- a/errors/size_limit_error.pb.go
+++ b/errors/size_limit_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/size_limit_error.proto
+// source: google/ads/googleads/v17/errors/size_limit_error.proto
package errors
@@ -77,11 +77,11 @@ func (x SizeLimitErrorEnum_SizeLimitError) String() string {
}
func (SizeLimitErrorEnum_SizeLimitError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_size_limit_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_size_limit_error_proto_enumTypes[0].Descriptor()
}
func (SizeLimitErrorEnum_SizeLimitError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_size_limit_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_size_limit_error_proto_enumTypes[0]
}
func (x SizeLimitErrorEnum_SizeLimitError) Number() protoreflect.EnumNumber {
@@ -90,7 +90,7 @@ func (x SizeLimitErrorEnum_SizeLimitError) Number() protoreflect.EnumNumber {
// Deprecated: Use SizeLimitErrorEnum_SizeLimitError.Descriptor instead.
func (SizeLimitErrorEnum_SizeLimitError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_size_limit_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_size_limit_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible size limit errors.
@@ -103,7 +103,7 @@ type SizeLimitErrorEnum struct {
func (x *SizeLimitErrorEnum) Reset() {
*x = SizeLimitErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_size_limit_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_size_limit_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -116,7 +116,7 @@ func (x *SizeLimitErrorEnum) String() string {
func (*SizeLimitErrorEnum) ProtoMessage() {}
func (x *SizeLimitErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_size_limit_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_size_limit_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -129,18 +129,18 @@ func (x *SizeLimitErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SizeLimitErrorEnum.ProtoReflect.Descriptor instead.
func (*SizeLimitErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_size_limit_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_size_limit_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_size_limit_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_size_limit_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_size_limit_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_size_limit_error_proto_rawDesc = []byte{
0x0a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x73, 0x69, 0x7a, 0x65, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x87, 0x01, 0x0a, 0x12, 0x53, 0x69,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x87, 0x01, 0x0a, 0x12, 0x53, 0x69,
0x7a, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d,
0x22, 0x71, 0x0a, 0x0e, 0x53, 0x69, 0x7a, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45,
@@ -151,42 +151,42 @@ var file_google_ads_googleads_v16_errors_size_limit_error_proto_rawDesc = []byte
0x5a, 0x45, 0x5f, 0x4c, 0x49, 0x4d, 0x49, 0x54, 0x5f, 0x45, 0x58, 0x43, 0x45, 0x45, 0x44, 0x45,
0x44, 0x10, 0x03, 0x42, 0xf3, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x13, 0x53, 0x69, 0x7a,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x13, 0x53, 0x69, 0x7a,
0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_errors_size_limit_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_size_limit_error_proto_rawDescData = file_google_ads_googleads_v16_errors_size_limit_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_size_limit_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_size_limit_error_proto_rawDescData = file_google_ads_googleads_v17_errors_size_limit_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_size_limit_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_size_limit_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_size_limit_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_size_limit_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_size_limit_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_size_limit_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_size_limit_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_size_limit_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_size_limit_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_size_limit_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_size_limit_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_size_limit_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_size_limit_error_proto_goTypes = []interface{}{
- (SizeLimitErrorEnum_SizeLimitError)(0), // 0: google.ads.googleads.v16.errors.SizeLimitErrorEnum.SizeLimitError
- (*SizeLimitErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.SizeLimitErrorEnum
+var file_google_ads_googleads_v17_errors_size_limit_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_size_limit_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_size_limit_error_proto_goTypes = []interface{}{
+ (SizeLimitErrorEnum_SizeLimitError)(0), // 0: google.ads.googleads.v17.errors.SizeLimitErrorEnum.SizeLimitError
+ (*SizeLimitErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.SizeLimitErrorEnum
}
-var file_google_ads_googleads_v16_errors_size_limit_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_size_limit_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -194,13 +194,13 @@ var file_google_ads_googleads_v16_errors_size_limit_error_proto_depIdxs = []int3
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_size_limit_error_proto_init() }
-func file_google_ads_googleads_v16_errors_size_limit_error_proto_init() {
- if File_google_ads_googleads_v16_errors_size_limit_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_size_limit_error_proto_init() }
+func file_google_ads_googleads_v17_errors_size_limit_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_size_limit_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_size_limit_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_size_limit_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SizeLimitErrorEnum); i {
case 0:
return &v.state
@@ -217,19 +217,19 @@ func file_google_ads_googleads_v16_errors_size_limit_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_size_limit_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_size_limit_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_size_limit_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_size_limit_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_size_limit_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_size_limit_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_size_limit_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_size_limit_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_size_limit_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_size_limit_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_size_limit_error_proto = out.File
- file_google_ads_googleads_v16_errors_size_limit_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_size_limit_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_size_limit_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_size_limit_error_proto = out.File
+ file_google_ads_googleads_v17_errors_size_limit_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_size_limit_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_size_limit_error_proto_depIdxs = nil
}
diff --git a/errors/smart_campaign_error.pb.go b/errors/smart_campaign_error.pb.go
index 52c91762..8dea961d 100644
--- a/errors/smart_campaign_error.pb.go
+++ b/errors/smart_campaign_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/smart_campaign_error.proto
+// source: google/ads/googleads/v17/errors/smart_campaign_error.proto
package errors
@@ -96,11 +96,11 @@ func (x SmartCampaignErrorEnum_SmartCampaignError) String() string {
}
func (SmartCampaignErrorEnum_SmartCampaignError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_smart_campaign_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_smart_campaign_error_proto_enumTypes[0].Descriptor()
}
func (SmartCampaignErrorEnum_SmartCampaignError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_smart_campaign_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_smart_campaign_error_proto_enumTypes[0]
}
func (x SmartCampaignErrorEnum_SmartCampaignError) Number() protoreflect.EnumNumber {
@@ -109,7 +109,7 @@ func (x SmartCampaignErrorEnum_SmartCampaignError) Number() protoreflect.EnumNum
// Deprecated: Use SmartCampaignErrorEnum_SmartCampaignError.Descriptor instead.
func (SmartCampaignErrorEnum_SmartCampaignError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_smart_campaign_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_smart_campaign_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible Smart campaign errors.
@@ -122,7 +122,7 @@ type SmartCampaignErrorEnum struct {
func (x *SmartCampaignErrorEnum) Reset() {
*x = SmartCampaignErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_smart_campaign_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_smart_campaign_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -135,7 +135,7 @@ func (x *SmartCampaignErrorEnum) String() string {
func (*SmartCampaignErrorEnum) ProtoMessage() {}
func (x *SmartCampaignErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_smart_campaign_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_smart_campaign_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -148,18 +148,18 @@ func (x *SmartCampaignErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use SmartCampaignErrorEnum.ProtoReflect.Descriptor instead.
func (*SmartCampaignErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_smart_campaign_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_smart_campaign_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_smart_campaign_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_smart_campaign_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_smart_campaign_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_smart_campaign_error_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e,
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xbe, 0x02,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xbe, 0x02,
0x0a, 0x16, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xa3, 0x02, 0x0a, 0x12, 0x53, 0x6d, 0x61,
0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12,
@@ -181,42 +181,42 @@ var file_google_ads_googleads_v16_errors_smart_campaign_error_proto_rawDesc = []
0x07, 0x12, 0x1b, 0x0a, 0x17, 0x46, 0x49, 0x4e, 0x41, 0x4c, 0x5f, 0x55, 0x52, 0x4c, 0x5f, 0x4e,
0x4f, 0x54, 0x5f, 0x43, 0x52, 0x41, 0x57, 0x4c, 0x41, 0x42, 0x4c, 0x45, 0x10, 0x08, 0x42, 0xf7,
0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x17, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d,
0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_smart_campaign_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_smart_campaign_error_proto_rawDescData = file_google_ads_googleads_v16_errors_smart_campaign_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_smart_campaign_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_smart_campaign_error_proto_rawDescData = file_google_ads_googleads_v17_errors_smart_campaign_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_smart_campaign_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_smart_campaign_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_smart_campaign_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_smart_campaign_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_smart_campaign_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_smart_campaign_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_smart_campaign_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_smart_campaign_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_smart_campaign_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_smart_campaign_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_smart_campaign_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_smart_campaign_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_smart_campaign_error_proto_goTypes = []interface{}{
- (SmartCampaignErrorEnum_SmartCampaignError)(0), // 0: google.ads.googleads.v16.errors.SmartCampaignErrorEnum.SmartCampaignError
- (*SmartCampaignErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.SmartCampaignErrorEnum
+var file_google_ads_googleads_v17_errors_smart_campaign_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_smart_campaign_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_smart_campaign_error_proto_goTypes = []interface{}{
+ (SmartCampaignErrorEnum_SmartCampaignError)(0), // 0: google.ads.googleads.v17.errors.SmartCampaignErrorEnum.SmartCampaignError
+ (*SmartCampaignErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.SmartCampaignErrorEnum
}
-var file_google_ads_googleads_v16_errors_smart_campaign_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_smart_campaign_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -224,13 +224,13 @@ var file_google_ads_googleads_v16_errors_smart_campaign_error_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_smart_campaign_error_proto_init() }
-func file_google_ads_googleads_v16_errors_smart_campaign_error_proto_init() {
- if File_google_ads_googleads_v16_errors_smart_campaign_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_smart_campaign_error_proto_init() }
+func file_google_ads_googleads_v17_errors_smart_campaign_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_smart_campaign_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_smart_campaign_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_smart_campaign_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*SmartCampaignErrorEnum); i {
case 0:
return &v.state
@@ -247,19 +247,19 @@ func file_google_ads_googleads_v16_errors_smart_campaign_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_smart_campaign_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_smart_campaign_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_smart_campaign_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_smart_campaign_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_smart_campaign_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_smart_campaign_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_smart_campaign_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_smart_campaign_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_smart_campaign_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_smart_campaign_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_smart_campaign_error_proto = out.File
- file_google_ads_googleads_v16_errors_smart_campaign_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_smart_campaign_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_smart_campaign_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_smart_campaign_error_proto = out.File
+ file_google_ads_googleads_v17_errors_smart_campaign_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_smart_campaign_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_smart_campaign_error_proto_depIdxs = nil
}
diff --git a/errors/string_format_error.pb.go b/errors/string_format_error.pb.go
index 19444b27..0e066bad 100644
--- a/errors/string_format_error.pb.go
+++ b/errors/string_format_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/string_format_error.proto
+// source: google/ads/googleads/v17/errors/string_format_error.proto
package errors
@@ -75,11 +75,11 @@ func (x StringFormatErrorEnum_StringFormatError) String() string {
}
func (StringFormatErrorEnum_StringFormatError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_string_format_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_string_format_error_proto_enumTypes[0].Descriptor()
}
func (StringFormatErrorEnum_StringFormatError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_string_format_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_string_format_error_proto_enumTypes[0]
}
func (x StringFormatErrorEnum_StringFormatError) Number() protoreflect.EnumNumber {
@@ -88,7 +88,7 @@ func (x StringFormatErrorEnum_StringFormatError) Number() protoreflect.EnumNumbe
// Deprecated: Use StringFormatErrorEnum_StringFormatError.Descriptor instead.
func (StringFormatErrorEnum_StringFormatError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_string_format_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_string_format_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible string format errors.
@@ -101,7 +101,7 @@ type StringFormatErrorEnum struct {
func (x *StringFormatErrorEnum) Reset() {
*x = StringFormatErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_string_format_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_string_format_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -114,7 +114,7 @@ func (x *StringFormatErrorEnum) String() string {
func (*StringFormatErrorEnum) ProtoMessage() {}
func (x *StringFormatErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_string_format_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_string_format_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -127,18 +127,18 @@ func (x *StringFormatErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use StringFormatErrorEnum.ProtoReflect.Descriptor instead.
func (*StringFormatErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_string_format_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_string_format_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_string_format_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_string_format_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_string_format_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_string_format_error_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x71, 0x0a, 0x15,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x71, 0x0a, 0x15,
0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x58, 0x0a, 0x11, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x46,
0x6f, 0x72, 0x6d, 0x61, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e,
@@ -147,42 +147,42 @@ var file_google_ads_googleads_v16_errors_string_format_error_proto_rawDesc = []b
0x47, 0x41, 0x4c, 0x5f, 0x43, 0x48, 0x41, 0x52, 0x53, 0x10, 0x02, 0x12, 0x12, 0x0a, 0x0e, 0x49,
0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x5f, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x10, 0x03, 0x42,
0xf6, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x16, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x46,
0x6f, 0x72, 0x6d, 0x61, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_string_format_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_string_format_error_proto_rawDescData = file_google_ads_googleads_v16_errors_string_format_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_string_format_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_string_format_error_proto_rawDescData = file_google_ads_googleads_v17_errors_string_format_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_string_format_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_string_format_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_string_format_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_string_format_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_string_format_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_string_format_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_string_format_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_string_format_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_string_format_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_string_format_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_string_format_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_string_format_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_string_format_error_proto_goTypes = []interface{}{
- (StringFormatErrorEnum_StringFormatError)(0), // 0: google.ads.googleads.v16.errors.StringFormatErrorEnum.StringFormatError
- (*StringFormatErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.StringFormatErrorEnum
+var file_google_ads_googleads_v17_errors_string_format_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_string_format_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_string_format_error_proto_goTypes = []interface{}{
+ (StringFormatErrorEnum_StringFormatError)(0), // 0: google.ads.googleads.v17.errors.StringFormatErrorEnum.StringFormatError
+ (*StringFormatErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.StringFormatErrorEnum
}
-var file_google_ads_googleads_v16_errors_string_format_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_string_format_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -190,13 +190,13 @@ var file_google_ads_googleads_v16_errors_string_format_error_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_string_format_error_proto_init() }
-func file_google_ads_googleads_v16_errors_string_format_error_proto_init() {
- if File_google_ads_googleads_v16_errors_string_format_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_string_format_error_proto_init() }
+func file_google_ads_googleads_v17_errors_string_format_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_string_format_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_string_format_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_string_format_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*StringFormatErrorEnum); i {
case 0:
return &v.state
@@ -213,19 +213,19 @@ func file_google_ads_googleads_v16_errors_string_format_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_string_format_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_string_format_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_string_format_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_string_format_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_string_format_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_string_format_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_string_format_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_string_format_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_string_format_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_string_format_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_string_format_error_proto = out.File
- file_google_ads_googleads_v16_errors_string_format_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_string_format_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_string_format_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_string_format_error_proto = out.File
+ file_google_ads_googleads_v17_errors_string_format_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_string_format_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_string_format_error_proto_depIdxs = nil
}
diff --git a/errors/string_length_error.pb.go b/errors/string_length_error.pb.go
index 8e31fbac..f0d6083b 100644
--- a/errors/string_length_error.pb.go
+++ b/errors/string_length_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/string_length_error.proto
+// source: google/ads/googleads/v17/errors/string_length_error.proto
package errors
@@ -80,11 +80,11 @@ func (x StringLengthErrorEnum_StringLengthError) String() string {
}
func (StringLengthErrorEnum_StringLengthError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_string_length_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_string_length_error_proto_enumTypes[0].Descriptor()
}
func (StringLengthErrorEnum_StringLengthError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_string_length_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_string_length_error_proto_enumTypes[0]
}
func (x StringLengthErrorEnum_StringLengthError) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x StringLengthErrorEnum_StringLengthError) Number() protoreflect.EnumNumbe
// Deprecated: Use StringLengthErrorEnum_StringLengthError.Descriptor instead.
func (StringLengthErrorEnum_StringLengthError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_string_length_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_string_length_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible string length errors.
@@ -106,7 +106,7 @@ type StringLengthErrorEnum struct {
func (x *StringLengthErrorEnum) Reset() {
*x = StringLengthErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_string_length_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_string_length_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *StringLengthErrorEnum) String() string {
func (*StringLengthErrorEnum) ProtoMessage() {}
func (x *StringLengthErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_string_length_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_string_length_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,18 +132,18 @@ func (x *StringLengthErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use StringLengthErrorEnum.ProtoReflect.Descriptor instead.
func (*StringLengthErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_string_length_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_string_length_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_string_length_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_string_length_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_string_length_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_string_length_error_proto_rawDesc = []byte{
0x0a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x5f,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x72, 0x0a, 0x15,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x72, 0x0a, 0x15,
0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x59, 0x0a, 0x11, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4c,
0x65, 0x6e, 0x67, 0x74, 0x68, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e,
@@ -153,42 +153,42 @@ var file_google_ads_googleads_v16_errors_string_length_error_proto_rawDesc = []b
0x10, 0x02, 0x12, 0x0c, 0x0a, 0x08, 0x54, 0x4f, 0x4f, 0x5f, 0x4c, 0x4f, 0x4e, 0x47, 0x10, 0x03,
0x42, 0xf6, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x16, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x16, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f,
0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e,
0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa,
0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
- 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x33,
}
var (
- file_google_ads_googleads_v16_errors_string_length_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_string_length_error_proto_rawDescData = file_google_ads_googleads_v16_errors_string_length_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_string_length_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_string_length_error_proto_rawDescData = file_google_ads_googleads_v17_errors_string_length_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_string_length_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_string_length_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_string_length_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_string_length_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_string_length_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_string_length_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_string_length_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_string_length_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_string_length_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_string_length_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_string_length_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_string_length_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_string_length_error_proto_goTypes = []interface{}{
- (StringLengthErrorEnum_StringLengthError)(0), // 0: google.ads.googleads.v16.errors.StringLengthErrorEnum.StringLengthError
- (*StringLengthErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.StringLengthErrorEnum
+var file_google_ads_googleads_v17_errors_string_length_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_string_length_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_string_length_error_proto_goTypes = []interface{}{
+ (StringLengthErrorEnum_StringLengthError)(0), // 0: google.ads.googleads.v17.errors.StringLengthErrorEnum.StringLengthError
+ (*StringLengthErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.StringLengthErrorEnum
}
-var file_google_ads_googleads_v16_errors_string_length_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_string_length_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -196,13 +196,13 @@ var file_google_ads_googleads_v16_errors_string_length_error_proto_depIdxs = []i
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_string_length_error_proto_init() }
-func file_google_ads_googleads_v16_errors_string_length_error_proto_init() {
- if File_google_ads_googleads_v16_errors_string_length_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_string_length_error_proto_init() }
+func file_google_ads_googleads_v17_errors_string_length_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_string_length_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_string_length_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_string_length_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*StringLengthErrorEnum); i {
case 0:
return &v.state
@@ -219,19 +219,19 @@ func file_google_ads_googleads_v16_errors_string_length_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_string_length_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_string_length_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_string_length_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_string_length_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_string_length_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_string_length_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_string_length_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_string_length_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_string_length_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_string_length_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_string_length_error_proto = out.File
- file_google_ads_googleads_v16_errors_string_length_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_string_length_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_string_length_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_string_length_error_proto = out.File
+ file_google_ads_googleads_v17_errors_string_length_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_string_length_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_string_length_error_proto_depIdxs = nil
}
diff --git a/errors/third_party_app_analytics_link_error.pb.go b/errors/third_party_app_analytics_link_error.pb.go
index 32194d0c..3d50751d 100644
--- a/errors/third_party_app_analytics_link_error.pb.go
+++ b/errors/third_party_app_analytics_link_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/third_party_app_analytics_link_error.proto
+// source: google/ads/googleads/v17/errors/third_party_app_analytics_link_error.proto
package errors
@@ -84,11 +84,11 @@ func (x ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError) Str
}
func (ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_enumTypes[0].Descriptor()
}
func (ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_enumTypes[0]
}
func (x ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError) Number() protoreflect.EnumNumber {
@@ -97,7 +97,7 @@ func (x ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError) Num
// Deprecated: Use ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError.Descriptor instead.
func (ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible third party app analytics link errors.
@@ -110,7 +110,7 @@ type ThirdPartyAppAnalyticsLinkErrorEnum struct {
func (x *ThirdPartyAppAnalyticsLinkErrorEnum) Reset() {
*x = ThirdPartyAppAnalyticsLinkErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -123,7 +123,7 @@ func (x *ThirdPartyAppAnalyticsLinkErrorEnum) String() string {
func (*ThirdPartyAppAnalyticsLinkErrorEnum) ProtoMessage() {}
func (x *ThirdPartyAppAnalyticsLinkErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -136,19 +136,19 @@ func (x *ThirdPartyAppAnalyticsLinkErrorEnum) ProtoReflect() protoreflect.Messag
// Deprecated: Use ThirdPartyAppAnalyticsLinkErrorEnum.ProtoReflect.Descriptor instead.
func (*ThirdPartyAppAnalyticsLinkErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_rawDesc = []byte{
0x0a, 0x4a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x79, 0x5f, 0x61, 0x70,
0x70, 0x5f, 0x61, 0x6e, 0x61, 0x6c, 0x79, 0x74, 0x69, 0x63, 0x73, 0x5f, 0x6c, 0x69, 0x6e, 0x6b,
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xfe, 0x01,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xfe, 0x01,
0x0a, 0x23, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x41, 0x70, 0x70, 0x41,
0x6e, 0x61, 0x6c, 0x79, 0x74, 0x69, 0x63, 0x73, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xd6, 0x01, 0x0a, 0x1f, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50,
@@ -166,43 +166,43 @@ var file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_pr
0x42, 0x4c, 0x45, 0x5f, 0x4c, 0x49, 0x4e, 0x4b, 0x5f, 0x49, 0x44, 0x5f, 0x46, 0x4f, 0x52, 0x5f,
0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x5f, 0x4c, 0x49, 0x4e, 0x4b, 0x10, 0x05, 0x42, 0x84,
0x02, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x24, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72,
0x74, 0x79, 0x41, 0x70, 0x70, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x74, 0x69, 0x63, 0x73, 0x4c, 0x69,
0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72,
0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea,
0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_rawDescData = file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_rawDescData = file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_goTypes = []interface{}{
- (ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError)(0), // 0: google.ads.googleads.v16.errors.ThirdPartyAppAnalyticsLinkErrorEnum.ThirdPartyAppAnalyticsLinkError
- (*ThirdPartyAppAnalyticsLinkErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.ThirdPartyAppAnalyticsLinkErrorEnum
+var file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_goTypes = []interface{}{
+ (ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError)(0), // 0: google.ads.googleads.v17.errors.ThirdPartyAppAnalyticsLinkErrorEnum.ThirdPartyAppAnalyticsLinkError
+ (*ThirdPartyAppAnalyticsLinkErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.ThirdPartyAppAnalyticsLinkErrorEnum
}
-var file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -210,13 +210,13 @@ var file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_pr
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_init() }
-func file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_init() {
- if File_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_init() }
+func file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ThirdPartyAppAnalyticsLinkErrorEnum); i {
case 0:
return &v.state
@@ -233,19 +233,19 @@ func file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_p
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto = out.File
- file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_third_party_app_analytics_link_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto = out.File
+ file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_third_party_app_analytics_link_error_proto_depIdxs = nil
}
diff --git a/errors/time_zone_error.pb.go b/errors/time_zone_error.pb.go
index c0b4c56f..24b43136 100644
--- a/errors/time_zone_error.pb.go
+++ b/errors/time_zone_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/time_zone_error.proto
+// source: google/ads/googleads/v17/errors/time_zone_error.proto
package errors
@@ -71,11 +71,11 @@ func (x TimeZoneErrorEnum_TimeZoneError) String() string {
}
func (TimeZoneErrorEnum_TimeZoneError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_time_zone_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_time_zone_error_proto_enumTypes[0].Descriptor()
}
func (TimeZoneErrorEnum_TimeZoneError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_time_zone_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_time_zone_error_proto_enumTypes[0]
}
func (x TimeZoneErrorEnum_TimeZoneError) Number() protoreflect.EnumNumber {
@@ -84,7 +84,7 @@ func (x TimeZoneErrorEnum_TimeZoneError) Number() protoreflect.EnumNumber {
// Deprecated: Use TimeZoneErrorEnum_TimeZoneError.Descriptor instead.
func (TimeZoneErrorEnum_TimeZoneError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_time_zone_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_time_zone_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible time zone errors.
@@ -97,7 +97,7 @@ type TimeZoneErrorEnum struct {
func (x *TimeZoneErrorEnum) Reset() {
*x = TimeZoneErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_time_zone_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_time_zone_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -110,7 +110,7 @@ func (x *TimeZoneErrorEnum) String() string {
func (*TimeZoneErrorEnum) ProtoMessage() {}
func (x *TimeZoneErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_time_zone_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_time_zone_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -123,18 +123,18 @@ func (x *TimeZoneErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use TimeZoneErrorEnum.ProtoReflect.Descriptor instead.
func (*TimeZoneErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_time_zone_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_time_zone_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_time_zone_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_time_zone_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_time_zone_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_time_zone_error_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x7a, 0x6f, 0x6e, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x59, 0x0a, 0x11, 0x54, 0x69, 0x6d, 0x65,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x59, 0x0a, 0x11, 0x54, 0x69, 0x6d, 0x65,
0x5a, 0x6f, 0x6e, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x44, 0x0a,
0x0d, 0x54, 0x69, 0x6d, 0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f,
0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12,
@@ -142,41 +142,41 @@ var file_google_ads_googleads_v16_errors_time_zone_error_proto_rawDesc = []byte{
0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x5f, 0x54, 0x49, 0x4d, 0x45, 0x5f, 0x5a, 0x4f, 0x4e,
0x45, 0x10, 0x05, 0x42, 0xf2, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x54, 0x69, 0x6d,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x54, 0x69, 0x6d,
0x65, 0x5a, 0x6f, 0x6e, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_time_zone_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_time_zone_error_proto_rawDescData = file_google_ads_googleads_v16_errors_time_zone_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_time_zone_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_time_zone_error_proto_rawDescData = file_google_ads_googleads_v17_errors_time_zone_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_time_zone_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_time_zone_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_time_zone_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_time_zone_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_time_zone_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_time_zone_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_time_zone_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_time_zone_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_time_zone_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_time_zone_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_time_zone_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_time_zone_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_time_zone_error_proto_goTypes = []interface{}{
- (TimeZoneErrorEnum_TimeZoneError)(0), // 0: google.ads.googleads.v16.errors.TimeZoneErrorEnum.TimeZoneError
- (*TimeZoneErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.TimeZoneErrorEnum
+var file_google_ads_googleads_v17_errors_time_zone_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_time_zone_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_time_zone_error_proto_goTypes = []interface{}{
+ (TimeZoneErrorEnum_TimeZoneError)(0), // 0: google.ads.googleads.v17.errors.TimeZoneErrorEnum.TimeZoneError
+ (*TimeZoneErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.TimeZoneErrorEnum
}
-var file_google_ads_googleads_v16_errors_time_zone_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_time_zone_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -184,13 +184,13 @@ var file_google_ads_googleads_v16_errors_time_zone_error_proto_depIdxs = []int32
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_time_zone_error_proto_init() }
-func file_google_ads_googleads_v16_errors_time_zone_error_proto_init() {
- if File_google_ads_googleads_v16_errors_time_zone_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_time_zone_error_proto_init() }
+func file_google_ads_googleads_v17_errors_time_zone_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_time_zone_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_time_zone_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_time_zone_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TimeZoneErrorEnum); i {
case 0:
return &v.state
@@ -207,19 +207,19 @@ func file_google_ads_googleads_v16_errors_time_zone_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_time_zone_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_time_zone_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_time_zone_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_time_zone_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_time_zone_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_time_zone_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_time_zone_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_time_zone_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_time_zone_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_time_zone_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_time_zone_error_proto = out.File
- file_google_ads_googleads_v16_errors_time_zone_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_time_zone_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_time_zone_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_time_zone_error_proto = out.File
+ file_google_ads_googleads_v17_errors_time_zone_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_time_zone_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_time_zone_error_proto_depIdxs = nil
}
diff --git a/errors/url_field_error.pb.go b/errors/url_field_error.pb.go
index aa0d1779..5755fb74 100644
--- a/errors/url_field_error.pb.go
+++ b/errors/url_field_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/url_field_error.proto
+// source: google/ads/googleads/v17/errors/url_field_error.proto
package errors
@@ -294,11 +294,11 @@ func (x UrlFieldErrorEnum_UrlFieldError) String() string {
}
func (UrlFieldErrorEnum_UrlFieldError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_url_field_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_url_field_error_proto_enumTypes[0].Descriptor()
}
func (UrlFieldErrorEnum_UrlFieldError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_url_field_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_url_field_error_proto_enumTypes[0]
}
func (x UrlFieldErrorEnum_UrlFieldError) Number() protoreflect.EnumNumber {
@@ -307,7 +307,7 @@ func (x UrlFieldErrorEnum_UrlFieldError) Number() protoreflect.EnumNumber {
// Deprecated: Use UrlFieldErrorEnum_UrlFieldError.Descriptor instead.
func (UrlFieldErrorEnum_UrlFieldError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_url_field_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_url_field_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible url field errors.
@@ -320,7 +320,7 @@ type UrlFieldErrorEnum struct {
func (x *UrlFieldErrorEnum) Reset() {
*x = UrlFieldErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_url_field_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_url_field_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -333,7 +333,7 @@ func (x *UrlFieldErrorEnum) String() string {
func (*UrlFieldErrorEnum) ProtoMessage() {}
func (x *UrlFieldErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_url_field_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_url_field_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -346,18 +346,18 @@ func (x *UrlFieldErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use UrlFieldErrorEnum.ProtoReflect.Descriptor instead.
func (*UrlFieldErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_url_field_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_url_field_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_url_field_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_url_field_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_url_field_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_url_field_error_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x75, 0x72, 0x6c, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xdf, 0x0e, 0x0a, 0x11, 0x55, 0x72, 0x6c,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xdf, 0x0e, 0x0a, 0x11, 0x55, 0x72, 0x6c,
0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xc9,
0x0e, 0x0a, 0x0d, 0x55, 0x72, 0x6c, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
@@ -477,42 +477,42 @@ var file_google_ads_googleads_v16_errors_url_field_error_proto_rawDesc = []byte{
0x5f, 0x50, 0x41, 0x52, 0x41, 0x4d, 0x45, 0x54, 0x45, 0x52, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x53,
0x55, 0x50, 0x50, 0x4f, 0x52, 0x54, 0x45, 0x44, 0x10, 0x3a, 0x42, 0xf2, 0x01, 0x0a, 0x23, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x42, 0x12, 0x55, 0x72, 0x6c, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2,
+ 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_url_field_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_url_field_error_proto_rawDescData = file_google_ads_googleads_v16_errors_url_field_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_url_field_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_url_field_error_proto_rawDescData = file_google_ads_googleads_v17_errors_url_field_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_url_field_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_url_field_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_url_field_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_url_field_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_url_field_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_url_field_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_url_field_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_url_field_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_url_field_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_url_field_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_url_field_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_url_field_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_url_field_error_proto_goTypes = []interface{}{
- (UrlFieldErrorEnum_UrlFieldError)(0), // 0: google.ads.googleads.v16.errors.UrlFieldErrorEnum.UrlFieldError
- (*UrlFieldErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.UrlFieldErrorEnum
+var file_google_ads_googleads_v17_errors_url_field_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_url_field_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_url_field_error_proto_goTypes = []interface{}{
+ (UrlFieldErrorEnum_UrlFieldError)(0), // 0: google.ads.googleads.v17.errors.UrlFieldErrorEnum.UrlFieldError
+ (*UrlFieldErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.UrlFieldErrorEnum
}
-var file_google_ads_googleads_v16_errors_url_field_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_url_field_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -520,13 +520,13 @@ var file_google_ads_googleads_v16_errors_url_field_error_proto_depIdxs = []int32
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_url_field_error_proto_init() }
-func file_google_ads_googleads_v16_errors_url_field_error_proto_init() {
- if File_google_ads_googleads_v16_errors_url_field_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_url_field_error_proto_init() }
+func file_google_ads_googleads_v17_errors_url_field_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_url_field_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_url_field_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_url_field_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UrlFieldErrorEnum); i {
case 0:
return &v.state
@@ -543,19 +543,19 @@ func file_google_ads_googleads_v16_errors_url_field_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_url_field_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_url_field_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_url_field_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_url_field_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_url_field_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_url_field_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_url_field_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_url_field_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_url_field_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_url_field_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_url_field_error_proto = out.File
- file_google_ads_googleads_v16_errors_url_field_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_url_field_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_url_field_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_url_field_error_proto = out.File
+ file_google_ads_googleads_v17_errors_url_field_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_url_field_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_url_field_error_proto_depIdxs = nil
}
diff --git a/errors/user_data_error.pb.go b/errors/user_data_error.pb.go
index 5e52c730..9f612e73 100644
--- a/errors/user_data_error.pb.go
+++ b/errors/user_data_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/user_data_error.proto
+// source: google/ads/googleads/v17/errors/user_data_error.proto
package errors
@@ -80,11 +80,11 @@ func (x UserDataErrorEnum_UserDataError) String() string {
}
func (UserDataErrorEnum_UserDataError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_user_data_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_user_data_error_proto_enumTypes[0].Descriptor()
}
func (UserDataErrorEnum_UserDataError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_user_data_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_user_data_error_proto_enumTypes[0]
}
func (x UserDataErrorEnum_UserDataError) Number() protoreflect.EnumNumber {
@@ -93,7 +93,7 @@ func (x UserDataErrorEnum_UserDataError) Number() protoreflect.EnumNumber {
// Deprecated: Use UserDataErrorEnum_UserDataError.Descriptor instead.
func (UserDataErrorEnum_UserDataError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_user_data_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_user_data_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible user data errors.
@@ -106,7 +106,7 @@ type UserDataErrorEnum struct {
func (x *UserDataErrorEnum) Reset() {
*x = UserDataErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_user_data_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_user_data_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -119,7 +119,7 @@ func (x *UserDataErrorEnum) String() string {
func (*UserDataErrorEnum) ProtoMessage() {}
func (x *UserDataErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_user_data_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_user_data_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -132,18 +132,18 @@ func (x *UserDataErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserDataErrorEnum.ProtoReflect.Descriptor instead.
func (*UserDataErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_user_data_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_user_data_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_user_data_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_user_data_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_user_data_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_user_data_error_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xaf, 0x01, 0x0a, 0x11, 0x55, 0x73, 0x65,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xaf, 0x01, 0x0a, 0x11, 0x55, 0x73, 0x65,
0x72, 0x44, 0x61, 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x99,
0x01, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
@@ -156,42 +156,42 @@ var file_google_ads_googleads_v16_errors_user_data_error_proto_rawDesc = []byte{
0x55, 0x53, 0x45, 0x52, 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x41, 0x50,
0x50, 0x4c, 0x49, 0x43, 0x41, 0x42, 0x4c, 0x45, 0x10, 0x04, 0x42, 0xf2, 0x01, 0x0a, 0x23, 0x63,
0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x73, 0x42, 0x12, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x45, 0x72, 0x72, 0x6f,
0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2,
+ 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2,
0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41,
- 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37,
0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56,
- 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
+ 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62,
+ 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62,
0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_user_data_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_user_data_error_proto_rawDescData = file_google_ads_googleads_v16_errors_user_data_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_user_data_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_user_data_error_proto_rawDescData = file_google_ads_googleads_v17_errors_user_data_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_user_data_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_user_data_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_user_data_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_user_data_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_user_data_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_user_data_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_user_data_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_user_data_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_user_data_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_user_data_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_user_data_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_user_data_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_user_data_error_proto_goTypes = []interface{}{
- (UserDataErrorEnum_UserDataError)(0), // 0: google.ads.googleads.v16.errors.UserDataErrorEnum.UserDataError
- (*UserDataErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.UserDataErrorEnum
+var file_google_ads_googleads_v17_errors_user_data_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_user_data_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_user_data_error_proto_goTypes = []interface{}{
+ (UserDataErrorEnum_UserDataError)(0), // 0: google.ads.googleads.v17.errors.UserDataErrorEnum.UserDataError
+ (*UserDataErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.UserDataErrorEnum
}
-var file_google_ads_googleads_v16_errors_user_data_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_user_data_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -199,13 +199,13 @@ var file_google_ads_googleads_v16_errors_user_data_error_proto_depIdxs = []int32
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_user_data_error_proto_init() }
-func file_google_ads_googleads_v16_errors_user_data_error_proto_init() {
- if File_google_ads_googleads_v16_errors_user_data_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_user_data_error_proto_init() }
+func file_google_ads_googleads_v17_errors_user_data_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_user_data_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_user_data_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_user_data_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserDataErrorEnum); i {
case 0:
return &v.state
@@ -222,19 +222,19 @@ func file_google_ads_googleads_v16_errors_user_data_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_user_data_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_user_data_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_user_data_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_user_data_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_user_data_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_user_data_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_user_data_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_user_data_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_user_data_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_user_data_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_user_data_error_proto = out.File
- file_google_ads_googleads_v16_errors_user_data_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_user_data_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_user_data_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_user_data_error_proto = out.File
+ file_google_ads_googleads_v17_errors_user_data_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_user_data_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_user_data_error_proto_depIdxs = nil
}
diff --git a/errors/user_list_customer_type_error.pb.go b/errors/user_list_customer_type_error.pb.go
new file mode 100644
index 00000000..20357d25
--- /dev/null
+++ b/errors/user_list_customer_type_error.pb.go
@@ -0,0 +1,269 @@
+// Copyright 2024 Google LLC
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+// Code generated by protoc-gen-go. DO NOT EDIT.
+// versions:
+// protoc-gen-go v1.34.1
+// protoc v4.24.4
+// source: google/ads/googleads/v17/errors/user_list_customer_type_error.proto
+
+package errors
+
+import (
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
+ reflect "reflect"
+ sync "sync"
+)
+
+const (
+ // Verify that this generated code is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
+ // Verify that runtime/protoimpl is sufficiently up-to-date.
+ _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
+)
+
+// Enum describing possible user list customer type errors.
+type UserListCustomerTypeErrorEnum_UserListCustomerTypeError int32
+
+const (
+ // Enum unspecified.
+ UserListCustomerTypeErrorEnum_UNSPECIFIED UserListCustomerTypeErrorEnum_UserListCustomerTypeError = 0
+ // The received error code is not known in this version.
+ UserListCustomerTypeErrorEnum_UNKNOWN UserListCustomerTypeErrorEnum_UserListCustomerTypeError = 1
+ // Cannot add the conflicting customer types to the same user list.
+ // Conflicting labels:
+ // 1. Purchasers - Converted Leads
+ // 2. Purchasers - Qualified Leads
+ // 3. Purchasers - Cart Abandoners
+ // 4. Qualified Leads - Converted Leads
+ // 5. Disengaged customers - Converted Leads
+ // 6. Disengaged customers - Qualified Leads
+ // 7. Disengaged customers- Cart Abandoners
+ UserListCustomerTypeErrorEnum_CONFLICTING_CUSTOMER_TYPES UserListCustomerTypeErrorEnum_UserListCustomerTypeError = 2
+ // The account does not have access to the user list.
+ UserListCustomerTypeErrorEnum_NO_ACCESS_TO_USER_LIST UserListCustomerTypeErrorEnum_UserListCustomerTypeError = 3
+ // The given user list is not eligible for applying customer types.
+ // The user list must belong to one of the following types: CRM_BASED,
+ // RULE_BASED, ADVERTISER_DATA_MODEL_BASED, GCN.
+ UserListCustomerTypeErrorEnum_USERLIST_NOT_ELIGIBLE UserListCustomerTypeErrorEnum_UserListCustomerTypeError = 4
+ // To edit the user list customer type, conversion tracking must be
+ // enabled in your account. If cross-tracking is enabled, your account must
+ // be a MCC manager account to modify user list customer types. More info at
+ // https://support.google.com/google-ads/answer/3030657
+ UserListCustomerTypeErrorEnum_CONVERSION_TRACKING_NOT_ENABLED_OR_NOT_MCC_MANAGER_ACCOUNT UserListCustomerTypeErrorEnum_UserListCustomerTypeError = 5
+ // Too many user lists for the customer type.
+ UserListCustomerTypeErrorEnum_TOO_MANY_USER_LISTS_FOR_THE_CUSTOMER_TYPE UserListCustomerTypeErrorEnum_UserListCustomerTypeError = 6
+)
+
+// Enum value maps for UserListCustomerTypeErrorEnum_UserListCustomerTypeError.
+var (
+ UserListCustomerTypeErrorEnum_UserListCustomerTypeError_name = map[int32]string{
+ 0: "UNSPECIFIED",
+ 1: "UNKNOWN",
+ 2: "CONFLICTING_CUSTOMER_TYPES",
+ 3: "NO_ACCESS_TO_USER_LIST",
+ 4: "USERLIST_NOT_ELIGIBLE",
+ 5: "CONVERSION_TRACKING_NOT_ENABLED_OR_NOT_MCC_MANAGER_ACCOUNT",
+ 6: "TOO_MANY_USER_LISTS_FOR_THE_CUSTOMER_TYPE",
+ }
+ UserListCustomerTypeErrorEnum_UserListCustomerTypeError_value = map[string]int32{
+ "UNSPECIFIED": 0,
+ "UNKNOWN": 1,
+ "CONFLICTING_CUSTOMER_TYPES": 2,
+ "NO_ACCESS_TO_USER_LIST": 3,
+ "USERLIST_NOT_ELIGIBLE": 4,
+ "CONVERSION_TRACKING_NOT_ENABLED_OR_NOT_MCC_MANAGER_ACCOUNT": 5,
+ "TOO_MANY_USER_LISTS_FOR_THE_CUSTOMER_TYPE": 6,
+ }
+)
+
+func (x UserListCustomerTypeErrorEnum_UserListCustomerTypeError) Enum() *UserListCustomerTypeErrorEnum_UserListCustomerTypeError {
+ p := new(UserListCustomerTypeErrorEnum_UserListCustomerTypeError)
+ *p = x
+ return p
+}
+
+func (x UserListCustomerTypeErrorEnum_UserListCustomerTypeError) String() string {
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+}
+
+func (UserListCustomerTypeErrorEnum_UserListCustomerTypeError) Descriptor() protoreflect.EnumDescriptor {
+ return file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_enumTypes[0].Descriptor()
+}
+
+func (UserListCustomerTypeErrorEnum_UserListCustomerTypeError) Type() protoreflect.EnumType {
+ return &file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_enumTypes[0]
+}
+
+func (x UserListCustomerTypeErrorEnum_UserListCustomerTypeError) Number() protoreflect.EnumNumber {
+ return protoreflect.EnumNumber(x)
+}
+
+// Deprecated: Use UserListCustomerTypeErrorEnum_UserListCustomerTypeError.Descriptor instead.
+func (UserListCustomerTypeErrorEnum_UserListCustomerTypeError) EnumDescriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_rawDescGZIP(), []int{0, 0}
+}
+
+// Container for enum describing possible user list customer type errors.
+type UserListCustomerTypeErrorEnum struct {
+ state protoimpl.MessageState
+ sizeCache protoimpl.SizeCache
+ unknownFields protoimpl.UnknownFields
+}
+
+func (x *UserListCustomerTypeErrorEnum) Reset() {
+ *x = UserListCustomerTypeErrorEnum{}
+ if protoimpl.UnsafeEnabled {
+ mi := &file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_msgTypes[0]
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ ms.StoreMessageInfo(mi)
+ }
+}
+
+func (x *UserListCustomerTypeErrorEnum) String() string {
+ return protoimpl.X.MessageStringOf(x)
+}
+
+func (*UserListCustomerTypeErrorEnum) ProtoMessage() {}
+
+func (x *UserListCustomerTypeErrorEnum) ProtoReflect() protoreflect.Message {
+ mi := &file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_msgTypes[0]
+ if protoimpl.UnsafeEnabled && x != nil {
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+ if ms.LoadMessageInfo() == nil {
+ ms.StoreMessageInfo(mi)
+ }
+ return ms
+ }
+ return mi.MessageOf(x)
+}
+
+// Deprecated: Use UserListCustomerTypeErrorEnum.ProtoReflect.Descriptor instead.
+func (*UserListCustomerTypeErrorEnum) Descriptor() ([]byte, []int) {
+ return file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_rawDescGZIP(), []int{0}
+}
+
+var File_google_ads_googleads_v17_errors_user_list_customer_type_error_proto protoreflect.FileDescriptor
+
+var file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_rawDesc = []byte{
+ 0x0a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x75, 0x73, 0x74,
+ 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e,
+ 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
+ 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa1, 0x02, 0x0a, 0x1d, 0x55, 0x73, 0x65, 0x72, 0x4c,
+ 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xff, 0x01, 0x0a, 0x19, 0x55, 0x73, 0x65,
+ 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70,
+ 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
+ 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f,
+ 0x57, 0x4e, 0x10, 0x01, 0x12, 0x1e, 0x0a, 0x1a, 0x43, 0x4f, 0x4e, 0x46, 0x4c, 0x49, 0x43, 0x54,
+ 0x49, 0x4e, 0x47, 0x5f, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x45, 0x52, 0x5f, 0x54, 0x59, 0x50,
+ 0x45, 0x53, 0x10, 0x02, 0x12, 0x1a, 0x0a, 0x16, 0x4e, 0x4f, 0x5f, 0x41, 0x43, 0x43, 0x45, 0x53,
+ 0x53, 0x5f, 0x54, 0x4f, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x10, 0x03,
+ 0x12, 0x19, 0x0a, 0x15, 0x55, 0x53, 0x45, 0x52, 0x4c, 0x49, 0x53, 0x54, 0x5f, 0x4e, 0x4f, 0x54,
+ 0x5f, 0x45, 0x4c, 0x49, 0x47, 0x49, 0x42, 0x4c, 0x45, 0x10, 0x04, 0x12, 0x3e, 0x0a, 0x3a, 0x43,
+ 0x4f, 0x4e, 0x56, 0x45, 0x52, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x52, 0x41, 0x43, 0x4b, 0x49,
+ 0x4e, 0x47, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x5f, 0x4f,
+ 0x52, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x4d, 0x43, 0x43, 0x5f, 0x4d, 0x41, 0x4e, 0x41, 0x47, 0x45,
+ 0x52, 0x5f, 0x41, 0x43, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x10, 0x05, 0x12, 0x2d, 0x0a, 0x29, 0x54,
+ 0x4f, 0x4f, 0x5f, 0x4d, 0x41, 0x4e, 0x59, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x4c, 0x49, 0x53,
+ 0x54, 0x53, 0x5f, 0x46, 0x4f, 0x52, 0x5f, 0x54, 0x48, 0x45, 0x5f, 0x43, 0x55, 0x53, 0x54, 0x4f,
+ 0x4d, 0x45, 0x52, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x06, 0x42, 0xfe, 0x01, 0x0a, 0x23, 0x63,
+ 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f,
+ 0x72, 0x73, 0x42, 0x1e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74,
+ 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f,
+ 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
+ 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
+ 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
+ 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72,
+ 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
+ 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x74, 0x6f, 0x33,
+}
+
+var (
+ file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_rawDescData = file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_rawDesc
+)
+
+func file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_rawDescData)
+ })
+ return file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_goTypes = []interface{}{
+ (UserListCustomerTypeErrorEnum_UserListCustomerTypeError)(0), // 0: google.ads.googleads.v17.errors.UserListCustomerTypeErrorEnum.UserListCustomerTypeError
+ (*UserListCustomerTypeErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.UserListCustomerTypeErrorEnum
+}
+var file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_depIdxs = []int32{
+ 0, // [0:0] is the sub-list for method output_type
+ 0, // [0:0] is the sub-list for method input_type
+ 0, // [0:0] is the sub-list for extension type_name
+ 0, // [0:0] is the sub-list for extension extendee
+ 0, // [0:0] is the sub-list for field type_name
+}
+
+func init() { file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_init() }
+func file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_user_list_customer_type_error_proto != nil {
+ return
+ }
+ if !protoimpl.UnsafeEnabled {
+ file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ switch v := v.(*UserListCustomerTypeErrorEnum); i {
+ case 0:
+ return &v.state
+ case 1:
+ return &v.sizeCache
+ case 2:
+ return &v.unknownFields
+ default:
+ return nil
+ }
+ }
+ }
+ type x struct{}
+ out := protoimpl.TypeBuilder{
+ File: protoimpl.DescBuilder{
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
+ RawDescriptor: file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_rawDesc,
+ NumEnums: 1,
+ NumMessages: 1,
+ NumExtensions: 0,
+ NumServices: 0,
+ },
+ GoTypes: file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_msgTypes,
+ }.Build()
+ File_google_ads_googleads_v17_errors_user_list_customer_type_error_proto = out.File
+ file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_user_list_customer_type_error_proto_depIdxs = nil
+}
diff --git a/errors/user_list_error.pb.go b/errors/user_list_error.pb.go
index f1d26234..858cf9a9 100644
--- a/errors/user_list_error.pb.go
+++ b/errors/user_list_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/user_list_error.proto
+// source: google/ads/googleads/v17/errors/user_list_error.proto
package errors
@@ -207,11 +207,11 @@ func (x UserListErrorEnum_UserListError) String() string {
}
func (UserListErrorEnum_UserListError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_user_list_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_user_list_error_proto_enumTypes[0].Descriptor()
}
func (UserListErrorEnum_UserListError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_user_list_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_user_list_error_proto_enumTypes[0]
}
func (x UserListErrorEnum_UserListError) Number() protoreflect.EnumNumber {
@@ -220,7 +220,7 @@ func (x UserListErrorEnum_UserListError) Number() protoreflect.EnumNumber {
// Deprecated: Use UserListErrorEnum_UserListError.Descriptor instead.
func (UserListErrorEnum_UserListError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_user_list_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_user_list_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible user list errors.
@@ -233,7 +233,7 @@ type UserListErrorEnum struct {
func (x *UserListErrorEnum) Reset() {
*x = UserListErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_user_list_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_user_list_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -246,7 +246,7 @@ func (x *UserListErrorEnum) String() string {
func (*UserListErrorEnum) ProtoMessage() {}
func (x *UserListErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_user_list_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_user_list_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -259,18 +259,18 @@ func (x *UserListErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use UserListErrorEnum.ProtoReflect.Descriptor instead.
func (*UserListErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_user_list_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_user_list_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_user_list_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_user_list_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_user_list_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_user_list_error_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x65, 0x72, 0x72, 0x6f,
0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xbb, 0x09, 0x0a, 0x11, 0x55, 0x73, 0x65,
+ 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xbb, 0x09, 0x0a, 0x11, 0x55, 0x73, 0x65,
0x72, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xa5,
0x09, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72,
0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
@@ -348,42 +348,42 @@ var file_google_ads_googleads_v16_errors_user_list_error_proto_rawDesc = []byte{
0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x5f, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x52, 0x59, 0x5f, 0x43,
0x4f, 0x44, 0x45, 0x53, 0x10, 0x2d, 0x42, 0xf2, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12,
0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_user_list_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_user_list_error_proto_rawDescData = file_google_ads_googleads_v16_errors_user_list_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_user_list_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_user_list_error_proto_rawDescData = file_google_ads_googleads_v17_errors_user_list_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_user_list_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_user_list_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_user_list_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_user_list_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_user_list_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_user_list_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_user_list_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_user_list_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_user_list_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_user_list_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_user_list_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_user_list_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_user_list_error_proto_goTypes = []interface{}{
- (UserListErrorEnum_UserListError)(0), // 0: google.ads.googleads.v16.errors.UserListErrorEnum.UserListError
- (*UserListErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.UserListErrorEnum
+var file_google_ads_googleads_v17_errors_user_list_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_user_list_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_user_list_error_proto_goTypes = []interface{}{
+ (UserListErrorEnum_UserListError)(0), // 0: google.ads.googleads.v17.errors.UserListErrorEnum.UserListError
+ (*UserListErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.UserListErrorEnum
}
-var file_google_ads_googleads_v16_errors_user_list_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_user_list_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -391,13 +391,13 @@ var file_google_ads_googleads_v16_errors_user_list_error_proto_depIdxs = []int32
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_user_list_error_proto_init() }
-func file_google_ads_googleads_v16_errors_user_list_error_proto_init() {
- if File_google_ads_googleads_v16_errors_user_list_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_user_list_error_proto_init() }
+func file_google_ads_googleads_v17_errors_user_list_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_user_list_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_user_list_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_user_list_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*UserListErrorEnum); i {
case 0:
return &v.state
@@ -414,19 +414,19 @@ func file_google_ads_googleads_v16_errors_user_list_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_user_list_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_user_list_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_user_list_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_user_list_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_user_list_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_user_list_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_user_list_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_user_list_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_user_list_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_user_list_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_user_list_error_proto = out.File
- file_google_ads_googleads_v16_errors_user_list_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_user_list_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_user_list_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_user_list_error_proto = out.File
+ file_google_ads_googleads_v17_errors_user_list_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_user_list_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_user_list_error_proto_depIdxs = nil
}
diff --git a/errors/video_campaign_error.pb.go b/errors/video_campaign_error.pb.go
index 09d9e2e4..ce863460 100644
--- a/errors/video_campaign_error.pb.go
+++ b/errors/video_campaign_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/video_campaign_error.proto
+// source: google/ads/googleads/v17/errors/video_campaign_error.proto
package errors
@@ -72,11 +72,11 @@ func (x VideoCampaignErrorEnum_VideoCampaignError) String() string {
}
func (VideoCampaignErrorEnum_VideoCampaignError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_video_campaign_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_video_campaign_error_proto_enumTypes[0].Descriptor()
}
func (VideoCampaignErrorEnum_VideoCampaignError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_video_campaign_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_video_campaign_error_proto_enumTypes[0]
}
func (x VideoCampaignErrorEnum_VideoCampaignError) Number() protoreflect.EnumNumber {
@@ -85,7 +85,7 @@ func (x VideoCampaignErrorEnum_VideoCampaignError) Number() protoreflect.EnumNum
// Deprecated: Use VideoCampaignErrorEnum_VideoCampaignError.Descriptor instead.
func (VideoCampaignErrorEnum_VideoCampaignError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_video_campaign_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_video_campaign_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing possible video campaign errors.
@@ -98,7 +98,7 @@ type VideoCampaignErrorEnum struct {
func (x *VideoCampaignErrorEnum) Reset() {
*x = VideoCampaignErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_video_campaign_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_video_campaign_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -111,7 +111,7 @@ func (x *VideoCampaignErrorEnum) String() string {
func (*VideoCampaignErrorEnum) ProtoMessage() {}
func (x *VideoCampaignErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_video_campaign_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_video_campaign_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -124,18 +124,18 @@ func (x *VideoCampaignErrorEnum) ProtoReflect() protoreflect.Message {
// Deprecated: Use VideoCampaignErrorEnum.ProtoReflect.Descriptor instead.
func (*VideoCampaignErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_video_campaign_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_video_campaign_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_video_campaign_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_video_campaign_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_video_campaign_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_video_campaign_error_proto_rawDesc = []byte{
0x0a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e,
0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x6d, 0x0a,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x6d, 0x0a,
0x16, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72,
0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x53, 0x0a, 0x12, 0x56, 0x69, 0x64, 0x65, 0x6f,
0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a,
@@ -144,42 +144,42 @@ var file_google_ads_googleads_v16_errors_video_campaign_error_proto_rawDesc = []
0x55, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x49, 0x52, 0x45, 0x53, 0x5f, 0x52,
0x45, 0x53, 0x45, 0x52, 0x56, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x02, 0x42, 0xf7, 0x01, 0x0a,
0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x42, 0x17, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x43, 0x61, 0x6d, 0x70, 0x61,
0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a,
0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f,
0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b,
0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02,
+ 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02,
0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73,
0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
+ 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a,
0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_video_campaign_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_video_campaign_error_proto_rawDescData = file_google_ads_googleads_v16_errors_video_campaign_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_video_campaign_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_video_campaign_error_proto_rawDescData = file_google_ads_googleads_v17_errors_video_campaign_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_video_campaign_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_video_campaign_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_video_campaign_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_video_campaign_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_video_campaign_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_video_campaign_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_video_campaign_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_video_campaign_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_video_campaign_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_video_campaign_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_video_campaign_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_video_campaign_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_video_campaign_error_proto_goTypes = []interface{}{
- (VideoCampaignErrorEnum_VideoCampaignError)(0), // 0: google.ads.googleads.v16.errors.VideoCampaignErrorEnum.VideoCampaignError
- (*VideoCampaignErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.VideoCampaignErrorEnum
+var file_google_ads_googleads_v17_errors_video_campaign_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_video_campaign_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_video_campaign_error_proto_goTypes = []interface{}{
+ (VideoCampaignErrorEnum_VideoCampaignError)(0), // 0: google.ads.googleads.v17.errors.VideoCampaignErrorEnum.VideoCampaignError
+ (*VideoCampaignErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.VideoCampaignErrorEnum
}
-var file_google_ads_googleads_v16_errors_video_campaign_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_video_campaign_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -187,13 +187,13 @@ var file_google_ads_googleads_v16_errors_video_campaign_error_proto_depIdxs = []
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_video_campaign_error_proto_init() }
-func file_google_ads_googleads_v16_errors_video_campaign_error_proto_init() {
- if File_google_ads_googleads_v16_errors_video_campaign_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_video_campaign_error_proto_init() }
+func file_google_ads_googleads_v17_errors_video_campaign_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_video_campaign_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_video_campaign_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_video_campaign_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*VideoCampaignErrorEnum); i {
case 0:
return &v.state
@@ -210,19 +210,19 @@ func file_google_ads_googleads_v16_errors_video_campaign_error_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_video_campaign_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_video_campaign_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_video_campaign_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_video_campaign_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_video_campaign_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_video_campaign_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_video_campaign_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_video_campaign_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_video_campaign_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_video_campaign_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_video_campaign_error_proto = out.File
- file_google_ads_googleads_v16_errors_video_campaign_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_video_campaign_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_video_campaign_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_video_campaign_error_proto = out.File
+ file_google_ads_googleads_v17_errors_video_campaign_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_video_campaign_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_video_campaign_error_proto_depIdxs = nil
}
diff --git a/errors/youtube_video_registration_error.pb.go b/errors/youtube_video_registration_error.pb.go
index 91386289..b6a11ed0 100644
--- a/errors/youtube_video_registration_error.pb.go
+++ b/errors/youtube_video_registration_error.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/errors/youtube_video_registration_error.proto
+// source: google/ads/googleads/v17/errors/youtube_video_registration_error.proto
package errors
@@ -79,11 +79,11 @@ func (x YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError) String(
}
func (YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError) Descriptor() protoreflect.EnumDescriptor {
- return file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_enumTypes[0].Descriptor()
+ return file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_enumTypes[0].Descriptor()
}
func (YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError) Type() protoreflect.EnumType {
- return &file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_enumTypes[0]
+ return &file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_enumTypes[0]
}
func (x YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError) Number() protoreflect.EnumNumber {
@@ -92,7 +92,7 @@ func (x YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError) Number(
// Deprecated: Use YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError.Descriptor instead.
func (YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError) EnumDescriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_rawDescGZIP(), []int{0, 0}
}
// Container for enum describing YouTube video registration errors.
@@ -105,7 +105,7 @@ type YoutubeVideoRegistrationErrorEnum struct {
func (x *YoutubeVideoRegistrationErrorEnum) Reset() {
*x = YoutubeVideoRegistrationErrorEnum{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -118,7 +118,7 @@ func (x *YoutubeVideoRegistrationErrorEnum) String() string {
func (*YoutubeVideoRegistrationErrorEnum) ProtoMessage() {}
func (x *YoutubeVideoRegistrationErrorEnum) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -131,19 +131,19 @@ func (x *YoutubeVideoRegistrationErrorEnum) ProtoReflect() protoreflect.Message
// Deprecated: Use YoutubeVideoRegistrationErrorEnum.ProtoReflect.Descriptor instead.
func (*YoutubeVideoRegistrationErrorEnum) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_rawDescGZIP(), []int{0}
}
-var File_google_ads_googleads_v16_errors_youtube_video_registration_error_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_errors_youtube_video_registration_error_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_rawDesc = []byte{
0x0a, 0x46, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72,
0x73, 0x2f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f,
0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xaa, 0x01, 0x0a, 0x21, 0x59, 0x6f,
+ 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xaa, 0x01, 0x0a, 0x21, 0x59, 0x6f,
0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74,
0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22,
0x84, 0x01, 0x0a, 0x1d, 0x59, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f,
@@ -156,43 +156,43 @@ var file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_
0x0a, 0x12, 0x56, 0x49, 0x44, 0x45, 0x4f, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x45, 0x4c, 0x49, 0x47,
0x49, 0x42, 0x4c, 0x45, 0x10, 0x04, 0x42, 0x82, 0x02, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x22,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x22,
0x59, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x52, 0x65, 0x67, 0x69,
0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x72,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x72,
0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41,
0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x45, 0x72, 0x72,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x45, 0x72, 0x72,
0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73,
- 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x45,
+ 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x45,
0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_rawDescData = file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_rawDesc
+ file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_rawDescData = file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_rawDesc
)
-func file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_rawDescData)
+func file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_rawDescData)
})
- return file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_rawDescData
+ return file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_rawDescData
}
-var file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
-var file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_goTypes = []interface{}{
- (YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError)(0), // 0: google.ads.googleads.v16.errors.YoutubeVideoRegistrationErrorEnum.YoutubeVideoRegistrationError
- (*YoutubeVideoRegistrationErrorEnum)(nil), // 1: google.ads.googleads.v16.errors.YoutubeVideoRegistrationErrorEnum
+var file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
+var file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_goTypes = []interface{}{
+ (YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError)(0), // 0: google.ads.googleads.v17.errors.YoutubeVideoRegistrationErrorEnum.YoutubeVideoRegistrationError
+ (*YoutubeVideoRegistrationErrorEnum)(nil), // 1: google.ads.googleads.v17.errors.YoutubeVideoRegistrationErrorEnum
}
-var file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_depIdxs = []int32{
+var file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
@@ -200,13 +200,13 @@ var file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_
0, // [0:0] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_init() }
-func file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_init() {
- if File_google_ads_googleads_v16_errors_youtube_video_registration_error_proto != nil {
+func init() { file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_init() }
+func file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_init() {
+ if File_google_ads_googleads_v17_errors_youtube_video_registration_error_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*YoutubeVideoRegistrationErrorEnum); i {
case 0:
return &v.state
@@ -223,19 +223,19 @@ func file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_rawDesc,
NumEnums: 1,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_depIdxs,
- EnumInfos: file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_enumTypes,
- MessageInfos: file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_depIdxs,
+ EnumInfos: file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_enumTypes,
+ MessageInfos: file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_errors_youtube_video_registration_error_proto = out.File
- file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_rawDesc = nil
- file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_goTypes = nil
- file_google_ads_googleads_v16_errors_youtube_video_registration_error_proto_depIdxs = nil
+ File_google_ads_googleads_v17_errors_youtube_video_registration_error_proto = out.File
+ file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_rawDesc = nil
+ file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_goTypes = nil
+ file_google_ads_googleads_v17_errors_youtube_video_registration_error_proto_depIdxs = nil
}
diff --git a/go.mod b/go.mod
index 1d53c7cf..a34f6d5e 100644
--- a/go.mod
+++ b/go.mod
@@ -4,17 +4,17 @@ go 1.20
require (
cloud.google.com/go/longrunning v0.5.7
- github.com/googleapis/gax-go/v2 v2.12.3
- google.golang.org/api v0.177.0
- google.golang.org/genproto/googleapis/api v0.0.0-20240429193739-8cf5692501f6
- google.golang.org/genproto/googleapis/rpc v0.0.0-20240429193739-8cf5692501f6
- google.golang.org/grpc v1.63.2
- google.golang.org/protobuf v1.34.0
+ github.com/googleapis/gax-go/v2 v2.12.4
+ google.golang.org/api v0.183.0
+ google.golang.org/genproto/googleapis/api v0.0.0-20240604185151-ef581f913117
+ google.golang.org/genproto/googleapis/rpc v0.0.0-20240604185151-ef581f913117
+ google.golang.org/grpc v1.64.0
+ google.golang.org/protobuf v1.34.1
)
require (
- cloud.google.com/go v0.112.2 // indirect
- cloud.google.com/go/auth v0.3.0 // indirect
+ cloud.google.com/go v0.114.0 // indirect
+ cloud.google.com/go/auth v0.5.1 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect
cloud.google.com/go/compute/metadata v0.3.0 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
@@ -30,11 +30,11 @@ require (
go.opentelemetry.io/otel v1.24.0 // indirect
go.opentelemetry.io/otel/metric v1.24.0 // indirect
go.opentelemetry.io/otel/trace v1.24.0 // indirect
- golang.org/x/crypto v0.22.0 // indirect
- golang.org/x/net v0.24.0 // indirect
- golang.org/x/oauth2 v0.19.0 // indirect
+ golang.org/x/crypto v0.23.0 // indirect
+ golang.org/x/net v0.25.0 // indirect
+ golang.org/x/oauth2 v0.21.0 // indirect
golang.org/x/sync v0.7.0 // indirect
- golang.org/x/sys v0.19.0 // indirect
- golang.org/x/text v0.14.0 // indirect
+ golang.org/x/sys v0.20.0 // indirect
+ golang.org/x/text v0.15.0 // indirect
golang.org/x/time v0.5.0 // indirect
)
diff --git a/go.sum b/go.sum
index 202da9a4..e4f64fd5 100644
--- a/go.sum
+++ b/go.sum
@@ -1,8 +1,8 @@
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
-cloud.google.com/go v0.112.2 h1:ZaGT6LiG7dBzi6zNOvVZwacaXlmf3lRqnC4DQzqyRQw=
-cloud.google.com/go v0.112.2/go.mod h1:iEqjp//KquGIJV/m+Pk3xecgKNhV+ry+vVTsy4TbDms=
-cloud.google.com/go/auth v0.3.0 h1:PRyzEpGfx/Z9e8+lHsbkoUVXD0gnu4MNmm7Gp8TQNIs=
-cloud.google.com/go/auth v0.3.0/go.mod h1:lBv6NKTWp8E3LPzmO1TbiiRKc4drLOfHsgmlH9ogv5w=
+cloud.google.com/go v0.114.0 h1:OIPFAdfrFDFO2ve2U7r/H5SwSbBzEdrBdE7xkgwc+kY=
+cloud.google.com/go v0.114.0/go.mod h1:ZV9La5YYxctro1HTPug5lXH/GefROyW8PPD4T8n9J8E=
+cloud.google.com/go/auth v0.5.1 h1:0QNO7VThG54LUzKiQxv8C6x1YX7lUrzlAa1nVLF8CIw=
+cloud.google.com/go/auth v0.5.1/go.mod h1:vbZT8GjzDf3AVqCcQmqeeM32U9HBFc32vVVAbwDsa6s=
cloud.google.com/go/auth/oauth2adapt v0.2.2 h1:+TTV8aXpjeChS9M+aTtN/TjdQnzJvmzKFt//oWu7HX4=
cloud.google.com/go/auth/oauth2adapt v0.2.2/go.mod h1:wcYjgpZI9+Yu7LyYBg4pqSiaRkfEK3GQcpb7C/uyF1Q=
cloud.google.com/go/compute/metadata v0.3.0 h1:Tz+eQXMEqDIKRsmY3cHTL6FVaynIjX2QxYC4trgAKZc=
@@ -55,8 +55,8 @@ github.com/google/s2a-go v0.1.7/go.mod h1:50CgR4k1jNlWBu4UfS4AcfhVe1r6pdZPygJ3R8
github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/googleapis/enterprise-certificate-proxy v0.3.2 h1:Vie5ybvEvT75RniqhfFxPRy3Bf7vr3h0cechB90XaQs=
github.com/googleapis/enterprise-certificate-proxy v0.3.2/go.mod h1:VLSiSSBs/ksPL8kq3OBOQ6WRI2QnaFynd1DCjZ62+V0=
-github.com/googleapis/gax-go/v2 v2.12.3 h1:5/zPPDvw8Q1SuXjrqrZslrqT7dL/uJT2CQii/cLCKqA=
-github.com/googleapis/gax-go/v2 v2.12.3/go.mod h1:AKloxT6GtNbaLm8QTNSidHUVsHYcBHwWRvkNFJUQcS4=
+github.com/googleapis/gax-go/v2 v2.12.4 h1:9gWcmF85Wvq4ryPFvGFaOgPIs1AQX0d0bcbGw4Z96qg=
+github.com/googleapis/gax-go/v2 v2.12.4/go.mod h1:KYEYLorsnIGDi/rPC8b5TdlB9kbKoFubselGIoBMCwI=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
@@ -81,8 +81,8 @@ go.opentelemetry.io/otel/trace v1.24.0 h1:CsKnnL4dUAr/0llH9FKuc698G04IrpWV0MQA/Y
go.opentelemetry.io/otel/trace v1.24.0/go.mod h1:HPc3Xr/cOApsBI154IU0OI0HJexz+aw5uPdbs3UCjNU=
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
-golang.org/x/crypto v0.22.0 h1:g1v0xeRhjcugydODzvb3mEM9SQ0HGp9s/nh3COQ/C30=
-golang.org/x/crypto v0.22.0/go.mod h1:vr6Su+7cTlO45qkww3VDJlzDn0ctJvRgYbC2NvXHt+M=
+golang.org/x/crypto v0.23.0 h1:dIJU/v2J8Mdglj/8rJ6UUOM3Zc9zLZxVZwwxMooUSAI=
+golang.org/x/crypto v0.23.0/go.mod h1:CKFgDieR+mRhux2Lsu27y0fO304Db0wZe70UKqHu0v8=
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=
@@ -93,11 +93,11 @@ golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73r
golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
-golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w=
-golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8=
+golang.org/x/net v0.25.0 h1:d/OCCoBEUq33pjydKrGQhw7IlUPI2Oylr+8qLx49kac=
+golang.org/x/net v0.25.0/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
-golang.org/x/oauth2 v0.19.0 h1:9+E/EZBCbTLNrbN35fHv/a/d/mOBatymz1zbtQrXpIg=
-golang.org/x/oauth2 v0.19.0/go.mod h1:vYi7skDa1x015PmRRYZ7+s1cWyPgrPiSYRe4rnsexc8=
+golang.org/x/oauth2 v0.21.0 h1:tsimM75w1tF/uws5rbeHzIWxEqElMehnc+iW793zsZs=
+golang.org/x/oauth2 v0.21.0/go.mod h1:XYTD2NtWslqkgxebSiOHnXEap4TF09sJSc7H1sXbhtI=
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
@@ -107,12 +107,12 @@ golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5h
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
-golang.org/x/sys v0.19.0 h1:q5f1RH2jigJ1MoAWp2KTp3gm5zAGFUTarQZ5U386+4o=
-golang.org/x/sys v0.19.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
+golang.org/x/sys v0.20.0 h1:Od9JTbYCk261bKm4M/mw7AklTlFYIa0bIp9BgSm1S8Y=
+golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
-golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
-golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
+golang.org/x/text v0.15.0 h1:h1V/4gjBv8v9cjcR6+AR5+/cIYK5N/WAgiv4xlsEtAk=
+golang.org/x/text v0.15.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
golang.org/x/time v0.5.0 h1:o7cqy6amK/52YcAKIPlM3a+Fpj35zvRj2TP+e1xFSfk=
golang.org/x/time v0.5.0/go.mod h1:3BpzKBy/shNhVucY/MWOyx10tF3SFh9QdLuxbVysPQM=
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
@@ -121,24 +121,24 @@ golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3
golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
-google.golang.org/api v0.177.0 h1:8a0p/BbPa65GlqGWtUKxot4p0TV8OGOfyTjtmkXNXmk=
-google.golang.org/api v0.177.0/go.mod h1:srbhue4MLjkjbkux5p3dw/ocYOSZTaIEvf7bCOnFQDw=
+google.golang.org/api v0.183.0 h1:PNMeRDwo1pJdgNcFQ9GstuLe/noWKIc89pRWRLMvLwE=
+google.golang.org/api v0.183.0/go.mod h1:q43adC5/pHoSZTx5h2mSmdF7NcyfW9JuDyIOJAgS9ZQ=
google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=
google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=
google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo=
-google.golang.org/genproto/googleapis/api v0.0.0-20240429193739-8cf5692501f6 h1:DTJM0R8LECCgFeUwApvcEJHz85HLagW8uRENYxHh1ww=
-google.golang.org/genproto/googleapis/api v0.0.0-20240429193739-8cf5692501f6/go.mod h1:10yRODfgim2/T8csjQsMPgZOMvtytXKTDRzH6HRGzRw=
-google.golang.org/genproto/googleapis/rpc v0.0.0-20240429193739-8cf5692501f6 h1:DujSIu+2tC9Ht0aPNA7jgj23Iq8Ewi5sgkQ++wdvonE=
-google.golang.org/genproto/googleapis/rpc v0.0.0-20240429193739-8cf5692501f6/go.mod h1:WtryC6hu0hhx87FDGxWCDptyssuo68sk10vYjF+T9fY=
+google.golang.org/genproto/googleapis/api v0.0.0-20240604185151-ef581f913117 h1:+rdxYoE3E5htTEWIe15GlN6IfvbURM//Jt0mmkmm6ZU=
+google.golang.org/genproto/googleapis/api v0.0.0-20240604185151-ef581f913117/go.mod h1:OimBR/bc1wPO9iV4NC2bpyjy3VnAwZh5EBPQdtaE5oo=
+google.golang.org/genproto/googleapis/rpc v0.0.0-20240604185151-ef581f913117 h1:1GBuWVLM/KMVUv1t1En5Gs+gFZCNd360GGb4sSxtrhU=
+google.golang.org/genproto/googleapis/rpc v0.0.0-20240604185151-ef581f913117/go.mod h1:EfXuqaE1J41VCDicxHzUDm+8rk+7ZdXzHV0IhO/I6s0=
google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=
google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY=
google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
google.golang.org/grpc v1.33.2/go.mod h1:JMHMWHQWaTccqQQlmk3MJZS+GWXOdAesneDmEnv2fbc=
-google.golang.org/grpc v1.63.2 h1:MUeiw1B2maTVZthpU5xvASfTh3LDbxHd6IJ6QQVU+xM=
-google.golang.org/grpc v1.63.2/go.mod h1:WAX/8DgncnokcFUldAxq7GeB5DXHDbMF+lLvDomNkRA=
+google.golang.org/grpc v1.64.0 h1:KH3VH9y/MgNQg1dE7b3XfVK0GsPSIzJwdF617gUSbvY=
+google.golang.org/grpc v1.64.0/go.mod h1:oxjF8E3FBnjp+/gVFYdWacaLDx9na1aqy9oovLpxQYg=
google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=
google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0=
google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM=
@@ -148,8 +148,8 @@ google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2
google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
-google.golang.org/protobuf v1.34.0 h1:Qo/qEd2RZPCf2nKuorzksSknv0d3ERwp1vFG38gSmH4=
-google.golang.org/protobuf v1.34.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
+google.golang.org/protobuf v1.34.1 h1:9ddQBjfCyZPOHPUiPxpYESBLc+T8P3E+Vo4IbKZgFWg=
+google.golang.org/protobuf v1.34.1/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
diff --git a/resources/accessible_bidding_strategy.pb.go b/resources/accessible_bidding_strategy.pb.go
index 8ee7a9c2..fc10b191 100644
--- a/resources/accessible_bidding_strategy.pb.go
+++ b/resources/accessible_bidding_strategy.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/resources/accessible_bidding_strategy.proto
+// source: google/ads/googleads/v17/resources/accessible_bidding_strategy.proto
package resources
@@ -57,7 +57,7 @@ type AccessibleBiddingStrategy struct {
// Output only. The name of the bidding strategy.
Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
// Output only. The type of the bidding strategy.
- Type enums.BiddingStrategyTypeEnum_BiddingStrategyType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.BiddingStrategyTypeEnum_BiddingStrategyType" json:"type,omitempty"`
+ Type enums.BiddingStrategyTypeEnum_BiddingStrategyType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.BiddingStrategyTypeEnum_BiddingStrategyType" json:"type,omitempty"`
// Output only. The ID of the Customer which owns the bidding strategy.
OwnerCustomerId int64 `protobuf:"varint,5,opt,name=owner_customer_id,json=ownerCustomerId,proto3" json:"owner_customer_id,omitempty"`
// Output only. descriptive_name of the Customer which owns the bidding
@@ -81,7 +81,7 @@ type AccessibleBiddingStrategy struct {
func (x *AccessibleBiddingStrategy) Reset() {
*x = AccessibleBiddingStrategy{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -94,7 +94,7 @@ func (x *AccessibleBiddingStrategy) String() string {
func (*AccessibleBiddingStrategy) ProtoMessage() {}
func (x *AccessibleBiddingStrategy) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -107,7 +107,7 @@ func (x *AccessibleBiddingStrategy) ProtoReflect() protoreflect.Message {
// Deprecated: Use AccessibleBiddingStrategy.ProtoReflect.Descriptor instead.
func (*AccessibleBiddingStrategy) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0}
}
func (x *AccessibleBiddingStrategy) GetResourceName() string {
@@ -271,7 +271,7 @@ type AccessibleBiddingStrategy_MaximizeConversionValue struct {
func (x *AccessibleBiddingStrategy_MaximizeConversionValue) Reset() {
*x = AccessibleBiddingStrategy_MaximizeConversionValue{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -284,7 +284,7 @@ func (x *AccessibleBiddingStrategy_MaximizeConversionValue) String() string {
func (*AccessibleBiddingStrategy_MaximizeConversionValue) ProtoMessage() {}
func (x *AccessibleBiddingStrategy_MaximizeConversionValue) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -297,7 +297,7 @@ func (x *AccessibleBiddingStrategy_MaximizeConversionValue) ProtoReflect() proto
// Deprecated: Use AccessibleBiddingStrategy_MaximizeConversionValue.ProtoReflect.Descriptor instead.
func (*AccessibleBiddingStrategy_MaximizeConversionValue) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 0}
}
func (x *AccessibleBiddingStrategy_MaximizeConversionValue) GetTargetRoas() float64 {
@@ -322,7 +322,7 @@ type AccessibleBiddingStrategy_MaximizeConversions struct {
func (x *AccessibleBiddingStrategy_MaximizeConversions) Reset() {
*x = AccessibleBiddingStrategy_MaximizeConversions{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -335,7 +335,7 @@ func (x *AccessibleBiddingStrategy_MaximizeConversions) String() string {
func (*AccessibleBiddingStrategy_MaximizeConversions) ProtoMessage() {}
func (x *AccessibleBiddingStrategy_MaximizeConversions) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[2]
+ mi := &file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -348,7 +348,7 @@ func (x *AccessibleBiddingStrategy_MaximizeConversions) ProtoReflect() protorefl
// Deprecated: Use AccessibleBiddingStrategy_MaximizeConversions.ProtoReflect.Descriptor instead.
func (*AccessibleBiddingStrategy_MaximizeConversions) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 1}
+ return file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 1}
}
func (x *AccessibleBiddingStrategy_MaximizeConversions) GetTargetCpaMicros() int64 {
@@ -374,7 +374,7 @@ type AccessibleBiddingStrategy_TargetCpa struct {
func (x *AccessibleBiddingStrategy_TargetCpa) Reset() {
*x = AccessibleBiddingStrategy_TargetCpa{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -387,7 +387,7 @@ func (x *AccessibleBiddingStrategy_TargetCpa) String() string {
func (*AccessibleBiddingStrategy_TargetCpa) ProtoMessage() {}
func (x *AccessibleBiddingStrategy_TargetCpa) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[3]
+ mi := &file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -400,7 +400,7 @@ func (x *AccessibleBiddingStrategy_TargetCpa) ProtoReflect() protoreflect.Messag
// Deprecated: Use AccessibleBiddingStrategy_TargetCpa.ProtoReflect.Descriptor instead.
func (*AccessibleBiddingStrategy_TargetCpa) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 2}
+ return file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 2}
}
func (x *AccessibleBiddingStrategy_TargetCpa) GetTargetCpaMicros() int64 {
@@ -419,7 +419,7 @@ type AccessibleBiddingStrategy_TargetImpressionShare struct {
unknownFields protoimpl.UnknownFields
// Output only. The targeted location on the search results page.
- Location enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation `protobuf:"varint,1,opt,name=location,proto3,enum=google.ads.googleads.v16.enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation" json:"location,omitempty"`
+ Location enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation `protobuf:"varint,1,opt,name=location,proto3,enum=google.ads.googleads.v17.enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation" json:"location,omitempty"`
// The chosen fraction of ads to be shown in the targeted location in
// micros. For example, 1% equals 10,000.
LocationFractionMicros *int64 `protobuf:"varint,2,opt,name=location_fraction_micros,json=locationFractionMicros,proto3,oneof" json:"location_fraction_micros,omitempty"`
@@ -432,7 +432,7 @@ type AccessibleBiddingStrategy_TargetImpressionShare struct {
func (x *AccessibleBiddingStrategy_TargetImpressionShare) Reset() {
*x = AccessibleBiddingStrategy_TargetImpressionShare{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -445,7 +445,7 @@ func (x *AccessibleBiddingStrategy_TargetImpressionShare) String() string {
func (*AccessibleBiddingStrategy_TargetImpressionShare) ProtoMessage() {}
func (x *AccessibleBiddingStrategy_TargetImpressionShare) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[4]
+ mi := &file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -458,7 +458,7 @@ func (x *AccessibleBiddingStrategy_TargetImpressionShare) ProtoReflect() protore
// Deprecated: Use AccessibleBiddingStrategy_TargetImpressionShare.ProtoReflect.Descriptor instead.
func (*AccessibleBiddingStrategy_TargetImpressionShare) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 3}
+ return file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 3}
}
func (x *AccessibleBiddingStrategy_TargetImpressionShare) GetLocation() enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation {
@@ -497,7 +497,7 @@ type AccessibleBiddingStrategy_TargetRoas struct {
func (x *AccessibleBiddingStrategy_TargetRoas) Reset() {
*x = AccessibleBiddingStrategy_TargetRoas{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -510,7 +510,7 @@ func (x *AccessibleBiddingStrategy_TargetRoas) String() string {
func (*AccessibleBiddingStrategy_TargetRoas) ProtoMessage() {}
func (x *AccessibleBiddingStrategy_TargetRoas) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[5]
+ mi := &file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -523,7 +523,7 @@ func (x *AccessibleBiddingStrategy_TargetRoas) ProtoReflect() protoreflect.Messa
// Deprecated: Use AccessibleBiddingStrategy_TargetRoas.ProtoReflect.Descriptor instead.
func (*AccessibleBiddingStrategy_TargetRoas) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 4}
+ return file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 4}
}
func (x *AccessibleBiddingStrategy_TargetRoas) GetTargetRoas() float64 {
@@ -548,7 +548,7 @@ type AccessibleBiddingStrategy_TargetSpend struct {
// https://ads-developers.googleblog.com/2020/05/reminder-about-sunset-creation-of.html
// for details.
//
- // Deprecated: Marked as deprecated in google/ads/googleads/v16/resources/accessible_bidding_strategy.proto.
+ // Deprecated: Marked as deprecated in google/ads/googleads/v17/resources/accessible_bidding_strategy.proto.
TargetSpendMicros *int64 `protobuf:"varint,1,opt,name=target_spend_micros,json=targetSpendMicros,proto3,oneof" json:"target_spend_micros,omitempty"`
// Output only. Maximum bid limit that can be set by the bid strategy.
// The limit applies to all keywords managed by the strategy.
@@ -558,7 +558,7 @@ type AccessibleBiddingStrategy_TargetSpend struct {
func (x *AccessibleBiddingStrategy_TargetSpend) Reset() {
*x = AccessibleBiddingStrategy_TargetSpend{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -571,7 +571,7 @@ func (x *AccessibleBiddingStrategy_TargetSpend) String() string {
func (*AccessibleBiddingStrategy_TargetSpend) ProtoMessage() {}
func (x *AccessibleBiddingStrategy_TargetSpend) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[6]
+ mi := &file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -584,10 +584,10 @@ func (x *AccessibleBiddingStrategy_TargetSpend) ProtoReflect() protoreflect.Mess
// Deprecated: Use AccessibleBiddingStrategy_TargetSpend.ProtoReflect.Descriptor instead.
func (*AccessibleBiddingStrategy_TargetSpend) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 5}
+ return file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 5}
}
-// Deprecated: Marked as deprecated in google/ads/googleads/v16/resources/accessible_bidding_strategy.proto.
+// Deprecated: Marked as deprecated in google/ads/googleads/v17/resources/accessible_bidding_strategy.proto.
func (x *AccessibleBiddingStrategy_TargetSpend) GetTargetSpendMicros() int64 {
if x != nil && x.TargetSpendMicros != nil {
return *x.TargetSpendMicros
@@ -602,21 +602,21 @@ func (x *AccessibleBiddingStrategy_TargetSpend) GetCpcBidCeilingMicros() int64 {
return 0
}
-var File_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_rawDesc = []byte{
0x0a, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x5f,
0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x22, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69,
0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x6d,
0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x5f, 0x6c,
0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67,
@@ -636,7 +636,7 @@ var file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_ra
0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x03,
0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x64, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04,
0x20, 0x01, 0x28, 0x0e, 0x32, 0x4b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72,
0x61, 0x74, 0x65, 0x67, 0x79, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x69,
0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x54, 0x79, 0x70,
@@ -651,7 +651,7 @@ var file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_ra
0x69, 0x6d, 0x69, 0x7a, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x55, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
0x73, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x42, 0x69, 0x64, 0x64,
0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x2e, 0x4d, 0x61, 0x78, 0x69,
0x6d, 0x69, 0x7a, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61,
@@ -660,7 +660,7 @@ var file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_ra
0x6c, 0x75, 0x65, 0x12, 0x8b, 0x01, 0x0a, 0x14, 0x6d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65,
0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x08, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x51, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65,
0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x69, 0x62,
0x6c, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67,
0x79, 0x2e, 0x4d, 0x61, 0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72,
@@ -668,7 +668,7 @@ var file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_ra
0x78, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
0x73, 0x12, 0x6d, 0x0a, 0x0a, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, 0x18,
0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x47, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73,
0x73, 0x69, 0x62, 0x6c, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61,
0x74, 0x65, 0x67, 0x79, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x42, 0x03,
@@ -676,7 +676,7 @@ var file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_ra
0x12, 0x92, 0x01, 0x0a, 0x17, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x72,
0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x0a, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x53, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65,
0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x69, 0x62,
0x6c, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67,
0x79, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69,
@@ -685,14 +685,14 @@ var file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_ra
0x53, 0x68, 0x61, 0x72, 0x65, 0x12, 0x70, 0x0a, 0x0b, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f,
0x72, 0x6f, 0x61, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x48, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e,
0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e,
0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74,
0x52, 0x6f, 0x61, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0a, 0x74, 0x61, 0x72,
0x67, 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, 0x12, 0x73, 0x0a, 0x0c, 0x74, 0x61, 0x72, 0x67, 0x65,
0x74, 0x5f, 0x73, 0x70, 0x65, 0x6e, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x49, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63,
0x65, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x42, 0x69, 0x64,
0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x2e, 0x54, 0x61, 0x72,
0x67, 0x65, 0x74, 0x53, 0x70, 0x65, 0x6e, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52,
@@ -715,7 +715,7 @@ var file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_ra
0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x12, 0x80, 0x01, 0x0a, 0x08, 0x6c, 0x6f, 0x63,
0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5f, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x61, 0x72,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x61, 0x72,
0x67, 0x65, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x68, 0x61,
0x72, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54,
0x61, 0x72, 0x67, 0x65, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53,
@@ -759,58 +759,58 @@ var file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_ra
0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x08, 0x0a,
0x06, 0x73, 0x63, 0x68, 0x65, 0x6d, 0x65, 0x42, 0x90, 0x02, 0x0a, 0x26, 0x63, 0x6f, 0x6d, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63,
0x65, 0x73, 0x42, 0x1e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x42, 0x69,
0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x4b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x72, 0x65,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65,
0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47,
+ 0x31, 0x37, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
0x73, 0xea, 0x02, 0x26, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_rawDescData = file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_rawDesc
+ file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_rawDescData = file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_rawDesc
)
-func file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_rawDescData)
+func file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_rawDescData)
})
- return file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes = make([]protoimpl.MessageInfo, 7)
-var file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_goTypes = []interface{}{
- (*AccessibleBiddingStrategy)(nil), // 0: google.ads.googleads.v16.resources.AccessibleBiddingStrategy
- (*AccessibleBiddingStrategy_MaximizeConversionValue)(nil), // 1: google.ads.googleads.v16.resources.AccessibleBiddingStrategy.MaximizeConversionValue
- (*AccessibleBiddingStrategy_MaximizeConversions)(nil), // 2: google.ads.googleads.v16.resources.AccessibleBiddingStrategy.MaximizeConversions
- (*AccessibleBiddingStrategy_TargetCpa)(nil), // 3: google.ads.googleads.v16.resources.AccessibleBiddingStrategy.TargetCpa
- (*AccessibleBiddingStrategy_TargetImpressionShare)(nil), // 4: google.ads.googleads.v16.resources.AccessibleBiddingStrategy.TargetImpressionShare
- (*AccessibleBiddingStrategy_TargetRoas)(nil), // 5: google.ads.googleads.v16.resources.AccessibleBiddingStrategy.TargetRoas
- (*AccessibleBiddingStrategy_TargetSpend)(nil), // 6: google.ads.googleads.v16.resources.AccessibleBiddingStrategy.TargetSpend
- (enums.BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 7: google.ads.googleads.v16.enums.BiddingStrategyTypeEnum.BiddingStrategyType
- (enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation)(0), // 8: google.ads.googleads.v16.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation
-}
-var file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_depIdxs = []int32{
- 7, // 0: google.ads.googleads.v16.resources.AccessibleBiddingStrategy.type:type_name -> google.ads.googleads.v16.enums.BiddingStrategyTypeEnum.BiddingStrategyType
- 1, // 1: google.ads.googleads.v16.resources.AccessibleBiddingStrategy.maximize_conversion_value:type_name -> google.ads.googleads.v16.resources.AccessibleBiddingStrategy.MaximizeConversionValue
- 2, // 2: google.ads.googleads.v16.resources.AccessibleBiddingStrategy.maximize_conversions:type_name -> google.ads.googleads.v16.resources.AccessibleBiddingStrategy.MaximizeConversions
- 3, // 3: google.ads.googleads.v16.resources.AccessibleBiddingStrategy.target_cpa:type_name -> google.ads.googleads.v16.resources.AccessibleBiddingStrategy.TargetCpa
- 4, // 4: google.ads.googleads.v16.resources.AccessibleBiddingStrategy.target_impression_share:type_name -> google.ads.googleads.v16.resources.AccessibleBiddingStrategy.TargetImpressionShare
- 5, // 5: google.ads.googleads.v16.resources.AccessibleBiddingStrategy.target_roas:type_name -> google.ads.googleads.v16.resources.AccessibleBiddingStrategy.TargetRoas
- 6, // 6: google.ads.googleads.v16.resources.AccessibleBiddingStrategy.target_spend:type_name -> google.ads.googleads.v16.resources.AccessibleBiddingStrategy.TargetSpend
- 8, // 7: google.ads.googleads.v16.resources.AccessibleBiddingStrategy.TargetImpressionShare.location:type_name -> google.ads.googleads.v16.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation
+ return file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes = make([]protoimpl.MessageInfo, 7)
+var file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_goTypes = []interface{}{
+ (*AccessibleBiddingStrategy)(nil), // 0: google.ads.googleads.v17.resources.AccessibleBiddingStrategy
+ (*AccessibleBiddingStrategy_MaximizeConversionValue)(nil), // 1: google.ads.googleads.v17.resources.AccessibleBiddingStrategy.MaximizeConversionValue
+ (*AccessibleBiddingStrategy_MaximizeConversions)(nil), // 2: google.ads.googleads.v17.resources.AccessibleBiddingStrategy.MaximizeConversions
+ (*AccessibleBiddingStrategy_TargetCpa)(nil), // 3: google.ads.googleads.v17.resources.AccessibleBiddingStrategy.TargetCpa
+ (*AccessibleBiddingStrategy_TargetImpressionShare)(nil), // 4: google.ads.googleads.v17.resources.AccessibleBiddingStrategy.TargetImpressionShare
+ (*AccessibleBiddingStrategy_TargetRoas)(nil), // 5: google.ads.googleads.v17.resources.AccessibleBiddingStrategy.TargetRoas
+ (*AccessibleBiddingStrategy_TargetSpend)(nil), // 6: google.ads.googleads.v17.resources.AccessibleBiddingStrategy.TargetSpend
+ (enums.BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 7: google.ads.googleads.v17.enums.BiddingStrategyTypeEnum.BiddingStrategyType
+ (enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation)(0), // 8: google.ads.googleads.v17.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation
+}
+var file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_depIdxs = []int32{
+ 7, // 0: google.ads.googleads.v17.resources.AccessibleBiddingStrategy.type:type_name -> google.ads.googleads.v17.enums.BiddingStrategyTypeEnum.BiddingStrategyType
+ 1, // 1: google.ads.googleads.v17.resources.AccessibleBiddingStrategy.maximize_conversion_value:type_name -> google.ads.googleads.v17.resources.AccessibleBiddingStrategy.MaximizeConversionValue
+ 2, // 2: google.ads.googleads.v17.resources.AccessibleBiddingStrategy.maximize_conversions:type_name -> google.ads.googleads.v17.resources.AccessibleBiddingStrategy.MaximizeConversions
+ 3, // 3: google.ads.googleads.v17.resources.AccessibleBiddingStrategy.target_cpa:type_name -> google.ads.googleads.v17.resources.AccessibleBiddingStrategy.TargetCpa
+ 4, // 4: google.ads.googleads.v17.resources.AccessibleBiddingStrategy.target_impression_share:type_name -> google.ads.googleads.v17.resources.AccessibleBiddingStrategy.TargetImpressionShare
+ 5, // 5: google.ads.googleads.v17.resources.AccessibleBiddingStrategy.target_roas:type_name -> google.ads.googleads.v17.resources.AccessibleBiddingStrategy.TargetRoas
+ 6, // 6: google.ads.googleads.v17.resources.AccessibleBiddingStrategy.target_spend:type_name -> google.ads.googleads.v17.resources.AccessibleBiddingStrategy.TargetSpend
+ 8, // 7: google.ads.googleads.v17.resources.AccessibleBiddingStrategy.TargetImpressionShare.location:type_name -> google.ads.googleads.v17.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation
8, // [8:8] is the sub-list for method output_type
8, // [8:8] is the sub-list for method input_type
8, // [8:8] is the sub-list for extension type_name
@@ -818,13 +818,13 @@ var file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_de
0, // [0:8] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_init() }
-func file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_init() {
- if File_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto != nil {
+func init() { file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_init() }
+func file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_init() {
+ if File_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccessibleBiddingStrategy); i {
case 0:
return &v.state
@@ -836,7 +836,7 @@ func file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_i
return nil
}
}
- file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccessibleBiddingStrategy_MaximizeConversionValue); i {
case 0:
return &v.state
@@ -848,7 +848,7 @@ func file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_i
return nil
}
}
- file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccessibleBiddingStrategy_MaximizeConversions); i {
case 0:
return &v.state
@@ -860,7 +860,7 @@ func file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_i
return nil
}
}
- file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccessibleBiddingStrategy_TargetCpa); i {
case 0:
return &v.state
@@ -872,7 +872,7 @@ func file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_i
return nil
}
}
- file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccessibleBiddingStrategy_TargetImpressionShare); i {
case 0:
return &v.state
@@ -884,7 +884,7 @@ func file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_i
return nil
}
}
- file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccessibleBiddingStrategy_TargetRoas); i {
case 0:
return &v.state
@@ -896,7 +896,7 @@ func file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_i
return nil
}
}
- file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccessibleBiddingStrategy_TargetSpend); i {
case 0:
return &v.state
@@ -909,7 +909,7 @@ func file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_i
}
}
}
- file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[0].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[0].OneofWrappers = []interface{}{
(*AccessibleBiddingStrategy_MaximizeConversionValue_)(nil),
(*AccessibleBiddingStrategy_MaximizeConversions_)(nil),
(*AccessibleBiddingStrategy_TargetCpa_)(nil),
@@ -917,26 +917,26 @@ func file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_i
(*AccessibleBiddingStrategy_TargetRoas_)(nil),
(*AccessibleBiddingStrategy_TargetSpend_)(nil),
}
- file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[3].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[4].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[5].OneofWrappers = []interface{}{}
- file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes[6].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[3].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[4].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[5].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes[6].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_rawDesc,
NumEnums: 0,
NumMessages: 7,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto = out.File
- file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_rawDesc = nil
- file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_goTypes = nil
- file_google_ads_googleads_v16_resources_accessible_bidding_strategy_proto_depIdxs = nil
+ File_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto = out.File
+ file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_rawDesc = nil
+ file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_goTypes = nil
+ file_google_ads_googleads_v17_resources_accessible_bidding_strategy_proto_depIdxs = nil
}
diff --git a/resources/account_budget.pb.go b/resources/account_budget.pb.go
index 73e4187e..2f103bb9 100644
--- a/resources/account_budget.pb.go
+++ b/resources/account_budget.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/resources/account_budget.proto
+// source: google/ads/googleads/v17/resources/account_budget.proto
package resources
@@ -70,7 +70,7 @@ type AccountBudget struct {
// `customers/{customer_id}/billingSetups/{billing_setup_id}`
BillingSetup *string `protobuf:"bytes,24,opt,name=billing_setup,json=billingSetup,proto3,oneof" json:"billing_setup,omitempty"`
// Output only. The status of this account-level budget.
- Status enums.AccountBudgetStatusEnum_AccountBudgetStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.AccountBudgetStatusEnum_AccountBudgetStatus" json:"status,omitempty"`
+ Status enums.AccountBudgetStatusEnum_AccountBudgetStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.AccountBudgetStatusEnum_AccountBudgetStatus" json:"status,omitempty"`
// Output only. The name of the account-level budget.
Name *string `protobuf:"bytes,25,opt,name=name,proto3,oneof" json:"name,omitempty"`
// Output only. The proposed start time of the account-level budget in
@@ -149,7 +149,7 @@ type AccountBudget struct {
func (x *AccountBudget) Reset() {
*x = AccountBudget{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_resources_account_budget_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_resources_account_budget_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -162,7 +162,7 @@ func (x *AccountBudget) String() string {
func (*AccountBudget) ProtoMessage() {}
func (x *AccountBudget) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_resources_account_budget_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_resources_account_budget_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -175,7 +175,7 @@ func (x *AccountBudget) ProtoReflect() protoreflect.Message {
// Deprecated: Use AccountBudget.ProtoReflect.Descriptor instead.
func (*AccountBudget) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_resources_account_budget_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_resources_account_budget_proto_rawDescGZIP(), []int{0}
}
func (x *AccountBudget) GetResourceName() string {
@@ -379,7 +379,7 @@ type AccountBudget_ProposedEndDateTime struct {
type AccountBudget_ProposedEndTimeType struct {
// Output only. The proposed end time as a well-defined type, for example,
// FOREVER.
- ProposedEndTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,9,opt,name=proposed_end_time_type,json=proposedEndTimeType,proto3,enum=google.ads.googleads.v16.enums.TimeTypeEnum_TimeType,oneof"`
+ ProposedEndTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,9,opt,name=proposed_end_time_type,json=proposedEndTimeType,proto3,enum=google.ads.googleads.v17.enums.TimeTypeEnum_TimeType,oneof"`
}
func (*AccountBudget_ProposedEndDateTime) isAccountBudget_ProposedEndTime() {}
@@ -398,7 +398,7 @@ type AccountBudget_ApprovedEndDateTime struct {
type AccountBudget_ApprovedEndTimeType struct {
// Output only. The approved end time as a well-defined type, for example,
// FOREVER.
- ApprovedEndTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,11,opt,name=approved_end_time_type,json=approvedEndTimeType,proto3,enum=google.ads.googleads.v16.enums.TimeTypeEnum_TimeType,oneof"`
+ ApprovedEndTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,11,opt,name=approved_end_time_type,json=approvedEndTimeType,proto3,enum=google.ads.googleads.v17.enums.TimeTypeEnum_TimeType,oneof"`
}
func (*AccountBudget_ApprovedEndDateTime) isAccountBudget_ApprovedEndTime() {}
@@ -418,7 +418,7 @@ type AccountBudget_ProposedSpendingLimitMicros struct {
type AccountBudget_ProposedSpendingLimitType struct {
// Output only. The proposed spending limit as a well-defined type, for
// example, INFINITE.
- ProposedSpendingLimitType enums.SpendingLimitTypeEnum_SpendingLimitType `protobuf:"varint,13,opt,name=proposed_spending_limit_type,json=proposedSpendingLimitType,proto3,enum=google.ads.googleads.v16.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"`
+ ProposedSpendingLimitType enums.SpendingLimitTypeEnum_SpendingLimitType `protobuf:"varint,13,opt,name=proposed_spending_limit_type,json=proposedSpendingLimitType,proto3,enum=google.ads.googleads.v17.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"`
}
func (*AccountBudget_ProposedSpendingLimitMicros) isAccountBudget_ProposedSpendingLimit() {}
@@ -441,7 +441,7 @@ type AccountBudget_ApprovedSpendingLimitType struct {
// Output only. The approved spending limit as a well-defined type, for
// example, INFINITE. This will only be populated if the approved spending
// limit is INFINITE.
- ApprovedSpendingLimitType enums.SpendingLimitTypeEnum_SpendingLimitType `protobuf:"varint,15,opt,name=approved_spending_limit_type,json=approvedSpendingLimitType,proto3,enum=google.ads.googleads.v16.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"`
+ ApprovedSpendingLimitType enums.SpendingLimitTypeEnum_SpendingLimitType `protobuf:"varint,15,opt,name=approved_spending_limit_type,json=approvedSpendingLimitType,proto3,enum=google.ads.googleads.v17.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"`
}
func (*AccountBudget_ApprovedSpendingLimitMicros) isAccountBudget_ApprovedSpendingLimit() {}
@@ -473,7 +473,7 @@ type AccountBudget_AdjustedSpendingLimitType struct {
// example, INFINITE. This will only be populated if the adjusted spending
// limit is INFINITE, which is guaranteed to be true if the approved
// spending limit is INFINITE.
- AdjustedSpendingLimitType enums.SpendingLimitTypeEnum_SpendingLimitType `protobuf:"varint,17,opt,name=adjusted_spending_limit_type,json=adjustedSpendingLimitType,proto3,enum=google.ads.googleads.v16.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"`
+ AdjustedSpendingLimitType enums.SpendingLimitTypeEnum_SpendingLimitType `protobuf:"varint,17,opt,name=adjusted_spending_limit_type,json=adjustedSpendingLimitType,proto3,enum=google.ads.googleads.v17.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"`
}
func (*AccountBudget_AdjustedSpendingLimitMicros) isAccountBudget_AdjustedSpendingLimit() {}
@@ -494,7 +494,7 @@ type AccountBudget_PendingAccountBudgetProposal struct {
AccountBudgetProposal *string `protobuf:"bytes,12,opt,name=account_budget_proposal,json=accountBudgetProposal,proto3,oneof" json:"account_budget_proposal,omitempty"`
// Output only. The type of this proposal, for example, END to end the
// budget associated with this proposal.
- ProposalType enums.AccountBudgetProposalTypeEnum_AccountBudgetProposalType `protobuf:"varint,2,opt,name=proposal_type,json=proposalType,proto3,enum=google.ads.googleads.v16.enums.AccountBudgetProposalTypeEnum_AccountBudgetProposalType" json:"proposal_type,omitempty"`
+ ProposalType enums.AccountBudgetProposalTypeEnum_AccountBudgetProposalType `protobuf:"varint,2,opt,name=proposal_type,json=proposalType,proto3,enum=google.ads.googleads.v17.enums.AccountBudgetProposalTypeEnum_AccountBudgetProposalType" json:"proposal_type,omitempty"`
// Output only. The name to assign to the account-level budget.
Name *string `protobuf:"bytes,13,opt,name=name,proto3,oneof" json:"name,omitempty"`
// Output only. The start time in yyyy-MM-dd HH:mm:ss format.
@@ -526,7 +526,7 @@ type AccountBudget_PendingAccountBudgetProposal struct {
func (x *AccountBudget_PendingAccountBudgetProposal) Reset() {
*x = AccountBudget_PendingAccountBudgetProposal{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_resources_account_budget_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_resources_account_budget_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -539,7 +539,7 @@ func (x *AccountBudget_PendingAccountBudgetProposal) String() string {
func (*AccountBudget_PendingAccountBudgetProposal) ProtoMessage() {}
func (x *AccountBudget_PendingAccountBudgetProposal) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_resources_account_budget_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_resources_account_budget_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -552,7 +552,7 @@ func (x *AccountBudget_PendingAccountBudgetProposal) ProtoReflect() protoreflect
// Deprecated: Use AccountBudget_PendingAccountBudgetProposal.ProtoReflect.Descriptor instead.
func (*AccountBudget_PendingAccountBudgetProposal) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_resources_account_budget_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_resources_account_budget_proto_rawDescGZIP(), []int{0, 0}
}
func (x *AccountBudget_PendingAccountBudgetProposal) GetAccountBudgetProposal() string {
@@ -657,7 +657,7 @@ type AccountBudget_PendingAccountBudgetProposal_EndDateTime struct {
type AccountBudget_PendingAccountBudgetProposal_EndTimeType struct {
// Output only. The end time as a well-defined type, for example, FOREVER.
- EndTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,6,opt,name=end_time_type,json=endTimeType,proto3,enum=google.ads.googleads.v16.enums.TimeTypeEnum_TimeType,oneof"`
+ EndTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,6,opt,name=end_time_type,json=endTimeType,proto3,enum=google.ads.googleads.v17.enums.TimeTypeEnum_TimeType,oneof"`
}
func (*AccountBudget_PendingAccountBudgetProposal_EndDateTime) isAccountBudget_PendingAccountBudgetProposal_EndTime() {
@@ -679,7 +679,7 @@ type AccountBudget_PendingAccountBudgetProposal_SpendingLimitMicros struct {
type AccountBudget_PendingAccountBudgetProposal_SpendingLimitType struct {
// Output only. The spending limit as a well-defined type, for example,
// INFINITE.
- SpendingLimitType enums.SpendingLimitTypeEnum_SpendingLimitType `protobuf:"varint,8,opt,name=spending_limit_type,json=spendingLimitType,proto3,enum=google.ads.googleads.v16.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"`
+ SpendingLimitType enums.SpendingLimitTypeEnum_SpendingLimitType `protobuf:"varint,8,opt,name=spending_limit_type,json=spendingLimitType,proto3,enum=google.ads.googleads.v17.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"`
}
func (*AccountBudget_PendingAccountBudgetProposal_SpendingLimitMicros) isAccountBudget_PendingAccountBudgetProposal_SpendingLimit() {
@@ -688,28 +688,28 @@ func (*AccountBudget_PendingAccountBudgetProposal_SpendingLimitMicros) isAccount
func (*AccountBudget_PendingAccountBudgetProposal_SpendingLimitType) isAccountBudget_PendingAccountBudgetProposal_SpendingLimit() {
}
-var File_google_ads_googleads_v16_resources_account_budget_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_resources_account_budget_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_resources_account_budget_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_resources_account_budget_proto_rawDesc = []byte{
0x0a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x62, 0x75, 0x64,
0x67, 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x22, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x41, 0x67,
+ 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x41, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x63,
+ 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x63,
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x70, 0x72, 0x6f,
0x70, 0x6f, 0x73, 0x61, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f,
0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x38, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x70, 0x65,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x70, 0x65,
0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f,
@@ -731,7 +731,7 @@ var file_google_ads_googleads_v16_resources_account_budget_proto_rawDesc = []byt
0x6c, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x75, 0x70, 0x88, 0x01, 0x01, 0x12, 0x68, 0x0a, 0x06,
0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4b, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x63,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x63,
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75,
0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64,
0x67, 0x65, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06,
@@ -762,7 +762,7 @@ var file_google_ads_googleads_v16_resources_account_budget_proto_rawDesc = []byt
0x0a, 0x10, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x6f, 0x73,
0x61, 0x6c, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x4e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x63,
+ 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x63,
0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x2e, 0x50, 0x65, 0x6e, 0x64,
0x69, 0x6e, 0x67, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74,
0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0f, 0x70,
@@ -774,7 +774,7 @@ var file_google_ads_googleads_v16_resources_account_budget_proto_rawDesc = []byt
0x6f, 0x70, 0x6f, 0x73, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f,
0x74, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x69, 0x6d, 0x65,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x69, 0x6d, 0x65,
0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70,
0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x70, 0x6f, 0x73,
0x65, 0x64, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x3a, 0x0a,
@@ -785,7 +785,7 @@ var file_google_ads_googleads_v16_resources_account_budget_proto_rawDesc = []byt
0x72, 0x6f, 0x76, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x74,
0x79, 0x70, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x54,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x54,
0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65,
0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x01, 0x52, 0x13, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65,
0x64, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x4a, 0x0a, 0x1e,
@@ -797,7 +797,7 @@ var file_google_ads_googleads_v16_resources_account_budget_proto_rawDesc = []byt
0x70, 0x6f, 0x73, 0x65, 0x64, 0x5f, 0x73, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x6c,
0x69, 0x6d, 0x69, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0e, 0x32,
0x47, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2e, 0x53, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x54, 0x79,
0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x4c,
0x69, 0x6d, 0x69, 0x74, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x02, 0x52,
@@ -811,7 +811,7 @@ var file_google_ads_googleads_v16_resources_account_budget_proto_rawDesc = []byt
0x76, 0x65, 0x64, 0x5f, 0x73, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x6c, 0x69, 0x6d,
0x69, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x47, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53,
0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x54, 0x79, 0x70, 0x65,
0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x6d,
0x69, 0x74, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x03, 0x52, 0x19, 0x61,
@@ -825,7 +825,7 @@ var file_google_ads_googleads_v16_resources_account_budget_proto_rawDesc = []byt
0x64, 0x5f, 0x73, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74,
0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x47, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x70, 0x65,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x70, 0x65,
0x6e, 0x64, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e,
0x75, 0x6d, 0x2e, 0x53, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x6d, 0x69, 0x74,
0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x04, 0x52, 0x19, 0x61, 0x64, 0x6a,
@@ -842,7 +842,7 @@ var file_google_ads_googleads_v16_resources_account_budget_proto_rawDesc = []byt
0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x88, 0x01, 0x01, 0x12, 0x81, 0x01, 0x0a,
0x0d, 0x70, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02,
0x20, 0x01, 0x28, 0x0e, 0x32, 0x57, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64,
0x67, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x45,
0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65,
@@ -868,7 +868,7 @@ var file_google_ads_googleads_v16_resources_account_budget_proto_rawDesc = []byt
0x65, 0x12, 0x60, 0x0a, 0x0d, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x74, 0x79,
0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x54, 0x79,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x54, 0x79,
0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x42,
0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, 0x0b, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x54,
0x79, 0x70, 0x65, 0x12, 0x39, 0x0a, 0x15, 0x73, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f,
@@ -878,7 +878,7 @@ var file_google_ads_googleads_v16_resources_account_budget_proto_rawDesc = []byt
0x0a, 0x13, 0x73, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74,
0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x47, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x70, 0x65,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x70, 0x65,
0x6e, 0x64, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e,
0x75, 0x6d, 0x2e, 0x53, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x6d, 0x69, 0x74,
0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x01, 0x52, 0x11, 0x73, 0x70, 0x65,
@@ -916,56 +916,56 @@ var file_google_ads_googleads_v16_resources_account_budget_proto_rawDesc = []byt
0x64, 0x65, 0x72, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x6e,
0x6f, 0x74, 0x65, 0x73, 0x42, 0x84, 0x02, 0x0a, 0x26, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42,
0x12, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72,
0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x4b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x72,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72,
0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63,
0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e,
- 0x56, 0x31, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22,
+ 0x56, 0x31, 0x37, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22,
0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63,
+ 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63,
0x65, 0x73, 0xea, 0x02, 0x26, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73,
- 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36,
+ 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37,
0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_resources_account_budget_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_resources_account_budget_proto_rawDescData = file_google_ads_googleads_v16_resources_account_budget_proto_rawDesc
+ file_google_ads_googleads_v17_resources_account_budget_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_resources_account_budget_proto_rawDescData = file_google_ads_googleads_v17_resources_account_budget_proto_rawDesc
)
-func file_google_ads_googleads_v16_resources_account_budget_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_resources_account_budget_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_resources_account_budget_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_account_budget_proto_rawDescData)
+func file_google_ads_googleads_v17_resources_account_budget_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_resources_account_budget_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_resources_account_budget_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_account_budget_proto_rawDescData)
})
- return file_google_ads_googleads_v16_resources_account_budget_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_resources_account_budget_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
-var file_google_ads_googleads_v16_resources_account_budget_proto_goTypes = []interface{}{
- (*AccountBudget)(nil), // 0: google.ads.googleads.v16.resources.AccountBudget
- (*AccountBudget_PendingAccountBudgetProposal)(nil), // 1: google.ads.googleads.v16.resources.AccountBudget.PendingAccountBudgetProposal
- (enums.AccountBudgetStatusEnum_AccountBudgetStatus)(0), // 2: google.ads.googleads.v16.enums.AccountBudgetStatusEnum.AccountBudgetStatus
- (enums.TimeTypeEnum_TimeType)(0), // 3: google.ads.googleads.v16.enums.TimeTypeEnum.TimeType
- (enums.SpendingLimitTypeEnum_SpendingLimitType)(0), // 4: google.ads.googleads.v16.enums.SpendingLimitTypeEnum.SpendingLimitType
- (enums.AccountBudgetProposalTypeEnum_AccountBudgetProposalType)(0), // 5: google.ads.googleads.v16.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType
-}
-var file_google_ads_googleads_v16_resources_account_budget_proto_depIdxs = []int32{
- 2, // 0: google.ads.googleads.v16.resources.AccountBudget.status:type_name -> google.ads.googleads.v16.enums.AccountBudgetStatusEnum.AccountBudgetStatus
- 1, // 1: google.ads.googleads.v16.resources.AccountBudget.pending_proposal:type_name -> google.ads.googleads.v16.resources.AccountBudget.PendingAccountBudgetProposal
- 3, // 2: google.ads.googleads.v16.resources.AccountBudget.proposed_end_time_type:type_name -> google.ads.googleads.v16.enums.TimeTypeEnum.TimeType
- 3, // 3: google.ads.googleads.v16.resources.AccountBudget.approved_end_time_type:type_name -> google.ads.googleads.v16.enums.TimeTypeEnum.TimeType
- 4, // 4: google.ads.googleads.v16.resources.AccountBudget.proposed_spending_limit_type:type_name -> google.ads.googleads.v16.enums.SpendingLimitTypeEnum.SpendingLimitType
- 4, // 5: google.ads.googleads.v16.resources.AccountBudget.approved_spending_limit_type:type_name -> google.ads.googleads.v16.enums.SpendingLimitTypeEnum.SpendingLimitType
- 4, // 6: google.ads.googleads.v16.resources.AccountBudget.adjusted_spending_limit_type:type_name -> google.ads.googleads.v16.enums.SpendingLimitTypeEnum.SpendingLimitType
- 5, // 7: google.ads.googleads.v16.resources.AccountBudget.PendingAccountBudgetProposal.proposal_type:type_name -> google.ads.googleads.v16.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType
- 3, // 8: google.ads.googleads.v16.resources.AccountBudget.PendingAccountBudgetProposal.end_time_type:type_name -> google.ads.googleads.v16.enums.TimeTypeEnum.TimeType
- 4, // 9: google.ads.googleads.v16.resources.AccountBudget.PendingAccountBudgetProposal.spending_limit_type:type_name -> google.ads.googleads.v16.enums.SpendingLimitTypeEnum.SpendingLimitType
+ return file_google_ads_googleads_v17_resources_account_budget_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_resources_account_budget_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
+var file_google_ads_googleads_v17_resources_account_budget_proto_goTypes = []interface{}{
+ (*AccountBudget)(nil), // 0: google.ads.googleads.v17.resources.AccountBudget
+ (*AccountBudget_PendingAccountBudgetProposal)(nil), // 1: google.ads.googleads.v17.resources.AccountBudget.PendingAccountBudgetProposal
+ (enums.AccountBudgetStatusEnum_AccountBudgetStatus)(0), // 2: google.ads.googleads.v17.enums.AccountBudgetStatusEnum.AccountBudgetStatus
+ (enums.TimeTypeEnum_TimeType)(0), // 3: google.ads.googleads.v17.enums.TimeTypeEnum.TimeType
+ (enums.SpendingLimitTypeEnum_SpendingLimitType)(0), // 4: google.ads.googleads.v17.enums.SpendingLimitTypeEnum.SpendingLimitType
+ (enums.AccountBudgetProposalTypeEnum_AccountBudgetProposalType)(0), // 5: google.ads.googleads.v17.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType
+}
+var file_google_ads_googleads_v17_resources_account_budget_proto_depIdxs = []int32{
+ 2, // 0: google.ads.googleads.v17.resources.AccountBudget.status:type_name -> google.ads.googleads.v17.enums.AccountBudgetStatusEnum.AccountBudgetStatus
+ 1, // 1: google.ads.googleads.v17.resources.AccountBudget.pending_proposal:type_name -> google.ads.googleads.v17.resources.AccountBudget.PendingAccountBudgetProposal
+ 3, // 2: google.ads.googleads.v17.resources.AccountBudget.proposed_end_time_type:type_name -> google.ads.googleads.v17.enums.TimeTypeEnum.TimeType
+ 3, // 3: google.ads.googleads.v17.resources.AccountBudget.approved_end_time_type:type_name -> google.ads.googleads.v17.enums.TimeTypeEnum.TimeType
+ 4, // 4: google.ads.googleads.v17.resources.AccountBudget.proposed_spending_limit_type:type_name -> google.ads.googleads.v17.enums.SpendingLimitTypeEnum.SpendingLimitType
+ 4, // 5: google.ads.googleads.v17.resources.AccountBudget.approved_spending_limit_type:type_name -> google.ads.googleads.v17.enums.SpendingLimitTypeEnum.SpendingLimitType
+ 4, // 6: google.ads.googleads.v17.resources.AccountBudget.adjusted_spending_limit_type:type_name -> google.ads.googleads.v17.enums.SpendingLimitTypeEnum.SpendingLimitType
+ 5, // 7: google.ads.googleads.v17.resources.AccountBudget.PendingAccountBudgetProposal.proposal_type:type_name -> google.ads.googleads.v17.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType
+ 3, // 8: google.ads.googleads.v17.resources.AccountBudget.PendingAccountBudgetProposal.end_time_type:type_name -> google.ads.googleads.v17.enums.TimeTypeEnum.TimeType
+ 4, // 9: google.ads.googleads.v17.resources.AccountBudget.PendingAccountBudgetProposal.spending_limit_type:type_name -> google.ads.googleads.v17.enums.SpendingLimitTypeEnum.SpendingLimitType
10, // [10:10] is the sub-list for method output_type
10, // [10:10] is the sub-list for method input_type
10, // [10:10] is the sub-list for extension type_name
@@ -973,13 +973,13 @@ var file_google_ads_googleads_v16_resources_account_budget_proto_depIdxs = []int
0, // [0:10] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_resources_account_budget_proto_init() }
-func file_google_ads_googleads_v16_resources_account_budget_proto_init() {
- if File_google_ads_googleads_v16_resources_account_budget_proto != nil {
+func init() { file_google_ads_googleads_v17_resources_account_budget_proto_init() }
+func file_google_ads_googleads_v17_resources_account_budget_proto_init() {
+ if File_google_ads_googleads_v17_resources_account_budget_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_resources_account_budget_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_resources_account_budget_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccountBudget); i {
case 0:
return &v.state
@@ -991,7 +991,7 @@ func file_google_ads_googleads_v16_resources_account_budget_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_resources_account_budget_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_resources_account_budget_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccountBudget_PendingAccountBudgetProposal); i {
case 0:
return &v.state
@@ -1004,7 +1004,7 @@ func file_google_ads_googleads_v16_resources_account_budget_proto_init() {
}
}
}
- file_google_ads_googleads_v16_resources_account_budget_proto_msgTypes[0].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_resources_account_budget_proto_msgTypes[0].OneofWrappers = []interface{}{
(*AccountBudget_ProposedEndDateTime)(nil),
(*AccountBudget_ProposedEndTimeType)(nil),
(*AccountBudget_ApprovedEndDateTime)(nil),
@@ -1016,7 +1016,7 @@ func file_google_ads_googleads_v16_resources_account_budget_proto_init() {
(*AccountBudget_AdjustedSpendingLimitMicros)(nil),
(*AccountBudget_AdjustedSpendingLimitType)(nil),
}
- file_google_ads_googleads_v16_resources_account_budget_proto_msgTypes[1].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_resources_account_budget_proto_msgTypes[1].OneofWrappers = []interface{}{
(*AccountBudget_PendingAccountBudgetProposal_EndDateTime)(nil),
(*AccountBudget_PendingAccountBudgetProposal_EndTimeType)(nil),
(*AccountBudget_PendingAccountBudgetProposal_SpendingLimitMicros)(nil),
@@ -1026,18 +1026,18 @@ func file_google_ads_googleads_v16_resources_account_budget_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_resources_account_budget_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_resources_account_budget_proto_rawDesc,
NumEnums: 0,
NumMessages: 2,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_resources_account_budget_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_resources_account_budget_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_resources_account_budget_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_resources_account_budget_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_resources_account_budget_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_resources_account_budget_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_resources_account_budget_proto = out.File
- file_google_ads_googleads_v16_resources_account_budget_proto_rawDesc = nil
- file_google_ads_googleads_v16_resources_account_budget_proto_goTypes = nil
- file_google_ads_googleads_v16_resources_account_budget_proto_depIdxs = nil
+ File_google_ads_googleads_v17_resources_account_budget_proto = out.File
+ file_google_ads_googleads_v17_resources_account_budget_proto_rawDesc = nil
+ file_google_ads_googleads_v17_resources_account_budget_proto_goTypes = nil
+ file_google_ads_googleads_v17_resources_account_budget_proto_depIdxs = nil
}
diff --git a/resources/account_budget_proposal.pb.go b/resources/account_budget_proposal.pb.go
index 0db77fd9..276e0235 100644
--- a/resources/account_budget_proposal.pb.go
+++ b/resources/account_budget_proposal.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/resources/account_budget_proposal.proto
+// source: google/ads/googleads/v17/resources/account_budget_proposal.proto
package resources
@@ -65,10 +65,10 @@ type AccountBudgetProposal struct {
AccountBudget *string `protobuf:"bytes,27,opt,name=account_budget,json=accountBudget,proto3,oneof" json:"account_budget,omitempty"`
// Immutable. The type of this proposal, for example, END to end the budget
// associated with this proposal.
- ProposalType enums.AccountBudgetProposalTypeEnum_AccountBudgetProposalType `protobuf:"varint,4,opt,name=proposal_type,json=proposalType,proto3,enum=google.ads.googleads.v16.enums.AccountBudgetProposalTypeEnum_AccountBudgetProposalType" json:"proposal_type,omitempty"`
+ ProposalType enums.AccountBudgetProposalTypeEnum_AccountBudgetProposalType `protobuf:"varint,4,opt,name=proposal_type,json=proposalType,proto3,enum=google.ads.googleads.v17.enums.AccountBudgetProposalTypeEnum_AccountBudgetProposalType" json:"proposal_type,omitempty"`
// Output only. The status of this proposal.
// When a new proposal is created, the status defaults to PENDING.
- Status enums.AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus `protobuf:"varint,15,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus" json:"status,omitempty"`
+ Status enums.AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus `protobuf:"varint,15,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus" json:"status,omitempty"`
// Immutable. The name to assign to the account-level budget.
ProposedName *string `protobuf:"bytes,28,opt,name=proposed_name,json=proposedName,proto3,oneof" json:"proposed_name,omitempty"`
// Output only. The approved start date time in yyyy-mm-dd hh:mm:ss format.
@@ -126,7 +126,7 @@ type AccountBudgetProposal struct {
func (x *AccountBudgetProposal) Reset() {
*x = AccountBudgetProposal{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_resources_account_budget_proposal_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_resources_account_budget_proposal_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -139,7 +139,7 @@ func (x *AccountBudgetProposal) String() string {
func (*AccountBudgetProposal) ProtoMessage() {}
func (x *AccountBudgetProposal) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_resources_account_budget_proposal_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_resources_account_budget_proposal_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -152,7 +152,7 @@ func (x *AccountBudgetProposal) ProtoReflect() protoreflect.Message {
// Deprecated: Use AccountBudgetProposal.ProtoReflect.Descriptor instead.
func (*AccountBudgetProposal) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_resources_account_budget_proposal_proto_rawDescGZIP(), []int{0}
}
func (x *AccountBudgetProposal) GetResourceName() string {
@@ -356,7 +356,7 @@ type AccountBudgetProposal_ProposedStartDateTime struct {
type AccountBudgetProposal_ProposedStartTimeType struct {
// Immutable. The proposed start date time as a well-defined type, for
// example, NOW.
- ProposedStartTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,7,opt,name=proposed_start_time_type,json=proposedStartTimeType,proto3,enum=google.ads.googleads.v16.enums.TimeTypeEnum_TimeType,oneof"`
+ ProposedStartTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,7,opt,name=proposed_start_time_type,json=proposedStartTimeType,proto3,enum=google.ads.googleads.v17.enums.TimeTypeEnum_TimeType,oneof"`
}
func (*AccountBudgetProposal_ProposedStartDateTime) isAccountBudgetProposal_ProposedStartTime() {}
@@ -375,7 +375,7 @@ type AccountBudgetProposal_ProposedEndDateTime struct {
type AccountBudgetProposal_ProposedEndTimeType struct {
// Immutable. The proposed end date time as a well-defined type, for
// example, FOREVER.
- ProposedEndTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,9,opt,name=proposed_end_time_type,json=proposedEndTimeType,proto3,enum=google.ads.googleads.v16.enums.TimeTypeEnum_TimeType,oneof"`
+ ProposedEndTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,9,opt,name=proposed_end_time_type,json=proposedEndTimeType,proto3,enum=google.ads.googleads.v17.enums.TimeTypeEnum_TimeType,oneof"`
}
func (*AccountBudgetProposal_ProposedEndDateTime) isAccountBudgetProposal_ProposedEndTime() {}
@@ -394,7 +394,7 @@ type AccountBudgetProposal_ApprovedEndDateTime struct {
type AccountBudgetProposal_ApprovedEndTimeType struct {
// Output only. The approved end date time as a well-defined type, for
// example, FOREVER.
- ApprovedEndTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,22,opt,name=approved_end_time_type,json=approvedEndTimeType,proto3,enum=google.ads.googleads.v16.enums.TimeTypeEnum_TimeType,oneof"`
+ ApprovedEndTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,22,opt,name=approved_end_time_type,json=approvedEndTimeType,proto3,enum=google.ads.googleads.v17.enums.TimeTypeEnum_TimeType,oneof"`
}
func (*AccountBudgetProposal_ApprovedEndDateTime) isAccountBudgetProposal_ApprovedEndTime() {}
@@ -414,7 +414,7 @@ type AccountBudgetProposal_ProposedSpendingLimitMicros struct {
type AccountBudgetProposal_ProposedSpendingLimitType struct {
// Immutable. The proposed spending limit as a well-defined type, for
// example, INFINITE.
- ProposedSpendingLimitType enums.SpendingLimitTypeEnum_SpendingLimitType `protobuf:"varint,11,opt,name=proposed_spending_limit_type,json=proposedSpendingLimitType,proto3,enum=google.ads.googleads.v16.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"`
+ ProposedSpendingLimitType enums.SpendingLimitTypeEnum_SpendingLimitType `protobuf:"varint,11,opt,name=proposed_spending_limit_type,json=proposedSpendingLimitType,proto3,enum=google.ads.googleads.v17.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"`
}
func (*AccountBudgetProposal_ProposedSpendingLimitMicros) isAccountBudgetProposal_ProposedSpendingLimit() {
@@ -436,7 +436,7 @@ type AccountBudgetProposal_ApprovedSpendingLimitMicros struct {
type AccountBudgetProposal_ApprovedSpendingLimitType struct {
// Output only. The approved spending limit as a well-defined type, for
// example, INFINITE.
- ApprovedSpendingLimitType enums.SpendingLimitTypeEnum_SpendingLimitType `protobuf:"varint,24,opt,name=approved_spending_limit_type,json=approvedSpendingLimitType,proto3,enum=google.ads.googleads.v16.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"`
+ ApprovedSpendingLimitType enums.SpendingLimitTypeEnum_SpendingLimitType `protobuf:"varint,24,opt,name=approved_spending_limit_type,json=approvedSpendingLimitType,proto3,enum=google.ads.googleads.v17.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"`
}
func (*AccountBudgetProposal_ApprovedSpendingLimitMicros) isAccountBudgetProposal_ApprovedSpendingLimit() {
@@ -445,30 +445,30 @@ func (*AccountBudgetProposal_ApprovedSpendingLimitMicros) isAccountBudgetProposa
func (*AccountBudgetProposal_ApprovedSpendingLimitType) isAccountBudgetProposal_ApprovedSpendingLimit() {
}
-var File_google_ads_googleads_v16_resources_account_budget_proposal_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_resources_account_budget_proposal_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_resources_account_budget_proposal_proto_rawDesc = []byte{
0x0a, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x62, 0x75, 0x64,
0x67, 0x65, 0x74, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x22, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65, 0x73,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73,
0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x62,
0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x5f, 0x73,
0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x41, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x63, 0x63, 0x6f,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x63, 0x63, 0x6f,
0x75, 0x6e, 0x74, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x6f,
0x73, 0x61, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x38,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73,
0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x74, 0x79,
0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x74, 0x79,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x74, 0x79,
0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76,
0x69, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
@@ -496,7 +496,7 @@ var file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDes
0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x88, 0x01, 0x01, 0x12, 0x81, 0x01, 0x0a, 0x0d, 0x70,
0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01,
0x28, 0x0e, 0x32, 0x57, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65,
0x74, 0x50, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75,
0x6d, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50,
@@ -504,7 +504,7 @@ var file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDes
0x52, 0x0c, 0x70, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x78,
0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5b,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e,
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f,
0x70, 0x6f, 0x73, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72, 0x6f,
@@ -539,7 +539,7 @@ var file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDes
0x6f, 0x70, 0x6f, 0x73, 0x65, 0x64, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x74, 0x69, 0x6d,
0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x35, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x69,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x69,
0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x54,
0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x15, 0x70, 0x72, 0x6f, 0x70,
0x6f, 0x73, 0x65, 0x64, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70,
@@ -550,7 +550,7 @@ var file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDes
0x16, 0x70, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69,
0x6d, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x35, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54,
0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x69, 0x6d, 0x65,
0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x01, 0x52, 0x13, 0x70, 0x72, 0x6f,
0x70, 0x6f, 0x73, 0x65, 0x64, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65,
@@ -561,7 +561,7 @@ var file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDes
0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d,
0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x35, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x69,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x69,
0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x54,
0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x02, 0x52, 0x13, 0x61, 0x70, 0x70, 0x72,
0x6f, 0x76, 0x65, 0x64, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12,
@@ -573,7 +573,7 @@ var file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDes
0x70, 0x72, 0x6f, 0x70, 0x6f, 0x73, 0x65, 0x64, 0x5f, 0x73, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e,
0x67, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0b, 0x20, 0x01,
0x28, 0x0e, 0x32, 0x47, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2e, 0x53, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x6d, 0x69,
0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x70, 0x65, 0x6e, 0x64, 0x69,
0x6e, 0x67, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x05,
@@ -587,7 +587,7 @@ var file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDes
0x70, 0x72, 0x6f, 0x76, 0x65, 0x64, 0x5f, 0x73, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f,
0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0e,
0x32, 0x47, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x2e, 0x53, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x54,
0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x70, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67,
0x4c, 0x69, 0x6d, 0x69, 0x74, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x04,
@@ -622,52 +622,52 @@ var file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDes
0x13, 0x5f, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x5f,
0x74, 0x69, 0x6d, 0x65, 0x42, 0x8c, 0x02, 0x0a, 0x26, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42,
0x1a, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x72,
0x6f, 0x70, 0x6f, 0x73, 0x61, 0x6c, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x4b, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67,
0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73,
0x3b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41,
0xaa, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x52, 0x65, 0x73, 0x6f,
0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41,
- 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36,
+ 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37,
0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72,
+ 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72,
0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDescData = file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDesc
+ file_google_ads_googleads_v17_resources_account_budget_proposal_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_resources_account_budget_proposal_proto_rawDescData = file_google_ads_googleads_v17_resources_account_budget_proposal_proto_rawDesc
)
-func file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDescData)
+func file_google_ads_googleads_v17_resources_account_budget_proposal_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_resources_account_budget_proposal_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_resources_account_budget_proposal_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_account_budget_proposal_proto_rawDescData)
})
- return file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_resources_account_budget_proposal_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_resources_account_budget_proposal_proto_goTypes = []interface{}{
- (*AccountBudgetProposal)(nil), // 0: google.ads.googleads.v16.resources.AccountBudgetProposal
- (enums.AccountBudgetProposalTypeEnum_AccountBudgetProposalType)(0), // 1: google.ads.googleads.v16.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType
- (enums.AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus)(0), // 2: google.ads.googleads.v16.enums.AccountBudgetProposalStatusEnum.AccountBudgetProposalStatus
- (enums.TimeTypeEnum_TimeType)(0), // 3: google.ads.googleads.v16.enums.TimeTypeEnum.TimeType
- (enums.SpendingLimitTypeEnum_SpendingLimitType)(0), // 4: google.ads.googleads.v16.enums.SpendingLimitTypeEnum.SpendingLimitType
-}
-var file_google_ads_googleads_v16_resources_account_budget_proposal_proto_depIdxs = []int32{
- 1, // 0: google.ads.googleads.v16.resources.AccountBudgetProposal.proposal_type:type_name -> google.ads.googleads.v16.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType
- 2, // 1: google.ads.googleads.v16.resources.AccountBudgetProposal.status:type_name -> google.ads.googleads.v16.enums.AccountBudgetProposalStatusEnum.AccountBudgetProposalStatus
- 3, // 2: google.ads.googleads.v16.resources.AccountBudgetProposal.proposed_start_time_type:type_name -> google.ads.googleads.v16.enums.TimeTypeEnum.TimeType
- 3, // 3: google.ads.googleads.v16.resources.AccountBudgetProposal.proposed_end_time_type:type_name -> google.ads.googleads.v16.enums.TimeTypeEnum.TimeType
- 3, // 4: google.ads.googleads.v16.resources.AccountBudgetProposal.approved_end_time_type:type_name -> google.ads.googleads.v16.enums.TimeTypeEnum.TimeType
- 4, // 5: google.ads.googleads.v16.resources.AccountBudgetProposal.proposed_spending_limit_type:type_name -> google.ads.googleads.v16.enums.SpendingLimitTypeEnum.SpendingLimitType
- 4, // 6: google.ads.googleads.v16.resources.AccountBudgetProposal.approved_spending_limit_type:type_name -> google.ads.googleads.v16.enums.SpendingLimitTypeEnum.SpendingLimitType
+ return file_google_ads_googleads_v17_resources_account_budget_proposal_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_resources_account_budget_proposal_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_resources_account_budget_proposal_proto_goTypes = []interface{}{
+ (*AccountBudgetProposal)(nil), // 0: google.ads.googleads.v17.resources.AccountBudgetProposal
+ (enums.AccountBudgetProposalTypeEnum_AccountBudgetProposalType)(0), // 1: google.ads.googleads.v17.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType
+ (enums.AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus)(0), // 2: google.ads.googleads.v17.enums.AccountBudgetProposalStatusEnum.AccountBudgetProposalStatus
+ (enums.TimeTypeEnum_TimeType)(0), // 3: google.ads.googleads.v17.enums.TimeTypeEnum.TimeType
+ (enums.SpendingLimitTypeEnum_SpendingLimitType)(0), // 4: google.ads.googleads.v17.enums.SpendingLimitTypeEnum.SpendingLimitType
+}
+var file_google_ads_googleads_v17_resources_account_budget_proposal_proto_depIdxs = []int32{
+ 1, // 0: google.ads.googleads.v17.resources.AccountBudgetProposal.proposal_type:type_name -> google.ads.googleads.v17.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType
+ 2, // 1: google.ads.googleads.v17.resources.AccountBudgetProposal.status:type_name -> google.ads.googleads.v17.enums.AccountBudgetProposalStatusEnum.AccountBudgetProposalStatus
+ 3, // 2: google.ads.googleads.v17.resources.AccountBudgetProposal.proposed_start_time_type:type_name -> google.ads.googleads.v17.enums.TimeTypeEnum.TimeType
+ 3, // 3: google.ads.googleads.v17.resources.AccountBudgetProposal.proposed_end_time_type:type_name -> google.ads.googleads.v17.enums.TimeTypeEnum.TimeType
+ 3, // 4: google.ads.googleads.v17.resources.AccountBudgetProposal.approved_end_time_type:type_name -> google.ads.googleads.v17.enums.TimeTypeEnum.TimeType
+ 4, // 5: google.ads.googleads.v17.resources.AccountBudgetProposal.proposed_spending_limit_type:type_name -> google.ads.googleads.v17.enums.SpendingLimitTypeEnum.SpendingLimitType
+ 4, // 6: google.ads.googleads.v17.resources.AccountBudgetProposal.approved_spending_limit_type:type_name -> google.ads.googleads.v17.enums.SpendingLimitTypeEnum.SpendingLimitType
7, // [7:7] is the sub-list for method output_type
7, // [7:7] is the sub-list for method input_type
7, // [7:7] is the sub-list for extension type_name
@@ -675,13 +675,13 @@ var file_google_ads_googleads_v16_resources_account_budget_proposal_proto_depIdx
0, // [0:7] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_resources_account_budget_proposal_proto_init() }
-func file_google_ads_googleads_v16_resources_account_budget_proposal_proto_init() {
- if File_google_ads_googleads_v16_resources_account_budget_proposal_proto != nil {
+func init() { file_google_ads_googleads_v17_resources_account_budget_proposal_proto_init() }
+func file_google_ads_googleads_v17_resources_account_budget_proposal_proto_init() {
+ if File_google_ads_googleads_v17_resources_account_budget_proposal_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_resources_account_budget_proposal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_resources_account_budget_proposal_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccountBudgetProposal); i {
case 0:
return &v.state
@@ -694,7 +694,7 @@ func file_google_ads_googleads_v16_resources_account_budget_proposal_proto_init(
}
}
}
- file_google_ads_googleads_v16_resources_account_budget_proposal_proto_msgTypes[0].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_resources_account_budget_proposal_proto_msgTypes[0].OneofWrappers = []interface{}{
(*AccountBudgetProposal_ProposedStartDateTime)(nil),
(*AccountBudgetProposal_ProposedStartTimeType)(nil),
(*AccountBudgetProposal_ProposedEndDateTime)(nil),
@@ -710,18 +710,18 @@ func file_google_ads_googleads_v16_resources_account_budget_proposal_proto_init(
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_resources_account_budget_proposal_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_resources_account_budget_proposal_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_resources_account_budget_proposal_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_resources_account_budget_proposal_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_resources_account_budget_proposal_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_resources_account_budget_proposal_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_resources_account_budget_proposal_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_resources_account_budget_proposal_proto = out.File
- file_google_ads_googleads_v16_resources_account_budget_proposal_proto_rawDesc = nil
- file_google_ads_googleads_v16_resources_account_budget_proposal_proto_goTypes = nil
- file_google_ads_googleads_v16_resources_account_budget_proposal_proto_depIdxs = nil
+ File_google_ads_googleads_v17_resources_account_budget_proposal_proto = out.File
+ file_google_ads_googleads_v17_resources_account_budget_proposal_proto_rawDesc = nil
+ file_google_ads_googleads_v17_resources_account_budget_proposal_proto_goTypes = nil
+ file_google_ads_googleads_v17_resources_account_budget_proposal_proto_depIdxs = nil
}
diff --git a/resources/account_link.pb.go b/resources/account_link.pb.go
index 068f3bbf..1225f518 100644
--- a/resources/account_link.pb.go
+++ b/resources/account_link.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/resources/account_link.proto
+// source: google/ads/googleads/v17/resources/account_link.proto
package resources
@@ -51,9 +51,9 @@ type AccountLink struct {
// This field is read only.
AccountLinkId *int64 `protobuf:"varint,8,opt,name=account_link_id,json=accountLinkId,proto3,oneof" json:"account_link_id,omitempty"`
// The status of the link.
- Status enums.AccountLinkStatusEnum_AccountLinkStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.AccountLinkStatusEnum_AccountLinkStatus" json:"status,omitempty"`
+ Status enums.AccountLinkStatusEnum_AccountLinkStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.AccountLinkStatusEnum_AccountLinkStatus" json:"status,omitempty"`
// Output only. The type of the linked account.
- Type enums.LinkedAccountTypeEnum_LinkedAccountType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.LinkedAccountTypeEnum_LinkedAccountType" json:"type,omitempty"`
+ Type enums.LinkedAccountTypeEnum_LinkedAccountType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.LinkedAccountTypeEnum_LinkedAccountType" json:"type,omitempty"`
// An account linked to this Google Ads account.
//
// Types that are assignable to LinkedAccount:
@@ -65,7 +65,7 @@ type AccountLink struct {
func (x *AccountLink) Reset() {
*x = AccountLink{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_resources_account_link_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_resources_account_link_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -78,7 +78,7 @@ func (x *AccountLink) String() string {
func (*AccountLink) ProtoMessage() {}
func (x *AccountLink) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_resources_account_link_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_resources_account_link_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -91,7 +91,7 @@ func (x *AccountLink) ProtoReflect() protoreflect.Message {
// Deprecated: Use AccountLink.ProtoReflect.Descriptor instead.
func (*AccountLink) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_resources_account_link_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_resources_account_link_proto_rawDescGZIP(), []int{0}
}
func (x *AccountLink) GetResourceName() string {
@@ -174,13 +174,13 @@ type ThirdPartyAppAnalyticsLinkIdentifier struct {
// This field should not be empty when creating a new third
// party app analytics link. It is unable to be modified after the creation of
// the link.
- AppVendor enums.MobileAppVendorEnum_MobileAppVendor `protobuf:"varint,3,opt,name=app_vendor,json=appVendor,proto3,enum=google.ads.googleads.v16.enums.MobileAppVendorEnum_MobileAppVendor" json:"app_vendor,omitempty"`
+ AppVendor enums.MobileAppVendorEnum_MobileAppVendor `protobuf:"varint,3,opt,name=app_vendor,json=appVendor,proto3,enum=google.ads.googleads.v17.enums.MobileAppVendorEnum_MobileAppVendor" json:"app_vendor,omitempty"`
}
func (x *ThirdPartyAppAnalyticsLinkIdentifier) Reset() {
*x = ThirdPartyAppAnalyticsLinkIdentifier{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_resources_account_link_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_resources_account_link_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -193,7 +193,7 @@ func (x *ThirdPartyAppAnalyticsLinkIdentifier) String() string {
func (*ThirdPartyAppAnalyticsLinkIdentifier) ProtoMessage() {}
func (x *ThirdPartyAppAnalyticsLinkIdentifier) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_resources_account_link_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_resources_account_link_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -206,7 +206,7 @@ func (x *ThirdPartyAppAnalyticsLinkIdentifier) ProtoReflect() protoreflect.Messa
// Deprecated: Use ThirdPartyAppAnalyticsLinkIdentifier.ProtoReflect.Descriptor instead.
func (*ThirdPartyAppAnalyticsLinkIdentifier) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_resources_account_link_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_resources_account_link_proto_rawDescGZIP(), []int{1}
}
func (x *ThirdPartyAppAnalyticsLinkIdentifier) GetAppAnalyticsProviderId() int64 {
@@ -230,24 +230,24 @@ func (x *ThirdPartyAppAnalyticsLinkIdentifier) GetAppVendor() enums.MobileAppVen
return enums.MobileAppVendorEnum_MobileAppVendor(0)
}
-var File_google_ads_googleads_v16_resources_account_link_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_resources_account_link_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_resources_account_link_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_resources_account_link_proto_rawDesc = []byte{
0x0a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e,
0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x22, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x38, 0x67, 0x6f, 0x6f,
+ 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x38, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x63, 0x63, 0x6f,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x63, 0x63, 0x6f,
0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x5f, 0x61, 0x63, 0x63,
0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f,
0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x76, 0x65, 0x6e, 0x64, 0x6f,
0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69,
@@ -265,20 +265,20 @@ var file_google_ads_googleads_v16_resources_account_link_proto_rawDesc = []byte{
0x69, 0x6e, 0x6b, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x5f, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74,
0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x47, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
+ 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e,
0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e,
0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75,
0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x60, 0x0a, 0x04, 0x74, 0x79, 0x70,
0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x47, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x41,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x41,
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c,
0x69, 0x6e, 0x6b, 0x65, 0x64, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65,
0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x8a, 0x01, 0x0a, 0x19,
0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x79, 0x5f, 0x61, 0x70, 0x70, 0x5f,
0x61, 0x6e, 0x61, 0x6c, 0x79, 0x74, 0x69, 0x63, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x48, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75,
0x72, 0x63, 0x65, 0x73, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x41,
0x70, 0x70, 0x41, 0x6e, 0x61, 0x6c, 0x79, 0x74, 0x69, 0x63, 0x73, 0x4c, 0x69, 0x6e, 0x6b, 0x49,
0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00,
@@ -303,7 +303,7 @@ var file_google_ads_googleads_v16_resources_account_link_proto_rawDesc = []byte{
0x03, 0xe0, 0x41, 0x05, 0x48, 0x01, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x88, 0x01, 0x01,
0x12, 0x67, 0x0a, 0x0a, 0x61, 0x70, 0x70, 0x5f, 0x76, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x18, 0x03,
0x20, 0x01, 0x28, 0x0e, 0x32, 0x43, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, 0x70, 0x70, 0x56,
0x65, 0x6e, 0x64, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65,
0x41, 0x70, 0x70, 0x56, 0x65, 0x6e, 0x64, 0x6f, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x09,
@@ -312,48 +312,48 @@ var file_google_ads_googleads_v16_resources_account_link_proto_rawDesc = []byte{
0x69, 0x64, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x42, 0x09, 0x0a, 0x07, 0x5f, 0x61, 0x70, 0x70, 0x5f,
0x69, 0x64, 0x42, 0x82, 0x02, 0x0a, 0x26, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x10, 0x41,
+ 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x10, 0x41,
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50,
0x01, 0x5a, 0x4b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67,
0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xa2, 0x02,
0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64,
- 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e,
0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
- 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02,
+ 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02,
0x26, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x52, 0x65,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x52, 0x65,
0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_resources_account_link_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_resources_account_link_proto_rawDescData = file_google_ads_googleads_v16_resources_account_link_proto_rawDesc
+ file_google_ads_googleads_v17_resources_account_link_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_resources_account_link_proto_rawDescData = file_google_ads_googleads_v17_resources_account_link_proto_rawDesc
)
-func file_google_ads_googleads_v16_resources_account_link_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_resources_account_link_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_resources_account_link_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_account_link_proto_rawDescData)
+func file_google_ads_googleads_v17_resources_account_link_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_resources_account_link_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_resources_account_link_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_account_link_proto_rawDescData)
})
- return file_google_ads_googleads_v16_resources_account_link_proto_rawDescData
+ return file_google_ads_googleads_v17_resources_account_link_proto_rawDescData
}
-var file_google_ads_googleads_v16_resources_account_link_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
-var file_google_ads_googleads_v16_resources_account_link_proto_goTypes = []interface{}{
- (*AccountLink)(nil), // 0: google.ads.googleads.v16.resources.AccountLink
- (*ThirdPartyAppAnalyticsLinkIdentifier)(nil), // 1: google.ads.googleads.v16.resources.ThirdPartyAppAnalyticsLinkIdentifier
- (enums.AccountLinkStatusEnum_AccountLinkStatus)(0), // 2: google.ads.googleads.v16.enums.AccountLinkStatusEnum.AccountLinkStatus
- (enums.LinkedAccountTypeEnum_LinkedAccountType)(0), // 3: google.ads.googleads.v16.enums.LinkedAccountTypeEnum.LinkedAccountType
- (enums.MobileAppVendorEnum_MobileAppVendor)(0), // 4: google.ads.googleads.v16.enums.MobileAppVendorEnum.MobileAppVendor
+var file_google_ads_googleads_v17_resources_account_link_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
+var file_google_ads_googleads_v17_resources_account_link_proto_goTypes = []interface{}{
+ (*AccountLink)(nil), // 0: google.ads.googleads.v17.resources.AccountLink
+ (*ThirdPartyAppAnalyticsLinkIdentifier)(nil), // 1: google.ads.googleads.v17.resources.ThirdPartyAppAnalyticsLinkIdentifier
+ (enums.AccountLinkStatusEnum_AccountLinkStatus)(0), // 2: google.ads.googleads.v17.enums.AccountLinkStatusEnum.AccountLinkStatus
+ (enums.LinkedAccountTypeEnum_LinkedAccountType)(0), // 3: google.ads.googleads.v17.enums.LinkedAccountTypeEnum.LinkedAccountType
+ (enums.MobileAppVendorEnum_MobileAppVendor)(0), // 4: google.ads.googleads.v17.enums.MobileAppVendorEnum.MobileAppVendor
}
-var file_google_ads_googleads_v16_resources_account_link_proto_depIdxs = []int32{
- 2, // 0: google.ads.googleads.v16.resources.AccountLink.status:type_name -> google.ads.googleads.v16.enums.AccountLinkStatusEnum.AccountLinkStatus
- 3, // 1: google.ads.googleads.v16.resources.AccountLink.type:type_name -> google.ads.googleads.v16.enums.LinkedAccountTypeEnum.LinkedAccountType
- 1, // 2: google.ads.googleads.v16.resources.AccountLink.third_party_app_analytics:type_name -> google.ads.googleads.v16.resources.ThirdPartyAppAnalyticsLinkIdentifier
- 4, // 3: google.ads.googleads.v16.resources.ThirdPartyAppAnalyticsLinkIdentifier.app_vendor:type_name -> google.ads.googleads.v16.enums.MobileAppVendorEnum.MobileAppVendor
+var file_google_ads_googleads_v17_resources_account_link_proto_depIdxs = []int32{
+ 2, // 0: google.ads.googleads.v17.resources.AccountLink.status:type_name -> google.ads.googleads.v17.enums.AccountLinkStatusEnum.AccountLinkStatus
+ 3, // 1: google.ads.googleads.v17.resources.AccountLink.type:type_name -> google.ads.googleads.v17.enums.LinkedAccountTypeEnum.LinkedAccountType
+ 1, // 2: google.ads.googleads.v17.resources.AccountLink.third_party_app_analytics:type_name -> google.ads.googleads.v17.resources.ThirdPartyAppAnalyticsLinkIdentifier
+ 4, // 3: google.ads.googleads.v17.resources.ThirdPartyAppAnalyticsLinkIdentifier.app_vendor:type_name -> google.ads.googleads.v17.enums.MobileAppVendorEnum.MobileAppVendor
4, // [4:4] is the sub-list for method output_type
4, // [4:4] is the sub-list for method input_type
4, // [4:4] is the sub-list for extension type_name
@@ -361,13 +361,13 @@ var file_google_ads_googleads_v16_resources_account_link_proto_depIdxs = []int32
0, // [0:4] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_resources_account_link_proto_init() }
-func file_google_ads_googleads_v16_resources_account_link_proto_init() {
- if File_google_ads_googleads_v16_resources_account_link_proto != nil {
+func init() { file_google_ads_googleads_v17_resources_account_link_proto_init() }
+func file_google_ads_googleads_v17_resources_account_link_proto_init() {
+ if File_google_ads_googleads_v17_resources_account_link_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_resources_account_link_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_resources_account_link_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AccountLink); i {
case 0:
return &v.state
@@ -379,7 +379,7 @@ func file_google_ads_googleads_v16_resources_account_link_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_resources_account_link_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_resources_account_link_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ThirdPartyAppAnalyticsLinkIdentifier); i {
case 0:
return &v.state
@@ -392,26 +392,26 @@ func file_google_ads_googleads_v16_resources_account_link_proto_init() {
}
}
}
- file_google_ads_googleads_v16_resources_account_link_proto_msgTypes[0].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_resources_account_link_proto_msgTypes[0].OneofWrappers = []interface{}{
(*AccountLink_ThirdPartyAppAnalytics)(nil),
}
- file_google_ads_googleads_v16_resources_account_link_proto_msgTypes[1].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_resources_account_link_proto_msgTypes[1].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_resources_account_link_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_resources_account_link_proto_rawDesc,
NumEnums: 0,
NumMessages: 2,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_resources_account_link_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_resources_account_link_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_resources_account_link_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_resources_account_link_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_resources_account_link_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_resources_account_link_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_resources_account_link_proto = out.File
- file_google_ads_googleads_v16_resources_account_link_proto_rawDesc = nil
- file_google_ads_googleads_v16_resources_account_link_proto_goTypes = nil
- file_google_ads_googleads_v16_resources_account_link_proto_depIdxs = nil
+ File_google_ads_googleads_v17_resources_account_link_proto = out.File
+ file_google_ads_googleads_v17_resources_account_link_proto_rawDesc = nil
+ file_google_ads_googleads_v17_resources_account_link_proto_goTypes = nil
+ file_google_ads_googleads_v17_resources_account_link_proto_depIdxs = nil
}
diff --git a/resources/ad.pb.go b/resources/ad.pb.go
index faa20f4b..83252a99 100644
--- a/resources/ad.pb.go
+++ b/resources/ad.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/resources/ad.proto
+// source: google/ads/googleads/v17/resources/ad.proto
package resources
@@ -70,7 +70,7 @@ type Ad struct {
// The URL that appears in the ad description for some ad formats.
DisplayUrl *string `protobuf:"bytes,45,opt,name=display_url,json=displayUrl,proto3,oneof" json:"display_url,omitempty"`
// Output only. The type of ad.
- Type enums.AdTypeEnum_AdType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.AdTypeEnum_AdType" json:"type,omitempty"`
+ Type enums.AdTypeEnum_AdType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.AdTypeEnum_AdType" json:"type,omitempty"`
// Output only. Indicates if this ad was automatically added by Google Ads and
// not by a user. For example, this could happen when ads are automatically
// created as suggestions for new ads based on knowledge of how existing ads
@@ -82,7 +82,7 @@ type Ad struct {
// displayed on other device types, for example, if no other ads are
// available. If unspecified (no device preference), all devices are targeted.
// This is only supported by some ad types.
- DevicePreference enums.DeviceEnum_Device `protobuf:"varint,20,opt,name=device_preference,json=devicePreference,proto3,enum=google.ads.googleads.v16.enums.DeviceEnum_Device" json:"device_preference,omitempty"`
+ DevicePreference enums.DeviceEnum_Device `protobuf:"varint,20,opt,name=device_preference,json=devicePreference,proto3,enum=google.ads.googleads.v17.enums.DeviceEnum_Device" json:"device_preference,omitempty"`
// Additional URLs for the ad that are tagged with a unique identifier that
// can be referenced from other fields in the ad.
UrlCollections []*common.UrlCollection `protobuf:"bytes,26,rep,name=url_collections,json=urlCollections,proto3" json:"url_collections,omitempty"`
@@ -93,7 +93,7 @@ type Ad struct {
Name *string `protobuf:"bytes,47,opt,name=name,proto3,oneof" json:"name,omitempty"`
// Output only. If this ad is system managed, then this field will indicate
// the source. This field is read-only.
- SystemManagedResourceSource enums.SystemManagedResourceSourceEnum_SystemManagedResourceSource `protobuf:"varint,27,opt,name=system_managed_resource_source,json=systemManagedResourceSource,proto3,enum=google.ads.googleads.v16.enums.SystemManagedResourceSourceEnum_SystemManagedResourceSource" json:"system_managed_resource_source,omitempty"`
+ SystemManagedResourceSource enums.SystemManagedResourceSourceEnum_SystemManagedResourceSource `protobuf:"varint,27,opt,name=system_managed_resource_source,json=systemManagedResourceSource,proto3,enum=google.ads.googleads.v17.enums.SystemManagedResourceSourceEnum_SystemManagedResourceSource" json:"system_managed_resource_source,omitempty"`
// Details pertinent to the ad type. Exactly one value must be set.
//
// Types that are assignable to AdData:
@@ -119,9 +119,9 @@ type Ad struct {
// *Ad_ShoppingComparisonListingAd
// *Ad_SmartCampaignAd
// *Ad_AppPreRegistrationAd
- // *Ad_DiscoveryMultiAssetAd
- // *Ad_DiscoveryCarouselAd
- // *Ad_DiscoveryVideoResponsiveAd
+ // *Ad_DemandGenMultiAssetAd
+ // *Ad_DemandGenCarouselAd
+ // *Ad_DemandGenVideoResponsiveAd
// *Ad_DemandGenProductAd
// *Ad_TravelAd
AdData isAd_AdData `protobuf_oneof:"ad_data"`
@@ -130,7 +130,7 @@ type Ad struct {
func (x *Ad) Reset() {
*x = Ad{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_resources_ad_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_resources_ad_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -143,7 +143,7 @@ func (x *Ad) String() string {
func (*Ad) ProtoMessage() {}
func (x *Ad) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_resources_ad_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_resources_ad_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -156,7 +156,7 @@ func (x *Ad) ProtoReflect() protoreflect.Message {
// Deprecated: Use Ad.ProtoReflect.Descriptor instead.
func (*Ad) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_resources_ad_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_resources_ad_proto_rawDescGZIP(), []int{0}
}
func (x *Ad) GetResourceName() string {
@@ -418,23 +418,23 @@ func (x *Ad) GetAppPreRegistrationAd() *common.AppPreRegistrationAdInfo {
return nil
}
-func (x *Ad) GetDiscoveryMultiAssetAd() *common.DiscoveryMultiAssetAdInfo {
- if x, ok := x.GetAdData().(*Ad_DiscoveryMultiAssetAd); ok {
- return x.DiscoveryMultiAssetAd
+func (x *Ad) GetDemandGenMultiAssetAd() *common.DemandGenMultiAssetAdInfo {
+ if x, ok := x.GetAdData().(*Ad_DemandGenMultiAssetAd); ok {
+ return x.DemandGenMultiAssetAd
}
return nil
}
-func (x *Ad) GetDiscoveryCarouselAd() *common.DiscoveryCarouselAdInfo {
- if x, ok := x.GetAdData().(*Ad_DiscoveryCarouselAd); ok {
- return x.DiscoveryCarouselAd
+func (x *Ad) GetDemandGenCarouselAd() *common.DemandGenCarouselAdInfo {
+ if x, ok := x.GetAdData().(*Ad_DemandGenCarouselAd); ok {
+ return x.DemandGenCarouselAd
}
return nil
}
-func (x *Ad) GetDiscoveryVideoResponsiveAd() *common.DiscoveryVideoResponsiveAdInfo {
- if x, ok := x.GetAdData().(*Ad_DiscoveryVideoResponsiveAd); ok {
- return x.DiscoveryVideoResponsiveAd
+func (x *Ad) GetDemandGenVideoResponsiveAd() *common.DemandGenVideoResponsiveAdInfo {
+ if x, ok := x.GetAdData().(*Ad_DemandGenVideoResponsiveAd); ok {
+ return x.DemandGenVideoResponsiveAd
}
return nil
}
@@ -566,19 +566,19 @@ type Ad_AppPreRegistrationAd struct {
AppPreRegistrationAd *common.AppPreRegistrationAdInfo `protobuf:"bytes,50,opt,name=app_pre_registration_ad,json=appPreRegistrationAd,proto3,oneof"`
}
-type Ad_DiscoveryMultiAssetAd struct {
- // Details pertaining to a discovery multi asset ad.
- DiscoveryMultiAssetAd *common.DiscoveryMultiAssetAdInfo `protobuf:"bytes,51,opt,name=discovery_multi_asset_ad,json=discoveryMultiAssetAd,proto3,oneof"`
+type Ad_DemandGenMultiAssetAd struct {
+ // Details pertaining to a Demand Gen multi asset ad.
+ DemandGenMultiAssetAd *common.DemandGenMultiAssetAdInfo `protobuf:"bytes,62,opt,name=demand_gen_multi_asset_ad,json=demandGenMultiAssetAd,proto3,oneof"`
}
-type Ad_DiscoveryCarouselAd struct {
- // Details pertaining to a discovery carousel ad.
- DiscoveryCarouselAd *common.DiscoveryCarouselAdInfo `protobuf:"bytes,52,opt,name=discovery_carousel_ad,json=discoveryCarouselAd,proto3,oneof"`
+type Ad_DemandGenCarouselAd struct {
+ // Details pertaining to a Demand Gen carousel ad.
+ DemandGenCarouselAd *common.DemandGenCarouselAdInfo `protobuf:"bytes,63,opt,name=demand_gen_carousel_ad,json=demandGenCarouselAd,proto3,oneof"`
}
-type Ad_DiscoveryVideoResponsiveAd struct {
- // Details pertaining to a discovery video responsive ad.
- DiscoveryVideoResponsiveAd *common.DiscoveryVideoResponsiveAdInfo `protobuf:"bytes,60,opt,name=discovery_video_responsive_ad,json=discoveryVideoResponsiveAd,proto3,oneof"`
+type Ad_DemandGenVideoResponsiveAd struct {
+ // Details pertaining to a Demand Gen video responsive ad.
+ DemandGenVideoResponsiveAd *common.DemandGenVideoResponsiveAdInfo `protobuf:"bytes,64,opt,name=demand_gen_video_responsive_ad,json=demandGenVideoResponsiveAd,proto3,oneof"`
}
type Ad_DemandGenProductAd struct {
@@ -633,52 +633,52 @@ func (*Ad_SmartCampaignAd) isAd_AdData() {}
func (*Ad_AppPreRegistrationAd) isAd_AdData() {}
-func (*Ad_DiscoveryMultiAssetAd) isAd_AdData() {}
+func (*Ad_DemandGenMultiAssetAd) isAd_AdData() {}
-func (*Ad_DiscoveryCarouselAd) isAd_AdData() {}
+func (*Ad_DemandGenCarouselAd) isAd_AdData() {}
-func (*Ad_DiscoveryVideoResponsiveAd) isAd_AdData() {}
+func (*Ad_DemandGenVideoResponsiveAd) isAd_AdData() {}
func (*Ad_DemandGenProductAd) isAd_AdData() {}
func (*Ad_TravelAd) isAd_AdData() {}
-var File_google_ads_googleads_v16_resources_ad_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_resources_ad_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_resources_ad_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_resources_ad_proto_rawDesc = []byte{
0x0a, 0x2b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x22, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
0x73, 0x1a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x2f, 0x61, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x73,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x70,
0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x33,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f,
+ 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f,
0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x75, 0x72, 0x6c, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x1a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f,
0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x75, 0x72, 0x6c, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2c, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x74, 0x79, 0x70,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x74, 0x79, 0x70,
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70,
+ 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x5f, 0x6d, 0x61, 0x6e, 0x61,
0x67, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63,
0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69,
0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x22, 0x87, 0x1e, 0x0a, 0x02, 0x41, 0x64, 0x12, 0x48, 0x0a, 0x0d, 0x72, 0x65,
+ 0x6f, 0x74, 0x6f, 0x22, 0x8a, 0x1e, 0x0a, 0x02, 0x41, 0x64, 0x12, 0x48, 0x0a, 0x0d, 0x72, 0x65,
0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x25, 0x20, 0x01, 0x28,
0x09, 0x42, 0x23, 0xe0, 0x41, 0x05, 0xfa, 0x41, 0x1d, 0x0a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e,
@@ -689,7 +689,7 @@ var file_google_ads_googleads_v16_resources_ad_proto_rawDesc = []byte{
0x28, 0x09, 0x52, 0x09, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x73, 0x12, 0x52, 0x0a,
0x0e, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x75, 0x72, 0x6c, 0x73, 0x18,
0x23, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70,
0x55, 0x72, 0x6c, 0x52, 0x0c, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x55, 0x72, 0x6c,
0x73, 0x12, 0x2a, 0x0a, 0x11, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x6d, 0x6f, 0x62, 0x69, 0x6c,
@@ -704,7 +704,7 @@ var file_google_ads_googleads_v16_resources_ad_proto_rawDesc = []byte{
0x69, 0x78, 0x88, 0x01, 0x01, 0x12, 0x64, 0x0a, 0x15, 0x75, 0x72, 0x6c, 0x5f, 0x63, 0x75, 0x73,
0x74, 0x6f, 0x6d, 0x5f, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x18, 0x0a,
0x20, 0x03, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x50, 0x61, 0x72,
0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x52, 0x13, 0x75, 0x72, 0x6c, 0x43, 0x75, 0x73, 0x74, 0x6f,
0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x24, 0x0a, 0x0b, 0x64,
@@ -712,7 +712,7 @@ var file_google_ads_googleads_v16_resources_ad_proto_rawDesc = []byte{
0x48, 0x04, 0x52, 0x0a, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x55, 0x72, 0x6c, 0x88, 0x01,
0x01, 0x12, 0x4a, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32,
0x31, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2e, 0x41, 0x64, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x54, 0x79,
0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x37, 0x0a,
0x13, 0x61, 0x64, 0x64, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
@@ -721,13 +721,13 @@ var file_google_ads_googleads_v16_resources_ad_proto_rawDesc = []byte{
0x41, 0x64, 0x73, 0x88, 0x01, 0x01, 0x12, 0x5e, 0x0a, 0x11, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65,
0x5f, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x14, 0x20, 0x01, 0x28,
0x0e, 0x32, 0x31, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x2e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x65,
0x76, 0x69, 0x63, 0x65, 0x52, 0x10, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x50, 0x72, 0x65, 0x66,
0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x57, 0x0a, 0x0f, 0x75, 0x72, 0x6c, 0x5f, 0x63, 0x6f,
0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x1a, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x2e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2e, 0x55, 0x72, 0x6c, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52,
0x0e, 0x75, 0x72, 0x6c, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12,
0x1c, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x2f, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0,
@@ -736,7 +736,7 @@ var file_google_ads_googleads_v16_resources_ad_proto_rawDesc = []byte{
0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
0x18, 0x1b, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x4d, 0x61,
+ 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x4d, 0x61,
0x6e, 0x61, 0x67, 0x65, 0x64, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x6f, 0x75,
0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x4d, 0x61,
0x6e, 0x61, 0x67, 0x65, 0x64, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x6f, 0x75,
@@ -745,116 +745,116 @@ var file_google_ads_googleads_v16_resources_ad_proto_rawDesc = []byte{
0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x4b, 0x0a, 0x07, 0x74, 0x65, 0x78, 0x74, 0x5f, 0x61, 0x64,
0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
- 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x65, 0x78, 0x74, 0x41, 0x64, 0x49,
+ 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x65, 0x78, 0x74, 0x41, 0x64, 0x49,
0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x06, 0x74, 0x65, 0x78, 0x74,
0x41, 0x64, 0x12, 0x5f, 0x0a, 0x10, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x5f, 0x74,
0x65, 0x78, 0x74, 0x5f, 0x61, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x45,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x45,
0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, 0x64, 0x49, 0x6e, 0x66,
0x6f, 0x48, 0x00, 0x52, 0x0e, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x54, 0x65, 0x78,
0x74, 0x41, 0x64, 0x12, 0x46, 0x0a, 0x07, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x61, 0x64, 0x18, 0x31,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6c, 0x6c, 0x41, 0x64, 0x49, 0x6e, 0x66,
0x6f, 0x48, 0x00, 0x52, 0x06, 0x63, 0x61, 0x6c, 0x6c, 0x41, 0x64, 0x12, 0x80, 0x01, 0x0a, 0x1a,
0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x5f, 0x64, 0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63,
0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x61, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x3c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x2e, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x44, 0x79, 0x6e, 0x61, 0x6d,
0x69, 0x63, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03,
0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x17, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, 0x65, 0x64, 0x44,
0x79, 0x6e, 0x61, 0x6d, 0x69, 0x63, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x12, 0x49,
0x0a, 0x08, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x61, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00,
0x52, 0x07, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x41, 0x64, 0x12, 0x62, 0x0a, 0x11, 0x73, 0x68, 0x6f,
0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x61, 0x64, 0x18, 0x11,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x53,
0x6d, 0x61, 0x72, 0x74, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0f, 0x73, 0x68,
0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x53, 0x6d, 0x61, 0x72, 0x74, 0x41, 0x64, 0x12, 0x68, 0x0a,
0x13, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
0x74, 0x5f, 0x61, 0x64, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x68, 0x6f,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x68, 0x6f,
0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x41, 0x64, 0x49, 0x6e,
0x66, 0x6f, 0x48, 0x00, 0x52, 0x11, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x50, 0x72,
0x6f, 0x64, 0x75, 0x63, 0x74, 0x41, 0x64, 0x12, 0x4e, 0x0a, 0x08, 0x69, 0x6d, 0x61, 0x67, 0x65,
0x5f, 0x61, 0x64, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x6d, 0x61, 0x67,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x6d, 0x61, 0x67,
0x65, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x07,
0x69, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x64, 0x12, 0x49, 0x0a, 0x08, 0x76, 0x69, 0x64, 0x65, 0x6f,
0x5f, 0x61, 0x64, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65,
0x6f, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x07, 0x76, 0x69, 0x64, 0x65, 0x6f,
0x41, 0x64, 0x12, 0x68, 0x0a, 0x13, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x72, 0x65, 0x73, 0x70,
0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x5f, 0x61, 0x64, 0x18, 0x27, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x36, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76,
0x65, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x11, 0x76, 0x69, 0x64, 0x65, 0x6f,
0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x41, 0x64, 0x12, 0x6b, 0x0a, 0x14,
0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63,
0x68, 0x5f, 0x61, 0x64, 0x18, 0x19, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x73,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x73,
0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x49,
0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x12, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76,
0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x64, 0x12, 0x81, 0x01, 0x0a, 0x1c, 0x6c, 0x65,
0x67, 0x61, 0x63, 0x79, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x5f,
0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x61, 0x64, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x0b,
0x32, 0x3e, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x2e, 0x4c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
0x69, 0x76, 0x65, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f,
0x48, 0x00, 0x52, 0x19, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
0x73, 0x69, 0x76, 0x65, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x41, 0x64, 0x12, 0x43, 0x0a,
0x06, 0x61, 0x70, 0x70, 0x5f, 0x61, 0x64, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x41, 0x70, 0x70, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x05, 0x61, 0x70, 0x70,
0x41, 0x64, 0x12, 0x71, 0x0a, 0x15, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x5f, 0x61, 0x70, 0x70,
0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x61, 0x64, 0x18, 0x1e, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x73,
0x74, 0x61, 0x6c, 0x6c, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48,
0x00, 0x52, 0x12, 0x6c, 0x65, 0x67, 0x61, 0x63, 0x79, 0x41, 0x70, 0x70, 0x49, 0x6e, 0x73, 0x74,
0x61, 0x6c, 0x6c, 0x41, 0x64, 0x12, 0x6e, 0x0a, 0x15, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
0x69, 0x76, 0x65, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x61, 0x64, 0x18, 0x1f,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64,
- 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e,
+ 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e,
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76,
0x65, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00,
0x52, 0x13, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x44, 0x69, 0x73, 0x70,
0x6c, 0x61, 0x79, 0x41, 0x64, 0x12, 0x49, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x61,
0x64, 0x18, 0x20, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x41,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x41,
0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x07, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x41, 0x64,
0x12, 0x62, 0x0a, 0x11, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x75, 0x70, 0x6c, 0x6f,
0x61, 0x64, 0x5f, 0x61, 0x64, 0x18, 0x21, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x69,
+ 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x69,
0x73, 0x70, 0x6c, 0x61, 0x79, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x41, 0x64, 0x49, 0x6e, 0x66,
0x6f, 0x48, 0x00, 0x52, 0x0f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x55, 0x70, 0x6c, 0x6f,
0x61, 0x64, 0x41, 0x64, 0x12, 0x62, 0x0a, 0x11, 0x61, 0x70, 0x70, 0x5f, 0x65, 0x6e, 0x67, 0x61,
0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x64, 0x18, 0x22, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x34, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2e, 0x41, 0x70, 0x70, 0x45, 0x6e, 0x67, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x41,
0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0f, 0x61, 0x70, 0x70, 0x45, 0x6e, 0x67, 0x61,
0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x64, 0x12, 0x87, 0x01, 0x0a, 0x1e, 0x73, 0x68, 0x6f,
0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x69, 0x73, 0x6f, 0x6e,
0x5f, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x64, 0x18, 0x24, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d,
0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6d, 0x70,
0x61, 0x72, 0x69, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x64, 0x49,
0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x1b, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x43,
@@ -862,163 +862,163 @@ var file_google_ads_googleads_v16_resources_ad_proto_rawDesc = []byte{
0x41, 0x64, 0x12, 0x62, 0x0a, 0x11, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, 0x6d, 0x70,
0x61, 0x69, 0x67, 0x6e, 0x5f, 0x61, 0x64, 0x18, 0x30, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x53, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x64, 0x49,
0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x43, 0x61, 0x6d, 0x70,
0x61, 0x69, 0x67, 0x6e, 0x41, 0x64, 0x12, 0x72, 0x0a, 0x17, 0x61, 0x70, 0x70, 0x5f, 0x70, 0x72,
0x65, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61,
0x64, 0x18, 0x32, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x70, 0x70, 0x50, 0x72, 0x65,
+ 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x70, 0x70, 0x50, 0x72, 0x65,
0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x49, 0x6e,
0x66, 0x6f, 0x48, 0x00, 0x52, 0x14, 0x61, 0x70, 0x70, 0x50, 0x72, 0x65, 0x52, 0x65, 0x67, 0x69,
- 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x12, 0x75, 0x0a, 0x18, 0x64, 0x69,
- 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x5f, 0x61, 0x73,
- 0x73, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x18, 0x33, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x67,
+ 0x73, 0x74, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x64, 0x12, 0x76, 0x0a, 0x19, 0x64, 0x65,
+ 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x5f, 0x61,
+ 0x73, 0x73, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x18, 0x3e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x73,
+ 0x73, 0x65, 0x74, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x15, 0x64, 0x65, 0x6d,
+ 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x73, 0x73, 0x65, 0x74,
+ 0x41, 0x64, 0x12, 0x6f, 0x0a, 0x16, 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x67, 0x65, 0x6e,
+ 0x5f, 0x63, 0x61, 0x72, 0x6f, 0x75, 0x73, 0x65, 0x6c, 0x5f, 0x61, 0x64, 0x18, 0x3f, 0x20, 0x01,
+ 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f,
+ 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x43, 0x61,
+ 0x72, 0x6f, 0x75, 0x73, 0x65, 0x6c, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x13,
+ 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x43, 0x61, 0x72, 0x6f, 0x75, 0x73, 0x65,
+ 0x6c, 0x41, 0x64, 0x12, 0x85, 0x01, 0x0a, 0x1e, 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x67,
+ 0x65, 0x6e, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
+ 0x69, 0x76, 0x65, 0x5f, 0x61, 0x64, 0x18, 0x40, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3f, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44,
- 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x73, 0x73,
- 0x65, 0x74, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x15, 0x64, 0x69, 0x73, 0x63,
- 0x6f, 0x76, 0x65, 0x72, 0x79, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x41, 0x73, 0x73, 0x65, 0x74, 0x41,
- 0x64, 0x12, 0x6e, 0x0a, 0x15, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x5f, 0x63,
- 0x61, 0x72, 0x6f, 0x75, 0x73, 0x65, 0x6c, 0x5f, 0x61, 0x64, 0x18, 0x34, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x38, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
- 0x6f, 0x6e, 0x2e, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x43, 0x61, 0x72, 0x6f,
- 0x75, 0x73, 0x65, 0x6c, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x13, 0x64, 0x69,
- 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x43, 0x61, 0x72, 0x6f, 0x75, 0x73, 0x65, 0x6c, 0x41,
- 0x64, 0x12, 0x84, 0x01, 0x0a, 0x1d, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x5f,
- 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65,
- 0x5f, 0x61, 0x64, 0x18, 0x3c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3f, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x69, 0x73, 0x63,
- 0x6f, 0x76, 0x65, 0x72, 0x79, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x69, 0x76, 0x65, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x1a, 0x64, 0x69,
- 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x41, 0x64, 0x12, 0x6c, 0x0a, 0x15, 0x64, 0x65, 0x6d, 0x61,
- 0x6e, 0x64, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x61,
- 0x64, 0x18, 0x3d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64,
- 0x47, 0x65, 0x6e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f,
- 0x48, 0x00, 0x52, 0x12, 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x50, 0x72, 0x6f,
- 0x64, 0x75, 0x63, 0x74, 0x41, 0x64, 0x12, 0x4c, 0x0a, 0x09, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c,
- 0x5f, 0x61, 0x64, 0x18, 0x36, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x72, 0x61, 0x76,
- 0x65, 0x6c, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x08, 0x74, 0x72, 0x61, 0x76,
- 0x65, 0x6c, 0x41, 0x64, 0x3a, 0x45, 0xea, 0x41, 0x42, 0x0a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e,
- 0x63, 0x6f, 0x6d, 0x2f, 0x41, 0x64, 0x12, 0x23, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72,
- 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f,
- 0x61, 0x64, 0x73, 0x2f, 0x7b, 0x61, 0x64, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x09, 0x0a, 0x07, 0x61,
- 0x64, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x69, 0x64, 0x42, 0x18, 0x0a,
- 0x16, 0x5f, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x74,
- 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x66, 0x69, 0x6e, 0x61,
- 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x73, 0x75, 0x66, 0x66, 0x69, 0x78, 0x42, 0x0e, 0x0a, 0x0c,
- 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x75, 0x72, 0x6c, 0x42, 0x16, 0x0a, 0x14,
- 0x5f, 0x61, 0x64, 0x64, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x5f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x5f, 0x61, 0x64, 0x73, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0xf9, 0x01,
- 0x0a, 0x26, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x72,
- 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x07, 0x41, 0x64, 0x50, 0x72, 0x6f, 0x74,
- 0x6f, 0x50, 0x01, 0x5a, 0x4b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61,
- 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x72, 0x65, 0x73,
- 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73,
- 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x31,
- 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73,
- 0xea, 0x02, 0x26, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a, 0x3a,
- 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x33,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44,
+ 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x52, 0x65, 0x73,
+ 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52,
+ 0x1a, 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x52,
+ 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x69, 0x76, 0x65, 0x41, 0x64, 0x12, 0x6c, 0x0a, 0x15, 0x64,
+ 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63,
+ 0x74, 0x5f, 0x61, 0x64, 0x18, 0x3d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x65, 0x6d,
+ 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x41, 0x64, 0x49,
+ 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x12, 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e,
+ 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x41, 0x64, 0x12, 0x4c, 0x0a, 0x09, 0x74, 0x72, 0x61,
+ 0x76, 0x65, 0x6c, 0x5f, 0x61, 0x64, 0x18, 0x36, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54,
+ 0x72, 0x61, 0x76, 0x65, 0x6c, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x08, 0x74,
+ 0x72, 0x61, 0x76, 0x65, 0x6c, 0x41, 0x64, 0x3a, 0x45, 0xea, 0x41, 0x42, 0x0a, 0x1b, 0x67, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70,
+ 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x41, 0x64, 0x12, 0x23, 0x63, 0x75, 0x73, 0x74, 0x6f,
+ 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69,
+ 0x64, 0x7d, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x7b, 0x61, 0x64, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x09,
+ 0x0a, 0x07, 0x61, 0x64, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x69, 0x64,
+ 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x74, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x75, 0x72,
+ 0x6c, 0x5f, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x66,
+ 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x73, 0x75, 0x66, 0x66, 0x69, 0x78, 0x42,
+ 0x0e, 0x0a, 0x0c, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x75, 0x72, 0x6c, 0x42,
+ 0x16, 0x0a, 0x14, 0x5f, 0x61, 0x64, 0x64, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x5f, 0x67, 0x6f, 0x6f,
+ 0x67, 0x6c, 0x65, 0x5f, 0x61, 0x64, 0x73, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
+ 0x42, 0xf9, 0x01, 0x0a, 0x26, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
+ 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31,
+ 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x07, 0x41, 0x64, 0x50,
+ 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x4b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67,
+ 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f,
+ 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
+ 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72,
+ 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73,
+ 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02,
+ 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67,
+ 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72,
+ 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64,
+ 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31,
+ 0x37, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72,
+ 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_resources_ad_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_resources_ad_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_proto_rawDesc
+ file_google_ads_googleads_v17_resources_ad_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_resources_ad_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_proto_rawDesc
)
-func file_google_ads_googleads_v16_resources_ad_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_resources_ad_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_resources_ad_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_proto_rawDescData)
+func file_google_ads_googleads_v17_resources_ad_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_resources_ad_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_resources_ad_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_proto_rawDescData)
})
- return file_google_ads_googleads_v16_resources_ad_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_resources_ad_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_resources_ad_proto_goTypes = []interface{}{
- (*Ad)(nil), // 0: google.ads.googleads.v16.resources.Ad
- (*common.FinalAppUrl)(nil), // 1: google.ads.googleads.v16.common.FinalAppUrl
- (*common.CustomParameter)(nil), // 2: google.ads.googleads.v16.common.CustomParameter
- (enums.AdTypeEnum_AdType)(0), // 3: google.ads.googleads.v16.enums.AdTypeEnum.AdType
- (enums.DeviceEnum_Device)(0), // 4: google.ads.googleads.v16.enums.DeviceEnum.Device
- (*common.UrlCollection)(nil), // 5: google.ads.googleads.v16.common.UrlCollection
- (enums.SystemManagedResourceSourceEnum_SystemManagedResourceSource)(0), // 6: google.ads.googleads.v16.enums.SystemManagedResourceSourceEnum.SystemManagedResourceSource
- (*common.TextAdInfo)(nil), // 7: google.ads.googleads.v16.common.TextAdInfo
- (*common.ExpandedTextAdInfo)(nil), // 8: google.ads.googleads.v16.common.ExpandedTextAdInfo
- (*common.CallAdInfo)(nil), // 9: google.ads.googleads.v16.common.CallAdInfo
- (*common.ExpandedDynamicSearchAdInfo)(nil), // 10: google.ads.googleads.v16.common.ExpandedDynamicSearchAdInfo
- (*common.HotelAdInfo)(nil), // 11: google.ads.googleads.v16.common.HotelAdInfo
- (*common.ShoppingSmartAdInfo)(nil), // 12: google.ads.googleads.v16.common.ShoppingSmartAdInfo
- (*common.ShoppingProductAdInfo)(nil), // 13: google.ads.googleads.v16.common.ShoppingProductAdInfo
- (*common.ImageAdInfo)(nil), // 14: google.ads.googleads.v16.common.ImageAdInfo
- (*common.VideoAdInfo)(nil), // 15: google.ads.googleads.v16.common.VideoAdInfo
- (*common.VideoResponsiveAdInfo)(nil), // 16: google.ads.googleads.v16.common.VideoResponsiveAdInfo
- (*common.ResponsiveSearchAdInfo)(nil), // 17: google.ads.googleads.v16.common.ResponsiveSearchAdInfo
- (*common.LegacyResponsiveDisplayAdInfo)(nil), // 18: google.ads.googleads.v16.common.LegacyResponsiveDisplayAdInfo
- (*common.AppAdInfo)(nil), // 19: google.ads.googleads.v16.common.AppAdInfo
- (*common.LegacyAppInstallAdInfo)(nil), // 20: google.ads.googleads.v16.common.LegacyAppInstallAdInfo
- (*common.ResponsiveDisplayAdInfo)(nil), // 21: google.ads.googleads.v16.common.ResponsiveDisplayAdInfo
- (*common.LocalAdInfo)(nil), // 22: google.ads.googleads.v16.common.LocalAdInfo
- (*common.DisplayUploadAdInfo)(nil), // 23: google.ads.googleads.v16.common.DisplayUploadAdInfo
- (*common.AppEngagementAdInfo)(nil), // 24: google.ads.googleads.v16.common.AppEngagementAdInfo
- (*common.ShoppingComparisonListingAdInfo)(nil), // 25: google.ads.googleads.v16.common.ShoppingComparisonListingAdInfo
- (*common.SmartCampaignAdInfo)(nil), // 26: google.ads.googleads.v16.common.SmartCampaignAdInfo
- (*common.AppPreRegistrationAdInfo)(nil), // 27: google.ads.googleads.v16.common.AppPreRegistrationAdInfo
- (*common.DiscoveryMultiAssetAdInfo)(nil), // 28: google.ads.googleads.v16.common.DiscoveryMultiAssetAdInfo
- (*common.DiscoveryCarouselAdInfo)(nil), // 29: google.ads.googleads.v16.common.DiscoveryCarouselAdInfo
- (*common.DiscoveryVideoResponsiveAdInfo)(nil), // 30: google.ads.googleads.v16.common.DiscoveryVideoResponsiveAdInfo
- (*common.DemandGenProductAdInfo)(nil), // 31: google.ads.googleads.v16.common.DemandGenProductAdInfo
- (*common.TravelAdInfo)(nil), // 32: google.ads.googleads.v16.common.TravelAdInfo
-}
-var file_google_ads_googleads_v16_resources_ad_proto_depIdxs = []int32{
- 1, // 0: google.ads.googleads.v16.resources.Ad.final_app_urls:type_name -> google.ads.googleads.v16.common.FinalAppUrl
- 2, // 1: google.ads.googleads.v16.resources.Ad.url_custom_parameters:type_name -> google.ads.googleads.v16.common.CustomParameter
- 3, // 2: google.ads.googleads.v16.resources.Ad.type:type_name -> google.ads.googleads.v16.enums.AdTypeEnum.AdType
- 4, // 3: google.ads.googleads.v16.resources.Ad.device_preference:type_name -> google.ads.googleads.v16.enums.DeviceEnum.Device
- 5, // 4: google.ads.googleads.v16.resources.Ad.url_collections:type_name -> google.ads.googleads.v16.common.UrlCollection
- 6, // 5: google.ads.googleads.v16.resources.Ad.system_managed_resource_source:type_name -> google.ads.googleads.v16.enums.SystemManagedResourceSourceEnum.SystemManagedResourceSource
- 7, // 6: google.ads.googleads.v16.resources.Ad.text_ad:type_name -> google.ads.googleads.v16.common.TextAdInfo
- 8, // 7: google.ads.googleads.v16.resources.Ad.expanded_text_ad:type_name -> google.ads.googleads.v16.common.ExpandedTextAdInfo
- 9, // 8: google.ads.googleads.v16.resources.Ad.call_ad:type_name -> google.ads.googleads.v16.common.CallAdInfo
- 10, // 9: google.ads.googleads.v16.resources.Ad.expanded_dynamic_search_ad:type_name -> google.ads.googleads.v16.common.ExpandedDynamicSearchAdInfo
- 11, // 10: google.ads.googleads.v16.resources.Ad.hotel_ad:type_name -> google.ads.googleads.v16.common.HotelAdInfo
- 12, // 11: google.ads.googleads.v16.resources.Ad.shopping_smart_ad:type_name -> google.ads.googleads.v16.common.ShoppingSmartAdInfo
- 13, // 12: google.ads.googleads.v16.resources.Ad.shopping_product_ad:type_name -> google.ads.googleads.v16.common.ShoppingProductAdInfo
- 14, // 13: google.ads.googleads.v16.resources.Ad.image_ad:type_name -> google.ads.googleads.v16.common.ImageAdInfo
- 15, // 14: google.ads.googleads.v16.resources.Ad.video_ad:type_name -> google.ads.googleads.v16.common.VideoAdInfo
- 16, // 15: google.ads.googleads.v16.resources.Ad.video_responsive_ad:type_name -> google.ads.googleads.v16.common.VideoResponsiveAdInfo
- 17, // 16: google.ads.googleads.v16.resources.Ad.responsive_search_ad:type_name -> google.ads.googleads.v16.common.ResponsiveSearchAdInfo
- 18, // 17: google.ads.googleads.v16.resources.Ad.legacy_responsive_display_ad:type_name -> google.ads.googleads.v16.common.LegacyResponsiveDisplayAdInfo
- 19, // 18: google.ads.googleads.v16.resources.Ad.app_ad:type_name -> google.ads.googleads.v16.common.AppAdInfo
- 20, // 19: google.ads.googleads.v16.resources.Ad.legacy_app_install_ad:type_name -> google.ads.googleads.v16.common.LegacyAppInstallAdInfo
- 21, // 20: google.ads.googleads.v16.resources.Ad.responsive_display_ad:type_name -> google.ads.googleads.v16.common.ResponsiveDisplayAdInfo
- 22, // 21: google.ads.googleads.v16.resources.Ad.local_ad:type_name -> google.ads.googleads.v16.common.LocalAdInfo
- 23, // 22: google.ads.googleads.v16.resources.Ad.display_upload_ad:type_name -> google.ads.googleads.v16.common.DisplayUploadAdInfo
- 24, // 23: google.ads.googleads.v16.resources.Ad.app_engagement_ad:type_name -> google.ads.googleads.v16.common.AppEngagementAdInfo
- 25, // 24: google.ads.googleads.v16.resources.Ad.shopping_comparison_listing_ad:type_name -> google.ads.googleads.v16.common.ShoppingComparisonListingAdInfo
- 26, // 25: google.ads.googleads.v16.resources.Ad.smart_campaign_ad:type_name -> google.ads.googleads.v16.common.SmartCampaignAdInfo
- 27, // 26: google.ads.googleads.v16.resources.Ad.app_pre_registration_ad:type_name -> google.ads.googleads.v16.common.AppPreRegistrationAdInfo
- 28, // 27: google.ads.googleads.v16.resources.Ad.discovery_multi_asset_ad:type_name -> google.ads.googleads.v16.common.DiscoveryMultiAssetAdInfo
- 29, // 28: google.ads.googleads.v16.resources.Ad.discovery_carousel_ad:type_name -> google.ads.googleads.v16.common.DiscoveryCarouselAdInfo
- 30, // 29: google.ads.googleads.v16.resources.Ad.discovery_video_responsive_ad:type_name -> google.ads.googleads.v16.common.DiscoveryVideoResponsiveAdInfo
- 31, // 30: google.ads.googleads.v16.resources.Ad.demand_gen_product_ad:type_name -> google.ads.googleads.v16.common.DemandGenProductAdInfo
- 32, // 31: google.ads.googleads.v16.resources.Ad.travel_ad:type_name -> google.ads.googleads.v16.common.TravelAdInfo
+ return file_google_ads_googleads_v17_resources_ad_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_resources_ad_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_resources_ad_proto_goTypes = []interface{}{
+ (*Ad)(nil), // 0: google.ads.googleads.v17.resources.Ad
+ (*common.FinalAppUrl)(nil), // 1: google.ads.googleads.v17.common.FinalAppUrl
+ (*common.CustomParameter)(nil), // 2: google.ads.googleads.v17.common.CustomParameter
+ (enums.AdTypeEnum_AdType)(0), // 3: google.ads.googleads.v17.enums.AdTypeEnum.AdType
+ (enums.DeviceEnum_Device)(0), // 4: google.ads.googleads.v17.enums.DeviceEnum.Device
+ (*common.UrlCollection)(nil), // 5: google.ads.googleads.v17.common.UrlCollection
+ (enums.SystemManagedResourceSourceEnum_SystemManagedResourceSource)(0), // 6: google.ads.googleads.v17.enums.SystemManagedResourceSourceEnum.SystemManagedResourceSource
+ (*common.TextAdInfo)(nil), // 7: google.ads.googleads.v17.common.TextAdInfo
+ (*common.ExpandedTextAdInfo)(nil), // 8: google.ads.googleads.v17.common.ExpandedTextAdInfo
+ (*common.CallAdInfo)(nil), // 9: google.ads.googleads.v17.common.CallAdInfo
+ (*common.ExpandedDynamicSearchAdInfo)(nil), // 10: google.ads.googleads.v17.common.ExpandedDynamicSearchAdInfo
+ (*common.HotelAdInfo)(nil), // 11: google.ads.googleads.v17.common.HotelAdInfo
+ (*common.ShoppingSmartAdInfo)(nil), // 12: google.ads.googleads.v17.common.ShoppingSmartAdInfo
+ (*common.ShoppingProductAdInfo)(nil), // 13: google.ads.googleads.v17.common.ShoppingProductAdInfo
+ (*common.ImageAdInfo)(nil), // 14: google.ads.googleads.v17.common.ImageAdInfo
+ (*common.VideoAdInfo)(nil), // 15: google.ads.googleads.v17.common.VideoAdInfo
+ (*common.VideoResponsiveAdInfo)(nil), // 16: google.ads.googleads.v17.common.VideoResponsiveAdInfo
+ (*common.ResponsiveSearchAdInfo)(nil), // 17: google.ads.googleads.v17.common.ResponsiveSearchAdInfo
+ (*common.LegacyResponsiveDisplayAdInfo)(nil), // 18: google.ads.googleads.v17.common.LegacyResponsiveDisplayAdInfo
+ (*common.AppAdInfo)(nil), // 19: google.ads.googleads.v17.common.AppAdInfo
+ (*common.LegacyAppInstallAdInfo)(nil), // 20: google.ads.googleads.v17.common.LegacyAppInstallAdInfo
+ (*common.ResponsiveDisplayAdInfo)(nil), // 21: google.ads.googleads.v17.common.ResponsiveDisplayAdInfo
+ (*common.LocalAdInfo)(nil), // 22: google.ads.googleads.v17.common.LocalAdInfo
+ (*common.DisplayUploadAdInfo)(nil), // 23: google.ads.googleads.v17.common.DisplayUploadAdInfo
+ (*common.AppEngagementAdInfo)(nil), // 24: google.ads.googleads.v17.common.AppEngagementAdInfo
+ (*common.ShoppingComparisonListingAdInfo)(nil), // 25: google.ads.googleads.v17.common.ShoppingComparisonListingAdInfo
+ (*common.SmartCampaignAdInfo)(nil), // 26: google.ads.googleads.v17.common.SmartCampaignAdInfo
+ (*common.AppPreRegistrationAdInfo)(nil), // 27: google.ads.googleads.v17.common.AppPreRegistrationAdInfo
+ (*common.DemandGenMultiAssetAdInfo)(nil), // 28: google.ads.googleads.v17.common.DemandGenMultiAssetAdInfo
+ (*common.DemandGenCarouselAdInfo)(nil), // 29: google.ads.googleads.v17.common.DemandGenCarouselAdInfo
+ (*common.DemandGenVideoResponsiveAdInfo)(nil), // 30: google.ads.googleads.v17.common.DemandGenVideoResponsiveAdInfo
+ (*common.DemandGenProductAdInfo)(nil), // 31: google.ads.googleads.v17.common.DemandGenProductAdInfo
+ (*common.TravelAdInfo)(nil), // 32: google.ads.googleads.v17.common.TravelAdInfo
+}
+var file_google_ads_googleads_v17_resources_ad_proto_depIdxs = []int32{
+ 1, // 0: google.ads.googleads.v17.resources.Ad.final_app_urls:type_name -> google.ads.googleads.v17.common.FinalAppUrl
+ 2, // 1: google.ads.googleads.v17.resources.Ad.url_custom_parameters:type_name -> google.ads.googleads.v17.common.CustomParameter
+ 3, // 2: google.ads.googleads.v17.resources.Ad.type:type_name -> google.ads.googleads.v17.enums.AdTypeEnum.AdType
+ 4, // 3: google.ads.googleads.v17.resources.Ad.device_preference:type_name -> google.ads.googleads.v17.enums.DeviceEnum.Device
+ 5, // 4: google.ads.googleads.v17.resources.Ad.url_collections:type_name -> google.ads.googleads.v17.common.UrlCollection
+ 6, // 5: google.ads.googleads.v17.resources.Ad.system_managed_resource_source:type_name -> google.ads.googleads.v17.enums.SystemManagedResourceSourceEnum.SystemManagedResourceSource
+ 7, // 6: google.ads.googleads.v17.resources.Ad.text_ad:type_name -> google.ads.googleads.v17.common.TextAdInfo
+ 8, // 7: google.ads.googleads.v17.resources.Ad.expanded_text_ad:type_name -> google.ads.googleads.v17.common.ExpandedTextAdInfo
+ 9, // 8: google.ads.googleads.v17.resources.Ad.call_ad:type_name -> google.ads.googleads.v17.common.CallAdInfo
+ 10, // 9: google.ads.googleads.v17.resources.Ad.expanded_dynamic_search_ad:type_name -> google.ads.googleads.v17.common.ExpandedDynamicSearchAdInfo
+ 11, // 10: google.ads.googleads.v17.resources.Ad.hotel_ad:type_name -> google.ads.googleads.v17.common.HotelAdInfo
+ 12, // 11: google.ads.googleads.v17.resources.Ad.shopping_smart_ad:type_name -> google.ads.googleads.v17.common.ShoppingSmartAdInfo
+ 13, // 12: google.ads.googleads.v17.resources.Ad.shopping_product_ad:type_name -> google.ads.googleads.v17.common.ShoppingProductAdInfo
+ 14, // 13: google.ads.googleads.v17.resources.Ad.image_ad:type_name -> google.ads.googleads.v17.common.ImageAdInfo
+ 15, // 14: google.ads.googleads.v17.resources.Ad.video_ad:type_name -> google.ads.googleads.v17.common.VideoAdInfo
+ 16, // 15: google.ads.googleads.v17.resources.Ad.video_responsive_ad:type_name -> google.ads.googleads.v17.common.VideoResponsiveAdInfo
+ 17, // 16: google.ads.googleads.v17.resources.Ad.responsive_search_ad:type_name -> google.ads.googleads.v17.common.ResponsiveSearchAdInfo
+ 18, // 17: google.ads.googleads.v17.resources.Ad.legacy_responsive_display_ad:type_name -> google.ads.googleads.v17.common.LegacyResponsiveDisplayAdInfo
+ 19, // 18: google.ads.googleads.v17.resources.Ad.app_ad:type_name -> google.ads.googleads.v17.common.AppAdInfo
+ 20, // 19: google.ads.googleads.v17.resources.Ad.legacy_app_install_ad:type_name -> google.ads.googleads.v17.common.LegacyAppInstallAdInfo
+ 21, // 20: google.ads.googleads.v17.resources.Ad.responsive_display_ad:type_name -> google.ads.googleads.v17.common.ResponsiveDisplayAdInfo
+ 22, // 21: google.ads.googleads.v17.resources.Ad.local_ad:type_name -> google.ads.googleads.v17.common.LocalAdInfo
+ 23, // 22: google.ads.googleads.v17.resources.Ad.display_upload_ad:type_name -> google.ads.googleads.v17.common.DisplayUploadAdInfo
+ 24, // 23: google.ads.googleads.v17.resources.Ad.app_engagement_ad:type_name -> google.ads.googleads.v17.common.AppEngagementAdInfo
+ 25, // 24: google.ads.googleads.v17.resources.Ad.shopping_comparison_listing_ad:type_name -> google.ads.googleads.v17.common.ShoppingComparisonListingAdInfo
+ 26, // 25: google.ads.googleads.v17.resources.Ad.smart_campaign_ad:type_name -> google.ads.googleads.v17.common.SmartCampaignAdInfo
+ 27, // 26: google.ads.googleads.v17.resources.Ad.app_pre_registration_ad:type_name -> google.ads.googleads.v17.common.AppPreRegistrationAdInfo
+ 28, // 27: google.ads.googleads.v17.resources.Ad.demand_gen_multi_asset_ad:type_name -> google.ads.googleads.v17.common.DemandGenMultiAssetAdInfo
+ 29, // 28: google.ads.googleads.v17.resources.Ad.demand_gen_carousel_ad:type_name -> google.ads.googleads.v17.common.DemandGenCarouselAdInfo
+ 30, // 29: google.ads.googleads.v17.resources.Ad.demand_gen_video_responsive_ad:type_name -> google.ads.googleads.v17.common.DemandGenVideoResponsiveAdInfo
+ 31, // 30: google.ads.googleads.v17.resources.Ad.demand_gen_product_ad:type_name -> google.ads.googleads.v17.common.DemandGenProductAdInfo
+ 32, // 31: google.ads.googleads.v17.resources.Ad.travel_ad:type_name -> google.ads.googleads.v17.common.TravelAdInfo
32, // [32:32] is the sub-list for method output_type
32, // [32:32] is the sub-list for method input_type
32, // [32:32] is the sub-list for extension type_name
@@ -1026,13 +1026,13 @@ var file_google_ads_googleads_v16_resources_ad_proto_depIdxs = []int32{
0, // [0:32] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_resources_ad_proto_init() }
-func file_google_ads_googleads_v16_resources_ad_proto_init() {
- if File_google_ads_googleads_v16_resources_ad_proto != nil {
+func init() { file_google_ads_googleads_v17_resources_ad_proto_init() }
+func file_google_ads_googleads_v17_resources_ad_proto_init() {
+ if File_google_ads_googleads_v17_resources_ad_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_resources_ad_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_resources_ad_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Ad); i {
case 0:
return &v.state
@@ -1045,7 +1045,7 @@ func file_google_ads_googleads_v16_resources_ad_proto_init() {
}
}
}
- file_google_ads_googleads_v16_resources_ad_proto_msgTypes[0].OneofWrappers = []interface{}{
+ file_google_ads_googleads_v17_resources_ad_proto_msgTypes[0].OneofWrappers = []interface{}{
(*Ad_TextAd)(nil),
(*Ad_ExpandedTextAd)(nil),
(*Ad_CallAd)(nil),
@@ -1067,9 +1067,9 @@ func file_google_ads_googleads_v16_resources_ad_proto_init() {
(*Ad_ShoppingComparisonListingAd)(nil),
(*Ad_SmartCampaignAd)(nil),
(*Ad_AppPreRegistrationAd)(nil),
- (*Ad_DiscoveryMultiAssetAd)(nil),
- (*Ad_DiscoveryCarouselAd)(nil),
- (*Ad_DiscoveryVideoResponsiveAd)(nil),
+ (*Ad_DemandGenMultiAssetAd)(nil),
+ (*Ad_DemandGenCarouselAd)(nil),
+ (*Ad_DemandGenVideoResponsiveAd)(nil),
(*Ad_DemandGenProductAd)(nil),
(*Ad_TravelAd)(nil),
}
@@ -1077,18 +1077,18 @@ func file_google_ads_googleads_v16_resources_ad_proto_init() {
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_resources_ad_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_resources_ad_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_resources_ad_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_resources_ad_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_resources_ad_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_resources_ad_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_resources_ad_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_resources_ad_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_resources_ad_proto = out.File
- file_google_ads_googleads_v16_resources_ad_proto_rawDesc = nil
- file_google_ads_googleads_v16_resources_ad_proto_goTypes = nil
- file_google_ads_googleads_v16_resources_ad_proto_depIdxs = nil
+ File_google_ads_googleads_v17_resources_ad_proto = out.File
+ file_google_ads_googleads_v17_resources_ad_proto_rawDesc = nil
+ file_google_ads_googleads_v17_resources_ad_proto_goTypes = nil
+ file_google_ads_googleads_v17_resources_ad_proto_depIdxs = nil
}
diff --git a/resources/ad_group.pb.go b/resources/ad_group.pb.go
index 70a2acc0..5008e2d1 100644
--- a/resources/ad_group.pb.go
+++ b/resources/ad_group.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/resources/ad_group.proto
+// source: google/ads/googleads/v17/resources/ad_group.proto
package resources
@@ -61,11 +61,11 @@ type AdGroup struct {
// (code point 0xA) or carriage return (code point 0xD) characters.
Name *string `protobuf:"bytes,35,opt,name=name,proto3,oneof" json:"name,omitempty"`
// The status of the ad group.
- Status enums.AdGroupStatusEnum_AdGroupStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.AdGroupStatusEnum_AdGroupStatus" json:"status,omitempty"`
+ Status enums.AdGroupStatusEnum_AdGroupStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.AdGroupStatusEnum_AdGroupStatus" json:"status,omitempty"`
// Immutable. The type of the ad group.
- Type enums.AdGroupTypeEnum_AdGroupType `protobuf:"varint,12,opt,name=type,proto3,enum=google.ads.googleads.v16.enums.AdGroupTypeEnum_AdGroupType" json:"type,omitempty"`
+ Type enums.AdGroupTypeEnum_AdGroupType `protobuf:"varint,12,opt,name=type,proto3,enum=google.ads.googleads.v17.enums.AdGroupTypeEnum_AdGroupType" json:"type,omitempty"`
// The ad rotation mode of the ad group.
- AdRotationMode enums.AdGroupAdRotationModeEnum_AdGroupAdRotationMode `protobuf:"varint,22,opt,name=ad_rotation_mode,json=adRotationMode,proto3,enum=google.ads.googleads.v16.enums.AdGroupAdRotationModeEnum_AdGroupAdRotationMode" json:"ad_rotation_mode,omitempty"`
+ AdRotationMode enums.AdGroupAdRotationModeEnum_AdGroupAdRotationMode `protobuf:"varint,22,opt,name=ad_rotation_mode,json=adRotationMode,proto3,enum=google.ads.googleads.v17.enums.AdGroupAdRotationModeEnum_AdGroupAdRotationMode" json:"ad_rotation_mode,omitempty"`
// Output only. For draft or experiment ad groups, this field is the resource
// name of the base ad group from which this ad group was created. If a draft
// or experiment ad group does not have a base ad group, then this field is
@@ -117,7 +117,7 @@ type AdGroup struct {
// Allows advertisers to 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.
- DisplayCustomBidDimension enums.TargetingDimensionEnum_TargetingDimension `protobuf:"varint,23,opt,name=display_custom_bid_dimension,json=displayCustomBidDimension,proto3,enum=google.ads.googleads.v16.enums.TargetingDimensionEnum_TargetingDimension" json:"display_custom_bid_dimension,omitempty"`
+ DisplayCustomBidDimension enums.TargetingDimensionEnum_TargetingDimension `protobuf:"varint,23,opt,name=display_custom_bid_dimension,json=displayCustomBidDimension,proto3,enum=google.ads.googleads.v17.enums.TargetingDimensionEnum_TargetingDimension" json:"display_custom_bid_dimension,omitempty"`
// URL template for appending params to Final URL.
FinalUrlSuffix *string `protobuf:"bytes,46,opt,name=final_url_suffix,json=finalUrlSuffix,proto3,oneof" json:"final_url_suffix,omitempty"`
// Setting for targeting related features.
@@ -129,19 +129,19 @@ type AdGroup struct {
EffectiveTargetCpaMicros *int64 `protobuf:"varint,47,opt,name=effective_target_cpa_micros,json=effectiveTargetCpaMicros,proto3,oneof" json:"effective_target_cpa_micros,omitempty"`
// Output only. Source of the effective target CPA.
// This field is read-only.
- EffectiveTargetCpaSource enums.BiddingSourceEnum_BiddingSource `protobuf:"varint,29,opt,name=effective_target_cpa_source,json=effectiveTargetCpaSource,proto3,enum=google.ads.googleads.v16.enums.BiddingSourceEnum_BiddingSource" json:"effective_target_cpa_source,omitempty"`
+ EffectiveTargetCpaSource enums.BiddingSourceEnum_BiddingSource `protobuf:"varint,29,opt,name=effective_target_cpa_source,json=effectiveTargetCpaSource,proto3,enum=google.ads.googleads.v17.enums.BiddingSourceEnum_BiddingSource" json:"effective_target_cpa_source,omitempty"`
// Output only. The effective target ROAS (return-on-ad-spend).
// This field is read-only.
EffectiveTargetRoas *float64 `protobuf:"fixed64,48,opt,name=effective_target_roas,json=effectiveTargetRoas,proto3,oneof" json:"effective_target_roas,omitempty"`
// Output only. Source of the effective target ROAS.
// This field is read-only.
- EffectiveTargetRoasSource enums.BiddingSourceEnum_BiddingSource `protobuf:"varint,32,opt,name=effective_target_roas_source,json=effectiveTargetRoasSource,proto3,enum=google.ads.googleads.v16.enums.BiddingSourceEnum_BiddingSource" json:"effective_target_roas_source,omitempty"`
+ EffectiveTargetRoasSource enums.BiddingSourceEnum_BiddingSource `protobuf:"varint,32,opt,name=effective_target_roas_source,json=effectiveTargetRoasSource,proto3,enum=google.ads.googleads.v17.enums.BiddingSourceEnum_BiddingSource" json:"effective_target_roas_source,omitempty"`
// Output only. The resource names of labels attached to this ad group.
Labels []string `protobuf:"bytes,49,rep,name=labels,proto3" json:"labels,omitempty"`
// The asset field types that should be excluded from this ad group. Asset
// links with these field types will not be inherited by this ad group from
// the upper levels.
- ExcludedParentAssetFieldTypes []enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,54,rep,packed,name=excluded_parent_asset_field_types,json=excludedParentAssetFieldTypes,proto3,enum=google.ads.googleads.v16.enums.AssetFieldTypeEnum_AssetFieldType" json:"excluded_parent_asset_field_types,omitempty"`
+ ExcludedParentAssetFieldTypes []enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,54,rep,packed,name=excluded_parent_asset_field_types,json=excludedParentAssetFieldTypes,proto3,enum=google.ads.googleads.v17.enums.AssetFieldTypeEnum_AssetFieldType" json:"excluded_parent_asset_field_types,omitempty"`
// The asset set types that should be excluded from this ad group. Asset set
// links with these types will not be inherited by this ad group from the
// upper levels.
@@ -152,19 +152,19 @@ type AdGroup struct {
// and all Location Extension (LE) and Affiliate Location Extensions (ALE)
// will not be served under this ad group.
// Only LOCATION_SYNC is currently supported.
- ExcludedParentAssetSetTypes []enums.AssetSetTypeEnum_AssetSetType `protobuf:"varint,58,rep,packed,name=excluded_parent_asset_set_types,json=excludedParentAssetSetTypes,proto3,enum=google.ads.googleads.v16.enums.AssetSetTypeEnum_AssetSetType" json:"excluded_parent_asset_set_types,omitempty"`
+ ExcludedParentAssetSetTypes []enums.AssetSetTypeEnum_AssetSetType `protobuf:"varint,58,rep,packed,name=excluded_parent_asset_set_types,json=excludedParentAssetSetTypes,proto3,enum=google.ads.googleads.v17.enums.AssetSetTypeEnum_AssetSetType" json:"excluded_parent_asset_set_types,omitempty"`
// Output only. Provides aggregated view into why an ad group is not serving
// or not serving optimally.
- PrimaryStatus enums.AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus `protobuf:"varint,62,opt,name=primary_status,json=primaryStatus,proto3,enum=google.ads.googleads.v16.enums.AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus" json:"primary_status,omitempty"`
+ PrimaryStatus enums.AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus `protobuf:"varint,62,opt,name=primary_status,json=primaryStatus,proto3,enum=google.ads.googleads.v17.enums.AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus" json:"primary_status,omitempty"`
// Output only. Provides reasons for why an ad group is not serving or not
// serving optimally.
- PrimaryStatusReasons []enums.AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason `protobuf:"varint,63,rep,packed,name=primary_status_reasons,json=primaryStatusReasons,proto3,enum=google.ads.googleads.v16.enums.AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason" json:"primary_status_reasons,omitempty"`
+ PrimaryStatusReasons []enums.AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason `protobuf:"varint,63,rep,packed,name=primary_status_reasons,json=primaryStatusReasons,proto3,enum=google.ads.googleads.v17.enums.AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason" json:"primary_status_reasons,omitempty"`
}
func (x *AdGroup) Reset() {
*x = AdGroup{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_resources_ad_group_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_resources_ad_group_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -177,7 +177,7 @@ func (x *AdGroup) String() string {
func (*AdGroup) ProtoMessage() {}
func (x *AdGroup) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_resources_ad_group_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_resources_ad_group_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -190,7 +190,7 @@ func (x *AdGroup) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroup.ProtoReflect.Descriptor instead.
func (*AdGroup) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_resources_ad_group_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_resources_ad_group_proto_rawDescGZIP(), []int{0}
}
func (x *AdGroup) GetResourceName() string {
@@ -432,7 +432,7 @@ type AdGroup_AudienceSetting struct {
func (x *AdGroup_AudienceSetting) Reset() {
*x = AdGroup_AudienceSetting{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_resources_ad_group_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_resources_ad_group_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -445,7 +445,7 @@ func (x *AdGroup_AudienceSetting) String() string {
func (*AdGroup_AudienceSetting) ProtoMessage() {}
func (x *AdGroup_AudienceSetting) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_resources_ad_group_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_resources_ad_group_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -458,7 +458,7 @@ func (x *AdGroup_AudienceSetting) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroup_AudienceSetting.ProtoReflect.Descriptor instead.
func (*AdGroup_AudienceSetting) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_resources_ad_group_proto_rawDescGZIP(), []int{0, 0}
+ return file_google_ads_googleads_v17_resources_ad_group_proto_rawDescGZIP(), []int{0, 0}
}
func (x *AdGroup_AudienceSetting) GetUseAudienceGrouped() bool {
@@ -468,52 +468,52 @@ func (x *AdGroup_AudienceSetting) GetUseAudienceGrouped() bool {
return false
}
-var File_google_ads_googleads_v16_resources_ad_group_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_resources_ad_group_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_resources_ad_group_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_resources_ad_group_proto_rawDesc = []byte{
0x0a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x70, 0x72,
0x6f, 0x74, 0x6f, 0x12, 0x22, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65,
0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f,
+ 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f,
0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a,
0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x2f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69,
0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75,
0x70, 0x5f, 0x61, 0x64, 0x5f, 0x72, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x6f,
0x64, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75,
0x70, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f,
0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x72,
0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x34, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67,
+ 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67,
0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x1a, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64,
- 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f,
+ 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f,
0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69, 0x65, 0x6c,
0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x33, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73,
0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x1a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61,
- 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37,
0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67,
0x5f, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65,
@@ -531,18 +531,18 @@ var file_google_ads_googleads_v16_resources_ad_group_proto_rawDesc = []byte{
0x01, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x57, 0x0a, 0x06, 0x73, 0x74,
0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3f, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72,
0x6f, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64,
0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x06, 0x73, 0x74, 0x61,
0x74, 0x75, 0x73, 0x12, 0x54, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28,
0x0e, 0x32, 0x3b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75,
0x6d, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e,
0x75, 0x6d, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03,
0xe0, 0x41, 0x05, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x79, 0x0a, 0x10, 0x61, 0x64, 0x5f,
0x72, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x18, 0x16, 0x20,
0x01, 0x28, 0x0e, 0x32, 0x4f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65,
+ 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65,
0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x52, 0x6f,
0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41,
0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x52, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e,
@@ -559,7 +559,7 @@ var file_google_ads_googleads_v16_resources_ad_group_proto_rawDesc = []byte{
0x12, 0x64, 0x0a, 0x15, 0x75, 0x72, 0x6c, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x70,
0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x0b, 0x32,
0x30, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65,
0x72, 0x52, 0x13, 0x75, 0x72, 0x6c, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x50, 0x61, 0x72, 0x61,
0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x12, 0x4a, 0x0a, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69,
@@ -599,7 +599,7 @@ var file_google_ads_googleads_v16_resources_ad_group_proto_rawDesc = []byte{
0x70, 0x6c, 0x61, 0x79, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, 0x62, 0x69, 0x64, 0x5f,
0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0e, 0x32,
0x49, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73,
0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73,
0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e,
0x67, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x19, 0x64, 0x69, 0x73, 0x70,
@@ -610,13 +610,13 @@ var file_google_ads_googleads_v16_resources_ad_group_proto_rawDesc = []byte{
0x78, 0x88, 0x01, 0x01, 0x12, 0x5e, 0x0a, 0x11, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e,
0x67, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x19, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x31, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69,
0x6e, 0x67, 0x52, 0x10, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74,
0x74, 0x69, 0x6e, 0x67, 0x12, 0x6b, 0x0a, 0x10, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65,
0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x38, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3b,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72,
0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x41, 0x75, 0x64, 0x69,
0x65, 0x6e, 0x63, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x42, 0x03, 0xe0, 0x41, 0x05,
0x52, 0x0f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e,
@@ -628,7 +628,7 @@ var file_google_ads_googleads_v16_resources_ad_group_proto_rawDesc = []byte{
0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f,
0x63, 0x70, 0x61, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x0e,
0x32, 0x3f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45,
0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x6f, 0x75, 0x72, 0x63,
0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x18, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76,
@@ -640,7 +640,7 @@ var file_google_ads_googleads_v16_resources_ad_group_proto_rawDesc = []byte{
0x01, 0x0a, 0x1c, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x74, 0x61, 0x72,
0x67, 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61, 0x73, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18,
0x20, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x6f,
0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67,
0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x19, 0x65, 0x66, 0x66,
@@ -654,7 +654,7 @@ var file_google_ads_googleads_v16_resources_ad_group_proto_rawDesc = []byte{
0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79,
0x70, 0x65, 0x73, 0x18, 0x36, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x41, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74,
0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73,
0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x52, 0x1d, 0x65, 0x78,
0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x41, 0x73, 0x73, 0x65,
@@ -662,7 +662,7 @@ var file_google_ads_googleads_v16_resources_ad_group_proto_rawDesc = []byte{
0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f,
0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18,
0x3a, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x3d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x54,
0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74,
0x54, 0x79, 0x70, 0x65, 0x52, 0x1b, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x50, 0x61,
@@ -670,7 +670,7 @@ var file_google_ads_googleads_v16_resources_ad_group_proto_rawDesc = []byte{
0x73, 0x12, 0x79, 0x0a, 0x0e, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61,
0x74, 0x75, 0x73, 0x18, 0x3e, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f,
0x75, 0x70, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45,
0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x72, 0x69, 0x6d, 0x61,
0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0d, 0x70,
@@ -678,7 +678,7 @@ var file_google_ads_googleads_v16_resources_ad_group_proto_rawDesc = []byte{
0x16, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f,
0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x73, 0x18, 0x3f, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x59, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41,
0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61,
0x74, 0x75, 0x73, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64,
0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74,
@@ -716,66 +716,66 @@ var file_google_ads_googleads_v16_resources_ad_group_proto_rawDesc = []byte{
0x18, 0x0a, 0x16, 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x74, 0x61,
0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61, 0x73, 0x42, 0xfe, 0x01, 0x0a, 0x26, 0x63, 0x6f,
0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75,
0x72, 0x63, 0x65, 0x73, 0x42, 0x0c, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x4b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x72, 0x65,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65,
0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47,
+ 0x31, 0x37, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
0x73, 0xea, 0x02, 0x26, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_resources_ad_group_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_resources_ad_group_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_group_proto_rawDesc
+ file_google_ads_googleads_v17_resources_ad_group_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_resources_ad_group_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_group_proto_rawDesc
)
-func file_google_ads_googleads_v16_resources_ad_group_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_resources_ad_group_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_resources_ad_group_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_group_proto_rawDescData)
+func file_google_ads_googleads_v17_resources_ad_group_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_resources_ad_group_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_resources_ad_group_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_group_proto_rawDescData)
})
- return file_google_ads_googleads_v16_resources_ad_group_proto_rawDescData
-}
-
-var file_google_ads_googleads_v16_resources_ad_group_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
-var file_google_ads_googleads_v16_resources_ad_group_proto_goTypes = []interface{}{
- (*AdGroup)(nil), // 0: google.ads.googleads.v16.resources.AdGroup
- (*AdGroup_AudienceSetting)(nil), // 1: google.ads.googleads.v16.resources.AdGroup.AudienceSetting
- (enums.AdGroupStatusEnum_AdGroupStatus)(0), // 2: google.ads.googleads.v16.enums.AdGroupStatusEnum.AdGroupStatus
- (enums.AdGroupTypeEnum_AdGroupType)(0), // 3: google.ads.googleads.v16.enums.AdGroupTypeEnum.AdGroupType
- (enums.AdGroupAdRotationModeEnum_AdGroupAdRotationMode)(0), // 4: google.ads.googleads.v16.enums.AdGroupAdRotationModeEnum.AdGroupAdRotationMode
- (*common.CustomParameter)(nil), // 5: google.ads.googleads.v16.common.CustomParameter
- (enums.TargetingDimensionEnum_TargetingDimension)(0), // 6: google.ads.googleads.v16.enums.TargetingDimensionEnum.TargetingDimension
- (*common.TargetingSetting)(nil), // 7: google.ads.googleads.v16.common.TargetingSetting
- (enums.BiddingSourceEnum_BiddingSource)(0), // 8: google.ads.googleads.v16.enums.BiddingSourceEnum.BiddingSource
- (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 9: google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType
- (enums.AssetSetTypeEnum_AssetSetType)(0), // 10: google.ads.googleads.v16.enums.AssetSetTypeEnum.AssetSetType
- (enums.AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus)(0), // 11: google.ads.googleads.v16.enums.AdGroupPrimaryStatusEnum.AdGroupPrimaryStatus
- (enums.AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason)(0), // 12: google.ads.googleads.v16.enums.AdGroupPrimaryStatusReasonEnum.AdGroupPrimaryStatusReason
-}
-var file_google_ads_googleads_v16_resources_ad_group_proto_depIdxs = []int32{
- 2, // 0: google.ads.googleads.v16.resources.AdGroup.status:type_name -> google.ads.googleads.v16.enums.AdGroupStatusEnum.AdGroupStatus
- 3, // 1: google.ads.googleads.v16.resources.AdGroup.type:type_name -> google.ads.googleads.v16.enums.AdGroupTypeEnum.AdGroupType
- 4, // 2: google.ads.googleads.v16.resources.AdGroup.ad_rotation_mode:type_name -> google.ads.googleads.v16.enums.AdGroupAdRotationModeEnum.AdGroupAdRotationMode
- 5, // 3: google.ads.googleads.v16.resources.AdGroup.url_custom_parameters:type_name -> google.ads.googleads.v16.common.CustomParameter
- 6, // 4: google.ads.googleads.v16.resources.AdGroup.display_custom_bid_dimension:type_name -> google.ads.googleads.v16.enums.TargetingDimensionEnum.TargetingDimension
- 7, // 5: google.ads.googleads.v16.resources.AdGroup.targeting_setting:type_name -> google.ads.googleads.v16.common.TargetingSetting
- 1, // 6: google.ads.googleads.v16.resources.AdGroup.audience_setting:type_name -> google.ads.googleads.v16.resources.AdGroup.AudienceSetting
- 8, // 7: google.ads.googleads.v16.resources.AdGroup.effective_target_cpa_source:type_name -> google.ads.googleads.v16.enums.BiddingSourceEnum.BiddingSource
- 8, // 8: google.ads.googleads.v16.resources.AdGroup.effective_target_roas_source:type_name -> google.ads.googleads.v16.enums.BiddingSourceEnum.BiddingSource
- 9, // 9: google.ads.googleads.v16.resources.AdGroup.excluded_parent_asset_field_types:type_name -> google.ads.googleads.v16.enums.AssetFieldTypeEnum.AssetFieldType
- 10, // 10: google.ads.googleads.v16.resources.AdGroup.excluded_parent_asset_set_types:type_name -> google.ads.googleads.v16.enums.AssetSetTypeEnum.AssetSetType
- 11, // 11: google.ads.googleads.v16.resources.AdGroup.primary_status:type_name -> google.ads.googleads.v16.enums.AdGroupPrimaryStatusEnum.AdGroupPrimaryStatus
- 12, // 12: google.ads.googleads.v16.resources.AdGroup.primary_status_reasons:type_name -> google.ads.googleads.v16.enums.AdGroupPrimaryStatusReasonEnum.AdGroupPrimaryStatusReason
+ return file_google_ads_googleads_v17_resources_ad_group_proto_rawDescData
+}
+
+var file_google_ads_googleads_v17_resources_ad_group_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
+var file_google_ads_googleads_v17_resources_ad_group_proto_goTypes = []interface{}{
+ (*AdGroup)(nil), // 0: google.ads.googleads.v17.resources.AdGroup
+ (*AdGroup_AudienceSetting)(nil), // 1: google.ads.googleads.v17.resources.AdGroup.AudienceSetting
+ (enums.AdGroupStatusEnum_AdGroupStatus)(0), // 2: google.ads.googleads.v17.enums.AdGroupStatusEnum.AdGroupStatus
+ (enums.AdGroupTypeEnum_AdGroupType)(0), // 3: google.ads.googleads.v17.enums.AdGroupTypeEnum.AdGroupType
+ (enums.AdGroupAdRotationModeEnum_AdGroupAdRotationMode)(0), // 4: google.ads.googleads.v17.enums.AdGroupAdRotationModeEnum.AdGroupAdRotationMode
+ (*common.CustomParameter)(nil), // 5: google.ads.googleads.v17.common.CustomParameter
+ (enums.TargetingDimensionEnum_TargetingDimension)(0), // 6: google.ads.googleads.v17.enums.TargetingDimensionEnum.TargetingDimension
+ (*common.TargetingSetting)(nil), // 7: google.ads.googleads.v17.common.TargetingSetting
+ (enums.BiddingSourceEnum_BiddingSource)(0), // 8: google.ads.googleads.v17.enums.BiddingSourceEnum.BiddingSource
+ (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 9: google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType
+ (enums.AssetSetTypeEnum_AssetSetType)(0), // 10: google.ads.googleads.v17.enums.AssetSetTypeEnum.AssetSetType
+ (enums.AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus)(0), // 11: google.ads.googleads.v17.enums.AdGroupPrimaryStatusEnum.AdGroupPrimaryStatus
+ (enums.AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason)(0), // 12: google.ads.googleads.v17.enums.AdGroupPrimaryStatusReasonEnum.AdGroupPrimaryStatusReason
+}
+var file_google_ads_googleads_v17_resources_ad_group_proto_depIdxs = []int32{
+ 2, // 0: google.ads.googleads.v17.resources.AdGroup.status:type_name -> google.ads.googleads.v17.enums.AdGroupStatusEnum.AdGroupStatus
+ 3, // 1: google.ads.googleads.v17.resources.AdGroup.type:type_name -> google.ads.googleads.v17.enums.AdGroupTypeEnum.AdGroupType
+ 4, // 2: google.ads.googleads.v17.resources.AdGroup.ad_rotation_mode:type_name -> google.ads.googleads.v17.enums.AdGroupAdRotationModeEnum.AdGroupAdRotationMode
+ 5, // 3: google.ads.googleads.v17.resources.AdGroup.url_custom_parameters:type_name -> google.ads.googleads.v17.common.CustomParameter
+ 6, // 4: google.ads.googleads.v17.resources.AdGroup.display_custom_bid_dimension:type_name -> google.ads.googleads.v17.enums.TargetingDimensionEnum.TargetingDimension
+ 7, // 5: google.ads.googleads.v17.resources.AdGroup.targeting_setting:type_name -> google.ads.googleads.v17.common.TargetingSetting
+ 1, // 6: google.ads.googleads.v17.resources.AdGroup.audience_setting:type_name -> google.ads.googleads.v17.resources.AdGroup.AudienceSetting
+ 8, // 7: google.ads.googleads.v17.resources.AdGroup.effective_target_cpa_source:type_name -> google.ads.googleads.v17.enums.BiddingSourceEnum.BiddingSource
+ 8, // 8: google.ads.googleads.v17.resources.AdGroup.effective_target_roas_source:type_name -> google.ads.googleads.v17.enums.BiddingSourceEnum.BiddingSource
+ 9, // 9: google.ads.googleads.v17.resources.AdGroup.excluded_parent_asset_field_types:type_name -> google.ads.googleads.v17.enums.AssetFieldTypeEnum.AssetFieldType
+ 10, // 10: google.ads.googleads.v17.resources.AdGroup.excluded_parent_asset_set_types:type_name -> google.ads.googleads.v17.enums.AssetSetTypeEnum.AssetSetType
+ 11, // 11: google.ads.googleads.v17.resources.AdGroup.primary_status:type_name -> google.ads.googleads.v17.enums.AdGroupPrimaryStatusEnum.AdGroupPrimaryStatus
+ 12, // 12: google.ads.googleads.v17.resources.AdGroup.primary_status_reasons:type_name -> google.ads.googleads.v17.enums.AdGroupPrimaryStatusReasonEnum.AdGroupPrimaryStatusReason
13, // [13:13] is the sub-list for method output_type
13, // [13:13] is the sub-list for method input_type
13, // [13:13] is the sub-list for extension type_name
@@ -783,13 +783,13 @@ var file_google_ads_googleads_v16_resources_ad_group_proto_depIdxs = []int32{
0, // [0:13] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_resources_ad_group_proto_init() }
-func file_google_ads_googleads_v16_resources_ad_group_proto_init() {
- if File_google_ads_googleads_v16_resources_ad_group_proto != nil {
+func init() { file_google_ads_googleads_v17_resources_ad_group_proto_init() }
+func file_google_ads_googleads_v17_resources_ad_group_proto_init() {
+ if File_google_ads_googleads_v17_resources_ad_group_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_resources_ad_group_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_resources_ad_group_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroup); i {
case 0:
return &v.state
@@ -801,7 +801,7 @@ func file_google_ads_googleads_v16_resources_ad_group_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_resources_ad_group_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_resources_ad_group_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroup_AudienceSetting); i {
case 0:
return &v.state
@@ -814,23 +814,23 @@ func file_google_ads_googleads_v16_resources_ad_group_proto_init() {
}
}
}
- file_google_ads_googleads_v16_resources_ad_group_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_resources_ad_group_proto_msgTypes[0].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_resources_ad_group_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_resources_ad_group_proto_rawDesc,
NumEnums: 0,
NumMessages: 2,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_resources_ad_group_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_resources_ad_group_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_resources_ad_group_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_resources_ad_group_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_resources_ad_group_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_resources_ad_group_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_resources_ad_group_proto = out.File
- file_google_ads_googleads_v16_resources_ad_group_proto_rawDesc = nil
- file_google_ads_googleads_v16_resources_ad_group_proto_goTypes = nil
- file_google_ads_googleads_v16_resources_ad_group_proto_depIdxs = nil
+ File_google_ads_googleads_v17_resources_ad_group_proto = out.File
+ file_google_ads_googleads_v17_resources_ad_group_proto_rawDesc = nil
+ file_google_ads_googleads_v17_resources_ad_group_proto_goTypes = nil
+ file_google_ads_googleads_v17_resources_ad_group_proto_depIdxs = nil
}
diff --git a/resources/ad_group_ad.pb.go b/resources/ad_group_ad.pb.go
index b6c6673b..d1db1f16 100644
--- a/resources/ad_group_ad.pb.go
+++ b/resources/ad_group_ad.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/resources/ad_group_ad.proto
+// source: google/ads/googleads/v17/resources/ad_group_ad.proto
package resources
@@ -49,7 +49,7 @@ type AdGroupAd struct {
// `customers/{customer_id}/adGroupAds/{ad_group_id}~{ad_id}`
ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"`
// The status of the ad.
- Status enums.AdGroupAdStatusEnum_AdGroupAdStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v16.enums.AdGroupAdStatusEnum_AdGroupAdStatus" json:"status,omitempty"`
+ Status enums.AdGroupAdStatusEnum_AdGroupAdStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v17.enums.AdGroupAdStatusEnum_AdGroupAdStatus" json:"status,omitempty"`
// Immutable. The ad group to which the ad belongs.
AdGroup *string `protobuf:"bytes,9,opt,name=ad_group,json=adGroup,proto3,oneof" json:"ad_group,omitempty"`
// Immutable. The ad.
@@ -57,7 +57,7 @@ type AdGroupAd struct {
// Output only. Policy information for the ad.
PolicySummary *AdGroupAdPolicySummary `protobuf:"bytes,6,opt,name=policy_summary,json=policySummary,proto3" json:"policy_summary,omitempty"`
// Output only. Overall ad strength for this ad group ad.
- AdStrength enums.AdStrengthEnum_AdStrength `protobuf:"varint,7,opt,name=ad_strength,json=adStrength,proto3,enum=google.ads.googleads.v16.enums.AdStrengthEnum_AdStrength" json:"ad_strength,omitempty"`
+ AdStrength enums.AdStrengthEnum_AdStrength `protobuf:"varint,7,opt,name=ad_strength,json=adStrength,proto3,enum=google.ads.googleads.v17.enums.AdStrengthEnum_AdStrength" json:"ad_strength,omitempty"`
// Output only. A list of recommendations to improve the ad strength. For
// example, a recommendation could be "Try adding a few more unique headlines
// or unpinning some assets.".
@@ -66,16 +66,16 @@ type AdGroupAd struct {
Labels []string `protobuf:"bytes,10,rep,name=labels,proto3" json:"labels,omitempty"`
// Output only. Provides aggregated view into why an ad group ad is not
// serving or not serving optimally.
- PrimaryStatus enums.AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus `protobuf:"varint,16,opt,name=primary_status,json=primaryStatus,proto3,enum=google.ads.googleads.v16.enums.AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus" json:"primary_status,omitempty"`
+ PrimaryStatus enums.AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus `protobuf:"varint,16,opt,name=primary_status,json=primaryStatus,proto3,enum=google.ads.googleads.v17.enums.AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus" json:"primary_status,omitempty"`
// Output only. Provides reasons for why an ad group ad is not serving or not
// serving optimally.
- PrimaryStatusReasons []enums.AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason `protobuf:"varint,17,rep,packed,name=primary_status_reasons,json=primaryStatusReasons,proto3,enum=google.ads.googleads.v16.enums.AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason" json:"primary_status_reasons,omitempty"`
+ PrimaryStatusReasons []enums.AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason `protobuf:"varint,17,rep,packed,name=primary_status_reasons,json=primaryStatusReasons,proto3,enum=google.ads.googleads.v17.enums.AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason" json:"primary_status_reasons,omitempty"`
}
func (x *AdGroupAd) Reset() {
*x = AdGroupAd{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_resources_ad_group_ad_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_resources_ad_group_ad_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -88,7 +88,7 @@ func (x *AdGroupAd) String() string {
func (*AdGroupAd) ProtoMessage() {}
func (x *AdGroupAd) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_resources_ad_group_ad_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_resources_ad_group_ad_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -101,7 +101,7 @@ func (x *AdGroupAd) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroupAd.ProtoReflect.Descriptor instead.
func (*AdGroupAd) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_resources_ad_group_ad_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_resources_ad_group_ad_proto_rawDescGZIP(), []int{0}
}
func (x *AdGroupAd) GetResourceName() string {
@@ -183,16 +183,16 @@ type AdGroupAdPolicySummary struct {
// Output only. The list of policy findings for this ad.
PolicyTopicEntries []*common.PolicyTopicEntry `protobuf:"bytes,1,rep,name=policy_topic_entries,json=policyTopicEntries,proto3" json:"policy_topic_entries,omitempty"`
// Output only. Where in the review process this ad is.
- ReviewStatus enums.PolicyReviewStatusEnum_PolicyReviewStatus `protobuf:"varint,2,opt,name=review_status,json=reviewStatus,proto3,enum=google.ads.googleads.v16.enums.PolicyReviewStatusEnum_PolicyReviewStatus" json:"review_status,omitempty"`
+ ReviewStatus enums.PolicyReviewStatusEnum_PolicyReviewStatus `protobuf:"varint,2,opt,name=review_status,json=reviewStatus,proto3,enum=google.ads.googleads.v17.enums.PolicyReviewStatusEnum_PolicyReviewStatus" json:"review_status,omitempty"`
// Output only. The overall approval status of this ad, calculated based on
// the status of its individual policy topic entries.
- ApprovalStatus enums.PolicyApprovalStatusEnum_PolicyApprovalStatus `protobuf:"varint,3,opt,name=approval_status,json=approvalStatus,proto3,enum=google.ads.googleads.v16.enums.PolicyApprovalStatusEnum_PolicyApprovalStatus" json:"approval_status,omitempty"`
+ ApprovalStatus enums.PolicyApprovalStatusEnum_PolicyApprovalStatus `protobuf:"varint,3,opt,name=approval_status,json=approvalStatus,proto3,enum=google.ads.googleads.v17.enums.PolicyApprovalStatusEnum_PolicyApprovalStatus" json:"approval_status,omitempty"`
}
func (x *AdGroupAdPolicySummary) Reset() {
*x = AdGroupAdPolicySummary{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_resources_ad_group_ad_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_resources_ad_group_ad_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -205,7 +205,7 @@ func (x *AdGroupAdPolicySummary) String() string {
func (*AdGroupAdPolicySummary) ProtoMessage() {}
func (x *AdGroupAdPolicySummary) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_resources_ad_group_ad_proto_msgTypes[1]
+ mi := &file_google_ads_googleads_v17_resources_ad_group_ad_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -218,7 +218,7 @@ func (x *AdGroupAdPolicySummary) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroupAdPolicySummary.ProtoReflect.Descriptor instead.
func (*AdGroupAdPolicySummary) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_resources_ad_group_ad_proto_rawDescGZIP(), []int{1}
+ return file_google_ads_googleads_v17_resources_ad_group_ad_proto_rawDescGZIP(), []int{1}
}
func (x *AdGroupAdPolicySummary) GetPolicyTopicEntries() []*common.PolicyTopicEntry {
@@ -242,42 +242,42 @@ func (x *AdGroupAdPolicySummary) GetApprovalStatus() enums.PolicyApprovalStatusE
return enums.PolicyApprovalStatusEnum_PolicyApprovalStatus(0)
}
-var File_google_ads_googleads_v16_resources_ad_group_ad_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_resources_ad_group_ad_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_resources_ad_group_ad_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_resources_ad_group_ad_proto_rawDesc = []byte{
0x0a, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x22, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61,
- 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36,
+ 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37,
0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x2c, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x6f, 0x6c, 0x69,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x6f, 0x6c, 0x69,
0x63, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76,
- 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75,
+ 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75,
0x70, 0x5f, 0x61, 0x64, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61,
0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x46, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f,
0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74,
0x61, 0x74, 0x75, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x1a, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x5f, 0x73, 0x74,
0x61, 0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x30, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x73, 0x74,
+ 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x73, 0x74,
0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3b, 0x67, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61,
- 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6f, 0x6c,
+ 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6f, 0x6c,
0x69, 0x63, 0x79, 0x5f, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61,
0x74, 0x75, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f,
- 0x76, 0x31, 0x36, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79,
+ 0x76, 0x31, 0x37, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79,
0x5f, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73,
- 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x72,
+ 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72,
0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x2e, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69,
0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f,
@@ -291,7 +291,7 @@ var file_google_ads_googleads_v16_resources_ad_group_ad_proto_rawDesc = []byte{
0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x5b, 0x0a, 0x06,
0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x43, 0x2e, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64,
0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75,
0x6d, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75,
0x73, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x48, 0x0a, 0x08, 0x61, 0x64, 0x5f,
@@ -301,18 +301,18 @@ var file_google_ads_googleads_v16_resources_ad_group_ad_proto_rawDesc = []byte{
0x47, 0x72, 0x6f, 0x75, 0x70, 0x48, 0x00, 0x52, 0x07, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70,
0x88, 0x01, 0x01, 0x12, 0x3b, 0x0a, 0x02, 0x61, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x26, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75,
0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x52, 0x02, 0x61, 0x64,
0x12, 0x66, 0x0a, 0x0e, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61,
0x72, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e,
- 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64,
+ 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64,
0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x53, 0x75, 0x6d,
0x6d, 0x61, 0x72, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0d, 0x70, 0x6f, 0x6c, 0x69, 0x63,
0x79, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x12, 0x5f, 0x0a, 0x0b, 0x61, 0x64, 0x5f, 0x73,
0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x39, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41,
0x64, 0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64,
0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0a, 0x61,
0x64, 0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x12, 0x26, 0x0a, 0x0c, 0x61, 0x63, 0x74,
@@ -325,7 +325,7 @@ var file_google_ads_googleads_v16_resources_ad_group_ad_proto_rawDesc = []byte{
0x65, 0x6c, 0x52, 0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x12, 0x7d, 0x0a, 0x0e, 0x70, 0x72,
0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x10, 0x20, 0x01,
0x28, 0x0e, 0x32, 0x51, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e,
0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x50, 0x72, 0x69,
0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41,
0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53,
@@ -334,7 +334,7 @@ var file_google_ads_googleads_v16_resources_ad_group_ad_proto_rawDesc = []byte{
0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x72, 0x65, 0x61,
0x73, 0x6f, 0x6e, 0x73, 0x18, 0x11, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x5d, 0x2e, 0x67, 0x6f, 0x6f,
0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64,
- 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72,
+ 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72,
0x6f, 0x75, 0x70, 0x41, 0x64, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74,
0x75, 0x73, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x47,
0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61,
@@ -352,13 +352,13 @@ var file_google_ads_googleads_v16_resources_ad_group_ad_proto_rawDesc = []byte{
0x68, 0x0a, 0x14, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x5f,
0x65, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e,
0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
+ 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x45, 0x6e, 0x74, 0x72, 0x79,
0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x12, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, 0x6f, 0x70,
0x69, 0x63, 0x45, 0x6e, 0x74, 0x72, 0x69, 0x65, 0x73, 0x12, 0x73, 0x0a, 0x0d, 0x72, 0x65, 0x76,
0x69, 0x65, 0x77, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e,
0x32, 0x49, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d,
0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x74,
0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52,
0x65, 0x76, 0x69, 0x65, 0x77, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03,
@@ -366,65 +366,65 @@ var file_google_ads_googleads_v16_resources_ad_group_ad_proto_rawDesc = []byte{
0x0a, 0x0f, 0x61, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75,
0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x4d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76,
- 0x31, 0x36, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x41,
+ 0x31, 0x37, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x41,
0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75,
0x6d, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x41, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x61, 0x6c,
0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0e, 0x61, 0x70, 0x70,
0x72, 0x6f, 0x76, 0x61, 0x6c, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x80, 0x02, 0x0a, 0x26,
0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65, 0x73,
+ 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73,
0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41,
0x64, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x4b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f,
0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31,
- 0x36, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f,
+ 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f,
0x75, 0x72, 0x63, 0x65, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x22, 0x47, 0x6f,
0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41,
- 0x64, 0x73, 0x2e, 0x56, 0x31, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73,
+ 0x64, 0x73, 0x2e, 0x56, 0x31, 0x37, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73,
0xca, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f,
+ 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x52, 0x65, 0x73, 0x6f,
0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a,
0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a,
- 0x56, 0x31, 0x36, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06,
+ 0x56, 0x31, 0x37, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06,
0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_resources_ad_group_ad_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_resources_ad_group_ad_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_group_ad_proto_rawDesc
+ file_google_ads_googleads_v17_resources_ad_group_ad_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_resources_ad_group_ad_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_group_ad_proto_rawDesc
)
-func file_google_ads_googleads_v16_resources_ad_group_ad_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_resources_ad_group_ad_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_resources_ad_group_ad_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_group_ad_proto_rawDescData)
+func file_google_ads_googleads_v17_resources_ad_group_ad_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_resources_ad_group_ad_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_resources_ad_group_ad_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_group_ad_proto_rawDescData)
})
- return file_google_ads_googleads_v16_resources_ad_group_ad_proto_rawDescData
+ return file_google_ads_googleads_v17_resources_ad_group_ad_proto_rawDescData
}
-var file_google_ads_googleads_v16_resources_ad_group_ad_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
-var file_google_ads_googleads_v16_resources_ad_group_ad_proto_goTypes = []interface{}{
- (*AdGroupAd)(nil), // 0: google.ads.googleads.v16.resources.AdGroupAd
- (*AdGroupAdPolicySummary)(nil), // 1: google.ads.googleads.v16.resources.AdGroupAdPolicySummary
- (enums.AdGroupAdStatusEnum_AdGroupAdStatus)(0), // 2: google.ads.googleads.v16.enums.AdGroupAdStatusEnum.AdGroupAdStatus
- (*Ad)(nil), // 3: google.ads.googleads.v16.resources.Ad
- (enums.AdStrengthEnum_AdStrength)(0), // 4: google.ads.googleads.v16.enums.AdStrengthEnum.AdStrength
- (enums.AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus)(0), // 5: google.ads.googleads.v16.enums.AdGroupAdPrimaryStatusEnum.AdGroupAdPrimaryStatus
- (enums.AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason)(0), // 6: google.ads.googleads.v16.enums.AdGroupAdPrimaryStatusReasonEnum.AdGroupAdPrimaryStatusReason
- (*common.PolicyTopicEntry)(nil), // 7: google.ads.googleads.v16.common.PolicyTopicEntry
- (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 8: google.ads.googleads.v16.enums.PolicyReviewStatusEnum.PolicyReviewStatus
- (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 9: google.ads.googleads.v16.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus
+var file_google_ads_googleads_v17_resources_ad_group_ad_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
+var file_google_ads_googleads_v17_resources_ad_group_ad_proto_goTypes = []interface{}{
+ (*AdGroupAd)(nil), // 0: google.ads.googleads.v17.resources.AdGroupAd
+ (*AdGroupAdPolicySummary)(nil), // 1: google.ads.googleads.v17.resources.AdGroupAdPolicySummary
+ (enums.AdGroupAdStatusEnum_AdGroupAdStatus)(0), // 2: google.ads.googleads.v17.enums.AdGroupAdStatusEnum.AdGroupAdStatus
+ (*Ad)(nil), // 3: google.ads.googleads.v17.resources.Ad
+ (enums.AdStrengthEnum_AdStrength)(0), // 4: google.ads.googleads.v17.enums.AdStrengthEnum.AdStrength
+ (enums.AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus)(0), // 5: google.ads.googleads.v17.enums.AdGroupAdPrimaryStatusEnum.AdGroupAdPrimaryStatus
+ (enums.AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason)(0), // 6: google.ads.googleads.v17.enums.AdGroupAdPrimaryStatusReasonEnum.AdGroupAdPrimaryStatusReason
+ (*common.PolicyTopicEntry)(nil), // 7: google.ads.googleads.v17.common.PolicyTopicEntry
+ (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 8: google.ads.googleads.v17.enums.PolicyReviewStatusEnum.PolicyReviewStatus
+ (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 9: google.ads.googleads.v17.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus
}
-var file_google_ads_googleads_v16_resources_ad_group_ad_proto_depIdxs = []int32{
- 2, // 0: google.ads.googleads.v16.resources.AdGroupAd.status:type_name -> google.ads.googleads.v16.enums.AdGroupAdStatusEnum.AdGroupAdStatus
- 3, // 1: google.ads.googleads.v16.resources.AdGroupAd.ad:type_name -> google.ads.googleads.v16.resources.Ad
- 1, // 2: google.ads.googleads.v16.resources.AdGroupAd.policy_summary:type_name -> google.ads.googleads.v16.resources.AdGroupAdPolicySummary
- 4, // 3: google.ads.googleads.v16.resources.AdGroupAd.ad_strength:type_name -> google.ads.googleads.v16.enums.AdStrengthEnum.AdStrength
- 5, // 4: google.ads.googleads.v16.resources.AdGroupAd.primary_status:type_name -> google.ads.googleads.v16.enums.AdGroupAdPrimaryStatusEnum.AdGroupAdPrimaryStatus
- 6, // 5: google.ads.googleads.v16.resources.AdGroupAd.primary_status_reasons:type_name -> google.ads.googleads.v16.enums.AdGroupAdPrimaryStatusReasonEnum.AdGroupAdPrimaryStatusReason
- 7, // 6: google.ads.googleads.v16.resources.AdGroupAdPolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v16.common.PolicyTopicEntry
- 8, // 7: google.ads.googleads.v16.resources.AdGroupAdPolicySummary.review_status:type_name -> google.ads.googleads.v16.enums.PolicyReviewStatusEnum.PolicyReviewStatus
- 9, // 8: google.ads.googleads.v16.resources.AdGroupAdPolicySummary.approval_status:type_name -> google.ads.googleads.v16.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus
+var file_google_ads_googleads_v17_resources_ad_group_ad_proto_depIdxs = []int32{
+ 2, // 0: google.ads.googleads.v17.resources.AdGroupAd.status:type_name -> google.ads.googleads.v17.enums.AdGroupAdStatusEnum.AdGroupAdStatus
+ 3, // 1: google.ads.googleads.v17.resources.AdGroupAd.ad:type_name -> google.ads.googleads.v17.resources.Ad
+ 1, // 2: google.ads.googleads.v17.resources.AdGroupAd.policy_summary:type_name -> google.ads.googleads.v17.resources.AdGroupAdPolicySummary
+ 4, // 3: google.ads.googleads.v17.resources.AdGroupAd.ad_strength:type_name -> google.ads.googleads.v17.enums.AdStrengthEnum.AdStrength
+ 5, // 4: google.ads.googleads.v17.resources.AdGroupAd.primary_status:type_name -> google.ads.googleads.v17.enums.AdGroupAdPrimaryStatusEnum.AdGroupAdPrimaryStatus
+ 6, // 5: google.ads.googleads.v17.resources.AdGroupAd.primary_status_reasons:type_name -> google.ads.googleads.v17.enums.AdGroupAdPrimaryStatusReasonEnum.AdGroupAdPrimaryStatusReason
+ 7, // 6: google.ads.googleads.v17.resources.AdGroupAdPolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v17.common.PolicyTopicEntry
+ 8, // 7: google.ads.googleads.v17.resources.AdGroupAdPolicySummary.review_status:type_name -> google.ads.googleads.v17.enums.PolicyReviewStatusEnum.PolicyReviewStatus
+ 9, // 8: google.ads.googleads.v17.resources.AdGroupAdPolicySummary.approval_status:type_name -> google.ads.googleads.v17.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus
9, // [9:9] is the sub-list for method output_type
9, // [9:9] is the sub-list for method input_type
9, // [9:9] is the sub-list for extension type_name
@@ -432,14 +432,14 @@ var file_google_ads_googleads_v16_resources_ad_group_ad_proto_depIdxs = []int32{
0, // [0:9] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_resources_ad_group_ad_proto_init() }
-func file_google_ads_googleads_v16_resources_ad_group_ad_proto_init() {
- if File_google_ads_googleads_v16_resources_ad_group_ad_proto != nil {
+func init() { file_google_ads_googleads_v17_resources_ad_group_ad_proto_init() }
+func file_google_ads_googleads_v17_resources_ad_group_ad_proto_init() {
+ if File_google_ads_googleads_v17_resources_ad_group_ad_proto != nil {
return
}
- file_google_ads_googleads_v16_resources_ad_proto_init()
+ file_google_ads_googleads_v17_resources_ad_proto_init()
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_resources_ad_group_ad_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_resources_ad_group_ad_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupAd); i {
case 0:
return &v.state
@@ -451,7 +451,7 @@ func file_google_ads_googleads_v16_resources_ad_group_ad_proto_init() {
return nil
}
}
- file_google_ads_googleads_v16_resources_ad_group_ad_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_resources_ad_group_ad_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupAdPolicySummary); i {
case 0:
return &v.state
@@ -464,23 +464,23 @@ func file_google_ads_googleads_v16_resources_ad_group_ad_proto_init() {
}
}
}
- file_google_ads_googleads_v16_resources_ad_group_ad_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_resources_ad_group_ad_proto_msgTypes[0].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_resources_ad_group_ad_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_resources_ad_group_ad_proto_rawDesc,
NumEnums: 0,
NumMessages: 2,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_resources_ad_group_ad_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_resources_ad_group_ad_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_resources_ad_group_ad_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_resources_ad_group_ad_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_resources_ad_group_ad_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_resources_ad_group_ad_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_resources_ad_group_ad_proto = out.File
- file_google_ads_googleads_v16_resources_ad_group_ad_proto_rawDesc = nil
- file_google_ads_googleads_v16_resources_ad_group_ad_proto_goTypes = nil
- file_google_ads_googleads_v16_resources_ad_group_ad_proto_depIdxs = nil
+ File_google_ads_googleads_v17_resources_ad_group_ad_proto = out.File
+ file_google_ads_googleads_v17_resources_ad_group_ad_proto_rawDesc = nil
+ file_google_ads_googleads_v17_resources_ad_group_ad_proto_goTypes = nil
+ file_google_ads_googleads_v17_resources_ad_group_ad_proto_depIdxs = nil
}
diff --git a/resources/ad_group_ad_asset_combination_view.pb.go b/resources/ad_group_ad_asset_combination_view.pb.go
index a3bf34a1..550bf548 100644
--- a/resources/ad_group_ad_asset_combination_view.pb.go
+++ b/resources/ad_group_ad_asset_combination_view.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/resources/ad_group_ad_asset_combination_view.proto
+// source: google/ads/googleads/v17/resources/ad_group_ad_asset_combination_view.proto
package resources
@@ -63,7 +63,7 @@ type AdGroupAdAssetCombinationView struct {
func (x *AdGroupAdAssetCombinationView) Reset() {
*x = AdGroupAdAssetCombinationView{}
if protoimpl.UnsafeEnabled {
- mi := &file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
@@ -76,7 +76,7 @@ func (x *AdGroupAdAssetCombinationView) String() string {
func (*AdGroupAdAssetCombinationView) ProtoMessage() {}
func (x *AdGroupAdAssetCombinationView) ProtoReflect() protoreflect.Message {
- mi := &file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_msgTypes[0]
+ mi := &file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
@@ -89,7 +89,7 @@ func (x *AdGroupAdAssetCombinationView) ProtoReflect() protoreflect.Message {
// Deprecated: Use AdGroupAdAssetCombinationView.ProtoReflect.Descriptor instead.
func (*AdGroupAdAssetCombinationView) Descriptor() ([]byte, []int) {
- return file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_rawDescGZIP(), []int{0}
+ return file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_rawDescGZIP(), []int{0}
}
func (x *AdGroupAdAssetCombinationView) GetResourceName() string {
@@ -113,18 +113,18 @@ func (x *AdGroupAdAssetCombinationView) GetEnabled() bool {
return false
}
-var File_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto protoreflect.FileDescriptor
+var File_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto protoreflect.FileDescriptor
-var file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_rawDesc = []byte{
+var file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_rawDesc = []byte{
0x0a, 0x4b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
+ 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75,
0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64,
0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69,
0x6f, 0x6e, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x22, 0x67,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
+ 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
0x73, 0x1a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x63, 0x6f, 0x6d, 0x6d,
+ 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x63, 0x6f, 0x6d, 0x6d,
0x6f, 0x6e, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x75, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69,
0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x2e,
@@ -141,7 +141,7 @@ var file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_p
0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x55, 0x0a, 0x0d, 0x73, 0x65, 0x72, 0x76, 0x65,
0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2b,
0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
+ 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x55, 0x73, 0x61, 0x67, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03,
0x52, 0x0c, 0x73, 0x65, 0x72, 0x76, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x12, 0x22,
0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x42,
@@ -161,44 +161,44 @@ var file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_p
0x64, 0x5f, 0x68, 0x69, 0x67, 0x68, 0x7d, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x65, 0x6e, 0x61, 0x62,
0x6c, 0x65, 0x64, 0x42, 0x94, 0x02, 0x0a, 0x26, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73,
- 0x2e, 0x76, 0x31, 0x36, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x22,
+ 0x2e, 0x76, 0x31, 0x37, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x22,
0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x43, 0x6f,
0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x50, 0x72, 0x6f,
0x74, 0x6f, 0x50, 0x01, 0x5a, 0x4b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c,
0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x36, 0x2f, 0x72, 0x65,
+ 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x31, 0x37, 0x2f, 0x72, 0x65,
0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56,
- 0x31, 0x36, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47,
+ 0x31, 0x37, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47,
0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x36, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
+ 0x41, 0x64, 0x73, 0x5c, 0x56, 0x31, 0x37, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65,
0x73, 0xea, 0x02, 0x26, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a,
- 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x36, 0x3a,
+ 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x31, 0x37, 0x3a,
0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
- file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_rawDescOnce sync.Once
- file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_rawDescData = file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_rawDesc
+ file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_rawDescOnce sync.Once
+ file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_rawDescData = file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_rawDesc
)
-func file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_rawDescGZIP() []byte {
- file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_rawDescOnce.Do(func() {
- file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_rawDescData)
+func file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_rawDescGZIP() []byte {
+ file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_rawDescOnce.Do(func() {
+ file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_rawDescData = protoimpl.X.CompressGZIP(file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_rawDescData)
})
- return file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_rawDescData
+ return file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_rawDescData
}
-var file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
-var file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_goTypes = []interface{}{
- (*AdGroupAdAssetCombinationView)(nil), // 0: google.ads.googleads.v16.resources.AdGroupAdAssetCombinationView
- (*common.AssetUsage)(nil), // 1: google.ads.googleads.v16.common.AssetUsage
+var file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
+var file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_goTypes = []interface{}{
+ (*AdGroupAdAssetCombinationView)(nil), // 0: google.ads.googleads.v17.resources.AdGroupAdAssetCombinationView
+ (*common.AssetUsage)(nil), // 1: google.ads.googleads.v17.common.AssetUsage
}
-var file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_depIdxs = []int32{
- 1, // 0: google.ads.googleads.v16.resources.AdGroupAdAssetCombinationView.served_assets:type_name -> google.ads.googleads.v16.common.AssetUsage
+var file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_depIdxs = []int32{
+ 1, // 0: google.ads.googleads.v17.resources.AdGroupAdAssetCombinationView.served_assets:type_name -> google.ads.googleads.v17.common.AssetUsage
1, // [1:1] is the sub-list for method output_type
1, // [1:1] is the sub-list for method input_type
1, // [1:1] is the sub-list for extension type_name
@@ -206,13 +206,13 @@ var file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_p
0, // [0:1] is the sub-list for field type_name
}
-func init() { file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_init() }
-func file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_init() {
- if File_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto != nil {
+func init() { file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_init() }
+func file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_init() {
+ if File_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
- file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
+ file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*AdGroupAdAssetCombinationView); i {
case 0:
return &v.state
@@ -225,23 +225,23 @@ func file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_
}
}
}
- file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_msgTypes[0].OneofWrappers = []interface{}{}
+ file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_msgTypes[0].OneofWrappers = []interface{}{}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_rawDesc,
+ RawDescriptor: file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_rawDesc,
NumEnums: 0,
NumMessages: 1,
NumExtensions: 0,
NumServices: 0,
},
- GoTypes: file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_goTypes,
- DependencyIndexes: file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_depIdxs,
- MessageInfos: file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_msgTypes,
+ GoTypes: file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_goTypes,
+ DependencyIndexes: file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_depIdxs,
+ MessageInfos: file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_msgTypes,
}.Build()
- File_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto = out.File
- file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_rawDesc = nil
- file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_goTypes = nil
- file_google_ads_googleads_v16_resources_ad_group_ad_asset_combination_view_proto_depIdxs = nil
+ File_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto = out.File
+ file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_rawDesc = nil
+ file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_goTypes = nil
+ file_google_ads_googleads_v17_resources_ad_group_ad_asset_combination_view_proto_depIdxs = nil
}
diff --git a/resources/ad_group_ad_asset_view.pb.go b/resources/ad_group_ad_asset_view.pb.go
index 6918fd30..bb06b2c8 100644
--- a/resources/ad_group_ad_asset_view.pb.go
+++ b/resources/ad_group_ad_asset_view.pb.go
@@ -1,4 +1,4 @@
-// Copyright 2023 Google LLC
+// Copyright 2024 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
@@ -14,9 +14,9 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
-// protoc-gen-go v1.34.0
+// protoc-gen-go v1.34.1
// protoc v4.24.4
-// source: google/ads/googleads/v16/resources/ad_group_ad_asset_view.proto
+// source: google/ads/googleads/v17/resources/ad_group_ad_asset_view.proto
package resources
@@ -59,7 +59,7 @@ type AdGroupAdAssetView struct {
// Output only. The asset which is linked to the ad group ad.
Asset *string `protobuf:"bytes,10,opt,name=asset,proto3,oneof" json:"asset,omitempty"`
// Output only. Role that the asset takes in the ad.
- FieldType enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,2,opt,name=field_type,json=fieldType,proto3,enum=google.ads.googleads.v16.enums.AssetFieldTypeEnum_AssetFieldType" json:"field_type,omitempty"`
+ FieldType enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,2,opt,name=field_type,json=fieldType,proto3,enum=google.ads.googleads.v17.enums.AssetFieldTypeEnum_AssetFieldType" json:"field_type,omitempty"`
// Output only. The status between the asset and the latest version of the ad.
// If true, the asset is linked to the latest version of the ad. If false, it
// means the link once existed but has been removed and is no longer present
@@ -68,17 +68,17 @@ type AdGroupAdAssetView struct {
// Output only. Policy information for the ad group ad asset.
PolicySummary *AdGroupAdAssetPolicySummary `protobuf:"bytes,3,opt,name=policy_summary,json=policySummary,proto3" json:"policy_summary,omitempty"`
// Output only. Performance of an asset linkage.
- PerformanceLabel enums.AssetPerformanceLabelEnum_AssetPerformanceLabel `protobuf:"varint,4,opt,name=performance_label,json=performanceLabel,proto3,enum=google.ads.googleads.v16.enums.AssetPerformanceLabelEnum_AssetPerformanceLabel" json:"performance_label,omitempty"`
+ PerformanceLabel enums.AssetPerformanceLabelEnum_AssetPerformanceLabel `protobuf:"varint,4,opt,name=performance_label,json=performanceLabel,proto3,enum=google.ads.googleads.v17.enums.AssetPerformanceLabelEnum_AssetPerformanceLabel" json:"performance_label,omitempty"`
// Output only. Pinned field.
- PinnedField enums.ServedAssetFieldTypeEnum_ServedAssetFieldType `protobuf:"varint,11,opt,name=pinned_field,json=pinnedField,proto3,enum